/* ==========================================================================
   1. CORE VARIABLES, RESET & SYSTEM STYLING
   ========================================================================== */
:root {
    /* Palette: Champagne, Gold, Charcoal, Stone */
    --color-gold: #C5A880;
    --color-gold-dark: #A3845B;
    --color-charcoal: #121111;
    --color-stone: #FAF8F5;
    --color-cream: #F3EFE6;
    --color-muted: #85827D;
    --color-white: #ffffff;
    /* Borders & Transparencies */
    --border-refined: 1px solid rgba(197, 168, 128, 0.22);
    --border-refined-thick: 1px solid rgba(197, 168, 128, 0.45);
    --black-overlay: rgba(18, 17, 17, 0.55);
    /* Typography Settings */
    --font-serif: "Cormorant Garamond", serif;
    --font-sans: "Inter", sans-serif;
    /* Standard Transitions */
    --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-drawer: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    color: var(--color-charcoal);
    background-color: var(--color-stone);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

/* Responsive Container */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Generic Section Spacing */
.section-padding {
    padding: 8rem 0;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--color-stone);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold);
}

/* ==========================================================================
   2. ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
    background-color: var(--color-charcoal);
    color: var(--color-gold);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    padding: 0.75rem 1rem;
    text-align: center;
    font-weight: 300;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
}

/* ==========================================================================
   3. DESKTOP NAVIGATION BAR (HEADER)
   ========================================================================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(250, 248, 245, 0.94);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: var(--border-refined);
    transition: var(--transition-smooth);
}

.header-grid {
    display: flex;
    align-items: center;
    height: 5.5rem;
}

.header-left-side {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    flex: 1;
}

/* Left-aligned navigation links */
.desktop-menu {
    display: none;
    /* Controlled by media queries */
    list-style: none;
    gap: 2.25rem;
    height: 100%;
    align-items: center;
    flex: 1;
}

.menu-link-btn {
    font-size: 0.725rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-charcoal);
    background: none;
    border: none;
    cursor: pointer;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition-smooth);
}

.menu-link-btn:hover {
    color: var(--color-gold);
}

.chevron {
    width: 10px;
    height: 10px;
    stroke-width: 1.8;
    transition: transform 0.3s ease;
}

.nav-item-wrapper:hover .chevron {
    transform: rotate(180deg);
}

/* Brand Logo (Center) */
.brand-logo-center {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    font-weight: 300;
    letter-spacing: 0.28em;
    color: var(--color-charcoal);
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
}

.brand-logo-center:hover {
    color: var(--color-gold);
}

/* Right-aligned actions */
.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}

.action-icon {
    background: none;
    border: none;
    color: var(--color-charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    position: relative;
}

.action-icon:hover {
    color: var(--color-gold);
}

.cart-badge {
    position: absolute;
    top: -1px;
    right: -8px;
    background-color: #dbb76d;
    border-radius: 30px;
    min-width: 15px;
    min-height: 10px;
    display: flex;
    font-size: 11px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0px 0px 2px 0px #00000059;
}

.action-icon-svg {
    width: 1.35rem;
    height: 1.35rem;
    stroke-width: 1.4;
}

.btn-reservation-primary {
    display: none;
    /* Controlled by media queries */
    background-color: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 0.65rem 1.5rem;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-reservation-primary:hover {
    background-color: var(--color-gold);
    color: var(--color-charcoal);
}

.menu-toggle-mobile {
    background: none;
    border: none;
    color: var(--color-charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* ==========================================================================
   4. MENU COMPONENT A: FULL-WIDTH HOVER MEGA MENU (SERVICES)
   ========================================================================== */
.nav-item-wrapper {
    position: relative;
    /* Important for full-width mega menu positioning */
    height: 100%;
    display: flex;
    align-items: center;
}

.mega-menu-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    background-color: var(--color-white);
    border-bottom: var(--border-refined);
    box-shadow: 0 15px 45px rgba(18, 17, 17, 0.05);
    padding: 3rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition-smooth);
    z-index: 101;
}

.nav-item-wrapper:hover .mega-menu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 1.2fr;
    gap: 2.5rem;
}

.mega-col-heading {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--color-gold);
    text-transform: uppercase;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    padding-bottom: 0.65rem;
    margin-bottom: 1.25rem;
}

.mega-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mega-link-item a {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--color-charcoal);
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.mega-link-item a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

/* Mega menu visual display card */
.mega-showcase-card {
    background-color: var(--color-stone);
    border: var(--border-refined);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 200px;
}

.showcase-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    transition: var(--transition-smooth);
}

.mega-showcase-card:hover .showcase-bg-img {
    transform: scale(1.04);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 17, 17, 0.1) 0%, rgba(18, 17, 17, 0.8) 100%);
    z-index: 2;
}

.showcase-text-wrap {
    position: relative;
    z-index: 3;
    color: var(--color-white);
}

.showcase-tag {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    display: block;
}

.showcase-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 0.75rem;
}

.showcase-btn-text {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-white);
    padding-bottom: 0.2rem;
    cursor: pointer;
    display: inline-block;
    transition: var(--transition-smooth);
}

.showcase-btn-text:hover {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

/* ==========================================================================
   5. MENU COMPONENT B: CLASSIC NESTED DROPDOWN (APOTHECARY)
   ========================================================================== */
.classic-dropdown-panel {
    position: absolute;
    left: 0;
    top: 100%;
    width: 280px;
    background-color: var(--color-white);
    border: var(--border-refined);
    box-shadow: 0 15px 40px rgba(18, 17, 17, 0.05);
    padding: 1.25rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition-smooth);
    z-index: 101;
}

.nav-item-wrapper:hover .classic-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-links {
    list-style: none;
}

.dropdown-link-item a {
    display: block;
    padding: 0.65rem 2rem;
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--color-charcoal);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.dropdown-link-item a:hover {
    background-color: var(--color-stone);
    color: var(--color-gold);
    padding-left: 2.25rem;
}

.dropdown-line {
    border: none;
    border-top: 1px solid rgba(197, 168, 128, 0.12);
    margin: 0.5rem 0;
}

.dropdown-link-item.accented a {
    color: var(--color-gold-dark);
    font-weight: 500;
}

/* ==========================================================================
   6. MOBILE NAVIGATION DRAWER
   ========================================================================== */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(18, 17, 17, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 110;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 320px;
    max-width: 85vw;
    background-color: var(--color-stone);
    z-index: 120;
    border-right: var(--border-refined);
    box-shadow: 15px 0 35px rgba(18, 17, 17, 0.05);
    transform: translateX(-100%);
    transition: var(--transition-drawer);
    display: flex;
    flex-direction: column;
}

.mobile-nav-drawer.open {
    transform: translateX(0);
}

.drawer-header-bar {
    padding: 1.5rem 2rem;
    border-bottom: var(--border-refined);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-brand-logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    letter-spacing: 0.2em;
    font-weight: 300;
}

.drawer-close-btn {
    background: none;
    border: none;
    color: var(--color-charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.drawer-scroll-body {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

/* Accordions Inside Drawer */
.drawer-accordion {
    border-bottom: var(--border-refined);
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
}

.drawer-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-charcoal);
    padding: 0.5rem 0;
    cursor: pointer;
}

.drawer-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding-left: 0.5rem;
}

.drawer-accordion-content.active {
    max-height: 400px;
    margin-top: 0.75rem;
}

.drawer-sub-group {
    margin-bottom: 1rem;
}

.drawer-sub-heading {
    display: block;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.drawer-sub-link {
    display: block;
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--color-muted);
    padding: 0.35rem 0;
}

.drawer-sub-link:hover {
    color: var(--color-gold);
}

.drawer-single-link {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-charcoal);
    padding: 0.5rem 0;
    border-bottom: var(--border-refined);
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
}

.drawer-cta-wrapper {
    margin-top: 2rem;
}

.btn-drawer-reservation {
    width: 100%;
    background: none;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 0.85rem 1rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-drawer-reservation:hover {
    background-color: var(--color-gold);
    color: var(--color-charcoal);
}

/* ==========================================================================
   7. EDITORIAL HERO SPLASH BANNER
   ========================================================================== */
.hero-banner {
    position: relative;
    height: 82vh;
    background-color: var(--color-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.55;
    animation: panSlow 18s infinite alternate ease-in-out;
}

@keyframes panSlow {
    0% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1.07);
    }
}

.hero-dimmer {
    position: absolute;
    inset: 0;
    background-color: var(--black-overlay);
    z-index: 10;
}

.hero-inner {
    position: relative;
    z-index: 20;
    max-width: 50rem;
    text-align: center;
    color: var(--color-white);
    padding: 0 1.5rem;
}

.hero-kicker {
    color: var(--color-gold);
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.25rem;
    font-weight: 300;
}

.hero-heading {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-body-text {
    font-size: 0.85rem;
    color: var(--color-cream);
    font-weight: 200;
    letter-spacing: 0.05em;
    max-width: 36rem;
    margin: 0 auto 3rem auto;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

.btn-solid-gold {
    width: 100%;
    background-color: var(--color-gold);
    color: var(--color-charcoal);
    border: none;
    padding: 1rem 2.25rem;
    font-size: 0.725rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-solid-gold:hover {
    background-color: var(--color-gold-dark);
}

.btn-outline-white {
    width: 100%;
    background: none;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    padding: 1rem 2.25rem;
    font-size: 0.725rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-smooth);
}

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

/* ==========================================================================
   8. CORE BRAND METRICS BAR
   ========================================================================== */
.metrics-bar {
    background-color: var(--color-cream);
    padding: 3.5rem 0;
    border-bottom: var(--border-refined);
}

.metrics-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    text-align: center;
}

.metric-figure {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 300;
    color: var(--color-gold-dark);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-muted);
    font-weight: 500;
}

/* ==========================================================================
   9. SERVICE CATALOG & DESIGNED CARDS
   ========================================================================== */
.editorial-section-header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 5rem auto;
}

.editorial-subtitle {
    color: var(--color-gold-dark);
    font-size: 0.725rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.85rem;
    font-weight: 500;
}

.editorial-heading {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--color-charcoal);
    margin-bottom: 1.25rem;
    line-height: 1.25;
}

.editorial-narrative {
    font-size: 0.8rem;
    color: var(--color-muted);
    font-weight: 300;
    line-height: 1.7;
}

.services-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

/* Service Card Styles */
.card-sculpt {
    background-color: var(--color-white);
    border: var(--border-refined);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card-sculpt:hover {
    border-color: var(--border-refined-thick);
    transform: translateY(-4px);
}

.card-media-viewport {
    height: 18rem;
    overflow: hidden;
    position: relative;
}

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

.card-sculpt:hover .card-img-scale {
    transform: scale(1.04);
}

.card-tag-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background-color: var(--color-stone);
    color: var(--color-charcoal);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    font-weight: 500;
    border: var(--border-refined);
}

.card-body-frame {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-heading {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
    transition: var(--transition-smooth);
}

.card-sculpt:hover .card-heading {
    color: var(--color-gold);
}

.card-description {
    font-size: 0.75rem;
    color: var(--color-muted);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.btn-card-action {
    width: 100%;
    background: none;
    border: 1px solid var(--color-charcoal);
    color: var(--color-charcoal);
    padding: 0.85rem 0;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-card-action:hover {
    background-color: var(--color-charcoal);
    color: var(--color-white);
}

/* ==========================================================================
   10. LANDSCAPE ATMOSPHERIC CALLOUT
   ========================================================================== */
.brand-ethos-billboard {
    position: relative;
    background-color: var(--color-charcoal);
    padding: 10rem 1.5rem;
    overflow: hidden;
    text-align: center;
}

.billboard-underlay-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.22;
    z-index: 1;
}

.billboard-inner {
    position: relative;
    z-index: 10;
    max-width: 50rem;
    margin: 0 auto;
    color: var(--color-white);
}

.billboard-quote {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.billboard-rule {
    width: 5rem;
    height: 1px;
    background-color: var(--color-gold);
    margin: 2.5rem auto;
}

.billboard-paragraph {
    font-size: 0.8rem;
    color: var(--color-cream);
    font-weight: 200;
    line-height: 1.8;
    max-width: 38rem;
    margin: 0 auto;
}

/* ==========================================================================
   11. PRODUCTS APOTHECARY STORE
   ========================================================================== */
.product-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

/* Product Card Styles */
.product-card-sculpt {
    background-color: var(--color-white);
    border: var(--border-refined);
    transition: var(--transition-smooth);
    position: relative;
}

.product-card-sculpt:hover {
    box-shadow: 0 12px 35px rgba(18, 17, 17, 0.04);
}

.product-card-viewport {
    height: 22rem;
    overflow: hidden;
    background-color: var(--color-stone);
    position: relative;
}

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

.product-card-sculpt:hover .product-card-img {
    transform: scale(1.03);
}

.product-badge-corner {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    font-weight: 500;
    z-index: 5;
}

.badge-luxury-charcoal {
    background-color: var(--color-charcoal);
    color: var(--color-white);
}

.badge-luxury-gold {
    background-color: var(--color-gold);
    color: var(--color-charcoal);
}

.product-card-body {
    padding: 2rem;
    text-align: center;
}

.product-card-cat {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.product-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
    transition: var(--transition-smooth);
}

.product-card-sculpt:hover .product-card-title {
    color: var(--color-gold);
}

.product-card-pricing {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-gold-dark);
}

/* ==========================================================================
   12. PRESS CHRONICLES & TESTIMONIALS
   ========================================================================== */
.press-chronicles-wrapper {
    background-color: var(--color-cream);
    padding: 8rem 0;
    border-top: var(--border-refined);
    border-bottom: var(--border-refined);
    text-align: center;
}

.press-narrative-block {
    max-width: 48rem;
    margin: 0 auto;
}

.press-quote-text {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-style: italic;
    color: var(--color-charcoal);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    letter-spacing: 0.01em;
}

.press-author-signature {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-gold-dark);
    margin-bottom: 0.35rem;
}

.press-media-entity {
    font-size: 0.55rem;
    color: var(--color-muted);
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.15em;
}

.press-logos-row {
    margin-top: 6rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    opacity: 0.55;
    filter: grayscale(100%);
    transition: var(--transition-smooth);
}

.press-logos-row:hover {
    opacity: 0.85;
    filter: grayscale(0%);
}

.press-brand-text {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 300;
    letter-spacing: 0.25em;
}

/* ==========================================================================
   13. LUXURY NEWSLETTER ARCHIVE
   ========================================================================== */
.newsletter-envelope {
    padding: 8rem 0;
    background-color: var(--color-white);
    text-align: center;
}

.newsletter-layout-box {
    max-width: 36rem;
    margin: 0 auto;
}

.newsletter-input-flow {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 3rem;
}

.input-editorial-text {
    width: 100%;
    border: 1px solid rgba(197, 168, 128, 0.35);
    background-color: rgba(250, 248, 245, 0.7);
    padding: 1.1rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--color-charcoal);
    border-radius: 0;
    transition: var(--transition-smooth);
}

.input-editorial-text:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: var(--color-white);
}

.btn-editorial-submit {
    background-color: var(--color-charcoal);
    color: var(--color-white);
    border: none;
    padding: 1.1rem 2.5rem;
    font-size: 0.725rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-editorial-submit:hover {
    background-color: var(--color-gold);
    color: var(--color-charcoal);
}

/* ==========================================================================
   14. EDITORIAL PORTFOLIO FOOTER
   ========================================================================== */
.editorial-footer {
    background-color: var(--color-charcoal);
    color: var(--color-stone);
    padding: 6rem 0 4rem 0;
    border-top: 1px solid rgba(197, 168, 128, 0.18);
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-sculpt-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-identity-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: var(--color-white);
    display: inline-block;
}

.footer-identity-desc {
    font-size: 0.725rem;
    color: #ABA8A2;
    font-weight: 300;
    line-height: 1.7;
    max-width: 22rem;
}

.footer-header-tag {
    color: var(--color-white);
    font-size: 0.725rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
}

.footer-content-block {
    font-size: 0.725rem;
    font-weight: 300;
    line-height: 1.7;
}

.footer-content-block p {
    margin-bottom: 0.75rem;
}

.footer-gold-accent-label {
    color: var(--color-gold);
    font-weight: 400;
    display: block;
    margin-bottom: 0.35rem;
}

.footer-lists {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-anchor-item {
    font-size: 0.725rem;
    font-weight: 300;
    color: #C0BEB8;
    transition: var(--transition-smooth);
}

.footer-anchor-item:hover {
    color: var(--color-gold);
}

.footer-closure-bar {
    border-top: 1px solid rgba(197, 168, 128, 0.12);
    padding-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    font-size: 0.65rem;
    color: #7E7C77;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 300;
}

/* ==========================================================================
   15. SIGNATURE BOOKING APPOINTMENT MODAL
   ========================================================================== */
.booking-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.booking-modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.booking-dialog-box {
    background-color: var(--color-white);
    width: 100%;
    max-width: 680px;
    border: 1px solid rgba(197, 168, 128, 0.3);
    position: relative;
    box-shadow: 0 30px 65px rgba(18, 17, 17, 0.2);
    max-height: 92vh;
    overflow-y: auto;
    display: grid;
    grid-template-cols: 1fr;
}

.btn-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--color-charcoal);
    cursor: pointer;
    z-index: 10;
}

.btn-modal-close:hover {
    color: var(--color-gold);
}

.modal-visual-column {
    display: none;
    /* Controlled by media queries */
    background-color: var(--color-charcoal);
    color: var(--color-white);
    padding: 3rem;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.modal-background-underlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    object-position: center;
}

.modal-color-shielder {
    position: absolute;
    inset: 0;
    background-color: rgba(18, 17, 17, 0.5);
    z-index: 1;
}

.modal-brand-frame {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-brand-header {
    color: var(--color-gold);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
}

.modal-brand-logo-text {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    letter-spacing: 0.2em;
    color: var(--color-white);
    margin-top: 0.5rem;
    font-weight: 300;
}

.modal-form-column {
    padding: 3rem;
}

.modal-heading {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

/* Form Structures */
.booking-control-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.booking-input-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.booking-item-label {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
    font-weight: 600;
}

.booking-select-field, .booking-input-field {
    width: 100%;
    border: 1px solid rgba(197, 168, 128, 0.3);
    background-color: rgba(250, 248, 245, 0.8);
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    color: var(--color-charcoal);
    border-radius: 0;
    transition: var(--transition-smooth);
}

.booking-select-field:focus, .booking-input-field:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: var(--color-white);
}

.booking-inputs-grid-2 {
    display: grid;
    grid-template-cols: 1fr 1fr;
    gap: 1.25rem;
}

.btn-booking-submission {
    background-color: var(--color-charcoal);
    color: var(--color-white);
    border: none;
    padding: 1.1rem 0;
    font-size: 0.725rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 0.75rem;
}

.btn-booking-submission:hover {
    background-color: var(--color-gold);
    color: var(--color-charcoal);
}

/* ==========================================================================
   16. BREAKPOINT RESPONSIVENESS (MEDIA QUERIES)
   ========================================================================== */
/* Tablet & Small Desktop Views (576px and up) */
@media (min-width: 576px) {
    .btn-reservation-primary {
        display: inline-block;
    }

    .hero-ctas {
        flex-direction: row;
    }

    .hero-ctas .btn-solid-gold, .hero-ctas .btn-outline-white {
        width: auto;
    }

    .hero-heading {
        font-size: 3.25rem;
    }

    .services-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-input-flow {
        flex-direction: row;
    }

    .newsletter-input-flow .input-editorial-text {
        flex: 1;
    }

    .newsletter-input-flow .btn-editorial-submit {
        width: auto;
    }

    .footer-columns-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-closure-bar {
        flex-direction: row;
    }
}

/* Large Tablet / Medium Desktop Views (768px and up) */
@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }

    .mobile-menu-btn-wrap {
        display: none;
        /* Hide mobile menu hamburger */
    }

    .metrics-layout {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .metric-figure {
        font-size: 2.5rem;
    }

    .billboard-quote {
        font-size: 2.25rem;
    }
}

/* Standard Desktop Views (1024px and up) */
@media (min-width: 1024px) {
    .hero-heading {
        font-size: 4.25rem;
    }

    .services-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-grid-layout {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-columns-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .booking-dialog-box {
        grid-template-cols: 2fr 3fr;
    }

    .modal-visual-column {
        display: flex;
    }
}

/* PRODUCT THUMBNAIKL  */
.product-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(197, 168, 128, 0.22);
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(18, 17, 17, 0.04);
    border-color: rgba(197, 168, 128, 0.45);
}

.product-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.product-card-link {
    display: block;
    width: 100%;
    height: 100%;
}

.product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.product-card:hover .product-card-image {
    transform: scale(1.03);
}

/* Badges */
.product-card-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.product-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: #ffffff;
    color: #121111;
    border: 1px solid rgba(197, 168, 128, 0.22);
}

.badge-featured, .badge-bestseller {
    background: #121111;
    color: #ffffff;
    border: none;
}

.badge-popular {
    background: #C5A880;
    color: #121111;
    border: none;
}

.badge-new {
    background: #C5A880;
    color: #121111;
    border: none;
}

.badge-special {
    background: #121111;
    color: #C5A880;
    border: none;
}

.badge-trending {
    background: #ffffff;
    color: #C5A880;
    border-color: #C5A880;
}

.badge-discount {
    background: #C5A880;
    color: #121111;
    border: none;
}

/* Action Buttons */
.product-card-actions {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.product-card:hover .product-card-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(197, 168, 128, 0.22);
    cursor: pointer;
    transition: all 0.3s ease;
    color: #121111;
}

.product-action-btn:hover {
    background: #C5A880;
    border-color: #C5A880;
    color: #ffffff;
    transform: scale(1.05);
}

/* Product Info */
.product-card-info {
    padding: 1.5rem;
    text-align: center;
}

.product-category {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #85827D;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.product-title-link {
    text-decoration: none;
}

.product-title {
    font-family: var(--font-serif, "Cormorant Garamond", serif);
    font-size: 1.25rem;
    font-weight: 300;
    color: #121111;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.product-card:hover .product-title {
    color: #C5A880;
}

.product-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.product-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #A3845B;
}

.product-mrp {
    font-size: 0.75rem;
    font-weight: 400;
    color: #85827D;
    text-decoration: line-through;
}

/* Responsive */
@media (max-width: 768px) {
    .product-card-actions {
        opacity: 1;
        transform: translateX(0);
    }

    .product-action-btn {
        width: 2rem;
        height: 2rem;
    }

    .product-card-info {
        padding: 1rem;
    }

    .product-title {
        font-size: 1rem;
    }
}

/* Service  */
.service-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(197, 168, 128, 0.22);
    transition: all 0.35s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(18, 17, 17, 0.04);
    border-color: rgba(197, 168, 128, 0.45);
}

.service-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.service-card-link {
    display: block;
    width: 100%;
    height: 100%;
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.service-card:hover .service-card-image {
    transform: scale(1.04);
}

/* Badges */
.service-card-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.service-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: #ffffff;
    color: #121111;
    border: 1px solid rgba(197, 168, 128, 0.22);
}

.badge-featured, .badge-bestseller {
    background: #121111;
    color: #ffffff;
    border: none;
}

.badge-popular {
    background: #C5A880;
    color: #121111;
    border: none;
}

.badge-new {
    background: #C5A880;
    color: #121111;
    border: none;
}

.badge-special {
    background: #121111;
    color: #C5A880;
    border: none;
}

.badge-trending {
    background: #ffffff;
    color: #C5A880;
    border-color: #C5A880;
}

.badge-discount {
    background: #C5A880;
    color: #121111;
    border: none;
}

/* Action Buttons */
.service-card-actions {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.35s ease;
}

.service-card:hover .service-card-actions {
    opacity: 1;
    transform: translateX(0);
}

.service-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #ffffff;
    border: 1px solid rgba(197, 168, 128, 0.22);
    cursor: pointer;
    transition: all 0.3s ease;
    color: #121111;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.book-btn {
    background: #121111;
    color: #ffffff;
    border: none;
}

.book-btn:hover {
    background: #C5A880;
    color: #121111;
    transform: scale(1.05);
}

.wishlist-btn {
    width: 2.5rem;
    padding: 0.5rem;
}

.wishlist-btn:hover {
    background: #C5A880;
    border-color: #C5A880;
    color: #ffffff;
    transform: scale(1.05);
}

/* Service Info */
.service-card-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.service-category {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #85827D;
    font-weight: 500;
}

.service-title-link {
    text-decoration: none;
}

.service-title {
    font-family: var(--font-serif, "Cormorant Garamond", serif);
    font-size: 1.4rem;
    font-weight: 300;
    color: #121111;
    margin: 0;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.service-card:hover .service-title {
    color: #C5A880;
}

.service-description-text {
    font-size: 0.75rem;
    color: #85827D;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin: 0.5rem 0;
}

.service-price-wrapper, .service-mrp-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.service-price-label, .service-mrp-label {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #85827D;
    font-weight: 400;
}

.service-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #A3845B;
}

.service-mrp {
    font-size: 0.75rem;
    font-weight: 400;
    color: #85827D;
    text-decoration: line-through;
}

.service-book-btn {
    width: 100%;
    background: none;
    border: 1px solid #121111;
    color: #121111;
    padding: 0.85rem 0;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.service-book-btn:hover {
    background: #121111;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .service-card-actions {
        opacity: 1;
        transform: translateX(0);
    }

    .service-card-info {
        padding: 1rem;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-price {
        font-size: 1rem;
    }

    .service-book-btn {
        padding: 0.7rem 0;
        font-size: 0.6rem;
    }
}

/* UNIVERSAL CART SECTION */
/* QUANTITY BUTTON  */
.bc-cart-input {
    display: flex;
    gap: 15px;
    border: 1px solid #ddd;
    background-color: black;
    color: #fff;
    flex: 1;
}

.bc-cart-input>button {
    padding: 10px 25px;
    background: transparent;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all ease 0.5s;
    fill: #fff;
    border: none;
}

.bc-cart-input>input {
    background: transparent;
    border: 2px solid var(--clr-primary);
    color: var(--clr-primary);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    width: 100%;
    flex: 1;
}

/* Overlay */
.cart-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    z-index: 99999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.open {
    transform: translateX(0);
}

/* Drawer Header */
.cart-drawer-header {
    padding: 5px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

.cart-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    color: #6b7280;
    border-radius: 50%;
}

.cart-close-btn:hover {
    background: #f3f4f6;
    color: #111827;
}

/* Drawer Body (Empty State) */
.cart-drawer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.cart-empty-icon {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.cart-empty-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-empty-text {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.cart-shop-btn {
    background: #000000;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: transform 0.1s;
}

.cart-shop-btn:active {
    transform: scale(0.98);
}

/* Drawer Footer */
.cart-drawer-footer {
    border-top: 1px solid #e5e7eb;
    background: #fafafa;
}

/* CART CSS */
.cart-item-list {
    overflow-y: auto;
    flex: 1;
}

.cart-item {
    display: flex;
    flex-direction: column;
    padding: 12px 12px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-top {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.cart-item-img {
    width: 54px;
    height: 54px;
    background: #f4f4f4;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-name {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
    display: block;
    width: 100%;
}

/* Tax and Discount Breakdown */
.cart-item-tax-breakdown {
    background: #fafafa;
    border-radius: 6px;
    padding: 6px 8px;
    margin-top: 4px;
    font-size: 0.65rem;
    line-height: 1.4;
    color: #666;
}

.cart-tax-row {
    display: flex;
    justify-content: space-between;
}

.cart-discount-row {
    display: flex;
    justify-content: space-between;
    color: #27ae60;
    font-weight: 600;
    margin-top: 2px;
    border-top: 1px dashed #ddd;
    padding-top: 2px;
}

.cart-item-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-price-group {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.cart-item-price {
    font-size: 0.9rem;
    color: #7f44db;
    font-weight: 800;
}

.cart-item-old-price {
    font-size: 0.7rem;
    text-decoration: line-through;
    color: #aaa;
}

/* Quantity Controls */
.cart-quantity-controls {
    display: flex;
    align-items: center;
    background: #f4f4f4;
    padding: 2px;
    border-radius: 6px;
}

.cart-qty-btn {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    border: none;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f44db;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.cart-qty-btn svg {
    width: 10px;
    height: 10px;
    fill: currentColor;
}

.cart-qty-input {
    width: 28px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    outline: none;
}

.cart-remove-item {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ff4d4d;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}

/* Coupon Section */
.cart-coupon-section {
    padding: 12px;
    background: #f9f7ff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-coupon-apply {
    display: flex;
    gap: 5px;
}

.cart-coupon-input {
    flex-grow: 1;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.75rem;
    outline: none;
}

.cart-coupon-btn {
    background: #7f44db;
    color: white;
    border: none;
    padding: 0 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

/* Applied Coupon (Detailed) */
.cart-coupon-applied {
    background: rgba(127, 68, 219, 0.08);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(127, 68, 219, 0.2);
    position: relative;
}

.cart-coupon-header {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.cart-coupon-info {
    flex-grow: 1;
}

.cart-coupon-tag {
    background: #7f44db;
    color: white;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 4px;
}

.cart-coupon-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #7f44db;
}

.cart-coupon-desc {
    display: block;
    font-size: 0.65rem;
    color: #6a538d;
    margin-top: 2px;
}

.cart-coupon-remove {
    color: #ff4d4d;
    font-size: 0.65rem;
    font-weight: 700;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.cart-coupon-pill {
    display: inline-block;
    background: #fff;
    border: 1px solid #7f44db;
    color: #7f44db;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    margin-right: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    font-size: 0.65rem;
}

/* Summary */
.cart-summary {
    padding: 16px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 0.8rem;
    color: #666;
}

.cart-summary-total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #ddd;
    font-weight: 700;
    color: #333;
    font-size: 1rem;
}

.cart-checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #7f44db, #a26df0);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 12px;
    cursor: pointer;
}

.cart-item-list::-webkit-scrollbar {
    width: 4px;
}

.cart-item-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.cart-item-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.cart-start-shopping-btn {
    background: linear-gradient(135deg, #7f44db, #a26df0);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 12px;
    cursor: pointer;
}
