@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Thai:wght@100;200;300;400;500;600;700&display=swap');
        
body {
    scroll-behavior: smooth;
    background-color: #0a0a0a;
}

.gradient-text {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(90deg, #ff5757, #ff0000);
}

.product-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 25px -5px rgba(255, 0, 0, 0.1), 0 10px 10px -5px rgba(255, 0, 0, 0.04);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(255, 0, 0, 0.25);
}

.glow-effect {
    position: relative;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.2) 0%, transparent 70%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-effect:hover::after {
    opacity: 1;
}

.section-divider {
    height: 150px;
    background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(255,0,0,0.1) 100%);
}

.floating-bg {
    animation: float 8s ease-in-out infinite;
}

.staggered-animation > * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

.staggered-animation > *:nth-child(1) { animation-delay: 0.1s; }
.staggered-animation > *:nth-child(2) { animation-delay: 0.3s; }
.staggered-animation > *:nth-child(3) { animation-delay: 0.5s; }
.staggered-animation > *:nth-child(4) { animation-delay: 0.7s; }

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

.blob {
    position: absolute;
    filter: blur(40px);
    border-radius: 50%;
    z-index: -1;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,0,0,0.3) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,87,87,0.2) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
}

.testimonial-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.2);
}

.ingredient-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.3);
}

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.mobile-menu.open {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.countdown-timer {
    font-family: 'IBM Plex Sans Thai', sans-serif;
}

.badge-pulse {
    animation: pulse-slow 2s infinite;
}

.floating-button {
    animation: bounce-slow 3s infinite;
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 15px;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}



@keyframes scrollDown {
    0% {
        transform: translateY(0) translateX(-50%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(20px) translateX(-50%);
        opacity: 0;
    }
}

.promo-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    overflow: hidden;
}

.promo-ribbon::before,
.promo-ribbon::after {
    content: '';
    position: absolute;
    z-index: -1;
}

.promo-ribbon::before {
    width: 200%;
    height: 40px;
    background-color: #ff0000;
    transform: rotate(45deg) translateY(40px);
    right: -20px;
    top: 30px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.promo-ribbon::after {
    width: 10px;
    height: 10px;
    background-color: #800000;
    bottom: 0;
    right: 0;
    box-shadow: -140px 0 #800000;
}

.promo-text {
    position: absolute;
    display: block;
    width: 150px;
    padding: 15px 0;
    background-color: #ff0000;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    color: #fff;
    font-size: 14px;
    text-align: center;
    right: -30px;
    top: 30px;
    transform: rotate(45deg);
}

/*------Footer -------*/
    .footer-gradient {
        background: linear-gradient(135deg, #18181b 0%, #09090b 100%);
        position: relative;
    }
    .footer-gradient::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ef4444 0%, #b91c1c 50%, #ef4444 100%);
        box-shadow: 0 2px 8px rgba(239, 68, 68, 0.5);
    }
    .social-hover {
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .social-hover:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    }
    .contact-item {
        position: relative;
        padding-left: 28px;
    }
    .contact-item i {
        position: absolute;
        left: 0;
        top: 2px;
        color: #ef4444;
    }