/*
 Theme Name: Storefront Child
 Theme URI: http://example.com/storefront-child/
 Description: A custom child theme for Storefront.
 Author: Your Name
 Author URI: http://example.com
 Template: storefront
 Version: 1.0.0
 */

/* ==========================================================================
   Add your custom CSS below this line.
   Do NOT add global hiding rules for sidebar or footer here, as they are
   controlled by your specific page template.
   ========================================================================== */

/* Example styling for your new #page-footnotes-area */
#page-footnotes-area {
    background-color: #f0f0f0; /* Light grey background */
    border-top: 1px solid #ddd; /* Light border at the top */
    padding: 25px; /* Spacing inside the footnotes area */
    margin-top: 40px; /* Space above the footnotes area */
    clear: both; /* Ensures it appears below any floated content */
    font-size: 0.9em; /* Slightly smaller font size */
    line-height: 1.6; /* Improved readability */
    color: #555; /* Slightly muted text color */
}

#page-footnotes-area .widget-title {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 15px;
}<?php
/**
 * The template for displaying the footer.
 *
 * Contains the closing of the #content div and all content after
 *
 * @package storefront
 */

?>

		</div></div><?php
	/**
	 * Functions hooked in to storefront_footer action
	 *
	 * @hooked storefront_footer_widgets - 10
	 * @hooked storefront_credit         - 20
	 */
	do_action( 'storefront_footer' ); // THIS IS CRUCIAL FOR WIDGETS AND COPYRIGHT

	/**
	 * Functions hooked in to storefront_after_footer action
	 *
	 * @hooked storefront_footer_content_layout_start - 5 ( deprecated )
	 * @hooked storefront_handheld_footer_bar_wrap_start - 5 ( deprecated )
	 * @hooked storefront_handheld_footer_bar_start - 10 ( deprecated )
	 * @hooked storefront_handheld_footer_bar_search - 20 ( deprecated )
	 * @hooked storefront_handheld_footer_bar_cart - 30 ( deprecated )
	 * @hooked storefront_handheld_footer_bar_account - 40 ( deprecated )
	 * @hooked storefront_handheld_footer_bar_end - 50 ( deprecated )
	 * @hooked storefront_handheld_footer_bar_wrap_end - 50 ( deprecated )
	 */
	do_action( 'storefront_after_footer' );
	?>

</div><?php wp_footer(); // THIS IS ALSO CRUCIAL FOR PLUGINS AND SCRIPTS ?>

</body> 
</html>