/* Index CSS for Vrhadi Masala Scroll Animation Page */

/* CSS Variables for Premium Dark Theme */
:root {
    --bg-dark: #0e0b09;
    --bg-card: rgba(22, 17, 15, 0.65);
    --bg-card-solid: #16110f;
    --text-primary: #f5eedc;
    --text-secondary: #bba691;
    --accent-red: #d12b19;
    --accent-orange: #e05325;
    --accent-gold: #ffb03a;
    --border-color: rgba(224, 83, 37, 0.15);
    --border-hover: rgba(224, 83, 37, 0.4);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --glow-shadow: 0 0 20px rgba(224, 83, 37, 0.2);
    --glow-shadow-strong: 0 0 35px rgba(224, 83, 37, 0.4);
}

/* Reset and Core Layout */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(224, 83, 37, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
}

p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Preloader styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #090706;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.8s;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.loader-logo {
    font-size: 2.2rem;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    animation: pulseLogo 2s infinite ease-in-out;
}

.spinner-container {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(224, 83, 37, 0.1);
    border-radius: 50%;
    border-top-color: var(--accent-orange);
    animation: spin 1s linear infinite;
}

.loader-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.progress-bar-container {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-gold));
    transition: width 0.1s ease-out;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulseLogo {
    0%, 100% { opacity: 0.8; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.02); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-red) 100%);
    color: var(--text-primary);
    border: none;
    box-shadow: var(--glow-shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-shadow-strong);
    filter: brightness(1.15);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    margin-left: 12px;
}

.btn-secondary:hover {
    border-color: var(--accent-orange);
    background: rgba(224, 83, 37, 0.05);
}

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

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background: rgba(14, 11, 9, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(224, 83, 37, 0.08);
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1300px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent-orange);
    font-style: italic;
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

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

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

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

.cta-nav {
    background: rgba(224, 83, 37, 0.15);
    border: 1px solid var(--accent-orange);
    color: var(--text-primary);
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.cta-nav:hover {
    background: var(--accent-orange);
    box-shadow: var(--glow-shadow);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 24px 0 24px;
    background: radial-gradient(circle at center, #261611 0%, var(--bg-dark) 70%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(224, 83, 37, 0.03) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
    transform: translateY(-20px);
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--accent-gold);
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-primary) 40%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.scroll-cue {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    opacity: 0.8;
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.mouse-icon {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-secondary);
    border-radius: 12px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-orange);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.8s infinite ease-in-out;
}

@keyframes scrollMouse {
    0% { transform: translate(-50%, 0); opacity: 0; }
    30% { opacity: 1; }
    80% { transform: translate(-50%, 12px); opacity: 0; }
    100% { opacity: 0; }
}

/* Scroll Animation Track & Sticky Elements */
.scroll-track {
    position: relative;
    height: 350vh; /* Control overall scroll speed (more vh = slower scroll animation) */
    background: linear-gradient(to bottom, var(--bg-dark), #140d0a, var(--bg-dark));
}

.sticky-container {
    position: sticky;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(14, 11, 9, 0.4) 0%, rgba(14, 11, 9, 0.9) 100%);
    z-index: 2;
    pointer-events: none;
}

#animation-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: opacity 0.5s ease;
}

/* Story Overlays */
.story-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
    pointer-events: none;
    display: flex;
    align-items: center;
    padding: 0 10%;
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Position story cards at different locations */
#story-1 {
    justify-content: flex-start;
}

#story-2 {
    justify-content: flex-end;
}

#story-3 {
    justify-content: flex-start;
}

.story-overlay.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 36px;
    max-width: 420px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), var(--glow-shadow);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6), var(--glow-shadow-strong);
    transform: translateY(-5px);
}

.card-badge {
    display: inline-block;
    background: rgba(224, 83, 37, 0.15);
    color: var(--accent-gold);
    border: 1px solid var(--accent-orange);
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.glass-card h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.glass-card p {
    font-size: 0.98rem;
    line-height: 1.6;
}

/* Features / Benefits Section */
.features {
    padding: 100px 0;
    background-color: var(--bg-dark);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-size: 0.85rem;
    color: var(--accent-orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary) 50%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    font-size: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-smooth);
}

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

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(224, 83, 37, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 24px auto;
    border: 1px solid rgba(224, 83, 37, 0.2);
    color: var(--accent-orange);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--accent-orange);
    color: var(--text-primary);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--glow-shadow);
}

.feature-icon {
    width: 32px;
    height: 32px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Secret Recipe Section */
.recipe-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-dark), #16110f);
}

.recipe-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 64px;
}

.recipe-image-side {
    flex: 1;
    position: relative;
    height: 480px;
    background: #110d0b;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.recipe-img-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(224, 83, 37, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
}

.sizzling-pot-graphic {
    color: var(--accent-orange);
    z-index: 5;
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 0 10px rgba(224, 83, 37, 0.4));
}

.pot-svg {
    width: 100%;
    height: 100%;
}

.steam {
    animation: steamRise 3s infinite ease-in-out;
    transform-origin: bottom center;
    opacity: 0;
}

.steam-1 { animation-delay: 0s; }
.steam-2 { animation-delay: 1s; }
.steam-3 { animation-delay: 0.5s; }

@keyframes steamRise {
    0% { transform: translateY(5px) scale(0.9); opacity: 0; }
    50% { opacity: 0.6; }
    100% { transform: translateY(-20px) scale(1.1); opacity: 0; }
}

.recipe-text-side {
    flex: 1.2;
}

.recipe-subtitle {
    font-size: 0.85rem;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
}

.recipe-text-side h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.recipe-text-side > p {
    margin-bottom: 32px;
}

.recipe-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.recipe-steps li {
    display: flex;
    gap: 20px;
}

.step-num {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: rgba(224, 83, 37, 0.05);
    color: var(--accent-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.recipe-steps h4 {
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.recipe-steps p {
    font-size: 0.92rem;
    line-height: 1.5;
}

/* Call to Action Section */
.cta-section {
    padding: 120px 24px;
    background: linear-gradient(180deg, #16110f 0%, var(--bg-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 83, 37, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.cta-inner h2 {
    font-size: 3.2rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-primary) 40%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-inner p {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Footer Section */
footer {
    background-color: #070504;
    border-top: 1px solid rgba(224, 83, 37, 0.08);
    padding: 80px 24px 30px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 1.5;
    min-width: 250px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--accent-orange);
    font-style: italic;
    font-weight: 400;
}

.footer-brand p {
    font-size: 0.92rem;
    max-width: 320px;
}

.footer-links {
    flex: 1;
    min-width: 160px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
    font-weight: 600;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    transition: var(--transition-fast);
}

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

.footer-contact {
    flex: 1.2;
    min-width: 220px;
}

.footer-contact p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(187, 166, 145, 0.6);
}

/* RESPONSIVE DESIGN (MEDIA QUERIES) */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .recipe-container {
        flex-direction: column;
        gap: 48px;
    }
    
    .recipe-image-side {
        width: 100%;
        max-width: 500px;
        height: 380px;
        margin: 0 auto;
    }
    
    .story-overlay {
        padding: 0 6%;
    }
}

@media (max-width: 768px) {
    /* Navbar Mobile Menu toggled via JS */
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #0e0b09e6;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: 0.4s ease;
        z-index: 999;
        border-top: 1px solid rgba(224, 83, 37, 0.08);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    /* Hamburger to X transition */
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 12px;
    }
    
    /* Responsive Canvas and Overlays */
    .story-overlay {
        justify-content: center !important;
        align-items: flex-end;
        padding-bottom: 12vh;
    }
    
    .glass-card {
        padding: 24px;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .glass-card h3 {
        font-size: 1.4rem;
    }
    
    .glass-card p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cta-inner h2 {
        font-size: 2.4rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-buttons .btn-outline {
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .recipe-text-side h2 {
        font-size: 2.0rem;
    }
    
    .recipe-steps li {
        gap: 12px;
    }
    
    .step-num {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: rgba(22, 17, 15, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--accent-orange);
    color: var(--accent-gold);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(224, 83, 37, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    box-shadow: var(--glow-shadow-strong);
    color: var(--text-primary);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

/* Blends Page Styles */
.page-header {
    padding: 150px 24px 60px;
    text-align: center;
    background: radial-gradient(circle at center, #261611 0%, var(--bg-dark) 70%);
}

.page-header h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--text-primary) 40%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    padding: 60px 0;
}

.blend-card {
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

.blend-img {
    height: 250px;
    background: #110d0b;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

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

.blend-card:hover .blend-img img {
    transform: scale(1.08);
}

.blend-info {
    padding: 24px;
}

.blend-info h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.blend-price {
    margin-top: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

/* Contact Form Section */
.order-section {
    padding: 80px 24px;
    background-color: var(--bg-dark);
}

.order-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--glow-shadow);
}

.order-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 24px;
}

.order-options .divider {
    color: var(--text-secondary);
    font-weight: bold;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.form-group label {
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 8px rgba(224, 83, 37, 0.3);
}

@media (max-width: 768px) {
    .order-options {
        flex-direction: column;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
