/* ==============================
    CLASS-BASED RESET & BASE
============================== */

.full-reset {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.application-root {
    width: 100%;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

.body-luxury {
    font-family: 'Inter', sans-serif;
    background-color: #fffdf5;
    /* Pearl Cream */
    color: #1a2e26;
    /* Deep Emerald Black */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

.locked-scroll {
    overflow: hidden !important;
}

.serif-display {
    font-family: 'Playfair Display', serif;
    color: #064e3b;
    /* Forest Emerald */
}

.link-reset {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.image-responsive {
    max-width: 100%;
    display: block;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.align-center {
    text-align: center;
}

/* ==============================
    ADVERTISEMENT TOP BAR
============================== */
.promo-bar {
    background-color: #064e3b;
    /* Forest Emerald */
    color: #fde68a;
    /* Silk Gold */
    text-align: center;
    padding: 8px 15px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.promo-text {
    margin: 0;
    padding: 0;
}

/* ==============================
    NAVIGATION
============================== */
.nav-luxury {
    background-color: #ffffff;
    border-bottom: 3px solid #064e3b;
    /* Forest Emerald accent */
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.08);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand-logo {
    font-weight: 800;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #064e3b;
    font-family: 'Playfair Display', serif;
}

.menu-desktop {
    display: flex;
    gap: 35px;
}

.menu-item {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a2e26;
    transition: color 0.3s ease;
    position: relative;
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fde68a;
    /* Silk Gold underline */
    transition: width 0.3s ease;
}

.menu-item:hover {
    color: #064e3b;
}

.menu-item:hover::after {
    width: 100%;
}

.action-btn-gold {
    background-color: #064e3b;
    color: #fde68a;
    /* Silk Gold text on Emerald */
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: 1px solid #064e3b;
}

.action-btn-gold:hover {
    background-color: #fde68a;
    color: #064e3b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 230, 138, 0.4);
}

.btn-full-width {
    width: 100%;
    margin-top: 15px;
    box-sizing: border-box;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.toggle-bar {
    width: 28px;
    height: 2px;
    background-color: #064e3b;
    transition: 0.3s;
}

/* Mobile Slide-out */
.side-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;
    background-color: #064e3b;
    /* Emerald Background */
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    padding: 80px 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
}

.drawer-active {
    transform: translateX(0);
}

.drawer-close {
    font-size: 2.5rem;
    position: absolute;
    top: 25px;
    right: 30px;
    color: #fde68a;
    cursor: pointer;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.drawer-link-item {
    font-size: 1.4rem;
    color: #fde68a;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.drawer-link-item:hover {
    transform: translateX(10px);
    color: #ffffff;
}

/* ==============================
    BANNER
============================== */
.promo-strip {
    background-color: #064e3b;
    /* Forest Emerald */
    color: #ffffff;
    padding: 12px 0;
    font-size: 0.9rem;
}

.strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    text-align: center;
}

.lux-badge {
    background-color: #fde68a;
    /* Silk Gold */
    color: #064e3b;
    /* Emerald text */
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(253, 230, 138, 0.3);
}

.strip-link {
    color: #fde68a;
    text-decoration: underline;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.strip-link:hover {
    opacity: 0.8;
}

/* ==============================
    ARTICLE / PRODUCT CARD
============================== */
.card-classic {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(6, 78, 59, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f3efd9;
}

.card-classic:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(6, 78, 59, 0.1);
}

.image-container {
    position: relative;
    overflow: hidden;
}

.overlay-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #064e3b;
    color: #fde68a;
    padding: 6px 15px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 10;
}

.card-classic:hover .image-responsive {
    transform: scale(1.05);
}

.content-body {
    padding: 40px;
}

.title-large {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.text-prose {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.specs-container {
    margin: 40px 0;
    padding: 25px;
    background-color: #f9f7ea;
    border-left: 4px solid #064e3b;
}

.specs-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-row {
    border-bottom: 1px solid #e2e8f0;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    padding: 12px 0;
    font-weight: 700;
    color: #4a5568;
    width: 40%;
}

.spec-value {
    padding: 12px 0;
    color: #2d3748;
}

.feature-box {
    background-color: #064e3b;
    padding: 40px;
    border-radius: 4px;
    color: #ffffff;
    margin-top: 40px;
    text-align: center;
}

.feature-title {
    color: #fde68a;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.feature-p {
    color: #f1f5f9;
    margin-bottom: 25px;
}

/* ==============================
    SIDEBAR & WIDGETS
============================== */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 80px;
    align-items: start;
    /* Essential for position: sticky in grid */
}

.secondary-column {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.widget-lux {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(6, 78, 59, 0.05);
    border: 1px solid #f3efd9;
    position: relative;
}

.widget-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.badge-lux {
    background-color: #064e3b;
    color: #fde68a;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-item {
    margin-bottom: 12px;
    font-weight: 600;
    color: #064e3b;
}

.newsletter-box {
    background-color: #064e3b;
    color: #ffffff;
}

.newsletter-p {
    font-size: 0.9rem;
    color: #fde68a;
    margin-bottom: 20px;
}

.input-field {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

/* ==============================
    SECTIONS
============================== */
.section-spacing {
    padding: 60px 0;
}

.section-head {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
}

.testimonial-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 25px;
    border-left: 5px solid #fde68a;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.testimonial-p {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.testimonial-name {
    font-weight: 700;
    color: #064e3b;
}

.faq-box {
    margin-bottom: 30px;
}

.faq-q {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #064e3b;
}

.faq-a {
    color: #1a2e26;
}

/* ==============================
    FOOTER
============================== */
.footer-lux {
    background-color: #ffffff;
    padding: 80px 0 40px;
    border-top: 1px solid #f3efd9;
}

.footer-flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #f1f5f9;
}

.footer-copy {
    font-size: 0.9rem;
    color: #64748b;
}

.footer-links-group {
    display: flex;
    gap: 25px;
}

.footer-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: #064e3b;
}

.disclosure-strip {
    margin-top: 30px;
    padding: 20px;
    background-color: #fffdf5;
    border: 1px solid #f3efd9;
    font-size: 0.8rem;
    color: #64748b;
}

/* ==============================
    MODALS
============================== */
.modal-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 78, 59, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    padding: 20px;
}

.modal-inner {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.modal-exit {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: #064e3b;
}

/* ==============================
    COOKIE BANNER
============================== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #064e3b;
    color: #ffffff;
    padding: 20px 30px;
    border-radius: 12px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 20px;
    width: calc(100% - 40px);
    max-width: 600px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(253, 230, 138, 0.2);
}

.cookie-txt {
    font-size: 0.9rem;
    flex: 1;
}

.cookie-btn-group {
    display: flex;
    gap: 15px;
}

.cookie-btn-lux {
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-accept-lux {
    background-color: #fde68a;
    color: #064e3b;
    border: none;
}

/* ==============================
    PAGE LOADER
============================== */
.lux-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.loader-txt {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #064e3b;
    animation: gold-pulse 2s infinite;
}

@keyframes gold-pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
        color: #fde68a;
    }

    100% {
        opacity: 0.6;
    }
}

.spinner-lux {
    width: 50px;
    height: 50px;
    border: 2px solid #f3efd9;
    border-top: 2px solid #064e3b;
    border-radius: 50%;
    animation: spin-lux 1s linear infinite;
    margin-top: 20px;
}

@keyframes spin-lux {
    to {
        transform: rotate(360deg);
    }
}

/* ==============================
    SPACING UTILS (Class-based)
============================== */
.mb-20 {
    margin-bottom: 20px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-30 {
    margin-top: 30px;
}

/* ==============================
    MEDIA QUERIES
============================== */
@media (max-width: 992px) {
    .grid-container {
        grid-template-columns: 1fr;
    }

    .secondary-column {
        position: static;
    }
}

/* ==============================
    RESPONSIVE
============================== */
@media (max-width: 1024px) {
    .grid-container {
        grid-template-columns: 1fr;
    }

    .secondary-column {
        position: static;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 0 15px;
    }

    .menu-desktop {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .title-large {
        font-size: 2rem;
    }

    .content-body {
        padding: 30px 20px;
    }

    .section-spacing {
        padding: 40px 15px;
    }

    .footer-flex-row {
        flex-direction: column;
        gap: 30px;
    }

    .drawer-active {
        transform: translateX(0);
    }

    .cookie-consent {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
        bottom: 10px;
    }

    .cookie-btn-group {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn-lux {
        flex: 1;
        padding: 10px;
    }

    .nav-inner {
        height: 70px;
        gap: 10px;
    }

    .brand-logo {
        font-size: 1.4rem;
    }

    .nav-luxury .action-btn-gold {
        padding: 6px 14px;
        font-size: 0.7rem;
        border-radius: 6px;
        white-space: nowrap;
    }
}

/* Smooth scroll behavior */
.application-root {
    scroll-behavior: smooth;
}