/* 
   Shoppin - Luxury Web Design System
   Color Palette: Pure Black and White Only
   Typography: Cormorant Garamond (Serif) & Montserrat (Sans-Serif)
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Castoro:ital@0;1&family=Lato:wght@300;400;700;900&display=swap');

/* CSS Variables */
:root {
    --font-luxury: 'Castoro', Georgia, serif;
    --font-sans: 'Lato', sans-serif;
    
    --color-black: #000000;
    --color-white: #ffffff;
    
    --color-bg-dark: #000000;
    --color-bg-charcoal: #0a0a0a;
    --color-bg-gray: #121212;
    
    --color-text-white: #ffffff;
    --color-text-gray: #a0a0a0;
    --color-text-muted: #666666;
    
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-hover: rgba(255, 255, 255, 0.3);
    
    --header-height-desktop: 90px;
    --header-height-mobile: 70px;
    
    --btn-padding: 5px 14px;
    --btn-height: 36px;
    --btn-font-size: 12px;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--color-black);
    color: var(--color-text-white);
    font-family: var(--font-sans);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--color-bg-dark);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

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

/* Accessibility: Hide elements visually but keep for screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}


/* Header Container */
.site-header {
    width: 100%;
    height: var(--header-height-desktop);
    background-color: var(--color-bg-dark);
    position: relative;
    z-index: 1000;
    transition: var(--transition-smooth);
}

/* Sticky Class */
.site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    height: 80px;
}

.header-container {
    width: 100%;
    max-width: 100%;
    height: 100%;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo styling */
.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.site-header.is-sticky .header-logo img {
    height: 52px;
}

/* Desktop Navigation Menu */
.desktop-nav {
    display: flex;
    height: 100%;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    height: 100%;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-white);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    position: relative;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--color-white);
}

/* Luxury underline hover effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

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

/* Dropdown Arrow Indicator */
.dropdown-icon-svg {
    width: 10px;
    height: 10px;
    fill: currentColor;
    margin-left: 5px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.nav-link:hover .dropdown-icon-svg {
    transform: rotate(180deg);
}

/* Submenu / Dropdown styling */
.dropdown-menu {
    position: absolute;
    top: calc(100% - 10px);
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 220px;
    background-color: var(--color-bg-charcoal);
    border: 1px solid var(--color-border);
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

/* Dropdown pointer tip */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: var(--color-bg-charcoal);
    border-left: 1px solid var(--color-border);
    border-top: 1px solid var(--color-border);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    width: 100%;
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-white);
    border-left: 3px solid transparent;
    transition: var(--transition-fast);
}

.dropdown-link:hover {
    border-left: 3px solid var(--color-white);
    background-color: rgba(255, 255, 255, 0.04);
    padding-left: 1.5rem;
}

/* Right Section Desktop Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Phone Contact Link */
.contact-phone {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-white);
}

.contact-phone:hover {
    color: var(--color-white);
}

.phone-icon-svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Luxury Pill/Outline Buttons */
.btn-luxury {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: var(--btn-height);
    padding: var(--btn-padding);
    font-size: var(--btn-font-size);
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-outline:hover {
    color: var(--color-black) !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.btn-solid {
    background-color: var(--color-white);
    color: var(--color-black) !important;
    border: 2px solid var(--color-white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-solid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-solid:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-solid:hover {
    color: var(--color-white) !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.btn-dark {
    background-color: var(--color-black);
    color: var(--color-white) !important;
    border: 2px solid var(--color-black);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-dark:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-dark:hover {
    color: var(--color-black) !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

/* Mobile Header Controls */
.mobile-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 1100;
}

.hamburger-svg {
    width: 26px;
    height: 26px;
    color: var(--color-white);
    display: block;
}

.hamburger-svg line {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
    transform-origin: center;
}

/* Hamburger active transformation into X */
.mobile-hamburger.is-active .hamburger-svg .line-top {
    transform: translateY(6px) rotate(45deg);
}

.mobile-hamburger.is-active .hamburger-svg .line-middle {
    opacity: 0;
}

.mobile-hamburger.is-active .hamburger-svg .line-bottom {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Drawer Overlay Menu */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg-dark);
    z-index: 1050;
    padding: 7rem 2.5rem 6.5rem 2.5rem; /* Pushed bottom padding to 6.5rem to lift CTA buttons */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
    border-right: 1px solid var(--color-border);
}

.mobile-menu-drawer.is-open {
    left: 0;
}

/* Drawer overlay element */
.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.drawer-backdrop.is-active {
    opacity: 1;
    visibility: visible;
}

/* Fly Menu Close Button */
.drawer-close-btn {
    position: absolute;
    top: 2rem;
    right: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-white);
    padding: 0.5rem;
    transition: var(--transition-fast);
    z-index: 1060;
}

.drawer-close-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.drawer-close-btn:hover {
    color: var(--color-text-gray);
    transform: rotate(90deg);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.8rem;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-menu-drawer.is-open .mobile-nav-item {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-item:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-item:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-item:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-item:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav-item:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav-link {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-link.has-submenu {
    cursor: pointer;
}

.mobile-submenu-toggle-svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-nav-link.is-expanded .mobile-submenu-toggle-svg {
    transform: rotate(180deg);
}

/* Mobile Submenu styling */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding-left: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0rem;
}

.mobile-nav-link.is-expanded + .mobile-submenu {
    max-height: 500px;
    margin-top: 1rem;
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0); /* Accordion animation */
}

.mobile-submenu-link {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-white);
    padding: 0.5rem 0;
    display: block;
}

/* Drawer Footer */
.mobile-drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 3rem;
}

.mobile-drawer-phone {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--color-text-gray);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.mobile-drawer-phone svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Hide mobile CTA in desktop view */
.mobile-header-cta {
    display: none;
}

/* ==========================================================================
   Hero Section & Slider Layout
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 33vw; /* Extended height: 28.125vw image + 4.875vw bottom strip */
    background-color: var(--color-bg-dark);
    overflow: hidden;
    cursor: grab;
    user-select: none; /* Prevent text highlighting when dragging slides */
}

.hero-section.grabbing {
    cursor: grabbing;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slider-track {
    display: flex;
    width: 300%; /* 3 slides = 300% */
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Individual Slide Structure */
.hero-slide {
    width: 33.333%; /* 100% / 3 */
    height: 100%;
    display: flex;
    position: relative;
    z-index: 1;
}

/* Left Pane Content */
.hero-slide-content {
    width: 50%;
    height: 100%;
    background-color: var(--color-black);
    display: flex;
    align-items: center;
    padding: 0 5%;
    box-sizing: border-box;
}

.hero-text-wrap {
    max-width: 540px;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s, opacity 0.8s ease 0.2s;
}

.hero-slide.active .hero-text-wrap {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-family: var(--font-luxury);
    font-style: italic;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.15;
    height: 2.3em; /* Restricts and locks height to exactly 2 lines */
    overflow: hidden;
    color: var(--color-text-white);
    margin-bottom: 1.8rem;
}

.hero-desc {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.6;
    height: 6.4em; /* Restricts and locks height to exactly 4 lines */
    overflow: hidden;
    color: var(--color-text-white);
    margin-bottom: 2.2rem;
    opacity: 0.85;
}

.hero-action-buttons {
    display: flex;
    gap: 1rem;
}

/* Right Pane Image */
.hero-slide-image {
    width: 50%;
    height: 28.125vw; /* Exactly 16:9 ratio */
    position: relative;
    overflow: hidden;
    align-self: flex-start; /* Sits flush with top header */
}

.hero-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill the container uniformly */
    transform: scale(1.05);
    transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-slide.active .hero-slide-image img {
    transform: scale(1);
}

/* Slide 3 specific: shrink-fit image to prevent top/bottom cropping */
.hero-slide[data-index="2"] .hero-slide-image img {
    object-fit: contain;
}

/* Slider Navigation Dots styling */
.slider-dots-container {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--color-white);
    cursor: pointer;
    padding: 0;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--color-white);
    transform: scale(1.2);
}

/* ==========================================================================
   Webshelf Section Layout (Full Width 16:9 Overlay)
   ========================================================================== */
.webshelf-section {
    background-color: #ffffff;
    padding: 40px; /* 40px margin from all screen edges */
    width: 100%;
    box-sizing: border-box;
}

.webshelf-container {
    width: 100%;
    max-width: 100%; /* Restored full width layout */
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px; /* 40px gap between cards */
    box-sizing: border-box;
}

.webshelf-card {
    position: relative;
    width: calc(50% - 20px); /* Account for the 40px center gap */
    aspect-ratio: 16 / 9; /* Perfect 16:9 ratio determined by width */
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05); /* Classic luxury soft shadow */
}

.webshelf-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    image-rendering: -webkit-optimize-contrast; /* Sharpen image rendering */
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.webshelf-card-content {
    position: relative;
    z-index: 2;
    width: 52%; /* 52% width to prevent text wrapping */
    height: 100%;
    margin-left: auto; /* Push content to the right half containing the white fade */
    padding: 2.5rem 3rem 2.5rem 1rem; /* Reduced left padding to maximize text space */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end; /* Align elements to the right */
    text-align: right; /* Right-align text */
    box-sizing: border-box;
}

.webshelf-card-title {
    font-family: var(--font-luxury);
    font-style: italic;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-black);
    margin-bottom: 1rem;
    white-space: nowrap; /* Enforce single line on desktop */
}

.webshelf-card-desc {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    color: #111111; /* Legible near-black */
    margin-bottom: 1.2rem;
    max-width: 290px; /* Keep text wrapping tight in white space */
}

.webshelf-card-info {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.5;
    color: #777777; /* Grey tags label */
    margin-bottom: 2rem;
    max-width: 290px; /* Keep tags wrapping tight in white space */
}

.webshelf-card-info strong {
    color: #111111; /* Near-black categories */
    font-weight: 600;
}

.webshelf-card-action {
    display: flex;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 2rem;
    }
    .nav-list {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    /* Mobile Header Layout */
    .site-header {
        height: var(--header-height-mobile);
    }
    
    .site-header.is-sticky {
        height: var(--header-height-mobile);
    }
    
    .header-container {
        padding: 0;
    }
    
    /* Hide desktop-only sections */
    .desktop-nav,
    .header-actions {
        display: none;
    }
    
    /* Enable mobile triggers with 8px left padding */
    .mobile-hamburger {
        display: block;
        padding-left: 8px !important;
    }
    
    .header-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .header-logo img,
    .site-header.is-sticky .header-logo img {
        height: 54px;
    }
    
    /* Enable Mobile specific CTA link with 8px right padding */
    .mobile-header-cta {
        display: block;
        margin-left: auto;
        order: 3;
        padding-right: 8px !important;
    }
    
    .mobile-header-cta .btn-solid {
        padding: 5px 10px;
    }
    
    /* Mobile Hero Section overrides with 16:9 image aspect ratio */
    .hero-section {
        height: calc(56.25vw + 420px); /* 16:9 image (56.25vw) + text content + bottom black strip */
        min-height: 600px;
    }
    
    .hero-slide {
        flex-direction: column;
    }
    
    .hero-slide-image {
        width: 100%;
        height: 56.25vw; /* Exactly 16:9 ratio relative to mobile viewport width */
        order: 1;
    }
    
    .hero-slide-content {
        width: 100%;
        height: calc(100% - 56.25vw); /* Takes up the remaining height */
        padding: 2.5rem 1.5rem 5.5rem 1.5rem; /* Increased bottom padding to accommodate stacked buttons */
        order: 2;
        align-items: flex-start; /* Align left */
    }
    
    .hero-text-wrap {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.15;
        height: 2.3em; /* Lock to exactly 2 lines */
        overflow: hidden;
    }
    
    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.55;
        height: 6.2em; /* Lock to exactly 4 lines */
        overflow: hidden;
    }
    
    /* Stacked buttons on mobile to match the mockup */
    .hero-action-buttons {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .hero-action-buttons .btn-luxury {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .slider-dots-container {
        bottom: 1.5rem;
    }

    /* Webshelf Responsive overrides */
    .webshelf-section {
        padding: 20px;
    }
    
    .webshelf-container {
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }
    
    .webshelf-card {
        width: 100%;
        height: auto; /* Allow global aspect-ratio to determine height */
    }
    
    .webshelf-card-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }
    
    .webshelf-card-content {
        position: relative;
        z-index: 2;
        width: 48%; /* 48% width to push content completely into the white space */
        height: 100%;
        margin-left: auto;
        padding: 0.6rem 0.5rem 0.6rem 0; /* Optimized padding to allow larger text spacing */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        text-align: right;
        box-sizing: border-box;
    }
    
    .webshelf-card-title {
        font-size: 1.35rem; /* Increased size */
        margin-bottom: 0.4rem; /* Increased space below title */
        white-space: normal; /* Allow wrapping on very small mobile screens */
    }
    
    .webshelf-card-desc {
        font-size: 0.78rem; /* Increased size */
        line-height: 1.35;
        margin-bottom: 0.4rem; /* Increased spacing */
        max-width: 100%; /* Fill available content overlay width on mobile */
    }
    
    .webshelf-card-info {
        font-size: 0.72rem; /* Increased size */
        line-height: 1.3;
        margin-bottom: 0.5rem; /* Increased spacing */
        max-width: 100%; /* Fill available content overlay width on mobile */
    }
    
    .webshelf-card-action .btn-dark {
        padding: 4px 10px; /* Slightly larger button */
        font-size: 10px;
        height: 28px;
    }
}

/* Small screen details */
@media (max-width: 480px) {
    .mobile-menu-drawer {
        padding: 6rem 1.5rem 6.5rem 1.5rem; /* Lift buttons on small screens */
    }
}

/* ==========================================================================
   Personal Shopper Services Cards Section
   ========================================================================== */
.ps-services-section {
    background-color: var(--color-white);
    padding: 60px 40px;
    width: 100%;
    margin-top: -1px; /* Overlap by 1px to cover sub-pixel gaps showing body background */
    box-sizing: border-box;
}

.ps-services-header {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
    box-sizing: border-box;
}

.ps-services-heading {
    font-family: var(--font-luxury);
    font-style: italic;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-black);
    margin: 0;
}

.ps-services-subtitle {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    margin: 10px 0 0 0;
    font-weight: 400;
}

.ps-services-container {
    display: flex;
    gap: 40px; /* 40px gap matching webshelf container */
    width: 100%;
    box-sizing: border-box;
}

.ps-service-card {
    position: relative;
    width: calc((100% - 120px) / 4); /* Distribute cards in a 4-column layout with 40px gaps */
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: var(--color-white);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05); /* Classic luxury soft shadow */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.ps-service-card:hover {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.09); /* Darker soft shadow on hover, flat card */
}

.ps-card-image {
    width: 100%;
    aspect-ratio: 1 / 1; /* Perfect square layout */
    overflow: hidden;
    position: relative;
}

.ps-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.ps-service-card:hover .ps-card-image img {
    transform: scale(1.05);
}

.ps-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    box-sizing: border-box;
}

.ps-card-title {
    font-family: var(--font-luxury);
    font-style: italic;
    font-size: 1.6rem; /* Compact premium size */
    font-weight: 400;
    line-height: 1.25;
    color: var(--color-black);
    margin: 0 0 12px 0; /* Minimal spacing */
}

.ps-card-desc {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.5; /* Compact text arrangement */
    color: #111111; /* Contrast black font */
    margin: 0 0 20px 0; /* Minimal spacing */
    flex-grow: 1;
}

.ps-card-action {
    display: flex;
    margin-top: auto;
}

/* Mobile & Tablet Overrides for Personal Shopper Services */
@media (max-width: 992px) {
    .ps-services-section {
        padding: 40px 0 15px 0; /* 0px horizontal padding to allow full edge-to-edge scroll */
    }
    
    .ps-services-header {
        margin-bottom: 24px;
        padding-left: 20px; /* Align title text with standard mobile page grid */
        padding-right: 20px;
    }
    
    .ps-services-heading {
        font-size: 2rem;
    }
    
    .ps-services-container {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        margin: 0; /* Remove negative margins since section is already edge-to-edge */
        padding: 0 20px 25px 20px; /* 20px starting padding on left and right, 25px bottom shadow breathing room */
        scroll-padding-left: 20px; /* Force scroll snapping to respect left padding */
        scroll-padding-right: 20px; /* Force scroll snapping to respect right padding */
        scrollbar-width: none; /* Hide scrollbars for Firefox */
        -ms-overflow-style: none; /* Hide scrollbars for IE/Edge */
    }
    
    .ps-services-container::-webkit-scrollbar {
        display: none; /* Hide scrollbars for Chrome/Safari */
    }
    
    .ps-service-card {
        width: 52vw; /* Exactly 1.8 cards visible (52vw card + remaining 48vw is next cards preview) */
        flex-shrink: 0;
        scroll-snap-align: start;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    }
    
    .ps-card-content {
        padding: 15px; /* Compact padding */
    }
    
    .ps-card-title {
        font-size: 1.15rem; /* Scaled down for compact width */
        margin-bottom: 8px;
    }
    
    .ps-card-desc {
        font-size: 0.72rem; /* Scaled down */
        line-height: 1.35;
        margin-bottom: 12px;
    }
    
    .ps-service-card .btn-dark {
        padding: 4px 10px;
        font-size: 9px;
        height: 26px;
    }
}

/* ==========================================================================
   How It Works Section (White Background - Luxury Minimalist)
   ========================================================================== */
.how-it-works-section {
    background-color: #ffffff;
    color: #121212;
    padding: 60px 40px; /* Aligns with ps-services-section padding */
    width: 100%;
    margin-top: -1px; /* Overlap to prevent sub-pixel gaps */
    box-sizing: border-box;
}

.how-header {
    margin-bottom: 40px; /* Aligns with ps-services-header */
}

.how-heading {
    font-family: var(--font-luxury);
    font-style: italic;
    font-size: 2.5rem; /* Aligns with ps-services-heading */
    font-weight: 400;
    line-height: 1.2;
    color: #121212;
    margin: 0;
    max-width: 800px;
}

.how-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
}

.how-step-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s;
}

.how-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.15);
}

.how-step-num {
    font-family: var(--font-sans);
    font-size: 4.5rem;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.07);
    line-height: 1;
    margin-bottom: 24px;
    transition: color 0.4s ease;
}

.how-step-card:hover .how-step-num {
    color: #121212;
    font-weight: 400;
}

.how-step-title {
    font-family: var(--font-luxury);
    font-style: italic;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.2;
    color: #121212;
    margin: 0 0 16px 0;
}

.how-step-desc {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

/* Decorative line beneath card */
.how-step-line {
    position: absolute;
    bottom: 0;
    left: 30px;
    right: 30px;
    height: 2px;
    background-color: #121212;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.how-step-card:hover .how-step-line {
    transform: scaleX(1);
}

/* Mobile Responsive Design (Matches ps-services-section overrides) */
@media (max-width: 992px) {
    .how-it-works-section {
        padding: 40px 0 15px 0; /* Horizontal padding 0 for edge-to-edge scroll */
    }

    .how-header {
        margin-bottom: 24px;
        padding-left: 20px; /* Align title text with standard mobile page grid */
        padding-right: 20px;
    }

    .how-heading {
        font-size: 2rem;
    }

    .how-steps-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        margin: 0;
        padding: 0 20px 25px 20px;
        scroll-padding-left: 20px;
        scroll-padding-right: 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .how-steps-grid::-webkit-scrollbar {
        display: none;
    }

    .how-step-card {
        width: 52vw !important; /* Matches ps-service-card width */
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 15px; /* Compact mobile padding */
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
        border-radius: 8px;
    }

    .how-step-num {
        font-size: 2.8rem;
        margin-bottom: 12px;
    }

    .how-step-title {
        font-size: 1.15rem; /* Matches ps-card-title mobile sizing */
        margin-bottom: 8px;
    }

    .how-step-desc {
        font-size: 0.72rem; /* Matches ps-card-desc mobile sizing */
        line-height: 1.35;
    }
    
    .how-step-line {
        display: none; /* Hide hover lines on touch screens */
    }
}

/* ==========================================================================
   Our Specialist Services Section (Dark Mode - Flex Accordion Slider)
   ========================================================================== */
.specialist-section {
    background-color: #000000; /* Pure deep black canvas */
    color: var(--color-text-white);
    padding: 80px 40px;
    width: 100%;
    margin-top: -1px; /* Overlap to prevent sub-pixel gaps */
    box-sizing: border-box;
}

.specialist-header {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
    box-sizing: border-box;
}

.specialist-heading {
    font-family: var(--font-luxury);
    font-style: italic;
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-white);
    margin: 0;
}

.specialist-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s, transform 0.2s, opacity 0.3s;
}

.specialist-nav-btn.prev {
    left: 20px;
}

.specialist-nav-btn.next {
    right: 20px;
}

.specialist-nav-btn:hover {
    background-color: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-black);
    transform: translateY(-50%) scale(1.05);
}

.specialist-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.nav-arrow-icon {
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1;
}

.specialist-list-wrapper {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.specialist-list {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
}

/* Custom Minimalist Scrollbars */
.specialist-list::-webkit-scrollbar {
    height: 6px;
}

.specialist-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.specialist-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    transition: background 0.3s ease;
}

.specialist-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* Scroll Spacer at the end of the desktop carousel list to let the last card expand safely without clipping */
@media (min-width: 993px) {
    .specialist-list::after {
        content: '';
        width: 320px;
        flex-shrink: 0;
        display: block;
    }
}

.specialist-card {
    position: relative;
    height: 540px; /* Comfortable height */
    width: 240px; /* Collapsed width - increased for better detail */
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    box-sizing: border-box;
    transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Desktop Hover Expansion */
@media (min-width: 993px) {
    .specialist-card:hover {
        width: 540px; /* Expanded width revealing description */
    }
}

.specialist-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.specialist-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.specialist-card:hover .specialist-card-bg img {
    transform: scale(1.08); /* Zoom on hover for parallax depth */
}

/* Luxury Dark Gradient Overlay */
.specialist-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.85) 100%);
    transition: background 0.4s ease;
}

.specialist-card:hover .specialist-card-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.9) 100%);
}

/* Top Right Circular Arrow Icon */
.specialist-card-arrow-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    z-index: 3;
    box-sizing: border-box;
    transition: background-color 0.4s, border-color 0.4s, color 0.4s, transform 0.4s;
}

.specialist-card:hover .specialist-card-arrow-btn {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
    transform: rotate(45deg);
}

.specialist-card-arrow-btn .arrow-icon {
    font-size: 1.1rem;
    line-height: 1;
}

/* Bottom Text Overlay Panel */
.specialist-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 3;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.specialist-card-title {
    font-family: var(--font-luxury);
    font-style: italic;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-white);
    margin: 0;
    transition: transform 0.4s ease;
}

/* Slide Title Up slightly on hover */
.specialist-card:hover .specialist-card-title {
    transform: translateY(-5px);
}

.specialist-card-desc {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    max-height: 0;
    opacity: 0;
    transform: translateY(15px);
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.specialist-card:hover .specialist-card-desc {
    max-height: 150px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 10px;
}

/* Mobile & Tablet Overrides (Horizontal Scroll Snap Carousel) */
@media (max-width: 992px) {
    .specialist-section {
        padding: 40px 0 15px 0; /* 0px horizontal padding to allow full edge-to-edge scroll */
    }
    
    .specialist-heading {
        font-size: 2rem;
    }

    .specialist-header {
        margin-bottom: 24px;
        padding-left: 20px; /* Align title text with standard mobile page grid */
        padding-right: 20px;
    }

    /* Hide navigation arrow buttons overlay on mobile screens */
    .specialist-nav-btn {
        display: none;
    }
    
    .specialist-list {
        flex-direction: row; /* Horizontal carousel on mobile */
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        margin: 0;
        padding: 0 20px 25px 20px; /* 20px starting padding, 25px bottom breathing room */
        scroll-padding-left: 20px;
        scroll-padding-right: 20px;
    }
    
    .specialist-card {
        width: 52vw !important; /* Exactly matches Business Services card width */
        height: 380px; /* Elegant proportional height */
        flex-shrink: 0;
        scroll-snap-align: start;
        transition: transform 0.4s ease;
    }
    
    .specialist-card-arrow-btn {
        width: 32px;
        height: 32px;
        top: 15px;
        right: 15px;
    }
    
    .specialist-card-arrow-btn .arrow-icon {
        font-size: 0.95rem;
    }
    
    .specialist-card-content {
        padding: 16px; /* Compact padding */
    }
    
    .specialist-card-title {
        font-size: 1.15rem; /* Scaled down for compact width */
        transform: none !important;
        margin-bottom: 6px;
    }
    
    /* Display descriptions directly on mobile cards by default */
    .specialist-card-desc {
        font-size: 0.76rem; /* Tighter font size */
        line-height: 1.4;
        max-height: none !important;
        opacity: 1 !important;
        transform: none !important;
        margin-top: 6px;
    }
}

/* ==========================================================================
   Video Reels Section (Dark Mode - Cinematic Showcase)
   ========================================================================== */
.reels-section {
    background-color: #ffffff; /* White background */
    color: #121212;
    padding: 80px 40px;
    width: 100%;
    margin-top: -1px; /* Overlap to prevent sub-pixel gaps */
    box-sizing: border-box;
}

.reels-header {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
    box-sizing: border-box;
}

.reels-heading {
    font-family: var(--font-luxury);
    font-style: italic;
    font-size: 2.5rem; /* Aligns with other headings */
    font-weight: 400;
    line-height: 1.2;
    color: #121212;
    margin: 0;
}

.reels-list-wrapper {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.reels-list {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
}

/* Custom Minimalist Scrollbars */
.reels-list::-webkit-scrollbar {
    height: 6px;
}

.reels-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.reels-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    transition: background 0.3s ease;
}

.reels-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.35);
}

.reel-card {
    position: relative;
    height: 480px;
    width: 270px; /* 9:16 aspect ratio (270x480) */
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    box-sizing: border-box;
    border: 3px solid #000000; /* 3px black border */
    background-color: #121212;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s;
}

.reel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.05);
}

.reel-video-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.reel-preview-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay */
.reel-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.85) 100%);
    transition: background-color 0.3s ease;
}

.reel-card:hover .reel-card-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.9) 100%);
}

/* Centered Play Indicator */
.reel-play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1rem;
    z-index: 3;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

.reel-play-indicator .play-icon {
    margin-left: 3px; /* Visual centering nudge */
}

.reel-card:hover .reel-play-indicator {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Bottom Text Overlay */
.reel-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    z-index: 3;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.reel-card-title {
    font-family: var(--font-luxury);
    font-style: italic;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.25;
    color: var(--color-white);
    margin: 0 0 6px 0;
    transition: transform 0.4s ease;
}

.reel-card-desc {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Overlay Navigation Buttons */
.reels-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s, transform 0.2s, opacity 0.3s;
}

.reels-nav-btn.prev {
    left: 20px;
}

.reels-nav-btn.next {
    right: 20px;
}

.reels-nav-btn:hover {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

.reels-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Lightbox Modal Styles */
.reels-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.reels-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.reels-lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}

.reels-lightbox-close:hover {
    color: var(--color-text-gray);
    transform: rotate(90deg);
}

.reels-lightbox-content {
    width: 90%;
    max-width: 440px; /* Perfect smartphone ratio limit */
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    position: relative;
}

.reels-lightbox-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Responsive overrides */
@media (max-width: 992px) {
    .reels-section {
        padding: 60px 0 20px 0; /* Horizontal padding 0 to allow edge-to-edge scroll snap */
    }

    .reels-header {
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 24px;
    }

    .reels-heading {
        font-size: 2rem;
    }

    .reels-nav-btn {
        display: none; /* Hide navigation arrows on touch screen */
    }

    .reels-list {
        gap: 16px;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 20px;
        scroll-padding-right: 20px;
        padding-left: 20px;
        padding-right: 20px;
        margin-left: 0;
        margin-right: 0;
    }

    .reel-card {
        width: 64vw !important; /* Perfect phone aspect scale */
        height: calc(64vw * 16 / 9); /* Force 9:16 aspect ratio */
        scroll-snap-align: start;
        border-radius: 12px;
    }

    .reel-card-content {
        padding: 16px;
    }

    .reel-card-title {
        font-size: 1.15rem;
    }

    .reel-card-desc {
        font-size: 0.72rem;
    }
}

/* ==========================================================================
   Reviews Section (What They Say About Us - White Background)
   ========================================================================== */
.reviews-section {
    background-color: #ffffff;
    color: #121212;
    padding: 80px 40px;
    width: 100%;
    box-sizing: border-box;
}

.reviews-header {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
    box-sizing: border-box;
}

.reviews-heading {
    font-family: var(--font-luxury);
    font-style: italic;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: #121212;
    margin: 0;
}

.reviews-list-container {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none; /* Hide standard Firefox scrollbar */
    box-sizing: border-box;
}

.reviews-list-container::-webkit-scrollbar {
    display: none; /* Hide Webkit scrollbars */
}

.reviews-list-track {
    display: flex;
    gap: 24px;
    padding-bottom: 10px;
    width: max-content;
    box-sizing: border-box;
}

.review-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px;
    width: 320px; /* Uniform width on desktop */
    flex-shrink: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.15);
}

.review-user-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-user-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #f0f0f0;
}

.review-user-info {
    display: flex;
    flex-direction: column;
}

.review-username {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: #121212;
    margin: 0;
}

.review-time {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: #777777;
    margin-top: 2px;
}

.review-stars-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.star-rating {
    color: #ffb400; /* Beautiful gold stars */
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.review-platform {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    color: #777777;
    display: flex;
    align-items: center;
    gap: 4px;
}

.google-mini-icon {
    width: 14px;
    height: 14px;
}

.review-text {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    line-height: 1.5;
    color: #444444;
    margin: 0;
    flex-grow: 1; /* Pushes content to fill card height */
}

/* Mobile Responsive overrides for Reviews */
@media (max-width: 992px) {
    .reviews-section {
        padding: 60px 0 30px 0; /* Align with layout scroll snap pads */
    }

    .reviews-header {
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 24px;
    }

    .reviews-heading {
        font-size: 2rem;
    }

    .reviews-list-container {
        scroll-padding-left: 20px;
        scroll-padding-right: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .reviews-list-track {
        gap: 16px;
    }

    .review-card {
        width: 72vw; /* Perfect mobile horizontal card sizing */
        flex-shrink: 0;
        padding: 20px;
    }
}

/* ==========================================================================
   Top Queries Section (SEO & Keywords Cloud)
   ========================================================================== */
.queries-section {
    background-color: #ffffff;
    color: #121212;
    padding: 80px 0; /* Full width edge-to-edge for scrolling */
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.queries-header {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
    padding: 0 40px;
    box-sizing: border-box;
}

.queries-heading {
    font-family: var(--font-luxury);
    font-style: italic;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: #121212;
    margin: 0;
}

.queries-marquee-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    overflow: hidden;
}

.marquee-row {
    display: flex;
    width: 100%;
    overflow: hidden;
    pointer-events: auto;
}

.marquee-track {
    display: flex;
    gap: 16px;
    padding-right: 16px;
    width: max-content;
    will-change: transform;
}

/* Base pill shape with soft shadows like reference image */
.query-pill {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Shades of Black & Gray with Matching Borders */
.query-pill.shade-black {
    background-color: #000000;
    border-color: #000000;
}

.query-pill.shade-charcoal {
    background-color: #1c1c1c;
    border-color: #1c1c1c;
}

.query-pill.shade-dgray {
    background-color: #333333;
    border-color: #333333;
}

.query-pill.shade-mgray {
    background-color: #555555;
    border-color: #555555;
}

.query-pill.shade-sgray {
    background-color: #777777;
    border-color: #777777;
}

/* Hover effect matching the button style (turns white, text black, solid border) */
.query-pill:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
}

/* Keyframes for seamless infinite loop */
.scroll-left .marquee-track {
    animation: scrollLeftMarquee 35s linear infinite;
}

.scroll-left.speed-alt .marquee-track {
    animation: scrollLeftMarquee 42s linear infinite;
}

.scroll-right .marquee-track {
    animation: scrollRightMarquee 35s linear infinite;
}

/* Pause marquee on hover so users can click/read easily */
.queries-marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scrollLeftMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRightMarquee {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .queries-section {
        padding: 60px 0; /* Full edge-to-edge scroll */
    }

    .queries-header {
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 24px;
    }

    .queries-heading {
        font-size: 2rem;
    }

    .queries-marquee-container {
        gap: 12px;
    }

    .marquee-track {
        gap: 12px;
        padding-right: 12px;
    }

    .query-pill {
        padding: 10px 20px;
        font-size: 0.82rem;
    }
}

/* ==========================================================================
   Cinematic Black Footer (Matching Header Styling)
   ========================================================================== */
.site-footer {
    background-color: #000000; /* Pure black background */
    color: #a0a0a0;
    padding: 80px 40px 30px 40px;
    width: 100%;
    box-sizing: border-box;
    font-family: var(--font-sans);
    margin-top: -1px; /* Avoid potential render gap with preceding section */
}

.footer-container {
    width: 100%;
    max-width: 1200px; /* Align with page grids */
    margin: 0 auto;
    box-sizing: border-box;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
}

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

.footer-logo-img {
    height: 54px; /* Larger luxury logo display */
    width: auto;
    object-fit: contain;
}

.footer-brand-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #a0a0a0;
    margin: 0 0 24px 0;
    max-width: 440px;
}

.footer-social-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18); /* Thin elegant luxury outline */
    background-color: transparent; /* No fill base */
    color: #b0b0b0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-link-icon i {
    font-size: 1.05rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-link-icon:hover {
    background-color: #ffffff; /* White fill on hover */
    border-color: #ffffff;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.social-link-icon:hover .social-svg,
.social-link-icon:hover i {
    transform: scale(1.1); /* Premium micro-scale rotation */
}

.footer-col-title {
    font-family: var(--font-luxury);
    font-style: italic;
    font-size: 1.3rem; /* Serif italic titles */
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 24px 0;
    letter-spacing: 0.5px;
    text-transform: none; /* Sentence case looks more elegant in serifs */
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-link:hover {
    color: #dfba73; /* Luxury Gold link hover */
    padding-left: 4px;
}

/* Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(223, 186, 115, 0.15); /* Luxury subtle gold line divider */
    padding: 24px 0 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.copyright-text, .cin-text {
    font-size: 0.8rem;
    color: #666666;
    margin: 0;
}

.footer-credits-bar {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    width: 100%;
}

.credits-text {
    font-size: 0.78rem;
    color: #444444;
    margin: 0;
}

.developer-link {
    color: #666666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.developer-link:hover {
    color: #dfba73; /* Gold hover */
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .site-footer {
        padding: 40px 20px 20px 20px;
    }

    .footer-top-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns side-by-side */
        gap: 30px 20px;
        margin-bottom: 30px;
    }

    .footer-brand-col {
        grid-column: 1 / -1; /* Spans full width on top */
    }

    .footer-logo-img {
        height: 44px; /* Larger logo display on mobile */
    }

    .footer-brand-desc {
        max-width: 100%;
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .footer-col-title {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }

    .footer-links-list {
        gap: 8px;
    }

    .footer-link {
        font-size: 0.8rem;
    }

    .footer-bottom-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        padding-top: 20px;
    }

    .copyright-text, .cin-text {
        font-size: 0.72rem;
    }

    .footer-credits-bar {
        margin-top: 16px;
        text-align: center;
        width: 100%;
    }
}

/* ==========================================================================
   Luxury Booking Pop-up Modal Form
   ========================================================================== */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85); /* Dark semi-transparent backdrop */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

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

.booking-modal-container {
    background-color: #000000; /* Deep black canvas */
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12); /* Delicate luxury frame border */
    width: 90%;
    max-width: 600px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
}

/* Custom premium scrollbar for modal */
.booking-modal-container::-webkit-scrollbar {
    width: 6px;
}
.booking-modal-container::-webkit-scrollbar-track {
    background: #000000;
}
.booking-modal-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}
.booking-modal-container::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}

.booking-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.booking-modal-close:hover {
    color: #ffffff;
}

.booking-form-title {
    font-family: var(--font-luxury);
    font-style: italic;
    font-size: 2.2rem;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    margin: 0 0 15px 0;
}

.booking-form-subtitle {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    line-height: 1.6;
    color: #a0a0a0;
    text-align: center;
    margin: 0 0 35px 0;
    font-weight: 400;
}

.form-sub-buttons-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: -15px 0 35px 0; /* Align with subtitle margins */
}

.form-sub-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: transparent;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.74rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.form-sub-btn:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #000000 !important;
}

.form-sub-btn-icon {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

/* Underline-Only Form Controls */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-group.full-width {
    margin-bottom: 25px;
}

.booking-form-element input[type="text"],
.booking-form-element input[type="email"],
.booking-form-element input[type="tel"],
.booking-form-element select,
.booking-form-element textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* Underline only border */
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    padding: 10px 0;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
    outline: none;
    border-radius: 0;
}

.booking-form-element input[type="text"]:focus,
.booking-form-element input[type="email"]:focus,
.booking-form-element input[type="tel"]:focus,
.booking-form-element select:focus,
.booking-form-element textarea:focus {
    border-bottom-color: #ffffff; /* White outline on focus */
}

/* Style Select Options (Chrome/Safari dropdown customizer) */
.booking-form-element select option {
    background-color: #121212;
    color: #ffffff;
}

.booking-form-element textarea {
    resize: none;
    height: 70px;
}

/* Custom Checkbox Design matching website styling */
.checkbox-group {
    margin-bottom: 15px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox {
    height: 16px;
    width: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    margin-right: 12px;
    display: inline-block;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    background-color: transparent;
    margin-top: 2px;
}

.checkbox-container input:checked ~ .custom-checkbox {
    background-color: #ffffff;
    border-color: #ffffff;
}

.custom-checkbox::after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .custom-checkbox::after {
    display: block;
}

.checkbox-label-text {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    line-height: 1.45;
    color: #b0b0b0;
}

/* Custom reCAPTCHA styling */
.recaptcha-placeholder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0c0c0c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 4px;
    margin: 25px 0;
    box-sizing: border-box;
}

.recaptcha-left {
    display: flex;
    align-items: center;
}

.recaptcha-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.recaptcha-logo-svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.recaptcha-text {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: #777777;
    font-weight: bold;
    letter-spacing: 0.05em;
}

/* Submit Button styling */
.form-submit-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.btn-submit {
    background-color: #ffffff;
    color: #000000 !important;
    border: 2px solid #ffffff;
    width: 160px;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff;
}

/* Responsive Modal styles */
@media (max-width: 768px) {
    .booking-modal-container {
        padding: 30px 20px;
        width: 95%;
        max-height: 95vh;
    }

    .booking-form-title {
        font-size: 1.8rem;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-group.full-width {
        margin-bottom: 20px;
    }
}

/* ==========================================================================
   Custom Country Select Dropdown
   ========================================================================== */
.custom-country-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-country-trigger {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    padding: 10px 0;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.3s ease;
    user-select: none;
}
.custom-country-trigger.is-active {
    border-bottom-color: #ffffff;
}
.custom-country-arrow {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}
.custom-country-trigger.is-active .custom-country-arrow {
    transform: rotate(180deg);
}

.custom-country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    z-index: 1000;
    margin-top: 5px;
    box-sizing: border-box;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.custom-country-dropdown.is-open {
    display: flex;
}

.custom-country-search-box {
    padding: 8px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
}
.custom-country-search-box input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    padding: 4px 0;
}
.custom-country-search-box i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    margin-left: 8px;
}

.custom-country-options {
    max-height: 200px;
    overflow-y: auto;
    box-sizing: border-box;
}

/* Custom Scrollbar for dropdown options */
.custom-country-options::-webkit-scrollbar {
    width: 5px;
}
.custom-country-options::-webkit-scrollbar-track {
    background: #111111;
}
.custom-country-options::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}
.custom-country-options::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}

.custom-country-option {
    padding: 10px 12px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: #cccccc;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}
.custom-country-option:hover {
    background-color: #222222;
    color: #ffffff;
}
.custom-country-option.is-selected {
    background-color: #ffffff;
    color: #000000;
}
.custom-country-option.is-disabled {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #161616;
    cursor: default;
    pointer-events: none;
    padding: 8px 12px;
}
.custom-country-option.hidden {
    display: none !important;
}

/* Form Error Message Styles */
.form-error-msg {
    display: none;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    color: #ff8888;
    margin-top: 6px;
    text-align: left;
    line-height: 1.35;
    width: 100%;
}
