/* Basic Reset & Body Styles */
:root {
    --primary-color: #5e4f4d; /* Muted Brown/Charcoal */
    --accent-color: #a39589; /* Dusty Rose/Taupe */
    --light-bg: #f8f5f1; /* Off-white/Cream */
    --dark-text: #333;
    --light-text: #fff;
    --vintage-red: #8b0000; /* Deep Burgundy */
    --vintage-green: #2f4f4f; /* Dark Slate Grey / Forest Green */

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-spacing {
    padding: 80px 0;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5em;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

h2 {
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
}

h3 {
    font-size: 1.8em;
}

.cta-button {
    display: inline-block;
    background-color: var(--vintage-red);
    color: var(--light-text);
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid var(--vintage-red);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--vintage-red);
    transform: translateY(-2px);
}

.secondary-cta {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid var(--primary-color);
}

.secondary-cta:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

/* Header Styling */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0); /* Initial transparent */
    transition: background-color 0.3s ease;
    padding: 15px 0;
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95); /* Semi-transparent white on scroll */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.8em;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}


.utility-icons {
    display: flex;
    align-items: center;
}

.utility-icons .icon-btn {
    font-size: 1.2em;
    margin-left: 20px;
    color: #ffffff; /* Ensure visibility */
    position: relative;
}

.utility-icons .icon-btn:hover {
    color: var(--accent-color);
}

.cart-icon .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--vintage-red);
    color: var(--light-text);
    font-size: 0.7em;
    border-radius: 50%;
    padding: 3px 6px;
    line-height: 1;
}

/* Hero Banner */
.hero-banner {
    background-image: url('https://via.placeholder.com/1600x800/d4c7b8/5e4f4d?text=Elegant+Vintage+Handbag'); /* Placeholder for your image */
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    text-align: center;
    padding: 200px 20px; /* Adjust padding to make content visible */
    height: 80vh; /* Takes up 80% of viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* Needed for overlay effect */
    z-index: 1; /* Ensure content is above header initially */
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* Subtle dark overlay */
    z-index: -1;
}

.hero-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Shop by Style */
.shop-by-style {
    background-color: var(--light-bg);
}

.style-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.style-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.style-card:hover {
    transform: translateY(-5px);
}

.style-card img {
    width: 100%;
    height: 300px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    filter: brightness(0.8); /* Slightly dim image for text */
    transition: filter 0.3s ease;
}

.style-card:hover img {
    filter: brightness(0.6);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--light-text);
    text-align: center;
    padding: 20px;
}

.card-overlay h3 {
    color: var(--light-text);
    font-size: 1.7em;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.shop-now {
    display: inline-block;
    border: 1px solid var(--light-text);
    padding: 8px 20px;
    border-radius: 3px;
    font-size: 0.9em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.style-card:hover .shop-now {
    opacity: 1;
    transform: translateY(0);
}

/* Product Grids (New Arrivals) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background-color: var(--light-text);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
    padding-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: var(--primary-color);
    padding: 0 15px;
}

.product-card .price {
    font-size: 1em;
    font-weight: 600;
    color: var(--vintage-red);
    margin-bottom: 20px;
}

.add-to-cart-btn {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95em;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: var(--accent-color);
}

.view-all-btn-container {
    text-align: center;
}


/* Craftsmanship Promise */
.craftsmanship-promise {
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
}

.craftsmanship-promise h2 {
    color: var(--light-text);
}

.craftsmanship-promise h2::after {
    background-color: var(--accent-color);
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.promise-item {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.promise-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.promise-item i {
    font-size: 3em;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.promise-item h3 {
    color: var(--light-text);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.promise-item p {
    font-weight: 300;
    opacity: 0.9;
}


/* Footer */
footer {
    background-color: var(--dark-text);
    color: var(--light-text);
    padding-top: 60px;
    font-size: 0.9em;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-column ul li a:hover {
    color: var(--light-text);
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background-color: var(--accent-color);
    color: var(--dark-text);
    border: none;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--vintage-red);
    color: var(--light-text);
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-icons .social-btn {
    color: var(--light-text);
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.social-icons .social-btn:hover {
    color: var(--accent-color);
}

.footer-bottom {
    background-color: rgba(0,0,0,0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.payment-methods i {
    font-size: 1.8em;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 10px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .main-nav {
        display: none; /* Hide main nav on smaller screens, can be toggled with JS */
    }

    .header-content {
        justify-content: center; /* Center logo and utility icons if no nav */
    }

    .logo {
        flex-grow: 1; /* Allow logo to take more space */
        text-align: center;
    }

    .utility-icons {
        position: absolute; /* Position utility icons */
        right: 20px;
    }

    h1 {
        font-size: 2.8em;
    }

    h2 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1.1em;
    }

    .style-grid, .product-grid, .promise-grid, .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-spacing {
        padding: 50px 0;
    }

    .hero-banner {
        padding: 120px 20px;
        height: 60vh;
    }

    .main-nav {
        /* You'd typically use a hamburger menu here */
        display: none;
    }

    .header-content {
        flex-direction: column;
        gap: 10px;
    }

    .logo {
        order: -1; /* Move logo to top */
        width: 100%;
        text-align: center;
    }

    .utility-icons {
        position: static; /* Remove absolute positioning */
        margin-top: 10px;
    }

    .style-grid, .product-grid, .promise-grid, .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input, .newsletter-form button {
        border-radius: 5px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2em;
    }
    h2 {
        font-size: 1.8em;
    }
    .main-header {
        padding: 10px 0;
    }
    .logo a {
        font-size: 1.5em;
    }
    .utility-icons .icon-btn {
        margin-left: 15px;
    }
}

/* Basic Reset & Body Styles (from previous, with minor font update) */
:root {
    --primary-color: #5e4f4d; /* Muted Brown/Charcoal */
    --accent-color: #a39589; /* Dusty Rose/Taupe */
    --light-bg: #f8f5f1; /* Off-white/Cream */
    --dark-text: #333;
    --light-text: #fff;
    --vintage-red: #8b0000; /* Deep Burgundy */
    --vintage-green: #2f4f4f; /* Dark Slate Grey / Forest Green */

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-script: 'Cormorant Garamond', serif; /* For subtle vintage script */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

.container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
}

.section-spacing {
    padding: 27px 0;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: #fffefe;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.8em; /* Slightly larger */
    font-weight: 700;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3); /* Stronger shadow */
}

h2 {
    font-size: 1.8em; /* Slightly larger */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    color: var(--vintage-red); /* More prominent heading color */
}

h2::after {
    content: '';
    display: block;
    width: 80px; /* Wider line */
    height: 3px; /* Thicker line */
    background-color: var(--accent-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

h3 {
    font-size: 2em;
}

.sub-heading {
    text-align: center;
    font-size: 1.2em;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-family: var(--font-script); /* Use script for sub-heading */
    font-style: italic;
}

.cta-button {
    display: inline-block;
    background-color: var(--vintage-red);
    color: var(--light-text);
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease; /* All properties for smoother hover */
    border: 2px solid var(--vintage-red);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background-color: var(--light-text);
    color: var(--vintage-red);
    transform: translateY(-3px) scale(1.02); /* Slight lift and scale */
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.secondary-cta {
    background-color: transparent;
    color: #ffffff; /* Still light text on hero */
    border: 2px solid var(--light-text); /* White border on hero */
}

.secondary-cta:hover {
    background-color: var(--light-text);
    color: var(--vintage-red);
    border-color: var(--vintage-red);
}

/* Header Styling (with mega menu and subtle border) */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0);
    transition: background-color 0.3s ease, border-bottom-color 0.3s ease;
    padding: 15px 0;
    border-bottom: 1px solid transparent; /* Initial transparent border */
}

.main-header.scrolled {
    background-color: rgba(0, 0, 0, 0.98); /* Near opaque white on scroll */
    box-shadow: 0 3px 15px rgba(0,0,0,0.15);
    border-bottom-color: var(--accent-color); /* Elegant border on scroll */
}

.logo a {
    font-family: var(--font-heading);
    font-size: 2em; /* Larger logo */
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}




/* Utility Icons */
.utility-icons .icon-btn {
    font-size: 1.3em;
    margin-left: 25px;
    color: #ffffff;
    position: relative;
    transition: color 0.3s ease;
}

.utility-icons .icon-btn:hover {
    color: var(--vintage-red);
}

.cart-icon .cart-count {
    background-color: var(--vintage-red);
    font-size: 0.8em;
    padding: 2px 7px;
    border-radius: 50%;
    top: -5px;
    right: -10px;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(248, 245, 241, 0.98); /* Semi-transparent cream */
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    width: 80%;
    max-width: 700px;
    text-align: center;
}

.close-search {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3em;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease;
}

.close-search:hover {
    transform: rotate(90deg);
}

.search-input {
    width: 100%;
    padding: 20px;
    font-size: 1.8em;
    border: none;
    border-bottom: 2px solid var(--accent-color);
    background: transparent;
    outline: none;
    color: var(--dark-text);
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 40px;
}

.search-input::placeholder {
    color: rgba(51, 51, 51, 0.5);
    font-style: italic;
}

.trending-searches h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.2em;
    color: var(--vintage-green);
    margin-bottom: 15px;
}

.trending-searches ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.trending-searches ul li a {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.trending-searches ul li a:hover {
    background-color: var(--vintage-red);
}


/* Hero Banner */
.hero-banner {
    position: relative;
    height: 90vh; /* Taller hero */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Hide overflow for video */
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.hero-banner::before {
    background-color: rgba(0, 0, 0, 0.4); /* Stronger overlay for video */
    z-index: -1;
}

.hero-content {
    z-index: 1;
    color: var(--light-text);
}

.hero-content p {
    font-size: 1.5em; /* Larger subtext */
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto 40px; /* More space below text */
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Animation for Hero Content */
.animate-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 0.8s ease-out forwards;
}

.animate-in.delay-1 {
    animation-delay: 0.3s;
}

.animate-in.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Shop by Style (Enhanced) */
.style-card {
    border-radius: 10px; /* Softer corners */
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.style-card:hover {
    transform: translateY(-8px); /* More pronounced lift */
}

.style-card img {
    filter: brightness(0.7); /* Stronger dim for text */
}

.style-card:hover img {
    filter: brightness(0.5); /* Even darker on hover */
    transform: scale(1.05); /* Subtle zoom effect */
}

.card-overlay h3 {
    font-size: 2em;
    color: var(--light-text);
    margin-bottom: 8px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.card-overlay .description {
    font-family: var(--font-script);
    font-style: italic;
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    opacity: 0; /* Hidden by default */
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.style-card:hover .description {
    opacity: 1;
    transform: translateY(0);
}

.shop-now {
    border: 2px solid var(--light-text); /* Thicker border */
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.style-card:hover .shop-now {
    background-color: var(--light-text);
    color: var(--vintage-red);
    transform: scale(1.05); /* Subtle pulse */
}


/* Product Grids (New Arrivals) - Using Swiper */
.product-carousel {
    width: 100%;
    padding-bottom: 50px; /* Space for pagination */
}

.product-card {
    background-color: var(--light-text);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* For quick view button */
    padding-bottom: 0; /* Adjust as info is inside product-info */
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-card img {
    border-radius: 10px 10px 0 0;
    margin-bottom: 0;
}

.product-info {
    padding: 15px;
    text-align: left;
}

.product-info h3 {
    font-size: 1em;
    margin-bottom: 8px;
    padding: 0; /* Remove padding from general h3 rule */
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.ratings {
    color: gold;
}

.ratings i {
    margin-right: -2px; /* Closer stars */
}

.colors {
    display: flex;
    gap: 5px;
}

.color-swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.color-swatch:hover {
    transform: scale(1.2);
    border-color: var(--primary-color);
}

.product-card .price {
    font-size: 1em;
    font-weight: 700;
    color: var(--vintage-red);
    margin-bottom: 15px;
    text-align: left;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px 20px;
    border-radius: 0 0 8px 8px; /* Bottom corners only */
    background-color: var(--vintage-green); /* Different button color */
    color: var(--light-text);
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.add-to-cart-btn:hover {
    background-color: var(--primary-color);
}

.quick-view-btn {
    position: absolute;
    bottom: 66px; /* Position above Add to Cart */
    left: 59%;
    transform: translateX(-50%);
    background-color: rgba(255,255,255,0.9);
    color: var(--dark-text);
    border: 1px solid var(--primary-color);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.85em;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: pointer;
    z-index: 5;
}

.product-card:hover .quick-view-btn {
    opacity: 1;
    visibility: visible;
}

/* Swiper Navigation & Pagination */
.swiper-button-next, .swiper-button-prev {
    color: var(--vintage-red) !important; /* Force color */
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 0px !important;
    height: 0px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: var(--accent-color);
    color: var(--light-text) !important;
}

.swiper-button-prev:after, .swiper-button-next:after {
    font-size: 1.2em !important;
}

.swiper-pagination-bullet {
    background-color: var(--accent-color) !important;
    opacity: 0.7 !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--vintage-red) !important;
    opacity: 1 !important;
}


/* Shop the Look Section */
.two-column-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}

.look-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.look-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.shop-the-look-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.shop-the-look-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.shop-the-look-btn:hover {
    background-color: var(--vintage-red);
    transform: translateY(-3px);
}

.shop-the-look-btn:hover i {
    transform: translateX(5px);
}

.look-content {
    flex: 1;
    padding: 20px;
}

.look-content h2 {
    text-align: left;
    margin-bottom: 20px;
}

.look-content h2::after {
    margin-left: 0;
}

.look-content p {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-family: var(--font-script);
    font-style: italic;
}

.look-content ul {
    margin-bottom: 30px;
}

.look-content ul li {
    font-size: 1.05em;
    margin-bottom: 10px;
    list-style: disc; /* Use a standard list style */
    margin-left: 20px;
    color: var(--dark-text);
}

.look-content ul li a {
    font-weight: 600;
}

/* Craftsmanship Promise (Layout adjusted) */
.craftsmanship-promise {
    background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--vintage-green) 100%);
    color: var(--light-text);
}

.craftsmanship-promise h2 {
    color: var(--light-text);
    margin-bottom: 20px; /* Reduce gap before sub-heading */
}

.craftsmanship-promise h2::after {
    background-color: var(--accent-color);
}

.promise-content {
    flex: 1;
    padding: 20px;
}

.promise-content .sub-heading {
    text-align: left; /* Align sub-heading with content */
    font-size: 1.3em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.promise-items-grid {
    grid-template-columns: 1fr 1fr; /* 2 columns for items */
    gap: 20px;
}

.promise-item {
    background-color: rgba(255, 255, 255, 0.15); /* Slightly more prominent background */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.promise-item:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: var(--light-text);
}

.promise-item i {
    font-size: 3.5em; /* Larger icons */
    color: var(--accent-color);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.promise-item:hover i {
    transform: scale(1.1);
}

.promise-item h3 {
    color: var(--light-text);
    font-size: 1.6em;
    margin-bottom: 10px;
}

.promise-item p {
    font-weight: 300;
    opacity: 0.95;
    font-size: 0.95em;
}

.promise-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.promise-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-bg);
}

.testimonial-carousel {
    padding-bottom: 60px; /* Space for pagination */
}

.testimonial-card {
    background-color: var(--light-text);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    margin: 0 15px; /* Spacing between slides in carousel */
}

.testimonial-card i.fa-quote-left {
    font-size: 2.5em;
    color: var(--accent-color);
    margin-bottom: 20px;
    opacity: 0.8;
}

.testimonial-card p {
    font-size: 1.2em;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.8;
    font-family: var(--font-script);
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 1em;
}

/* Instagram Feed */
.instagram-feed {
    background-color: var(--light-bg);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.instagram-item:hover {
    transform: scale(1.05);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.instagram-item:hover img {
    filter: brightness(0.6);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light-text);
    font-size: 2.5em;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .insta-overlay {
    opacity: 1;
}

/* Quick View Modal */
/* Base styles (already good, just slightly tweaked) */
.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    width: 90%;
    max-width: 900px;
    display: flex;
    flex-direction: row;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInScale 0.3s ease-out forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-button {
    color: var(--primary-color);
    font-size: 2.2em;
    position: absolute;
    top: 15px;
    right: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.close-button:hover {
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
}

.modal-product-image {
    flex: 1;
}

.modal-product-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-product-details {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-product-details h3 {
    font-size: 2em;
    margin-bottom: 10px;
    color: var(--vintage-red);
}

.modal-product-details .modal-price {
    font-size: 1.6em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.modal-product-details .modal-description {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.modal-product-details .colors {
    margin-bottom: 15px;
}

.modal-product-details .cta-button {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 1em;
    background-color: var(--primary-color);
    color: #000000;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-product-details .cta-button:hover {
    background-color: var(--dark-primary);
}

.modal-product-details .secondary-cta {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1em;
    padding: 10px;
    margin-top: 10px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.modal-product-details .secondary-cta:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

/* 🔁 Responsive Styles */
@media (max-width: 768px) {
    .modal-content {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .modal-body {
        flex-direction: column;
        gap: 20px;
    }

    .modal-product-details h3 {
        font-size: 1.6em;
        text-align: center;
    }

    .modal-product-details .modal-price,
    .modal-product-details .modal-description,
    .modal-product-details .cta-button,
    .modal-product-details .secondary-cta {
        text-align: center;
    }

    .close-button {
        font-size: 2em;
        top: 10px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 95%;
    }

    .modal-product-details h3 {
        font-size: 1.4em;
    }

    .modal-product-details .modal-price {
        font-size: 1.4em;
    }

    .modal-product-details .cta-button,
    .modal-product-details .secondary-cta {
        font-size: 0.95em;
    }
}


/* Footer (Existing, fine-tuned) */
footer {
    /*background-color: var(--primary-color); */
    color: var(--light-text);
    padding-top: 60px;
    font-size: 0.9em;
}

.footer-column h4 {
    color: var(--accent-color); /* Accent color for headings */
    font-size: 1.3em;
    margin-bottom: 15px;
}

.newsletter-form input {
    background-color: rgba(255, 255, 255, 0.2); /* More visible input */
}

.newsletter-form button {
    background-color: var(--vintage-red);
    color: var(--light-text);
}

.newsletter-form button:hover {
    background-color: var(--accent-color);
    color: var(--dark-text);
}

.social-icons .social-btn:hover {
    color: var(--vintage-red); /* Highlight social icons */
}

.footer-bottom {
    background-color: rgba(0,0,0,0.1); /* Lighter bottom bar */
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Adjustments (Expanded) */
@media (max-width: 992px) {
    .main-nav ul li {
        margin: 0 15px;
    }
    .main-nav ul li a {
        font-size: 0.9em;
    }

    .mega-menu-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    .mega-menu-image {
        order: -1;
    }

    h1 {
        font-size: 3em;
    }
    .hero-content p {
        font-size: 1.3em;
    }

    .shop-by-style .style-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-carousel .swiper-slide { /* Ensure proper sizing in carousel */
        width: 50% !important; /* Forces 2 columns on tablets */
    }

    .two-column-layout {
        flex-direction: column;
        gap: 30px;
    }
    .look-content h2, .promise-content h2 {
        text-align: center;
    }
    .look-content h2::after, .promise-content h2::after {
        margin: 15px auto 0;
    }
    .look-content p, .promise-content .sub-heading {
        text-align: center;
    }
    .look-content ul {
        text-align: center;
    }
    .look-content ul li {
        margin-left: auto;
        margin-right: auto;
        list-style: none; /* Remove bullet on mobile for centered list */
    }

    .modal-content {
        flex-direction: column;
        max-width: 600px;
        text-align: center;
    }
    .modal-product-details h3, .modal-product-details .modal-price, .modal-product-details .modal-description {
        text-align: center;
    }
    .modal-product-details .colors {
        justify-content: center;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 10px 0;
    }
    .header-content {
        flex-direction: column;
        gap: 10px;
    }
    .logo {
        width: 100%;
        text-align: center;
    }
    .main-nav {
        /* This is where you'd implement a hamburger menu toggle */
        display: none; /* Hidden by default, JS would toggle 'display: block' */
        width: 100%;
        text-align: center;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
    }
    .main-nav ul li {
        margin: 0;
    }
    .utility-icons {
        margin-top: -68px;
    }

    h1 {
        font-size: 2.5em;
    }
    .hero-content p {
        font-size: 1em;
    }
    .hero-ctas {
        flex-direction: column;
        gap: 10px;
    }
    .cta-button {
        width: 100%; /* Wider buttons for mobile */
        margin: 0 auto;
    }

    .shop-by-style .style-grid {
        grid-template-columns: 1fr;
    }
    .product-carousel .swiper-slide {
        width: 100% !important; /* Single column on mobile */
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-column ul {
        padding: 0;
    }
    .footer-column ul li {
        margin-left: 0;
    }
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    .newsletter-form input, .newsletter-form button {
        border-radius: 5px;
    }
    .social-icons {
        justify-content: center;
    }
    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
    }
}
.product-carousel.static-grid .product-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
