/**
 * Theme Name: storefront child
 * Template:   storefront
 * ...other header fields
 */
 /* Custom footer link list styles */
.sf-custom-footer-nav {
    width: 100%;
    text-align: center;
    margin-bottom: 1.5em;
    padding-top: 1em;
    border-top: 1px solid #e5e5e5;
}

.sf-custom-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.sf-custom-footer-links li a {
    font-size: 0.9em;
    text-decoration: none;
    color: #646c7d;
    font-weight: 500;
}

.sf-custom-footer-links li a:hover {
    color: #96588a;
}

/* Force-hide the native storefront credit link */
.site-info a[href*="woocommerce.com"] {
    display: none !important;
}
/* Scale down overall homepage canvas for better rendering performance */
.home .site {
    max-width: 1080px; /* Reduces container width from default 1200px+ */
    margin-left: auto;
    margin-right: auto;
}

/* Ensure the LCP hero element doesn't over-expand */
.home .storefront_homepage_header {
    max-height: 400px; /* Prevents huge vertical space consumption */
    padding-top: 4em !important;
    padding-bottom: 4em !important;
}

