@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ==========================================================================
   Design Tokens & System
   ========================================================================== */
:root {
    --bg-forest: #131915;      /* Softened mossy charcoal green */
    --surface-cabin: #1D2620;  /* Warmer larch wood panel base */
    --accent-warm: #E2BC45;    /* Vibrant premium golden sunset light */
    --accent-bronze: #CEAA7C;  /* Warm larch/cedar bronze */
    --text-clean: #FAFBF9;     /* Soft cozy white */
    --text-muted: #A3ACA5;     /* Slightly lighter for better contrast and breathing */
    --border-glass: rgba(226, 188, 69, 0.2); /* Elegant golden borders */
    --accent-glow: rgba(226, 188, 69, 0.06);  /* Ambient warm backing light */
    
    --font-heading: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-forest);
    color: var(--text-clean);
    font-family: var(--font-sans);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

p {
    font-weight: 300;
    color: var(--text-muted);
}

/* ==========================================================================
   Layout & Reusable Components
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Warm ambient glowing backdrops to counteract gloominess */
.section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.section > * {
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-decoration: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-warm), var(--accent-bronze));
    color: #0D110E;
    border: none;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
    filter: brightness(1.1);
}

.btn-secondary {
    background: transparent;
    color: var(--text-clean);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-warm);
    color: var(--accent-warm);
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(29, 38, 32, 0.85); /* Slightly warmer, lighter, and cozier */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 50px rgba(226, 188, 69, 0.04);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-warm);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    color: var(--text-clean);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 30px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-clean);
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}

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

.nav-link {
    color: var(--text-clean);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-smooth);
}

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

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 100vh;
    min-height: 750px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Softened and brightened overlay to let warm lights shine through */
    background: linear-gradient(180deg, rgba(19, 25, 21, 0.25) 0%, rgba(19, 25, 21, 0.82) 100%);
    z-index: 2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 750px;
    padding-top: 80px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title span {
    display: block;
    font-size: 2.2rem;
    font-family: var(--font-sans);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-warm);
    margin-bottom: 12px;
}

.hero-desc {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
    color: var(--text-clean);
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* ==========================================================================
   About Section & Scroll Snap Gallery
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 50px;
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: rgba(29, 38, 32, 0.45);
    border: 1px solid rgba(226, 188, 69, 0.08);
    border-radius: 6px;
    padding: 24px;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    border-color: var(--accent-warm);
    background: rgba(226, 188, 69, 0.04);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(226, 188, 69, 0.06);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--accent-warm);
    margin-bottom: 16px;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 0.9rem;
}

/* Mobile Scroll Snap Gallery Wrapper with Navigation */
.gallery-wrapper {
    position: relative;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.gallery-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    /* Beautiful, thin, golden custom scrollbar for luxury nature aesthetic */
    scrollbar-width: thin;
    scrollbar-color: var(--accent-warm) rgba(29, 38, 32, 0.5);
    padding-bottom: 12px; /* space to show scrollbar without overlapping text */
}

/* Custom scrollbar styling for Webkit browsers (Chrome, Safari, Edge) */
.gallery-slider::-webkit-scrollbar {
    height: 6px;
    display: block; /* Explicitly show it */
}

.gallery-slider::-webkit-scrollbar-track {
    background: rgba(29, 38, 32, 0.5);
    border-radius: 4px;
}

.gallery-slider::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--accent-warm), var(--accent-bronze));
    border-radius: 4px;
    cursor: pointer;
}

.gallery-slider::-webkit-scrollbar-thumb:hover {
    background: var(--accent-warm);
}

.gallery-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}

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

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(0deg, rgba(19, 25, 21, 0.95) 0%, transparent 100%);
    z-index: 2;
}

.slide-caption h4 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.slide-caption p {
    font-size: 0.9rem;
    color: var(--accent-bronze);
}

/* Elegant Premium Slider Overlay Buttons */
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(29, 38, 32, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-glass);
    color: var(--text-clean);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    outline: none;
    user-select: none;
}

.gallery-btn:hover {
    background: var(--accent-warm);
    color: #0D110E;
    border-color: var(--accent-warm);
    box-shadow: 0 0 15px rgba(226, 188, 69, 0.3);
}

.prev-slide {
    left: 16px;
}

.next-slide {
    right: 16px;
}

/* Slider indicators (dots) */
.gallery-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    background: rgba(19, 25, 21, 0.5);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-dot.active {
    background: var(--accent-warm);
    width: 20px;
    border-radius: 4px;
}

/* ==========================================================================
   Booking Module
   ========================================================================== */
.booking-section {
    background: linear-gradient(180deg, var(--bg-forest) 0%, rgba(22, 28, 24, 0.8) 50%, var(--bg-forest) 100%);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

/* Booking Form Elements */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-bronze);
    font-weight: 600;
}

.form-control, .form-select {
    width: 100%;
    background: rgba(13, 17, 14, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: 4px;
    padding: 16px;
    font-family: var(--font-sans);
    color: var(--text-clean);
    font-size: 1rem;
    transition: var(--transition-smooth);
    outline: none;
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent-warm);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

/* Checkbox design */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-top: 8px;
    user-select: none;
}

.checkbox-group input {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 1px solid var(--border-glass);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    background: rgba(13, 17, 14, 0.6);
}

.checkbox-group input:checked + .checkbox-custom {
    background: var(--accent-warm);
    border-color: var(--accent-warm);
}

.checkbox-group input:checked + .checkbox-custom::after {
    content: '✓';
    color: #0D110E;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Summary Card */
.summary-card {
    height: fit-content;
    position: sticky;
    top: 40px;
    background: rgba(22, 28, 24, 0.9);
    border: 1px solid var(--accent-warm);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.05);
}

.summary-title {
    font-size: 1.6rem;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 20px;
    margin-bottom: 24px;
    color: var(--accent-warm);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.summary-row span:first-child {
    color: var(--text-muted);
}

.summary-row span:last-child {
    font-weight: 600;
}

.summary-total {
    border-top: 1px solid var(--border-glass);
    padding-top: 20px;
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.summary-total span:first-child {
    font-size: 1.1rem;
    font-weight: 600;
}

.summary-total .total-price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--accent-warm);
    font-weight: 700;
}

/* Elegant Calendar Dropdown */
.calendar-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 320px;
    background: #161C18;
    border: 1px solid var(--accent-warm);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
}

.calendar-dropdown.active {
    display: block;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.calendar-header h5 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
}

.calendar-nav-btn {
    background: transparent;
    border: none;
    color: var(--text-clean);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.calendar-nav-btn:hover {
    background: rgba(255,255,255,0.05);
    color: var(--accent-warm);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-bronze);
    margin-bottom: 8px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    user-select: none;
}

.calendar-day:hover:not(.disabled) {
    background: rgba(212, 175, 55, 0.2);
}

.calendar-day.disabled {
    color: #4A524C;
    cursor: not-allowed;
    text-decoration: line-through;
}

.calendar-day.selected {
    background: var(--accent-warm) !important;
    color: #0D110E !important;
    font-weight: 700;
}

.calendar-day.in-range {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 0;
}

/* ==========================================================================
   Offline PWA Block (Offline Map & GPS)
   ========================================================================== */
.offline-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, rgba(22, 28, 24, 0.9) 0%, rgba(13, 17, 14, 0.9) 100%);
}

.offline-badge-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 30px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--accent-warm);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-warm);
    margin-bottom: 24px;
}

.offline-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offline-feature {
    display: flex;
    gap: 16px;
}

.offline-feature-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-warm);
    line-height: 1;
}

/* PWA Map Illustration */
.pwa-map-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    aspect-ratio: 16/10;
    background: #0D110E;
}

.pwa-map-svg {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.pwa-marker {
    animation: markerPulse 2s infinite ease-in-out;
    transform-origin: 50% 50%;
}

@keyframes markerPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 2px var(--accent-warm));
    }
    50% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 8px var(--accent-warm));
    }
}

/* ==========================================================================
   Footer & Legal Info
   ========================================================================== */
.footer {
    background: #070908;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

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

.footer-col h5 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-warm);
    margin-bottom: 20px;
}

.footer-col p, .footer-col a {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    margin-bottom: 12px;
    display: block;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    font-size: 0.8rem;
    color: #4A524C;
}

/* ==========================================================================
   Effects & Animations
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Offline Banner notification */
.offline-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: rgba(212, 175, 55, 0.9);
    color: #0D110E;
    padding: 16px 24px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.offline-banner.active {
    transform: translateY(0);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .about-grid, .booking-grid, .offline-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-title span {
        font-size: 1.5rem;
    }
    
    .nav-links {
        display: none; /* simple mobile design */
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ==========================================================================
   Sticky Promotional Banner (Glamping Premium Theme)
   ========================================================================== */
.sticky-banner {
    position: fixed;
    left: 0;
    bottom: 28%;
    z-index: 999; /* Ensure it stays above other components */
    display: flex;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-315px);
}

.sticky-banner:hover {
    transform: translateX(0);
}

.sticky-banner-card {
    width: 315px;
    background: rgba(29, 38, 32, 0.98); /* Luxury dark wood green panel */
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 22px;
    border-top: 1px solid var(--border-glass);
    border-right: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 4px 0 35px rgba(226, 188, 69, 0.15);
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: var(--text-clean);
    font-family: var(--font-sans, sans-serif);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.sticky-banner-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-glass);
}

.sticky-icon {
    color: var(--accent-warm);
    font-size: 24px;
    flex-shrink: 0;
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    display: inline-block;
}

.sticky-title-wrapper {
    text-align: left;
    flex: 1;
    min-width: 0;
}

.sticky-title-wrapper h4 {
    font-family: var(--font-heading, serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-clean);
    margin: 0;
}

.sticky-title-wrapper p {
    font-size: 10px;
    color: var(--accent-bronze);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 4px 0 0 0;
}

.sticky-badge {
    background: linear-gradient(135deg, var(--accent-warm), var(--accent-bronze));
    color: #131915;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 10px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(226, 188, 69, 0.2);
    flex-shrink: 0;
}

.sticky-specs {
    text-align: left;
}

.specs-subtitle {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.specs-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-clean);
    margin: 0;
}

.specs-desc {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
    line-height: 1.5;
}

.sticky-pricing {
    background: rgba(19, 25, 21, 0.6);
    border-radius: 8px;
    padding: 16px;
    border: 1px solid rgba(226, 188, 69, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-subtitle {
    font-size: 9px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
}

.pricing-row > span:first-child {
    color: var(--text-muted);
    font-weight: 500;
}

.price-crossed {
    font-size: 11px;
    font-weight: 600;
    color: #556358; /* Muted forest-gray for crossed price */
    text-decoration: line-through;
}

.price-added {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-warm);
}

.promo-divider {
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-divider .line {
    flex: 1;
    height: 1px;
    background: var(--border-glass);
}

.promo-divider span {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-warm);
}

.promo-price-block {
    text-align: center;
}

.price-large {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-large span:first-child {
    font-family: var(--font-heading, serif);
    font-size: 38px;
    font-weight: 800;
    color: var(--accent-warm);
    line-height: 1;
}

.price-large .currency {
    font-family: var(--font-heading, serif);
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-warm);
}

.promo-price-block .price-desc {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 500;
}

.urgency-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(226, 188, 69, 0.04);
    border-radius: 6px;
    padding: 8px 12px;
    border: 1px solid rgba(226, 188, 69, 0.15);
}

.sticky-icon-small {
    color: var(--accent-warm);
    font-size: 16px;
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    display: inline-block;
}

.urgency-block span:last-child {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent-warm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sticky-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-glass);
    padding-top: 12px;
}

.sticky-footer span:first-child {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
}

.sticky-link {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-warm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.sticky-link:hover {
    color: var(--accent-bronze);
    transform: translateX(3px);
}

@keyframes sticky-tab-pulse {
    0%, 100% { opacity: 1; box-shadow: 4px 0 20px rgba(0, 0, 0, 0.25); }
    50% { opacity: 0.82; box-shadow: 4px 0 32px rgba(180, 140, 90, 0.45); }
}

.sticky-tab {
    width: 46px;
    height: 160px;
    background: rgba(180, 140, 90, 0.65);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid rgba(180, 140, 90, 0.80);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    animation: sticky-tab-pulse 4s ease-in-out infinite;
}

.sticky-banner:hover .sticky-tab {
    background: rgba(180, 140, 90, 0.88);
    filter: brightness(1.05);
    animation: none;
}

@media (max-width: 768px) {
    .sticky-banner {
        bottom: 0px;
        left: 50%;
        right: auto;
        flex-direction: column;
        transform: translateX(-50%);
        width: auto;
        align-items: center;
    }
    .sticky-banner:hover {
        transform: translateX(-50%);
    }
    .sticky-banner-card {
        width: 90vw;
        max-width: 360px;
        border-radius: 16px;
        margin-bottom: 8px;
        border: 1px solid rgba(180, 140, 90, 0.3);
        opacity: 0;
        pointer-events: none;
        transform: translateY(12px);
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.4s ease;
    }
    .sticky-banner:hover .sticky-banner-card {
        /* Disable hover expansion on mobile touch screens */
        opacity: 0;
        pointer-events: none;
        transform: translateY(12px);
        max-height: 0;
    }
    .sticky-banner.expanded .sticky-banner-card {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        max-height: 600px;
    }
    .sticky-tab {
        width: auto;
        height: 44px;
        border-radius: 24px;
        border-top-right-radius: 24px;
        border-bottom-right-radius: 24px;
        flex-direction: row;
        padding: 0 20px;
        gap: 10px;
        border: 1px solid rgba(180, 140, 90, 0.80);
        box-shadow: 0 4px 24px rgba(180, 140, 90, 0.30);
        animation: sticky-tab-pulse 4s ease-in-out infinite;
    }
    .vertical-text-large,
    .vertical-text-small {
        writing-mode: horizontal-tb !important;
        transform: none !important;
        letter-spacing: 0.15em !important;
    }
}

.sticky-icon-white {
    color: #131915;
    font-size: 20px;
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    display: inline-block;
}

.vertical-text-large {
    font-size: 9px;
    color: #131915;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    user-select: none;
}

.vertical-text-small {
    font-size: 10px;
    color: #131915;
    font-weight: 700;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    user-select: none;
}

@media (max-width: 480px) {
    .sticky-banner {
        bottom: 0px; /* Keep it clear of any mobile bottom navigation bars */
    }
}

