/* ========================================
   VANUAT COFFEE - DARK THEME CSS
   Complete Redesign with Chocolate Brown Theme
   ======================================== */

/* ========================================
   1. CSS VARIABLES & COLOR PALETTE
   ======================================== */
:root {
    /* Primary Colors - Dark Chocolate Coffee Browns */
    --primary-dark: #1a0f0a;
    /* Deep espresso black */
    --primary-brown: #2d1810;
    /* Dark chocolate brown */
    --secondary-brown: #3d2416;
    /* Medium chocolate brown */
    --tertiary-brown: #4d2f1c;
    /* Light chocolate brown */

    /* Accent Colors - Gold/Orange */
    --accent-gold: #d4a574;
    /* Warm gold */
    --accent-orange: #e67e22;
    /* Vibrant orange */
    --accent-light-gold: #f4d4a0;
    /* Light gold */

    /* Text Colors */
    --text-white: #ffffff;
    --text-light: #f5f5f5;
    --text-gray: #cccccc;
    --text-muted: #999999;

    /* Background Colors */
    --bg-dark: #1a0f0a;
    --bg-card: #2d1810;
    --bg-card-hover: #3d2416;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(212, 165, 116, 0.3);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', sans-serif;
}

/* ========================================
   2. GLOBAL RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   3. TYPOGRAPHY
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: clamp(2rem, 4vw, 2rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 1.1rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

h4 {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-light-gold);
}

/* ========================================
   4. HEADER & NAVIGATION
   ======================================== */
.dark-header {
    background-color: rgba(26, 15, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.dark-header.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: min(1680px, 100%);
    margin: 0 auto;
    padding: 0 clamp(0.75rem, 2vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

/* Single row, centered between logo and auth; horizontal scroll if the row is wider than the slot. */
.header-nav {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: center;
    justify-content: safe center;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 165, 116, 0.45) transparent;
}

.header-nav::-webkit-scrollbar {
    height: 5px;
}

.header-nav::-webkit-scrollbar-thumb {
    background: rgba(212, 165, 116, 0.45);
    border-radius: 99px;
}

.header-nav::-webkit-scrollbar-track {
    background: transparent;
}

.header-auth {
    display: none;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

@media (min-width: 993px) {
    .header-auth {
        display: flex;
    }
}

/* Logo */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
    white-space: nowrap;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.45rem;
    list-style: none;
    flex-shrink: 0;
    width: max-content;
    margin: 0 auto;
    padding: 0.2rem 0;
}

.nav-menu > li {
    flex-shrink: 0;
}

.header-auth .btn-sm {
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-link {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.45rem 0.2rem;
    letter-spacing: -0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

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

/* User Profile Link in Header */
.user-profile-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    background-color: rgba(212, 165, 116, 0.1);
}

.user-profile-link:hover {
    color: var(--accent-gold);
    background-color: rgba(212, 165, 116, 0.2);
}

.user-profile-link i {
    font-size: 1.25rem;
    color: var(--accent-gold);
}

/* Login Button */
.nav-link-login {
    color: var(--accent-gold);
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    padding: 0.625rem 1.5rem;
    border: 2px solid var(--accent-gold);
    border-radius: var(--radius-md);
    background: transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-link-login:hover {
    color: var(--text-white);
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    flex-shrink: 0;
}

/* Mobile Menu */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(26, 15, 10, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 6rem 2rem 2rem;
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 500;
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background-color: var(--bg-card);
    color: var(--accent-gold);
}

/* Mobile User Profile */
.mobile-user-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(212, 165, 116, 0.1);
}

.mobile-user-profile i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.mobile-user-profile:hover {
    background-color: rgba(212, 165, 116, 0.2);
}

.mobile-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
}

/* ========================================
   5. BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: var(--text-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    color: var(--text-white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-lg {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    white-space: nowrap;
    line-height: 1.1;
}

/* ========================================
   6. HERO SECTION
   ======================================== */
.hero-section {
    min-height: 49vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-brown) 50%, var(--secondary-brown) 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

/* Smaller hero section for coffee page */
.hero-section-small {
    min-height: 40vh;
    padding: 3rem 0;
}

/* Video background (Our Coffee hero) — roasted coffee / smoke + readable text */
.hero-with-video-bg {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-brown) 50%, var(--secondary-brown) 100%);
}

.hero-with-video-bg.hero-section::before {
    display: none;
}

.hero-with-video-bg .hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-with-video-bg .hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
}

.hero-with-video-bg .hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(12, 6, 4, 0.7);
    pointer-events: none;
}

.hero-with-video-bg .hero-content {
    position: relative;
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(230, 126, 34, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Centered single-column hero layout */
.hero-content-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-text-side {
    max-width: 800px;
    margin-bottom: 3rem;
}

.hero-visual-side {
    position: relative;
    width: 100%;
    max-width: 700px;
}

.hero-title {
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl) auto;
    line-height: 1.6;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
    justify-content: center;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-feature-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
    font-size: 1.25rem;
}

.hero-feature-text {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    max-height: 450px;
}

/* Floating Cards on Hero Image */
.hero-float-card {
    position: absolute;
    background: var(--bg-card);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 165, 116, 0.2);
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.hero-float-card i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.hero-float-card div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-float-card strong {
    color: var(--text-white);
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-float-card span {
    color: var(--text-gray);
    font-size: 0.75rem;
}

.hero-float-card.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.hero-float-card.card-2 {
    bottom: 10%;
    left: -10%;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ========================================
   7. SECTION STYLES
   ======================================== */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.section-title {
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Alternate Section Backgrounds */
.section-alt {
    background-color: var(--primary-brown);
}

.section-card {
    background: linear-gradient(135deg, var(--secondary-brown) 0%, var(--tertiary-brown) 100%);
}

/* ========================================
   8. CARD COMPONENTS
   ======================================== */
.card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 165, 116, 0.1);
    height: 100%;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-white);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-white);
}

.card-description {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   9. GRID LAYOUTS
   ======================================== */
.grid {
    display: grid;
    gap: 2rem;
}

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

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

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

/* Auto-fit responsive grid */
.grid-auto {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ========================================
   10. FEATURE CARDS SECTION
   ======================================== */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

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

/* ========================================
   11. STEPS/TIMELINE SECTION
   ======================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 auto var(--spacing-md);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.step-description {
    color: var(--text-gray);
}

/* ========================================
   12. COFFEE PRODUCT CARDS
   ======================================== */
.coffee-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    justify-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.coffee-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

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

.coffee-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

.coffee-card-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, var(--secondary-brown), var(--tertiary-brown));
    display: flex;
    align-items: center;
    justify-content: center;
}

.coffee-card-icon {
    font-size: 5rem;
    color: var(--accent-gold);
}

.coffee-card-content {
    padding: 2rem;
}

.coffee-card-title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
}

.coffee-card-flavor {
    color: var(--accent-gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.coffee-card-description {
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
}

.coffee-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.coffee-card-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-gold);
}

/* ========================================
   13. STATS/NUMBERS SECTION
   ======================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
    justify-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.stat-label {
    color: var(--text-gray);
    font-size: 1.125rem;
}

/* ========================================
   13A. FEATURES WITH IMAGE SECTION
   ======================================== */
.features-with-image-section {
    padding: 6rem 0;
}

.feature-image-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.feature-image-row:last-child {
    margin-bottom: 0;
}

.feature-image-row.reverse {
    direction: rtl;
}

.feature-image-row.reverse>* {
    direction: ltr;
}

.feature-text-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.feature-text-content p {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-text-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-text-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.0625rem;
}

.feature-text-content ul li::before {
    content: '✓';
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
}

.feature-highlight {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   14. TIMELINE SECTION
   ======================================== */
.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 50px;
    top: 80px;
    bottom: -3rem;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-gold), transparent);
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-badge {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: var(--text-white);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.timeline-content {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.timeline-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.timeline-list {
    list-style: none;
}

.timeline-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.timeline-list li::before {
    content: '✓';
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ========================================
   15. CERTIFICATION/TRUST BADGES
   ======================================== */
.certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.certification-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(212, 165, 116, 0.1);
    transition: all 0.3s ease;
}

.certification-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.certification-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-white);
    margin: 0 auto var(--spacing-md);
}

/* ========================================
   16. VIDEO DEMO SECTION
   ======================================== */
.video-demo-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-content {
    max-width: 100%;
}

.video-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.video-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.0625rem;
}

.video-features li::before {
    content: '✓';
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.video-placeholder {
    background: linear-gradient(135deg, var(--secondary-brown), var(--tertiary-brown));
    border-radius: var(--radius-lg);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    border: 1px solid rgba(212, 165, 116, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-lg);
}

.video-play-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-white);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.video-placeholder-text {
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 600;
}

/* ========================================
   17. COMPARISON TABLE
   ======================================== */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 0 auto;
}

.comparison-table {
    width: 100%;
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.comparison-table th {
    background-color: var(--secondary-brown);
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.comparison-table td {
    color: var(--text-light);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background-color: var(--bg-card-hover);
}

/* ========================================
   18. TESTIMONIALS
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    justify-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(212, 165, 116, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-stars i {
    color: var(--accent-gold);
    font-size: 1.25rem;
}

.testimonial-quote {
    color: var(--text-light);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
    font-weight: 700;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ========================================
   19. CTA SECTIONS
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    padding: 5rem 0;
    text-align: center;
    border-radius: var(--radius-xl);
    margin: 0 2rem;
}

.cta-section .section-title {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.cta-section .section-subtitle {
    color: var(--primary-dark);
    margin-bottom: 2.5rem;
}

.cta-section .btn-primary {
    background-color: var(--primary-dark);
    color: var(--text-white);
    margin-top: 1rem;
}

.cta-section .btn-primary:hover {
    background-color: var(--primary-brown);
}

/* ========================================
   20. FOOTER
   ======================================== */
.dark-footer {
    background-color: var(--primary-dark);
    border-top: 1px solid rgba(212, 165, 116, 0.1);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-md);
}

.footer-description {
    color: var(--text-gray);
    line-height: 1.7;
}

.footer-section-title {
    color: var(--accent-gold);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.footer-contact i {
    color: var(--accent-gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.1);
    text-align: center;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ========================================
   21. PRICING CARDS
   ======================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    border: 2px solid rgba(212, 165, 116, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: scale(1.05);
}

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

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: var(--text-white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-plan-name {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.pricing-currency {
    font-size: 1.5rem;
    color: var(--text-gray);
}

.pricing-period {
    font-size: 1rem;
    color: var(--text-gray);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ========================================
   22. FAQ SECTION
   ======================================== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 165, 116, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: all 0.3s ease;
}

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

.faq-icon {
    color: var(--accent-gold);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* FAQ Category Headings */
.faq-category-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 2rem;
    text-align: center;
}

/* ========================================
   23. CONTACT FORM
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-white);
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    color: var(--text-gray);
    margin: 0;
}

.contact-form {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: var(--primary-brown);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

/* ========================================
   24. GUIDES/BLOG CARDS
   ======================================== */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.guide-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.1);
    transition: all 0.3s ease;
}

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

.guide-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-brown), var(--tertiary-brown));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.guide-card-icon {
    font-size: 4rem;
    color: var(--accent-gold);
}

.guide-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.guide-card-content {
    padding: 2rem;
}

.guide-card-title {
    font-size: 1.375rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-white);
}

.guide-card-description {
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.guide-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 165, 116, 0.1);
}

.guide-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.guide-card-link {
    color: var(--accent-gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ========================================
   25. RESPONSIVE DESIGN
   ======================================== */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .hero-section {
        min-height: 49vh;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .video-demo-section {
        gap: 3rem;
    }

    /* Navbar refinement for medium devices */
    .nav-menu {
        gap: 0.4rem;
    }

    .nav-link {
        font-size: 0.82rem;
        padding: 0.4rem 0.15rem;
    }

    .nav-link-login {
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }

    .btn-sm {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .header-container {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 1400px) {
    .logo-tagline {
        display: none;
    }

    .nav-menu {
        gap: 0.35rem;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.35rem 0.1rem;
    }

    .nav-link-login {
        font-size: 0.9rem;
        padding: 0.5rem 0.9rem;
    }

    .btn-sm {
        font-size: 0.85rem;
        padding: 0.5rem 0.85rem;
        min-width: 110px;
    }
}

@media (max-width: 1600px) {
    .logo-tagline {
        display: none;
    }
}

/* Tablets */
@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .header-container {
        padding: 0 1.5rem;
    }

    .nav-menu {
        display: none;
    }

    .header-nav {
        display: none;
    }

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

    .section {
        padding: 4rem 0;
    }

    .section-container {
        padding: 0 1.5rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .video-demo-section {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 1.5rem;
    }

    .hero-float-card.card-1 {
        right: 5%;
    }

    .hero-float-card.card-2 {
        left: 5%;
    }

    .feature-image-row {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .feature-image-row.reverse {
        direction: ltr;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .header-container {
        padding: 0 1rem;
    }

    .hero-section {
        min-height: auto;
        padding: 4rem 0;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-description {
        font-size: 1.0625rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-image-container {
        max-width: 100%;
    }

    .hero-float-card {
        padding: 0.75rem 1rem;
    }

    .hero-float-card.card-1 {
        right: 0%;
        top: 5%;
    }

    .hero-float-card.card-2 {
        left: 0%;
        bottom: 5%;
    }

    .section {
        padding: 3rem 0;
    }

    .section-container {
        padding: 0 1rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .feature-cards,
    .steps-grid,
    .coffee-cards,
    .stats-grid,
    .certification-grid,
    .testimonials-grid,
    .pricing-grid,
    .guides-grid {
        grid-template-columns: 1fr;
    }

    .card,
    .feature-card,
    .coffee-card,
    .testimonial-card,
    .pricing-card,
    .guide-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-section {
        margin: 0 1rem;
        padding: 3rem 1.5rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .timeline-item::after {
        display: none;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

    .btn-lg {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }

    .card,
    .feature-card {
        padding: 1.5rem;
    }

    .coffee-card-content,
    .testimonial-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .pricing-amount {
        font-size: 3rem;
    }
}

/* ========================================
   26. UTILITY CLASSES
   ======================================== */
.text-center {
    text-align: center;
}

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

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

.mt-1 {
    margin-top: var(--spacing-xs);
}

.mt-2 {
    margin-top: var(--spacing-sm);
}

.mt-3 {
    margin-top: var(--spacing-md);
}

.mt-4 {
    margin-top: var(--spacing-lg);
}

.mt-5 {
    margin-top: var(--spacing-xl);
}

.mb-1 {
    margin-bottom: var(--spacing-xs);
}

.mb-2 {
    margin-bottom: var(--spacing-sm);
}

.mb-3 {
    margin-bottom: var(--spacing-md);
}

.mb-4 {
    margin-bottom: var(--spacing-lg);
}

.mb-5 {
    margin-bottom: var(--spacing-xl);
}

.pt-1 {
    padding-top: var(--spacing-xs);
}

.pt-2 {
    padding-top: var(--spacing-sm);
}

.pt-3 {
    padding-top: var(--spacing-md);
}

.pt-4 {
    padding-top: var(--spacing-lg);
}

.pt-5 {
    padding-top: var(--spacing-xl);
}

.pb-1 {
    padding-bottom: var(--spacing-xs);
}

.pb-2 {
    padding-bottom: var(--spacing-sm);
}

.pb-3 {
    padding-bottom: var(--spacing-md);
}

.pb-4 {
    padding-bottom: var(--spacing-lg);
}

.pb-5 {
    padding-bottom: var(--spacing-xl);
}

/* ========================================
   27. ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* ========================================
   28. SCROLL TO TOP BUTTON
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}



/* ========================================
   CUSTOM SCROLLBAR
   ======================================== */
/* ========================================
   CUSTOM SCROLLBAR & VARIANTS TABLE
   ======================================== */

/* Variants Scroll Container - Moved from Inline */
.variants-scroll-container {
    overflow-x: auto;
    overflow-y: auto;
    /* Allow scroll */
    max-height: 300px;
    background: var(--bg-card);
    /* Ensure bg matches context */
    -webkit-overflow-scrolling: touch;
    /* Smooth iOS scroll */
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: #2d1810 #1a0f0a;
    /* Firefox */
    display: block;
    /* Ensure block layout */
    width: 100%;
}

/* Global Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1a0f0a;
}

::-webkit-scrollbar-thumb {
    background: #2d1810;
    border-radius: 4px;
    border: 1px solid #3d2416;
}

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

/* 
   MOBILE SCROLLBAR FORCE 
   Use high specificity to ensure mobile browsers render it.
*/
.variants-scroll-container::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 8px !important;
    /* Slightly wider for touch */
    height: 8px !important;
    display: block !important;
    background-color: #1a0f0a !important;
}

.variants-scroll-container::-webkit-scrollbar-thumb {
    background-color: #2d1810 !important;
    border-radius: 4px !important;
    border: 1px solid #5a3a2a !important;
    /* Lighter border for better contrast on mobile */
    min-height: 40px;
    /* Ensure thumb isn't too tiny */
}

.variants-scroll-container::-webkit-scrollbar-track {
    background-color: #1a0f0a !important;
    border-radius: 4px !important;
}

/* Media Query to reinforce strictness on small screens */
@media (max-width: 768px) {
    .variants-scroll-container {
        max-height: 250px;
        /* Reduce height slightly on mobile to encourage scrolling */
    }

    .variants-scroll-container::-webkit-scrollbar {
        width: 8px !important;
        display: block !important;
    }

    .variants-scroll-container::-webkit-scrollbar-thumb {
        background-color: #2d1810 !important;
        border: 1px solid #7a5c48 !important;
        /* Even lighter border for visibility against dark bg */
    }
}

/* Firefox Global Support */
* {
    scrollbar-width: thin;
    scrollbar-color: #2d1810 #1a0f0a;
}

/* ========================================
   END OF DARK COFFEE THEME CSS
   ======================================== */