/* CSS Variables for a Premium Design */
:root {
    --primary-color: #722F37;
    /* Wine/Burgundy */
    --primary-light: #8E3A44;
    --accent-color: #D4AF37;
    /* Gold */
    --text-color: #1A1A1A;
    --text-muted: #555555;
    --bg-color: #FDFDFD;
    --bg-alt: #F8F5F2;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 15px 45px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --header-height: 80px;
}

/* Base Reset - Using specific elements instead of * */
html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

.site-body,
.site-body ::before,
.site-body ::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

.site-body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--bg-alt);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-color);
    letter-spacing: 2px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Ad Disclaimer Top */
.ad-disclaimer-top {
    background: #f1f1f1;
    color: #666;
    font-size: 13px;
    text-align: center;
    padding: 10px 20px;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid #ddd;
}

.ad-text {
    font-weight: 500;
}

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding {
    padding: 100px 0;
}

.bg-alt {
    background-color: var(--bg-alt);
}

/* Header & Nav */
.main-header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

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

.nav-link:hover {
    color: var(--primary-color);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(114, 47, 55, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(114, 47, 55, 0.4);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Hamburger */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    transition: var(--transition);
    visibility: hidden;
}

.mobile-nav-overlay.active {
    right: 0;
    visibility: visible;
}

.mobile-nav-content {
    position: absolute;
    right: 0;
    top: 0;
    width: 75%;
    height: 100%;
    background: var(--white);
    padding: 40px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.hamburger-close {
    align-self: flex-end;
    font-size: 3rem;
    background: none;
    border: none;
    line-height: 1;
    cursor: pointer;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.mobile-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 700;
}

.mobile-nav-list {
    list-style: none;
    margin-bottom: 50px;
}

.mobile-nav-item {
    margin-bottom: 25px;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
}

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

/* Hero Section */
.hero-section {
    padding: 60px 0 100px;
    background: radial-gradient(circle at top right, #fff5f5, #ffffff);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-color);
}

.text-accent {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    display: block;
}

/* Common Section Elements */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.brand-text {
    color: var(--primary-color);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.img-responsive {
    width: 100%;
    height: auto;
    display: block;
}

.rounded {
    border-radius: 15px;
}

.shadow {
    box-shadow: var(--shadow);
}

/* Feature Checklist */
.feature-checklist {
    list-style: none;
    margin-top: 30px;
}

.feature-checklist li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.icon-check {
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    display: inline-block;
    margin-right: 15px;
    position: relative;
}

.icon-check::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 4px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Why Us Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    background-color: #f5f5f5;
    /* Subtle background for product shots */
}

.gallery-item img {
    border-radius: 15px;
    height: 400px;
    width: 100%;
    object-fit: contain;
    /* Don't crop the bag */
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.large img {
    height: 600px;
}

/* Testimonials */
.rating-badge {
    background: var(--accent-color);
    color: var(--white);
    display: inline-block;
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 10px;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.testimonial-card {
    flex: 0 0 450px;
    background: var(--bg-alt);
    padding: 40px;
    border-radius: 20px;
    font-style: italic;
}

.testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    font-style: normal;
    color: var(--primary-color);
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-toggle {
    font-size: 1.5rem;
    transition: var(--transition);
}

/* Footer */
.main-footer {
    background: #111;
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 15px;
    color: #bbb;
}

.footer-list a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
}

.footer-list a:hover {
    color: var(--accent-color);
}

.footer-disclaimer-box {
    border-top: 1px solid #333;
    padding: 40px 0;
    text-align: center;
}

.ad-footer-note {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.consumer-protection {
    font-size: 12px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 30px;
    color: #555;
    font-size: 0.9rem;
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    width: 100%;
    max-width: 700px;
    padding: 50px;
    border-radius: 20px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.modal-body p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    z-index: 4000;
    padding: 25px 0;
    transition: bottom 0.5s ease-in-out;
}

.cookie-banner.active {
    bottom: 0;
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {

    .desktop-nav,
    .header-cta-wrapper {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .hero-container,
    .section-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .cookie-container {
        flex-direction: column;
        text-align: center;
    }
}