:root {
    /* Base Colors - Light Theme Default */
    --color-primary: #1a1a1a; /* Adjusted from #000 to a softer dark charcoal */
    --color-secondary: #333;
    --color-accent: #b8860b; /* Dark Goldenrod - harmonizes with gold theme */
    --color-bg: #ffffff;
    --color-surface: #f9f9f9;
    --color-text: #2c3e50; /* More modern dark blue-grey for better readability */
    --color-text-muted: #666666;
    --color-border: #dddddd;
    --gradient-multiple: linear-gradient(135deg, #dbc3a1 0%, #fabc49 50%, #d69e2e 100%);
    --gradient-light: linear-gradient(to left top, #dba12f 0%, #fabc49 29%, #99b28b 75%, #0fd 100%);
    
    /* Fonts */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Layout */
    --container-width: 1240px;
    --header-height: 80px;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 80px;
    
    /* Components */
    --border-radius: 4px;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-glow: 0 4px 15px rgba(250, 188, 73, 0.3);
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    --color-primary: #f0f0f0; /* Softer white for dark mode */
    --color-bg: #121212;
    --color-surface: #1e1e1e;
    --color-text: #e0e0e0;
    --color-text-muted: #a0a0a0;
    --color-border: #333333;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.5);
    --shadow-glow: 0 4px 20px rgba(250, 188, 73, 0.2);
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--color-text); /* Use softer text color instead of primary */
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    font-weight: 600; /* Lighter weight for modern feel */
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    text-align: center;
    color: var(--color-primary); /* Keep titles prominent but using new softer primary */
    letter-spacing: -0.5px; /* Tighter spacing for modern look */
}

/* Dark Mode Typography Adjustments */
[data-theme="dark"] .section-title {
    text-shadow: 0 0 20px rgba(255,255,255,0.05); /* Subtle glow */
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 35px; /* Wider padding */
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-multiple);
    color: #3e2723; /* Dark brown text for contrast on gold */
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 188, 73, 0.5);
    filter: brightness(1.05);
}

/* Add shimmer effect */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
}


.icon-btn, .icon-btn-sm {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover, .icon-btn-sm:hover {
    color: var(--color-accent);
}

/* Header */
.site-header {
    background-color: var(--color-bg);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background-color: var(--color-primary);
    color: var(--color-bg);
    font-size: 0.8rem;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-actions a, .top-actions button {
    color: var(--color-bg);
    font-weight: 500;
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--gradient-multiple); /* Consistent gold gradient */
    color: #3e2723 !important;      /* Dark brown text */
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600 !important;
    transition: var(--transition);
    line-height: 1;
    box-shadow: 0 2px 10px rgba(250, 188, 73, 0.2);
}

.btn-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(250, 188, 73, 0.4);
    filter: brightness(1.05);
}

.main-header {
    padding: 15px 0;
}

.main-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 26px;
}
/* Invert logo in dark mode if needed, or swap src via JS */
[data-theme="dark"] .logo-img {
    filter: brightness(0) invert(1);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-item:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.nav-item:hover:after {
    width: 100%;
}

.header-icons {
    display: flex;
    gap: 15px;
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--color-accent);
    color: white;
    font-size: 0.7rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    transition: all 0.3s ease-in-out;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 480px; /* Reduced height to show products below */
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Overlay for better text readability */
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.slide-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.slide-subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.slide-desc {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Categories Grid */
.categories-section {
    padding: var(--spacing-xl) 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    display: block;
}

.category-card.large {
    grid-row: span 2;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
}

.category-info h3 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

/* Featured Products */
.featured-products {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-surface);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.view-all-link {
    font-weight: 600;
    border-bottom: 1px solid currentColor;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--color-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.add-to-cart-btn {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: var(--gradient-multiple); /* Gold gradient */
    color: #3e2723; /* Dark text */
    border: none;
    padding: 12px; /* Slightly taller */
    cursor: pointer;
    transition: bottom 0.3s ease;
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
}

.product-card:hover .add-to-cart-btn {
    bottom: 0;
}

@media (max-width: 768px) {
    .add-to-cart-btn {
        bottom: 0;
    }
}

.product-details {
    padding: 15px;
    text-align: center;
}

.product-title {
    font-size: 1rem;
    font-family: var(--font-main);
    margin-bottom: 5px;
}

.product-price {
    font-weight: 600;
    color: var(--color-accent);
}

/* Customization CTA */
.customization-cta {
    padding: var(--spacing-xl) 0;
}

.cta-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}

.cta-image {
    flex: 1;
}

.cta-image img {
    border-radius: var(--border-radius);
}

.cta-content-box {
    flex: 1;
    text-align: center;
}


/* Delivery Process */
.delivery-process {
    padding: var(--spacing-xl) 0;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.process-step-item {
    /* Clean, minimalist style without heavy borders/backgrounds */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.process-step-item img {
    width: 100%;
    height: 240px; /* Slightly taller for elegance */
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step-item:hover img {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.process-step-item-content {
    padding: 20px 10px 0; /* Top padding only */
    flex: 1;
    display: flex;
    flex-direction: column;
}

.process-step-item h4 {
    color: var(--color-text); /* Match product titles for consistency */
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.process-step-item p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Stylists */
.stylists-section {
    padding: var(--spacing-xl) 0;
}

.stylists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stylist-card {
    display: flex;
    flex-direction: column;
    background-color: var(--color-surface);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stylist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stylist-img {
    height: 250px;
}

.stylist-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stylist-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.stylist-logo {
    height: 40px;
    margin-bottom: 15px;
    object-fit: contain;
    object-position: left;
}

.stylist-card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.stylist-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Join Us Card */
.join-us-card {
    background-color: var(--color-surface);
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 2px dashed var(--color-border);
    min-height: 400px; /* Match height of other cards roughly */
}

.join-content {
    padding: 40px;
}

.join-us-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-text-muted);
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--color-text);
    padding: 10px 25px;
    border-radius: 30px;
    color: var(--color-text);
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--color-text);
    color: var(--color-bg);
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #888;
    padding: 60px 0 20px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    height: 30px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    font-weight: bold;
}

.footer-links-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links-col ul {
    list-style: none;
}

.footer-links-col li {
    margin-bottom: 10px;
}

.footer-links-col a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.85rem;
}

/* Imagine Section */
.section-imagine {
    /* Uses default section padding and background */
        text-align: center;
        padding: var(--spacing-lg) 0;
}

.imagine-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.imagine-text {
    flex: 1;
}

/* Override default centered alignment for Imagine section */
.imagine-text .section-title,
.imagine-text .section-subtitle {
    margin-left: 0;
}

.imagine-image {
    flex: 1;
}

.imagine-image img {
    border-radius: var(--border-radius);
    width: 100%;
}

/* About Section */
.section-about {
    /* Uses default section padding and background */
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Utilities */

/* Responsive */
@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .category-card.large {
        grid-row: span 1;
        aspect-ratio: 16/9;
    }
    
    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stylists-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none; /* Hide desktop nav */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-bg);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .cta-layout {
        flex-direction: column;
    }
    
    .slide-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: var(--spacing-md);
    }

    /* Mobile Scroll Wrapper & Horizontal Scroll */
    .mobile-scroll-wrapper {
        position: relative;
        margin-left: -20px;
        margin-right: -20px;
    }

    .mobile-scroll-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        width: 60px;
        background: linear-gradient(to right, transparent, var(--color-bg));
        pointer-events: none;
        z-index: 2;
    }

    .mobile-scroll-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 30px;
        background: linear-gradient(to left, transparent, var(--color-bg));
        pointer-events: none;
        z-index: 2;
    }

    .process-steps-grid,
    .stylists-grid {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding: 0 60px 20px 20px; /* Left/Right padding matches container, Bottom for scrollbar/shadow */
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .process-steps-grid::-webkit-scrollbar,
    .stylists-grid::-webkit-scrollbar {
        display: none;
    }

    .process-step-item,
    .stylist-card {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: center;
        margin-bottom: 0;
    }

    .stylist-card {
        min-height: unset; /* Override desktop min-height */
    }

    .imagine-content {
        flex-direction: column;
        text-align: center;
    }

    .imagine-text .section-subtitle {
        text-align: center;
        margin: 0 auto var(--spacing-md);
    }
}

/* ============================================
   SHOPIFY INTEGRATION STYLES
   ============================================ */

/* Products Loading State */
.products-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-md);
    color: var(--color-text-muted);
}

.products-loading p {
    margin-top: var(--spacing-sm);
    font-size: 0.95rem;
}

/* Loading Spinner */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Products Error State */
.products-error {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    color: var(--color-text-muted);
}

.products-error p {
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
}

.products-error .btn-outline {
    font-size: 0.85rem;
    padding: 8px 20px;
}

/* Cart Count Animation */
.cart-count.cart-updated {
    animation: cartBounce 0.3s ease;
}

@keyframes cartBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

/* --- Footer Upgrade Variables --- */
:root {
    --footer-bg-main: #050510;
    --footer-text-main: #ffffff;
    --footer-text-secondary: #e0e0ff;
    --footer-text-muted: #9ca3af;
    --footer-primary: #e91e63;
    --footer-secondary: #9c27b0;
    --footer-gradient-text: linear-gradient(to right, #FFD700, #FFA500, #FFFFFF);
    --footer-glass-border: rgba(255, 255, 255, 0.08);
    --footer-glass-bg: rgba(255, 255, 255, 0.03);
    --footer-gradient-main: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
}

/* --- Footer Styles --- */
footer {
    border-top: 1px solid var(--footer-glass-border);
    padding: 120px 0 60px;
    background: #020205;
    margin-top: 120px;
    position: relative;
    color: var(--footer-text-main);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--footer-secondary), transparent);
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-slogan {
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    background: var(--footer-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.1;
    transform: rotate(-2deg);
    display: inline-block;
}

.footer-brand p {
    color: var(--footer-text-muted);
    font-size: 1rem;
    max-width: 300px;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col h4 {
    margin-bottom: 24px;
    font-size: 1.2rem;
    color: white;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    padding-left: 0;
}

.footer-col li {
    margin-bottom: 16px;
}

.footer-col a {
    color: var(--footer-text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
}

.footer-col a:hover {
    color: var(--footer-primary);
    text-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--footer-glass-border);
    transition: all 0.3s ease;
    color: var(--footer-text-secondary);
    font-size: 1.1rem;
}

.social-icons a:hover {
    background: var(--footer-gradient-main);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
    border-color: transparent;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--footer-glass-border);
    color: var(--footer-text-muted);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1200px) {
    /* Assuming .container handles padding, but if not: */
    /* .container { padding: 0 30px; } */
}

@media (max-width: 768px) {
    .footer-content { 
        grid-template-columns: 1fr; 
        gap: 60px;
    }
    .footer-links { flex-direction: column; gap: 40px; justify-content: flex-start; }
}
