/* ==========================================================================
   DESIGN SYSTEM & VARIABLES - DOBRA NALEWKA
   ========================================================================== */

:root {
    /* Maximum width of inner content; full-width sections remain fluid. */
    --site-max-width: 1728px;

    /* Color Palette */
    --color-bg: #F5EFE4;            /* Refined warm vintage cream background */
    --color-primary: #2C1A0E;       /* Deep vintage warm charcoal brown */
    --color-primary-light: #4A3222; /* Slightly lighter brown */
    --color-text: #2C1A0E;          /* Keep text dark chocolate for high contrast/luxury */
    --color-text-muted: #5C4A3C;    /* Muted warm earthy tone */
    --color-accent-gold: #C5A063;   /* Premium Gold */
    --color-accent-burgundy: #591A24; /* Rich Burgundy for primary buttons / hover */
    --color-accent-light: #EFEAE0;  /* Slightly darker cream for cards/sections */
    --color-border: #D8CEBD;        /* Delicate vintage borders */
    --color-white: #FCFAF7;         /* Warm white */
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-logo: 'Cormorant Garamond', serif;
    --font-body: 'Lora', serif;
    --font-sans: 'Inter', sans-serif;
    --font-cursive: 'Pinyon Script', cursive;

    /* Transitions & Spacing */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-premium: 0 12px 35px rgba(44, 26, 14, 0.05), 0 2px 5px rgba(44, 26, 14, 0.02);
    --shadow-hover: 0 24px 48px rgba(44, 26, 14, 0.1), 0 4px 10px rgba(44, 26, 14, 0.04);
}

/* ==========================================================================
   BASE & RESET Styles
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg);
}

body {
    width: 100%;
    max-width: none;
    margin: 0;
    overflow-x: hidden;
    background-color: var(--color-bg);
    /* Subtle organic paper texture overlay in CSS */
    background-image: radial-gradient(rgba(74, 18, 26, 0.02) 1px, transparent 0),
                      radial-gradient(rgba(74, 18, 26, 0.02) 1px, transparent 0);
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-weight: 350; /* Light weight for upscale editorial aesthetic */
    letter-spacing: 0.01em;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

/* Typography Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary);
}

.cursive-text {
    font-family: var(--font-cursive);
    color: var(--color-primary);
    font-size: 1.4em;
    font-weight: 400;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    transform: rotate(-3deg);
}

/* Layout Utilities */
.section-container {
    width: 100%;
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 55px 20px;
}

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

/* Vintage Decorative Elements */
.vintage-divider {
    width: 280px;
    height: 20px;
    margin: 0 auto 18px;
    background-image: url('images/brand/divider_1.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.vintage-divider-left {
    width: 240px;
    height: 18px;
    margin: 0 0 18px;
    background-image: url('images/brand/divider_1.webp');
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 3px; /* Softer, high-quality tactile corners */
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--color-accent-burgundy);
    color: #FFFFFF;
    border: 1px solid var(--color-accent-burgundy);
    font-weight: 500;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 10px rgba(89, 26, 36, 0.15);
}

.btn-primary:hover {
    background-color: #4A141D;
    border-color: #4A141D;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(89, 26, 36, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    font-weight: 500;
    letter-spacing: 0.1em;
}

.btn-secondary:hover {
    background-color: rgba(44, 26, 14, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 26, 14, 0.06);
}

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

@media (hover: hover) {
    .btn-outline:hover {
        border-color: var(--color-accent-burgundy);
        color: var(--color-white);
        background-color: var(--color-accent-burgundy);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(74, 18, 26, 0.15);
    }
}

.btn-outline:active {
    background-color: rgba(74, 18, 26, 0.08);
    transform: translateY(1px);
}

.btn-text {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-text:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

/* ==========================================================================
   ANNOUNCEMENT BAR & HEADER
   ========================================================================== */

.announcement-bar {
    background-color: var(--color-primary);
    color: var(--color-bg);
    text-align: center;
    padding: 8px 20px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    position: relative; /* Changed from sticky to relative to prevent overlapping headers */
    z-index: 90; /* Sits below the main header and search overlay stacking contexts */
    border-bottom: 1px solid rgba(197, 168, 128, 0.15); /* Soft gold hairline border */
}

.main-header {
    background-color: var(--color-bg);
    border-bottom: 1px solid rgba(44, 26, 14, 0.08);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.header-container-row {
    width: 100%;
    max-width: var(--site-max-width);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left: Logo & Brand stack */
.header-logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-primary);
}

.logo-img-header {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.logo-divider-vertical {
    width: 1px;
    height: 46px;
    background-color: rgba(44, 26, 14, 0.25);
    margin: 0 10px 0 6px;
}

.logo-text-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.1;
    color: var(--color-primary);
    border-bottom: 1.1px solid var(--color-accent-gold);
    padding-bottom: 4px;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--color-accent-gold);
    line-height: 1;
    text-transform: uppercase;
}

/* Center: Navigation Menu */
.main-nav > ul {
    list-style: none;
    display: flex;
    gap: 24px; /* Reduced from 40px to create more space between menu and logo */
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-text-muted);
    padding: 8px 0;
    transition: var(--transition-fast);
}

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

.nav-arrow {
    display: inline-block;
    font-size: 0.62rem;
    margin-left: 4px;
    vertical-align: middle;
    line-height: 1;
    transform: translateY(-1px);
    transition: transform 0.25s ease;
}

.has-dropdown:hover .nav-arrow {
    transform: translateY(-1px) rotate(180deg);
}

/* === DROPDOWN MENU STYLING === */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 260px;
    background: var(--color-bg);
    border: 1.5px solid var(--color-border);
    box-shadow: var(--shadow-premium);
    padding: 12px 0;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    list-style: none !important;
    margin: 0 !important;
}

.dropdown-menu li {
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    text-align: left;
}

.dropdown-menu li a {
    display: block !important;
    padding: 10px 20px !important;
    font-family: var(--font-sans) !important;
    font-size: 0.76rem !important;
    color: var(--color-text-muted) !important;
    text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: 0.03em !important;
    transition: all 0.2s ease !important;
    text-align: left !important;
    white-space: nowrap !important;
}

.dropdown-menu li a:hover {
    color: var(--color-accent-gold) !important;
    background: rgba(197, 168, 128, 0.04) !important;
    padding-left: 24px !important;
}

/* Show dropdown menu on hover on desktop */
@media (min-width: 901px) {
    .main-nav > ul > li:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

/* === MEGA MENU STYLING === */
.main-nav > ul > li {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 660px;
    background: var(--color-bg);
    border: 1.5px solid var(--color-border);
    box-shadow: var(--shadow-premium);
    padding: 24px 28px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
}

/* Show mega menu on hover on desktop */
@media (min-width: 901px) {
    .main-nav > ul > li:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    gap: 24px;
    text-align: left;
}

.mega-menu-col h5 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    padding-bottom: 6px;
}

.mega-menu-col ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.mega-menu-col ul li {
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
}

.mega-menu-col ul li a {
    font-family: var(--font-sans) !important;
    font-size: 0.78rem !important;
    color: var(--color-text-muted) !important;
    text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: 0.02em !important;
    transition: all 0.2s ease !important;
    display: inline-block !important;
    padding: 2px 0 !important;
}

.mega-menu-col ul li a:hover {
    color: var(--color-accent-gold) !important;
    transform: translateX(4px);
}

.mega-menu-featured {
    background: rgba(245, 239, 228, 0.4);
    border: 1px solid var(--color-border);
    border-radius: 3px;
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.mega-menu-featured img {
    width: 50px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.featured-text h6 {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    color: var(--color-primary);
    margin: 0 0 2px 0;
}

.featured-text p {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    color: var(--color-text-muted);
    margin: 0 0 8px 0;
    line-height: 1.35;
}

.btn-link {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--color-accent-burgundy);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

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

/* Toggle Submenu for Mobile accordion */
@media (max-width: 900px) {
    .mega-menu, .dropdown-menu {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        border: none !important;
        padding: 10px 0 10px 15px !important;
        background: none !important;
        display: none !important; /* Hide on mobile by default, show if parent has .active-submenu */
        border-left: 1px solid var(--color-border) !important;
        margin-top: 5px;
    }
    
    .main-nav > ul > li.active-submenu .mega-menu,
    .main-nav > ul > li.active-submenu .dropdown-menu {
        display: block !important;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .mega-menu-featured {
        display: none !important; /* Hide featured card on mobile to save vertical space */
    }
}

/* Right: Action Buttons Group */
.header-actions-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-action-btn {
    color: var(--color-primary);
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6px;
    transition: var(--transition-fast);
}

.header-action-btn:hover {
    color: var(--color-accent-gold);
}

.menu-mobile-toggle {
    display: none;
    color: var(--color-primary);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--color-accent-burgundy);
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 700;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
    transition: var(--transition-fast);
}

.header-action-btn:hover .cart-badge {
    background-color: var(--color-primary);
}

/* Search Bar Overlay - Elegant slide down */
.search-bar-overlay {
    position: fixed; /* Fixed relative to the viewport - completely immune to scroll jumps */
    top: 0; /* Appears at the very top of the screen */
    left: 0;
    width: 100%;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 20px;
    display: flex;
    justify-content: center;
    z-index: 999; /* Sits on top of all other elements */
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px); /* Elegant slide down animation from top of viewport */
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.3s;
    box-shadow: 0 10px 30px rgba(78, 54, 41, 0.08); /* Premium branding shadow */
}

.search-bar-overlay.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.search-bar-container {
    width: 100%;
    max-width: 450px; /* Much narrower search bar container */
    display: flex;
    align-items: center;
    gap: 15px;
}

#search-input {
    flex-grow: 1;
    border: none;
    border-bottom: 0.5px solid rgba(78, 54, 41, 0.15); /* Extra thin hairline */
    background: transparent;
    padding: 6px 2px;
    font-family: var(--font-sans); /* Clean, ultra-thin sans-serif font */
    font-size: 0.9rem;
    font-weight: 300; /* Light weight to ensure it is not bold/fat */
    color: var(--color-text);
    letter-spacing: 0.05em;
}

#search-input:focus {
    outline: none;
    border-bottom-color: var(--color-accent-gold);
}

#search-input::placeholder {
    color: rgba(78, 54, 41, 0.4);
    font-weight: 300;
    font-size: 0.9rem;
    font-family: var(--font-sans);
}

.search-close-btn {
    font-size: 1.8rem; /* Smaller close button */
    color: var(--color-text-muted);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.search-close-btn:hover {
    color: var(--color-primary);
}

.menu-mobile-toggle {
    display: none;
}

/* ==========================================================================
   HERO SECTION — Full-Bleed Image Version
   ========================================================================== */

/* ---- Wrapper ---- */
.hero-section {
    background-color: var(--color-bg);
    min-height: calc(100vh - 140px); /* Fill viewport minus sticky header height */
    max-height: 680px; /* Cap height on tall monitors */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    padding: 0;
}

/* Full-bleed background media container */
.hero-bg-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    /* Soft left-to-right blending gradient matching cream background, merging with image on right */
    background-image: 
        linear-gradient(to right, 
            rgba(245, 239, 228, 0.98) 0%, 
            rgba(245, 239, 228, 0.95) 25%, 
            rgba(245, 239, 228, 0.85) 45%, 
            rgba(245, 239, 228, 0.3) 70%, 
            transparent 100%), 
        url('images/brand/hero_new.webp');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

/* Left Content Column */
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 620px;
    width: 100%;
    padding: 40px 20px 20px;
    margin-left: max(20px, calc((100vw - var(--site-max-width)) / 2 + 20px));
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-ornament {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.hero-ornament-img {
    width: 320px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.5vw, 4.4rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.hero-cursive {
    font-family: var(--font-cursive);
    font-size: 1.15em;
    font-weight: 400;
    color: var(--color-accent-gold);
    display: block;
    text-transform: lowercase;
    line-height: 0.9;
    transform: rotate(-3deg) translateX(15px);
    margin-top: 8px;
}

.hero-text-divider {
    margin: 20px 0 24px;
    display: flex;
    align-items: center;
}

.hero-separator-img {
    width: 440px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.hero-actions .btn {
    padding: 14px 36px;
}

/* Trust strip – vintage style */
.hero-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    border-top: 1px solid rgba(44, 26, 14, 0.12);
    padding-top: 20px;
    width: 100%;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.trust-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px; /* Fixed height for icon alignment */
    margin-bottom: 4px;
    width: 100%;
}

.trust-icon-img {
    height: 38px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.trust-label {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    line-height: 1.4;
    color: var(--color-primary);
}

/* Scroll hint arrow */
.hero-scroll-down {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(197, 168, 128, 0.4);
    border-radius: 50%;
    color: var(--color-accent-gold);
    z-index: 5;
    animation: heroScrollBounce 2.4s ease-in-out infinite;
    transition: var(--transition-fast);
}

.hero-scroll-down:hover {
    background-color: rgba(197, 168, 128, 0.08);
    border-color: var(--color-accent-gold);
}

@keyframes heroScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(7px); }
}



/* ==========================================================================
   SECTION HEADER
   ========================================================================== */

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent-gold);
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.section-intro {
    max-width: 650px;
    margin: 15px auto 0;
    color: var(--color-text-muted);
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */

/* ==========================================================================
   HOW IT WORKS — Timeline Redesign
   ========================================================================== */

.how-it-works-section {
    background-color: #FAF4E8; /* Soft warm light cream background for card contrast */
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 40px 0 45px;
}

/* ---- Header ---- */
.hiw-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 52px;
}

.hiw-header-divider {
    width: 280px;
    max-width: 100%;
    height: auto;
    margin: 20px auto 0;
    display: block;
    opacity: 0.85;
}

.hiw-eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-accent-gold);
    margin-bottom: 16px;
}

.hiw-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 18px;
    line-height: 1.15;
}

.hiw-intro {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text-muted);
}

/* ---- Steps row ---- */
.hiw-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; /* Reduced from 30px for a more cohesive block layout */
    max-width: 1100px;
    margin: 0 auto;
}

/* ---- Individual step card ---- */
.hiw-step {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(44, 26, 14, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hiw-step::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(197, 168, 128, 0.15);
    pointer-events: none;
}

.hiw-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(44, 26, 14, 0.06);
}

/* Big editorial number */
.hiw-step-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--color-accent-burgundy);
    line-height: 1;
    margin: 15px auto 10px;
    opacity: 0.85;
}

.hiw-step-body h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.hiw-step-body p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--color-text-muted);
}

.hiw-step-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 1px;
}

.hiw-step-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.hiw-step:hover .hiw-step-photo img {
    transform: scale(1.04);
}

/* ---- CTA below ---- */
.hiw-cta {
    text-align: center;
    margin-top: 50px;
}


/* ==========================================================================
   PRODUCT KITS SECTION
   ========================================================================== */

.kits-section {
    padding: 40px 0 45px;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.kits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px; /* Slightly tighter gap for cohesive look */
}

.kit-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.kit-card::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(197, 168, 128, 0.15);
    pointer-events: none;
    z-index: 3;
}

.kit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-accent-gold);
}

.kit-card.best-seller {
    border: 2px solid var(--color-accent-burgundy);
}

.best-seller-label {
    background-color: var(--color-accent-burgundy);
    color: var(--color-bg);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
    padding: 6px 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 4; /* Higher than inner frame */
}

.kit-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background-color: #FAF4E8; /* Light warm tint, blends with bottle shadow */
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kit-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

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

.kit-badge-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--color-accent-burgundy);
    color: var(--color-bg);
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    border-radius: 1px;
    z-index: 3;
}

.kit-badge-tag.highlight {
    background-color: var(--color-accent-gold);
    color: var(--color-primary);
}

.kit-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.kit-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.kit-price {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--color-accent-burgundy);
    margin-bottom: 15px;
}

.kit-description {
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.kit-details {
    font-family: var(--font-body);
    font-size: 0.82rem;
    line-height: 1.5;
    border-top: 1px solid var(--color-border);
    padding-top: 15px;
    margin-bottom: 20px;
    color: var(--color-text);
}

.kit-details strong {
    color: var(--color-primary);
}

/* ==========================================================================
   BUILDER SECTION (KONSTRUKTOR DIY)
   ========================================================================== */

.builder-section {
    background-color: var(--color-accent-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.builder-grid-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.builder-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.builder-interactive-controls {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.control-label {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
}

/* Size selection buttons */
.size-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.size-btn {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    padding: 12px 15px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    transition: var(--transition-fast);
}

.size-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.size-btn.active {
    background-color: var(--color-accent-burgundy);
    color: #FFFFFF;
    border-color: var(--color-accent-burgundy);
}

/* ---- Configurator Tabs & Ingredients Preview ---- */
.builder-filter-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.builder-tab-btn {
    background-color: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 500;
    font-family: var(--font-sans);
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.builder-tab-btn:hover {
    border-color: var(--color-accent-gold);
    color: var(--color-primary);
}

.builder-tab-btn.active {
    background-color: var(--color-accent-burgundy);
    color: var(--color-white);
    border-color: var(--color-accent-burgundy);
}

/* Flavor pool selection grid */
.flavor-selection-pool {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.flavor-select-pill {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    transition: var(--transition-fast);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(44, 26, 14, 0.02);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.flavor-select-pill[data-category="classic"]:hover {
    border-color: #7A121A;
    background-color: rgba(122, 18, 26, 0.04);
    color: #7A121A;
}

.flavor-select-pill[data-category="dessert"]:hover {
    border-color: #4A1E14;
    background-color: rgba(74, 30, 20, 0.04);
    color: #4A1E14;
}

.flavor-select-pill[data-category="botanic"]:hover {
    border-color: #D68C2D;
    background-color: rgba(214, 140, 45, 0.04);
    color: #D68C2D;
}

.flavor-select-pill[data-category="keto"]:hover {
    border-color: #A31E32;
    background-color: rgba(163, 30, 50, 0.04);
    color: #A31E32;
}

/* Luxury floating absolute tooltip */
.builder-active-ingredients {
    width: 100%;
    margin-bottom: 20px;
    padding: 12px 14px;
    background-color: rgba(251, 249, 244, 0.7);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    text-align: left;
}

.ingredients-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent-gold);
    margin-bottom: 4px;
}

.ingredients-text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    line-height: 1.45;
    color: var(--color-primary);
    margin: 0;
}

/* Visual container representing box slot design */
.visual-box-card {
    background-color: var(--color-white);
    padding: 12px;
    border: 3px double var(--color-accent-gold);
    box-shadow: var(--shadow-hover);
}

.vintage-frame-inner {
    border: 1px solid var(--color-border);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.visual-box-card h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.box-slots {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 25px;
}

.box-slot-row {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 14px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid var(--color-border);
}

.box-slot-row.empty {
    border: 1px dashed var(--color-accent-gold);
    background-color: rgba(251, 249, 244, 0.4);
    cursor: pointer;
    padding: 12px 14px;
}

.box-slot-row.empty:hover {
    background-color: rgba(197, 168, 128, 0.08);
}

.slot-row-index {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-accent-gold);
    width: 24px;
    flex-shrink: 0;
}

.slot-row-plus {
    font-size: 1.1rem;
    color: var(--color-accent-gold);
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: bold;
}

.slot-row-thumb {
    width: 32px;
    height: 48px;
    flex-shrink: 0;
    margin-right: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slot-row-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(44, 26, 14, 0.1));
}

.slot-row-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}

.slot-row-placeholder {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.slot-row-category {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

/* Category-specific styling */
.box-slot-row.classic .slot-row-category {
    color: #7A121A;
}
.box-slot-row.dessert .slot-row-category {
    color: #4A1E14;
}
.box-slot-row.botanic .slot-row-category {
    color: #D68C2D;
}
.box-slot-row.keto .slot-row-category {
    color: #A31E32;
}

.slot-row-name {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.2;
}

.slot-row-ingredients {
    display: block;
    font-family: var(--font-body);
    font-size: 0.68rem;
    line-height: 1.4;
    color: var(--color-text-muted);
    margin-top: 3px;
    opacity: 0.85;
}

.slot-row-remove {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    line-height: 1;
    margin-left: 10px;
    flex-shrink: 0;
}

.slot-row-remove:hover {
    color: #ff0000;
    transform: scale(1.15);
}

/* Filled slot background colors */
.box-slot-row.filled {
    background-color: var(--color-white);
    box-shadow: 0 2px 6px rgba(44, 26, 14, 0.02);
}

.box-slot-row.filled.classic {
    border-left: 3px solid #7A121A;
}
.box-slot-row.filled.dessert {
    border-left: 3px solid #4A1E14;
}
.box-slot-row.filled.botanic {
    border-left: 3px solid #D68C2D;
}
.box-slot-row.filled.keto {
    border-left: 3px solid #A31E32;
}

/* Box Summary & details */
.box-summary {
    width: 100%;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.box-summary-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.box-summary-row.highlight {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary);
    border-top: 1px dashed var(--color-border);
    padding-top: 10px;
}

/* ==========================================================================
   FLAVORS SECTION (GRID FILTERED)
   ========================================================================== */

.flavor-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.tab-btn {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 20px;
    border-bottom: 2px solid transparent;
    color: var(--color-text-muted);
}

.tab-btn:hover {
    color: var(--color-primary);
}

.tab-btn.active {
    color: var(--color-accent-burgundy);
    border-bottom-color: var(--color-accent-burgundy);
    font-weight: 600;
}

.flavors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.flavor-card {
    background-color: #fdfaf5; /* Warm premium beige background */
    border: 1px solid var(--color-border);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.flavor-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--card-bg-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.16; /* Clean overlay watermark view that preserves legibility */
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.flavor-card:hover::before {
    opacity: 0.26; /* Slightly highlight the image on hover */
}

.flavor-card > * {
    position: relative;
    z-index: 2; /* Forces contents to sit above the pseudo background element */
}

.flavor-card:hover {
    border-color: var(--color-accent-gold);
    box-shadow: var(--shadow-premium);
    transform: translateY(-3px);
}

.flavor-header {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}

.flavor-cat {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent-gold);
}

.flavor-card h3 {
    font-size: 1.35rem;
    line-height: 1.2;
    color: var(--color-primary); /* Deep brown */
    font-weight: 700;
}

.flavor-desc {
    font-size: 0.88rem;
    color: #2a180c; /* Deep dark cocoa color for maximum readability */
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 450;
}

.flavor-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--color-accent-light);
    padding-top: 15px;
}

.maceration-time {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.btn-add-quick {
    background-color: var(--color-primary);
    color: var(--color-bg);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
}

.btn-add-quick:hover {
    background-color: var(--color-accent-gold);
    color: var(--color-primary);
    transform: rotate(90deg);
}

/* Keto Tag and styling card */
.keto-tag-card {
    border: 1px dashed var(--color-accent-green);
}

.keto-tag {
    background-color: var(--color-accent-green);
    color: var(--color-bg);
    font-family: var(--font-sans);
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 6px;
    width: fit-content;
    border-radius: 1px;
}

/* ==========================================================================
   HANIA SECTION (E-E-A-T STORY)
   ========================================================================== */

.hania-section {
    background: linear-gradient(135deg, var(--color-accent-light) 0%, rgba(253, 250, 245, 0.7) 100%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.hania-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.hania-image-box {
    position: relative;
    padding: 12px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: 0 15px 35px rgba(44, 26, 14, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.hania-image-box::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid var(--color-accent-gold);
    pointer-events: none;
    z-index: 2;
}

.hania-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hania-image-box:hover .hania-img {
    transform: scale(1.02);
}

.hania-text-box {
    display: flex;
    flex-direction: column;
}

.hania-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.35rem;
    color: var(--color-primary);
    margin-bottom: 25px;
    line-height: 1.4;
    position: relative;
    padding: 20px 25px 20px 30px;
    border-left: 3px solid var(--color-accent-gold);
    background: rgba(255, 255, 255, 0.45);
    border-radius: 0 4px 4px 0;
}

.hania-quote::before {
    content: "“";
    position: absolute;
    top: -12px;
    left: 10px;
    font-size: 5rem;
    font-family: 'Georgia', serif;
    color: rgba(197, 160, 89, 0.16);
    line-height: 1;
}

.hania-ai-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(197, 160, 89, 0.08);
    border-radius: 4px;
    border: 1px dashed rgba(197, 160, 89, 0.35);
    margin-bottom: 25px;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.hania-ai-disclaimer .sparkle-icon {
    color: var(--color-accent-gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.hania-text-box p {
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

/* ==========================================================================
   QUALITY SECTION (INTERACTIVE HOTSPOTS)
   ========================================================================== */

.quality-section {
    padding: 45px 0;
    background-color: var(--color-bg);
}

.quality-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.quality-content {
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    border: none;
    box-shadow: none;
    max-width: 100%;
}

.quality-interactive-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.hotspots-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(44, 26, 14, 0.12);
    border: 1px solid var(--color-border);
    max-width: 380px;
    width: 100%;
}

.quality-hotspots-img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
}

.quality-content h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.quality-content p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.quality-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.quality-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--color-text);
    font-size: 0.95rem;
}

.quality-list svg {
    color: var(--color-accent-green);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Hotspots bottle visualizer styles */
.quality-interactive-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.hotspots-wrapper {
    position: relative;
    border: 3px double var(--color-accent-gold);
    padding: 8px;
    background-color: var(--color-white);
    max-width: 440px; /* Increased from 380px to make image larger */
    box-shadow: var(--shadow-premium);
}

.quality-hotspots-img {
    width: 100%;
    height: 560px; /* Increased from 480px */
    object-fit: cover;
}

/* Hotspot Dots and Tooltips */
.hotspot {
    position: absolute;
    z-index: 5;
    transform: translate(-50%, -50%); /* Ensures dot center aligns exactly with coordinates */
}

.hotspot-dot {
    width: 14px; /* Increased from 10px to be more visible */
    height: 14px; /* Increased from 10px */
    border-radius: 50%;
    background-color: var(--color-accent-burgundy); /* Highly visible burgundy background */
    border: 2px solid var(--color-white); /* White border for contrast */
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(44, 26, 14, 0.35);
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.hotspot-dot:hover {
    background-color: var(--color-accent-gold);
    border-color: var(--color-accent-burgundy);
    transform: scale(1.3);
}

/* Pulse animation */
.hotspot-dot::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--color-accent-gold);
    opacity: 0;
    animation: pulse 2s infinite;
    pointer-events: none;
}

@keyframes pulse {
    0% { transform: scale(0.5); opacity: 0; }
    50% { opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Visual pointer lines & text labels */
.hotspot-pointer-line {
    position: absolute;
    height: 1.5px; /* Slightly thicker line for better visibility */
    background: linear-gradient(to right, rgba(235, 204, 133, 0) 0%, rgba(235, 204, 133, 0.9) 30%, rgba(235, 204, 133, 0.95) 100%); /* Brighter champagne gold */
    opacity: 0.95;
    z-index: 4;
    pointer-events: none;
    transform: translateY(-50%);
}

/* Left-pointing lines have reversed gradient direction */
.hotspot-pointer-line[style*="left: 30%"] {
    background: linear-gradient(to left, rgba(235, 204, 133, 0) 0%, rgba(235, 204, 133, 0.9) 30%, rgba(235, 204, 133, 0.95) 100%);
}

.hotspot-label {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 0.64rem; /* Made font smaller as requested */
    font-weight: 600; /* Slightly lighter weight for elegance */
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-primary);
    background-color: var(--color-white);
    padding: 2px 5px; /* Compact padding */
    border-radius: 2px;
    border: 1px solid var(--color-accent-light);
    box-shadow: 0 1px 3px rgba(44, 26, 14, 0.05);
    z-index: 4;
    white-space: nowrap;
    transform: translateY(-50%);
    pointer-events: none;
}

.hotspot-label.align-left {
    left: 4%; /* Bound to the left margin of the card */
    right: auto;
    text-align: left;
}

.hotspot-label.align-right {
    right: 4%; /* Bound to the right margin of the card to guarantee no overflow */
    left: auto;
    text-align: right;
}

@media (max-width: 1024px) {
    .hotspot-pointer-line, .hotspot-label {
        display: none !important; /* Hide on tablets and mobile devices to avoid screen edge clipping and overflow */
    }
}

.hotspot-tooltip {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 200px;
    background-color: var(--color-white);
    border: 1px solid var(--color-accent-gold);
    padding: 15px;
    box-shadow: var(--shadow-hover);
    border-radius: 2px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 10;
}

.hotspot.tooltip-bottom .hotspot-tooltip {
    bottom: auto;
    top: 30px;
    transform: translateX(-50%) translateY(-10px);
}

.hotspot-tooltip h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hotspot-tooltip p {
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--color-text-muted);
    margin: 0;
}

.hotspot:hover .hotspot-tooltip {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS
   ========================================================================== */

.reviews-section {
    background-color: var(--color-accent-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 45px 0;
}

.reviews-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    width: 100%;
}

.reviews-track-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -webkit-overflow-scrolling: touch;
}

.reviews-track-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.reviews-track {
    display: flex;
    gap: 20px;
    padding: 10px 0;
}

.review-slide-card {
    flex: 0 0 160px;
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(44, 26, 14, 0.05);
    cursor: zoom-in;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-slide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(44, 26, 14, 0.1);
}

.review-img-thumb {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Slider navigation buttons */
.slider-btn {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.8rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
    line-height: 1;
    padding-bottom: 6px; /* Align arrow vertically */
}

.slider-btn:hover {
    background-color: var(--color-accent-gold);
    color: var(--color-white);
    border-color: var(--color-accent-gold);
}

/* Lightbox Modal styles */
.reviews-lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(44, 26, 14, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reviews-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.reviews-lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: var(--color-white);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--color-accent-gold);
}

/* ==========================================================================
   ADD REVIEW MODAL FORM
   ========================================================================== */

.review-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 26, 14, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-modal.active {
    display: flex;
    opacity: 1;
}

.review-modal-content {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 4px;
    border: 1px solid var(--color-border);
    max-width: 480px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.review-modal.active .review-modal-content {
    transform: scale(1);
}

.review-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--color-text-muted);
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.review-modal-close:hover {
    color: var(--color-accent-burgundy);
}

.review-modal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--color-primary);
}

.review-modal-subtitle {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input[type="text"],
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: 3px;
    font-family: inherit;
    font-size: 0.95rem;
    background-color: var(--color-bg);
    color: var(--color-text);
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
    border-color: var(--color-accent-gold);
    outline: none;
}

/* Rating Stars Select */
.rating-stars-select {
    display: flex;
    gap: 5px;
}

.star-select {
    font-size: 2rem;
    color: #e0d0c0;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.star-select:hover {
    transform: scale(1.15);
}

.star-select.selected {
    color: var(--color-accent-gold);
}

/* Success State styling */
.review-success-msg {
    text-align: center;
    padding: 20px 0;
}

.review-success-msg h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

/* ==========================================================================
   INSPIRATIONS (BLOG SECTION)
   ========================================================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-accent-gold);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    background-color: var(--color-accent-light);
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    flex-grow: 1;
}

.blog-content h3 {
    font-size: 1.2rem;
    line-height: 1.3;
}

.blog-content p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    flex-grow: 1;
}

.blog-link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-top: 10px;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */

.faq-section {
    background-color: var(--color-accent-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.faq-category-block {
    max-width: 800px;
    margin: 0 auto 30px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(44, 26, 14, 0.03);
}

.faq-category-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-category-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary);
    margin: 0;
    letter-spacing: 0.02em;
}

.faq-category-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-accent-gold);
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    background-color: var(--color-bg);
    line-height: 1;
    padding-bottom: 2px;
}

.faq-category-block:hover .faq-category-icon {
    border-color: var(--color-accent-gold);
    background-color: var(--color-accent-gold);
    color: var(--color-white);
}

.faq-category-block.open .faq-category-icon {
    transform: rotate(45deg);
    background-color: var(--color-accent-gold);
    color: var(--color-white);
    border-color: var(--color-accent-gold);
}

.faq-category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-category-block.open .faq-category-content {
    margin-top: 25px;
    border-top: 1.5px double var(--color-accent-gold);
    padding-top: 20px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 2px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--color-accent-gold);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary);
}

.faq-icon-arrow {
    font-size: 1.4rem;
    color: var(--color-accent-gold);
    line-height: 1;
    transition: var(--transition-fast);
}

/* Opened Accordion Item states */
.faq-item.active {
    border-color: var(--color-primary);
    background-color: var(--color-white);
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(45deg);
    color: var(--color-primary);
}

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

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

/* ==========================================================================
   SEO EDITORIAL SECTION
   ========================================================================== */
.seo-editorial-section {
    position: relative;
    border-top: 1px solid var(--color-border);
    padding: 50px 0;
    background-image: 
        linear-gradient(rgba(245, 239, 228, 0.80), rgba(245, 239, 228, 0.80)), /* Opacity reduced to 80% to make background image clearly visible */
        url('images/brand/seo_text.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Balanced equal columns */
    gap: 60px;
    align-items: start;
    max-width: 1100px;
    margin: 45px auto 0; /* Margin top to separate grid from full-width intro header */
}

.seo-column-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.seo-subtitle {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-accent-gold);
    margin-bottom: 12px;
}

.seo-column-left h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.25;
    margin-bottom: 20px;
}

.seo-divider {
    width: 240px;
    max-width: 100%;
    height: auto;
    margin-bottom: 24px;
    opacity: 0.8;
}

.seo-highlight {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.seo-column-left p {
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--color-text-muted);
}

.seo-column-right {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 48px; /* Offset to align horizontally with left column text start */
}

.seo-column-right h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.seo-column-right p {
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--color-text-muted);
    margin: 0;
}

/* Single Column Editorial Layout for Premium Storytelling */
.seo-single-column {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.seo-body-text {
    text-align: left;
    margin-top: 40px;
}

.seo-body-text h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-primary);
    margin: 40px 0 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.seo-body-text p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text); /* Normal readable color for excellent accessibility */
    margin-bottom: 20px;
}

.seo-section-divider {
    height: 1px;
    background-color: var(--color-border);
    opacity: 0.4;
    margin: 30px 0;
}

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */

.newsletter-section {
    background-color: var(--color-primary);
    color: var(--color-bg);
    background-image: radial-gradient(rgba(251, 249, 244, 0.05) 1px, transparent 0);
    background-size: 24px 24px;
    border-bottom: 1px solid rgba(251,249,244,0.1);
}

.newsletter-section h2 {
    color: var(--color-bg);
    font-size: 2.3rem;
    margin-bottom: 10px;
}

.newsletter-desc {
    max-width: 600px;
    margin: 0 auto 35px;
    color: rgba(251, 249, 244, 0.7);
    font-size: 0.95rem;
}

.newsletter-form {
    max-width: 580px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group-inline {
    display: flex;
    width: 100%;
}

.newsletter-form input[type="email"] {
    flex-grow: 1;
    background-color: rgba(251, 249, 244, 0.08);
    border: 1px solid rgba(251, 249, 244, 0.2);
    border-right: none;
    padding: 15px 20px;
    color: var(--color-bg);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    border-radius: 2px 0 0 2px;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--color-accent-gold);
    background-color: rgba(251, 249, 244, 0.12);
}

.newsletter-form .btn {
    border-radius: 0 2px 2px 0;
    white-space: nowrap;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 5px;
    accent-color: var(--color-accent-gold);
}

.form-checkbox label {
    font-size: 0.7rem;
    color: rgba(251, 249, 244, 0.5);
    line-height: 1.4;
}

.form-feedback {
    margin-top: 15px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
}

.form-feedback.success {
    color: var(--color-accent-gold);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.main-footer {
    background-color: #190F0C;
    color: rgba(251, 249, 244, 0.65);
    border-top: 3px solid var(--color-accent-gold);
    font-size: 0.85rem;
    position: relative;
}

.footer-container {
    width: 100%;
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 70px 20px 45px;
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 0.8fr) 1.2fr;
    gap: 40px;
}

.footer-brand-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-logo-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    /* Convert dark logo to warm gold tone: black → white → warm sepia gold */
    filter: brightness(0) invert(1) sepia(0.5) hue-rotate(-15deg) saturate(1.8) brightness(0.92);
}

.footer-logo-divider {
    width: 1px;
    height: 46px;
    background-color: rgba(197, 168, 128, 0.35);
    margin: 0 4px 0 0;
    flex-shrink: 0;
}

.footer-logo-text-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}

.footer-logo-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.1;
    color: var(--color-accent-gold);
    border-bottom: 1px solid rgba(197, 168, 128, 0.4);
    padding-bottom: 3px;
    text-transform: uppercase;
}

.footer-logo-subtitle {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    color: rgba(197, 168, 128, 0.7);
    line-height: 1;
    text-transform: uppercase;
}

.footer-brand-column p {
    line-height: 1.6;
    color: rgba(251, 249, 244, 0.55);
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

.footer-social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(197, 168, 128, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(251, 249, 244, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    color: var(--color-white);
    border-color: var(--color-accent-gold);
    background-color: rgba(197, 168, 128, 0.1);
    transform: translateY(-2px);
}

.footer-legal-warning {
    font-size: 0.68rem;
    line-height: 1.5;
    border-left: 2px solid var(--color-accent-burgundy);
    background-color: rgba(92, 29, 36, 0.15);
    padding: 12px 16px;
    color: rgba(251, 249, 244, 0.5);
    border-radius: 2px;
}

.footer-links-column h4 {
    color: var(--color-accent-gold);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--color-accent-gold);
    opacity: 0.5;
}

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

.footer-links-column ul a {
    color: rgba(251, 249, 244, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-column ul a:hover {
    color: var(--color-accent-gold);
    transform: translateX(4px);
}

.contact-info p {
    margin-bottom: 12px;
    line-height: 1.5;
    color: rgba(251, 249, 244, 0.65);
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info svg {
    color: var(--color-accent-gold);
    flex-shrink: 0;
}

/* Footer Bottom styles */
.footer-bottom {
    background-color: #110A08;
    border-top: 1px solid rgba(251, 249, 244, 0.05);
    padding: 20px 20px;
}

.footer-bottom-container {
    width: 100%;
    max-width: var(--site-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: rgba(251, 249, 244, 0.45);
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 16px;
}

.payment-badge {
    height: 22px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.payment-badge:hover {
    opacity: 1;
}

.payment-badge svg {
    height: 100%;
    width: auto;
}

/* ==========================================================================
   SHOPPING CART DRAWER ( Wysuwany panel z prawej )
   ========================================================================== */

.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(44, 18, 26, 0.45);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.cart-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background-color: var(--color-bg);
    z-index: 1101;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.cart-drawer.open {
    right: 0;
}

.cart-header {
    padding: 25px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cart-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--color-text-muted);
    transition: background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.cart-close-btn:hover {
    background: var(--color-accent-light);
    color: var(--color-primary);
}

/* Free Shipping Progress bar styles */
.free-shipping-progress-container {
    padding: 15px 25px;
    background-color: var(--color-accent-light);
    border-bottom: 1px solid var(--color-border);
}

#free-shipping-msg {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    text-align: center;
}

.progress-bar-bg {
    width: 100%;
    height: 6px;
    background-color: var(--color-border);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background-color: var(--color-accent-green);
    transition: width 0.4s ease;
}

/* Cart Items Container */
.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-empty-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--color-text-muted);
    gap: 15px;
}

.empty-cart-icon {
    color: var(--color-border);
}

/* Single Cart item row styling */
.cart-item-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 15px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 15px;
}

.cart-item-img-box {
    width: 80px;
    height: 80px;
    border: 1px solid var(--color-border);
    background-color: var(--color-accent-light);
}

.cart-item-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.cart-item-details h4 {
    font-size: 0.95rem;
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--color-text);
}

.cart-item-remove {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.cart-item-remove:hover {
    color: #ff0000;
}

.cart-item-flavors {
    font-size: 0.75rem;
    color: var(--color-accent-gold);
    font-style: italic;
    margin: 4px 0 8px;
}

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

.quantity-controller {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
}

.qty-btn {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background-color: var(--color-accent-light);
}

.qty-value {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    width: 25px;
    text-align: center;
}

.cart-item-price {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* Cart drawer footer checkout */
.cart-footer {
    padding: 25px;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.cart-summary-row.highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    border-top: 1px dashed var(--color-border);
    padding-top: 12px;
}

.checkout-btn {
    margin-top: 10px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (Mobile and Tablets)
   ========================================================================== */

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .header-container-row {
        padding: 12px 15px;
    }
    
    .logo-img-header {
        height: 44px;
    }
    
    .logo-divider-vertical {
        height: 34px;
    }
    
    .logo-title {
        font-size: 1.2rem;
        letter-spacing: 0.05em;
    }
    
    .logo-subtitle {
        font-size: 0.65rem;
        letter-spacing: 0.08em;
    }
    
    .main-nav {
        display: none; /* Collapse menu to mobile toggle at 1024px */
    }
    
    .menu-mobile-toggle {
        display: block;
    }
    
    .header-actions-group {
        gap: 10px;
    }
    
    .hero-section {
        min-height: auto;
        padding: 80px 0;
        display: block;
    }
    
    .hero-bg-media {
        background-image: 
            linear-gradient(to bottom, 
                rgba(245, 239, 228, 0.65) 0%, 
                rgba(245, 239, 228, 0.55) 60%,
                rgba(245, 239, 228, 0.7) 100%), 
            url('images/brand/hero_new.webp');
        background-position: center top;
    }
    
    .hero-inner {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 40px 20px;
        align-items: center;
        text-align: center;
    }
    
    .hero-ornament-img {
        width: 220px;
        margin: 0 auto;
    }
    
    .hero-separator-img {
        width: 300px;
        margin: 0 auto;
    }
    
    .hero-cursive {
        transform: rotate(-3deg) translateX(0);
        margin-top: 8px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        width: 100%;
    }
    
    .hiw-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .kits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .builder-grid-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .flavors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hania-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quality-section {
        padding: 60px 0;
    }

    .quality-banner-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quality-content {
        padding: 0;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-brand-column {
        grid-column: span 2;
    }
    
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .seo-column-right {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    /* Header styles inherited from 1024px query */
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .kits-grid {
        grid-template-columns: 1fr;
    }
    
    .flavors-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-brand-column {
        grid-column: span 1;
    }
    
    .size-options {
        grid-template-columns: 1fr;
    }
    
    .box-slots {
        min-height: auto;
    }
    
    .form-group-inline {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form input[type="email"] {
        border-radius: 2px;
        border-right: 1px solid rgba(251, 249, 244, 0.2);
    }
    
    .newsletter-form .btn {
        border-radius: 2px;
    }
}
