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

:root {
    --ocean-blue: #005C80;
    --champagne-gold: #D4AF37;
    --salmon-pink: #FA8072;
    --pure-white: #FFFFFF;
    --off-white: #F8F9FA;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --shadow: rgba(0, 0, 0, 0.1);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--pure-white);
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow: visible;
}

/* ===== Typography ===== */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--ocean-blue);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

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

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--champagne-gold), var(--salmon-pink));
    margin-bottom: 40px;
}

.title-underline.center {
    margin-left: auto;
    margin-right: auto;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ocean-blue);
}

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

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a:hover {
    color: var(--ocean-blue);
}

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

.btn-order-nav {
    background: var(--ocean-blue);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-order-nav:hover {
    background: var(--champagne-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--ocean-blue);
    transition: all 0.3s ease;
}

/* ===== WhatsApp Widget ===== */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    font-family: var(--font-body);
}

/* Floating Button */
.whatsapp-float {
    position: relative;
    width: 60px;
    height: 60px;
    background: #25D366;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.whatsapp-float.show {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(0);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float .wa-icon {
    width: 32px;
    height: 32px;
    color: white;
    transition: all 0.3s ease;
}

.whatsapp-float .close-icon {
    display: none;
    font-size: 32px;
    color: white;
    font-weight: 300;
}

.whatsapp-float.active .wa-icon {
    display: none;
}

.whatsapp-float.active .close-icon {
    display: block;
}

.whatsapp-float.active {
    background: #FF5252;
}

.whatsapp-float.active:hover {
    box-shadow: 0 6px 30px rgba(255, 82, 82, 0.5);
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #FF5252;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* WhatsApp Menu */
.whatsapp-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.whatsapp-menu.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Menu Header */
.menu-header {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.menu-avatar {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.menu-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.menu-status {
    margin: 0;
    font-size: 13px;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.menu-close {
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
    line-height: 1;
}

.menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Menu Body */
.menu-body {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.menu-title {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.menu-item {
    width: 100%;
    background: white;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.menu-item:hover {
    background: #F5F5F5;
    border-color: #25D366;
    transform: translateX(5px);
}

.item-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    border-radius: 10px;
    flex-shrink: 0;
}

.item-content {
    flex: 1;
}

.item-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.item-desc {
    font-size: 12px;
    color: var(--text-gray);
}

/* Menu Footer */
.menu-footer {
    padding: 12px 20px;
    background: var(--off-white);
    text-align: center;
    border-top: 1px solid #E0E0E0;
}

.footer-text {
    font-size: 12px;
    color: var(--text-gray);
}

/* Responsive WhatsApp Widget */
@media (max-width: 640px) {
    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
        pointer-events: auto;
    }
    
    .whatsapp-menu {
        width: calc(100vw - 30px);
        max-width: 320px;
        -webkit-overflow-scrolling: touch;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float .wa-icon {
        width: 28px;
        height: 28px;
    }
    
    /* Ensure smooth scrolling in menu */
    .menu-body {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
}

/* ===== Hero Section ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #005C80 0%, #008CB4 50%, #00A8CC 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    animation: wave 15s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-25%) translateY(10px); }
    100% { transform: translateX(0) translateY(0); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--champagne-gold);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--ocean-blue);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

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

.scroll-line {
    width: 2px;
    height: 30px;
    background: white;
    margin-top: 10px;
    opacity: 0.7;
}

/* Fade-in animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Info Bar ===== */
.info-bar {
    background: var(--champagne-gold);
    color: var(--text-dark);
    padding: 15px 0;
    text-align: center;
    font-weight: 500;
}

.info-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.info-icon {
    font-size: 1.5rem;
}

/* ===== Brand Story Section ===== */
.brand-story {
    padding: 120px 0;
    background: var(--off-white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text {
    max-width: 550px;
}

.story-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.story-promises {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow);
}

.promise-icon {
    font-size: 1.5rem;
}

.story-image {
    height: 500px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-image: url('image/norwegian water.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.image-text {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 20px;
}

/* ===== Products Section ===== */
.products {
    padding: 120px 0;
    overflow: visible;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
    width: 100%;
    overflow: visible;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

/* Only enable hover on desktop */
@media (hover: hover) and (pointer: fine) {
    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }
}

.product-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* Product image backgrounds with real salmon photos */
.product-image.norwegian {
    background-image: url('image/norwegian salmon.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-image.alaska {
    background-image: url('image/alasakan salmon.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-image.newzealand {
    background-image: url('image/New Zealand Salmon.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-image.japanese {
    background-image: url('image/japanese salmon.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-content {
    padding: 30px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--ocean-blue);
    margin-bottom: 10px;
}

.product-origin {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.product-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.product-features {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.product-features span {
    background: var(--off-white);
    color: var(--ocean-blue);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-product {
    width: 100%;
    padding: 14px;
    background: var(--ocean-blue);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-product:hover {
    background: var(--champagne-gold);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* ===== Freshness Section ===== */
.freshness {
    padding: 120px 0;
    background: var(--off-white);
}

.freshness-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.freshness-visual {
    height: 400px;
    background-image: url('image/Frozen Perfection.png');
    background-size: cover;
    background-position: center;
}

.temp-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    color: var(--ocean-blue);
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.freshness-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.freshness-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--champagne-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.step h4 {
    color: var(--ocean-blue);
    margin-bottom: 5px;
}

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

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 120px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--champagne-gold);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-name {
    font-weight: 600;
    color: var(--ocean-blue);
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ===== Recipes Section ===== */
.recipes {
    padding: 120px 0;
    background: var(--off-white);
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.recipe-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.recipe-card:active {
    transform: translateY(-5px);
}

.recipe-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.recipe-image.recipe1 {
    background-image: url('image/recipes/Classic Salmon Sashimi.png');
    background-size: cover;
    background-position: center;
}

.recipe-image.recipe2 {
    background-image: url('image/recipes/Grilled Salmon Teriyaki.png');
    background-size: cover;
    background-position: center;
}

.recipe-image.recipe3 {
    background-image: url('image/recipes/Salmon Poke Bowl.png');
    background-size: cover;
    background-position: center;
}

.recipe-image.recipe4 {
    background-image: url('image/recipes/Pan-Seared Salmon.png');
    background-size: cover;
    background-position: center;
}

.recipe-image.recipe5 {
    background-image: url('image/recipes/Oven-Baked Salmon with Herbs.png');
    background-size: cover;
    background-position: center;
}

.recipe-image.recipe6 {
    background-image: url('image/recipes/Creamy Salmon Soup.png');
    background-size: cover;
    background-position: center;
}

.recipe-content {
    padding: 25px;
}

.recipe-content h3 {
    color: var(--ocean-blue);
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.recipe-content p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.recipe-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.recipe-time, .recipe-difficulty, .recipe-servings {
    font-size: 0.85rem;
    color: var(--text-gray);
    background: var(--off-white);
    padding: 6px 12px;
    border-radius: 15px;
}

.btn-recipe {
    width: 100%;
    padding: 12px;
    background: var(--ocean-blue);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.btn-recipe:hover {
    background: var(--champagne-gold);
    color: var(--text-dark);
}

/* Recipe Modal */
.recipe-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}

.recipe-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.recipe-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.recipe-modal-close {
    position: sticky;
    top: 10px;
    right: 10px;
    float: right;
    background: var(--ocean-blue);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 1;
    margin: 20px 20px 0 0;
    transition: all 0.3s ease;
}

.recipe-modal-close:hover {
    background: var(--champagne-gold);
    transform: rotate(90deg);
}

.recipe-modal-body {
    padding: 60px 40px 40px;
}

.recipe-modal-header {
    margin-bottom: 30px;
}

.recipe-modal-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--ocean-blue);
    margin-bottom: 15px;
}

.recipe-modal-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.recipe-modal-meta span {
    font-size: 1rem;
    color: var(--text-gray);
}

.recipe-modal-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.recipe-section {
    margin-bottom: 35px;
}

.recipe-section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--ocean-blue);
    margin-bottom: 20px;
}

.recipe-ingredients {
    list-style: none;
    padding: 0;
}

.recipe-ingredients li {
    padding: 12px 0;
    border-bottom: 1px solid var(--off-white);
    display: flex;
    gap: 10px;
}

.recipe-ingredients li:before {
    content: "✓";
    color: var(--champagne-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.recipe-instructions {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.recipe-instructions li {
    counter-increment: step-counter;
    padding: 20px;
    margin-bottom: 15px;
    background: var(--off-white);
    border-radius: 10px;
    position: relative;
    padding-left: 70px;
}

.recipe-instructions li:before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 20px;
    width: 35px;
    height: 35px;
    background: var(--ocean-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: var(--font-heading);
}

.recipe-tips {
    background: #FFF9E6;
    border-left: 4px solid var(--champagne-gold);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.recipe-tips h4 {
    color: var(--ocean-blue);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.recipe-tips ul {
    margin-left: 20px;
}

.recipe-tips li {
    margin-bottom: 8px;
    color: var(--text-gray);
}

/* ===== B2B Section ===== */
.b2b {
    padding: 120px 0;
    background: var(--ocean-blue);
    color: white;
}

.b2b-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.b2b .section-title {
    color: white;
}

.b2b .title-underline {
    margin-left: auto;
    margin-right: auto;
}

.b2b-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.b2b-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.benefit {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
}

.b2b .btn-primary {
    background: var(--champagne-gold);
    color: var(--text-dark);
}

/* ===== Final CTA Section ===== */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--ocean-blue), #00A8CC);
    position: relative;
    text-align: center;
    color: white;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.95;
}

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

.btn-primary-large, .btn-secondary-large {
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-large {
    background: #25D366;
    color: white;
}

.btn-primary-large:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-secondary-large {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary-large:hover {
    background: white;
    color: var(--ocean-blue);
    transform: translateY(-3px);
}

/* ===== Contact Section ===== */
.contact {
    padding: 120px 0;
    background: var(--off-white);
}

.contact-wrapper {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
}

.contact-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

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

.contact-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px var(--shadow);
}

.contact-item h4 {
    color: var(--ocean-blue);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.social-link {
    padding: 12px 25px;
    background: var(--ocean-blue);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    background: var(--champagne-gold);
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* ===== More Products Catalog Section ===== */
.more-products {
    padding: 100px 0;
    background: var(--pure-white);
    position: relative;
}

.catalog-category-header {
    margin: 60px 0 30px 0;
    padding: 20px 30px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.catalog-category-header h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.catalog-card {
    background: var(--pure-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 92, 128, 0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--off-white);
    position: relative;
}

.catalog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 92, 128, 0.15);
    border-color: var(--champagne-gold);
}

.catalog-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--salmon-pink);
    color: var(--pure-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(250, 128, 114, 0.4);
}

.catalog-image-placeholder {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 3px solid var(--ocean-blue);
    position: relative;
}

.catalog-image-placeholder::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.catalog-content {
    padding: 25px;
}

.catalog-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--ocean-blue);
    margin-bottom: 8px;
}

.catalog-origin {
    font-size: 0.85rem;
    color: var(--champagne-gold);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.catalog-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px;
}

.catalog-pricing {
    background: var(--off-white);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.catalog-weight {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 8px;
    font-weight: 500;
}

.catalog-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.base-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--champagne-gold);
    font-weight: 700;
    text-decoration: none;
}

.sell-price {
    display: none; /* HIDDEN - harga dasar Shopee disembunyikan */
}

.btn-catalog {
    width: 100%;
    padding: 14px 25px;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, #004a66 100%);
    color: var(--pure-white);
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-catalog:hover {
    background: linear-gradient(135deg, var(--champagne-gold) 0%, #b8941f 100%);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.catalog-info {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, #004a66 100%);
    color: var(--pure-white);
    padding: 30px;
    border-radius: 16px;
    margin-top: 40px;
}

.catalog-info p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1rem;
}

.catalog-info p:last-child {
    margin-bottom: 0;
}

.catalog-info strong {
    color: var(--champagne-gold);
}

/* Responsive for Catalog */
@media (max-width: 768px) {
    .more-products {
        padding: 60px 0;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .catalog-image-placeholder {
        height: 180px;
        font-size: 4rem;
    }
    
    .catalog-content {
        padding: 20px;
    }
    
    .catalog-content h3 {
        font-size: 1.2rem;
    }
    
    .catalog-desc {
        font-size: 0.9rem;
        min-height: auto;
    }
    
    .sell-price {
        font-size: 1.4rem;
    }
    
    .catalog-info {
        padding: 20px;
    }
    
    .catalog-info p {
        font-size: 0.9rem;
    }
}

/* ===== Pricing Menu Section ===== */
.pricing-menu {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.pricing-menu::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 92, 128, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 92, 128, 0.15);
    border-color: var(--champagne-gold);
}

.pricing-card.highlight {
    border: 2px solid var(--champagne-gold);
    background: linear-gradient(135deg, #ffffff 0%, #fffef9 100%);
}

.pricing-card.premium {
    border: 2px solid var(--ocean-blue);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--champagne-gold);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.pricing-badge.premium-badge {
    background: var(--ocean-blue);
    color: var(--pure-white);
    box-shadow: 0 4px 15px rgba(0, 92, 128, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--off-white);
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--ocean-blue);
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
}

.pricing-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--off-white);
}

.price-item.main-price {
    background: linear-gradient(90deg, rgba(0, 92, 128, 0.05) 0%, transparent 100%);
    padding: 20px 15px;
    margin: 10px -10px;
    border-radius: 10px;
    border: none;
}

.price-item .weight {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.price-item .price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--ocean-blue);
    font-weight: 700;
}

.price-item.main-price .price {
    font-size: 1.8rem;
    color: var(--champagne-gold);
}

.pricing-features {
    list-style: none;
    padding: 20px 0;
    margin: 20px 0;
    flex: 1;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-pricing {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, #004a66 100%);
    color: var(--pure-white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.btn-pricing:hover {
    background: linear-gradient(135deg, #004a66 0%, var(--ocean-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 92, 128, 0.3);
}

.pricing-card.highlight .btn-pricing {
    background: linear-gradient(135deg, var(--champagne-gold) 0%, #b8941f 100%);
    color: var(--text-dark);
}

.pricing-card.highlight .btn-pricing:hover {
    background: linear-gradient(135deg, #b8941f 0%, var(--champagne-gold) 100%);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Bulk Order Info */
.bulk-order-info {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, #004a66 100%);
    border-radius: 20px;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 60px 0 40px;
    box-shadow: 0 15px 50px rgba(0, 92, 128, 0.2);
    position: relative;
    overflow: hidden;
}

.bulk-order-info::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.bulk-icon {
    font-size: 4rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.bulk-content {
    flex: 1;
    color: var(--pure-white);
}

.bulk-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--champagne-gold);
}

.bulk-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.bulk-content .btn-secondary {
    background: var(--pure-white);
    color: var(--ocean-blue);
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bulk-content .btn-secondary:hover {
    background: var(--champagne-gold);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Pricing Notes */
.pricing-notes {
    background: var(--off-white);
    border-left: 4px solid var(--champagne-gold);
    border-radius: 12px;
    padding: 30px 40px;
    margin-top: 40px;
}

.pricing-notes h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--ocean-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-notes ul {
    list-style: none;
    padding: 0;
}

.pricing-notes li {
    padding: 10px 0;
    color: var(--text-gray);
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .pricing-menu {
        padding: 60px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-header h3 {
        font-size: 1.5rem;
    }
    
    .price-item .price {
        font-size: 1.2rem;
    }
    
    .price-item.main-price .price {
        font-size: 1.5rem;
    }
    
    .bulk-order-info {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
    }
    
    .bulk-icon {
        font-size: 3rem;
    }
    
    .bulk-content h3 {
        font-size: 1.5rem;
    }
    
    .bulk-content p {
        font-size: 1rem;
    }
    
    .pricing-notes {
        padding: 25px 20px;
    }
    
    .pricing-notes h4 {
        font-size: 1.1rem;
    }
    
    .pricing-notes li {
        font-size: 0.9rem;
    }
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, #004666 100%);
    color: white;
    padding: 60px 0 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--champagne-gold) 0%, 
        var(--salmon-pink) 50%, 
        var(--champagne-gold) 100%);
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-brand .logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.footer-tagline {
    color: var(--champagne-gold);
    font-size: 1rem;
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--champagne-gold);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--champagne-gold);
    transform: translateY(-2px);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-social a:hover {
    background: var(--champagne-gold);
    border-color: var(--champagne-gold);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    margin-top: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== Popup ===== */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.popup.show {
    opacity: 1;
    pointer-events: all;
}

.popup-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup.show .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: var(--text-dark);
}

.popup-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--ocean-blue);
    margin-bottom: 15px;
}

.popup-content p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-form input {
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.popup-form input:focus {
    outline: none;
    border-color: var(--ocean-blue);
}

/* ===== Reveal Animation ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px;
        box-shadow: -5px 0 20px var(--shadow);
        transition: right 0.3s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
        touch-action: manipulation;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .story-content,
    .freshness-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-items {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .freshness-content {
        grid-template-columns: 1fr;
    }
    
    .freshness-content .freshness-text {
        order: 1;
    }
    
    .freshness-content .freshness-image {
        order: 2;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .story-promises,
    .b2b-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    /* Optimize for mobile touch */
    * {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
    
    body {
        overflow-x: hidden;
        overflow-y: auto;
        position: relative;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta button {
        width: 100%;
        touch-action: manipulation;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-social {
        gap: 15px;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .popup-content {
        padding: 30px 20px;
    }
    
    /* Ensure all buttons are touch-friendly */
    button, .btn-primary, .btn-secondary, .btn-product {
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
    
    /* CRITICAL FIX: Products Section Mobile */
    .products {
        padding: 60px 0;
        overflow: visible;
        height: auto;
        position: relative;
    }
    
    .products .container {
        overflow: visible;
        height: auto;
    }
    
    .products-grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
        width: 100%;
        overflow: visible;
        height: auto;
        position: relative;
    }
    
    .product-card {
        width: 100%;
        max-width: 100%;
        overflow: visible;
        position: relative;
        transform: none !important;
        touch-action: pan-y;
        height: auto;
        min-height: auto;
    }
    
    .product-card:active {
        transform: scale(0.98) !important;
    }
    
    .product-image {
        height: 200px;
        touch-action: none;
        pointer-events: none;
    }
    
    .product-content {
        padding: 20px;
        touch-action: pan-y;
    }
    
    .btn-product {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(37, 211, 102, 0.2);
        pointer-events: auto;
    }
    
    /* Fix all sections for smooth scrolling */
    section {
        overflow: visible;
        height: auto;
        position: relative;
    }
    
    .section-title,
    .section-subtitle {
        touch-action: pan-y;
    }
}

