/* =======================================================
   KONG'S TEA — HOMEPAGE MODERN STYLES
   Replaces all inline vintage CSS with modern design
   ======================================================= */

/* ======= GLOBAL OVERRIDES ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    background: #FFFFFF !important;
    color: #1E293B;
}

/* Override all vintage serif fonts globally */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-title,
.footer-brand-name,
.footer-title {
    font-family: 'Inter', sans-serif !important;
}

/* ======= CSS VARIABLES (override vintage) ======= */
:root {
    --primary-color: #F97316;
    --secondary-color: #EA580C;
    --dark-color: #0F172A;
    --light-color: #FFFFFF;
    --gray-color: #F1F5F9;
    --text-color: #1E293B;
    --transition: all 0.3s ease;
}

/* ======= FUN FACT BOX ======= */
#fireworksCanvas {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999;
    mix-blend-mode: screen;
}

#fun-fact-box {
    position: fixed;
    bottom: 24px;
    left: 75px;
    z-index: 3000;
    background: rgba(255, 255, 255, 0.95);
    color: #1E293B;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(249, 115, 22, 0.1);
    padding: 18px 22px 18px 18px;
    min-width: 240px;
    max-width: 340px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.98;
    cursor: pointer;
    border-left: 4px solid #F97316;
    animation: funfact-pop 0.7s cubic-bezier(.4, 0, .2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

#fun-fact-box .funfact-emoji {
    font-size: 1.8em;
    flex-shrink: 0;
    animation: funfact-emoji-bounce 3s infinite ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 12px;
}

#fun-fact-box .funfact-close {
    margin-left: auto;
    color: #94A3B8;
    font-size: 1.2em;
    cursor: pointer;
    background: none;
    border: none;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#fun-fact-box .funfact-close:hover {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
    transform: rotate(90deg);
}

#fun-fact-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.funfact-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.funfact-title {
    font-weight: 700;
    font-size: 0.75rem;
    color: #F97316;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

#fun-fact-text {
    font-weight: 500;
    line-height: 1.5;
    color: #334155;
}

@keyframes funfact-pop {
    0% {
        transform: translateY(40px) scale(0.8);
        opacity: 0;
    }

    80% {
        transform: translateY(-6px) scale(1.04);
        opacity: 1;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 0.98;
    }
}

@keyframes funfact-emoji-bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }
}

/* ======= FORTUNE STYLES ======= */
.fortune-btn {
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fortune-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.fortune-result {
    padding: 20px;
    border-radius: 16px;
    background: #F8FAFC;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    margin: 15px 0;
    border: 1px solid #E2E8F0;
}

.fortune-drink {
    font-weight: 700;
    color: #EA580C;
    font-size: 1.1em;
    padding: 6px 16px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 20px;
    display: inline-block;
    margin: 10px 0;
}

.fortune-message {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #475569;
}

.fortune-lucky {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.fortune-lucky-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #E2E8F0;
}

.fortune-lucky-label {
    font-size: 0.8em;
    color: #64748B;
    margin-bottom: 4px;
}

.fortune-lucky-value {
    font-weight: 700;
    font-size: 1.05em;
    color: #0F172A;
}

.fortune-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

.fortune-loading-icon {
    font-size: 3em;
    margin-bottom: 15px;
    animation: fortune-spin 2s infinite ease;
}

@keyframes fortune-spin {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ======= SECTION HEADERS ======= */
.section-subtitle {
    display: inline-block;
    color: #F97316;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Inter', sans-serif;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #0F172A;
    font-family: 'Inter', sans-serif !important;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-description {
    font-size: 1.05rem;
    color: #64748B;
    max-width: 640px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

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

/* ======= HERO SECTION ======= */
.hero-parallax {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0F172A;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(15, 23, 42, 0.2) 0%,
            rgba(15, 23, 42, 0.1) 40%,
            rgba(15, 23, 42, 0.45) 100%);
    z-index: 1;
    filter: none;
    mix-blend-mode: normal;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #F97316;
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.5);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 10;
}

.slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    color: #FFFFFF;
    font-size: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.slider-arrow.prev {
    position: absolute;
    left: 24px;
}

.slider-arrow.next {
    position: absolute;
    right: 24px;
}

/* Hero Content Overlay */
.hero-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 1;
    pointer-events: none;
}

.hero-parallax .container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 15px;
}

.parallax-container {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
    overflow: visible;
    padding: 20px;
}

.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Logo */
.logo-container {
    position: relative;
    display: inline-block;
    z-index: 10;
    padding: 40px;
}

.brand-logo {
    max-width: 340px;
    width: 140%;
    height: auto;
    margin-bottom: 140px;
    filter: brightness(1.8) drop-shadow(0 0 20px rgba(255, 255, 255, 0.4)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    transform: scale(1.2);
    transition: all 0.45s ease;
    position: relative;
    z-index: 3;
    display: block;
}

.brand-logo:hover {
    transform: scale(1.28) translateY(-4px);
    filter: brightness(2) drop-shadow(0 0 28px rgba(255, 255, 255, 0.5)) drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 35%, transparent 65%);
    border-radius: 50%;
    z-index: 2;
    animation: pulse-glow 4s infinite ease-in-out;
    margin-bottom: 140px;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

/* Bubbles */
.bubble-layer {
    width: 100%;
    height: 100%;
    z-index: 5;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    animation: bubble-float 8s infinite ease-in-out;
}

.bubble-1 {
    width: 70px;
    height: 70px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 50px;
    height: 50px;
    top: 40%;
    right: 20%;
    animation-delay: 1s;
}

.bubble-3 {
    width: 90px;
    height: 90px;
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.bubble-4 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.bubble-5 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes bubble-float {

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

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 100px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 18px;
    line-height: 1.1;
    font-family: 'Inter', sans-serif !important;
    letter-spacing: -0.02em;
}

.hero-title span {
    color: #F97316;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 26px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    margin-top: 200px;
}

.hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    width: 100%;
    max-width: 280px;
    text-align: center;
    z-index: 10;
    margin: 4px 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-transform: none;
    letter-spacing: 0;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-4px) scale(1.02);
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.hero-btn .btn-icon {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.hero-btn:hover .btn-icon {
    transform: scale(1.15);
}

/* Primary Hero Button */
.hero-btn.btn-primary {
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: #FFFFFF;
    border: none;
}

.hero-btn.btn-primary:hover {
    background: linear-gradient(135deg, #FB923C, #F97316);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.4);
    color: #FFFFFF;
}

/* Secondary Hero Button */
.hero-btn.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
}

/* Generic Buttons */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: #FFFFFF;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FB923C, #F97316);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.4);
    color: #FFFFFF;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: #FFFFFF;
    color: #0F172A;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #F97316;
    color: #F97316;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Floating Cups */
.floating-cups {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 5;
}

.cup {
    position: absolute;
    width: 70px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.4;
    border-radius: 12px;
}

.cup-1 {
    top: 20%;
    right: 15%;
    animation: floatCup 8s infinite ease-in-out;
}

.cup-2 {
    bottom: 25%;
    left: 10%;
    animation: floatCup 10s infinite ease-in-out 2s;
}

.cup-3 {
    top: 40%;
    left: 20%;
    animation: floatCup 9s infinite ease-in-out 1s;
}

@keyframes floatCup {

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

    50% {
        transform: translateY(-25px) rotate(-2deg);
    }
}

/* ======= STORY SECTION ======= */
.story-section {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.story-image-container {
    position: relative;
    padding: 16px;
}

.story-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-image:hover img {
    transform: scale(1.04);
}

.story-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(15, 23, 42, 0.2));
}

.story-content {
    padding: 20px;
}

.story-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 28px;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #F97316, #EA580C);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #0F172A;
    font-family: 'Inter', sans-serif;
}

.highlight-content p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.6;
}

/* ======= FEATURED PRODUCTS ======= */
.featured-products {
    padding: 100px 0;
    background-color: #F8FAFC;
}

.featured-products.new-arrivals {
    background-color: #FFFFFF;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.product-card {
    flex: 0 0 calc(25% - 18px);
    min-width: 220px;
    height: 380px;
    perspective: 1000px;
}

.product-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.product-card:hover .product-card-inner {
    transform: rotateY(180deg);
}

.product-card-front,
.product-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #E2E8F0;
}

.product-card-front {
    background-color: #FFFFFF;
}

.product-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85), transparent);
    color: #FFFFFF;
}

.product-overlay h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}

.product-price {
    display: inline-block;
    padding: 5px 14px;
    background: #F97316;
    color: #FFFFFF;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}

.product-card-back {
    background: #FFFFFF;
    transform: rotateY(180deg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.product-card-back h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0F172A;
    font-family: 'Inter', sans-serif;
}

.product-card-back p {
    font-size: 0.95rem;
    color: #64748B;
    margin-bottom: 24px;
    line-height: 1.6;
}

.btn-view {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: #FFFFFF;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
    color: #FFFFFF;
}

.btn-explore {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: #FFFFFF;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.25);
    font-family: 'Inter', sans-serif;
}

.btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.4);
    color: #FFFFFF;
}

/* ======= INTERACTIVE MENU ======= */
.interactive-menu {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.menu-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.category-tab {
    padding: 10px 24px;
    background: #F1F5F9;
    border-radius: 10px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.category-tab.active,
.category-tab:hover {
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.25);
}

.menu-preview {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
}

.menu-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #E2E8F0;
}

.menu-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.menu-image:hover img {
    transform: scale(1.03);
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.menu-image:hover .menu-overlay {
    opacity: 1;
}

.btn-zoom {
    padding: 10px 24px;
    background: #FFFFFF;
    color: #0F172A;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-zoom:hover {
    background: #F97316;
    color: #FFFFFF;
    transform: scale(1.05);
}

.menu-description {
    flex: 1;
    min-width: 300px;
}

.menu-description h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #0F172A;
    font-family: 'Inter', sans-serif;
}

.menu-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #64748B;
    margin-bottom: 28px;
}

.btn-view-full {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    color: #06B6D4;
    border: 2px solid #06B6D4;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-full:hover {
    background: #06B6D4;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* ======= TESTIMONIALS ======= */
.testimonials-section {
    padding: 100px 0;
    background-color: #F8FAFC;
}

.testimonials-container {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    height: 280px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    transform: translateX(40px);
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.testimonial-content {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid #E2E8F0;
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote i {
    font-size: 1.8rem;
    color: #F97316;
    margin-bottom: 12px;
    display: block;
}

.testimonial-quote p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
}

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

.testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: #0F172A;
    font-family: 'Inter', sans-serif;
}

.author-info span {
    font-size: 0.85rem;
    color: #94A3B8;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    gap: 16px;
}

.testimonial-prev,
.testimonial-next {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #64748B;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #F97316;
    border-color: #F97316;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #CBD5E1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #F97316;
    transform: scale(1.4);
}

/* ======= INSTAGRAM FEED ======= */
.instagram-section {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.instagram-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 16px;
}

.instagram-item:hover img {
    transform: scale(1.08);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    font-size: 2rem;
    color: #FFFFFF;
}

.btn-view-more {
    display: inline-block;
    padding: 14px 32px;
    background: #0F172A;
    color: #FFFFFF;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 32px;
    font-family: 'Inter', sans-serif;
}

.btn-view-more:hover {
    background: #1E293B;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.2);
    color: #FFFFFF;
}

/* ======= NEWSLETTER ======= */
.newsletter-section {
    position: relative;
    padding: 0;
    margin-bottom: -1px;
}

.newsletter-parallax {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0F172A, #1E293B);
    overflow: hidden;
}

.newsletter-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bg/tea-pattern.png');
    opacity: 0.03;
    z-index: 0;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    color: #FFFFFF;
}

.newsletter-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
}

.newsletter-content p {
    font-size: 1.05rem;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    font-size: 0.95rem;
    outline: none;
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
    color: #0F172A;
}

.newsletter-form button {
    padding: 16px 28px;
    background: #F97316;
    color: #FFFFFF;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.newsletter-form button:hover {
    background: #EA580C;
}

/* ======= SCROLL ANIMATION ======= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ======= MODERN FOOTER — Light Theme ======= */
.modern-footer {
    position: relative;
    background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
    padding: 80px 0 32px;
    overflow: hidden;
    color: #475569;
    border-top: 1px solid #E2E8F0;
}

.footer-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.footer-bubbles .bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.06);
    border: none;
    box-shadow: none;
    animation: bubble-float 8s infinite ease-in-out;
}

.bubble-f1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
}

.bubble-f2 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.bubble-f3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.bubble-f4 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    right: 5%;
    animation-delay: 6s;
}

.footer-top {
    position: relative;
    z-index: 2;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-logo {
    width: 44px;
    height: auto;
    margin-right: 12px;
    border-radius: 12px;
}

.footer-brand-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0F172A !important;
    margin: 0;
    font-family: 'Inter', sans-serif !important;
}

.footer-desc {
    color: #64748B;
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #FFFFFF;
    color: #64748B;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.social-link:hover {
    background: #F97316;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
    border-color: #F97316;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    font-family: 'Inter', sans-serif !important;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #F97316;
    border-radius: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #64748B;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.footer-links a::before {
    content: '→';
    color: #F97316;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
    font-size: 0.85em;
}

.footer-links a:hover {
    color: #F97316;
    transform: translateX(4px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.opening-hours {
    margin-bottom: 28px;
}

.oh-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #64748B;
    font-size: 0.95rem;
}

.oh-day {
    font-weight: 600;
    color: #1E293B;
}

.contact-info {
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.contact-item i {
    width: 38px;
    height: 38px;
    background: rgba(249, 115, 22, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F97316;
    font-size: 1rem;
    margin-right: 14px;
    flex-shrink: 0;
}

.contact-item h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #0F172A;
    font-family: 'Inter', sans-serif;
}

.contact-item a {
    color: #64748B;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: #F97316;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid #E2E8F0;
}

.copyright {
    color: #94A3B8;
    font-size: 0.85rem;
}

.copyright a {
    color: #F97316;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #94A3B8;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #F97316;
}

.footer-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    line-height: 0;
}

/* ======= RESPONSIVE — Footer ======= */
@media (max-width: 991px) {

    .footer-info-col,
    .footer-links-col,
    .footer-contact-col {
        margin-bottom: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* ======= RESPONSIVE — Tablet (≤992px) ======= */
@media (max-width: 992px) {

    /* Reduce section padding */
    .featured-products,
    .story-section,
    .interactive-menu,
    .testimonials-section,
    .instagram-section {
        padding: 72px 0;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Story section — stack vertically */
    .story-section .row {
        flex-direction: column;
    }

    .story-image-container {
        margin-bottom: 32px;
    }

    .story-content {
        padding: 0 8px;
    }

    .story-text {
        font-size: 1rem;
    }

    /* Menu preview — stack */
    .menu-preview {
        flex-direction: column;
        gap: 32px;
    }

    .menu-image,
    .menu-description {
        width: 100%;
        min-width: unset;
    }

    .menu-description h3 {
        font-size: 1.5rem;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
        border-radius: 14px;
    }

    .newsletter-form input {
        border-radius: 14px 14px 0 0;
    }

    .newsletter-form button {
        border-radius: 0 0 14px 14px;
    }

    .newsletter-parallax {
        padding: 72px 0;
    }

    .newsletter-content h2 {
        font-size: 1.8rem;
    }

    /* Testimonials */
    .testimonials-container {
        height: auto;
        min-height: 260px;
    }

    .testimonial-card {
        position: relative;
        display: none;
    }

    .testimonial-card.active {
        display: block;
        position: relative;
    }
}

/* ======= RESPONSIVE — Mobile (≤768px) ======= */
@media (max-width: 768px) {
    .featured-products>.container,
    .story-section>.container,
    .interactive-menu>.container,
    .testimonials-section>.container,
    .instagram-section>.container,
    .modern-footer>.container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .story-section>.container {
        padding-left: 28px;
        padding-right: 28px;
    }

    /* Reduce section padding further */
    .featured-products,
    .story-section,
    .interactive-menu,
    .testimonials-section,
    .instagram-section {
        padding: 56px 0;
    }

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

    /* Hero */
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 160px;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        max-width: 260px;
    }

    .brand-logo {
        margin-bottom: 120px;
        max-width: 320px;
        transform: scale(1.15);
    }

    .logo-container {
        padding: 24px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    /* Products — 2 per row */
    .products-container {
        gap: 16px;
    }

    .product-card {
        flex: 0 0 calc(50% - 8px);
        min-width: unset;
        height: 280px;
    }

    /* Story section */
    .story-section .row {
        row-gap: 24px;
    }

    .story-image-container {
        padding: 6px;
    }

    .story-content {
        padding: 0 6px 2px;
    }

    .story-image {
        border-radius: 16px;
    }

    .story-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .highlight-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 1rem;
    }

    .highlight-content h4 {
        font-size: 1rem;
    }

    .highlight-content p {
        font-size: 0.88rem;
    }

    /* Menu preview */
    .menu-preview {
        gap: 24px;
    }

    .menu-description h3 {
        font-size: 1.35rem;
    }

    .menu-description p {
        font-size: 0.95rem;
    }

    /* Testimonials */
    .testimonials-container {
        min-height: auto;
    }

    .testimonial-content {
        padding: 24px;
    }

    .testimonial-quote p {
        font-size: 0.95rem;
    }

    .testimonial-author img {
        width: 44px;
        height: 44px;
    }

    /* Instagram */
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Newsletter */
    .newsletter-parallax {
        padding: 56px 0;
    }

    .newsletter-content h2 {
        font-size: 1.6rem;
    }

    /* Buttons */
    .btn-explore,
    .btn-view-full,
    .btn-view-more {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* Footer */
    .modern-footer {
        padding: 56px 0 24px;
    }

    .footer-brand-name {
        font-size: 1.4rem !important;
    }

    .footer-desc {
        font-size: 0.9rem;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .oh-item {
        font-size: 0.88rem;
    }

    .contact-item i {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
        margin-right: 12px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    #fun-fact-box {
        left: 16px;
        right: 16px;
        max-width: none;
        bottom: 16px;
        min-width: auto;
    }
}

/* ======= RESPONSIVE — Small Mobile (≤576px) ======= */
@media (max-width: 576px) {
    .featured-products>.container,
    .story-section>.container,
    .interactive-menu>.container,
    .testimonials-section>.container,
    .instagram-section>.container,
    .modern-footer>.container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .story-section>.container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .featured-products,
    .story-section,
    .interactive-menu,
    .testimonials-section,
    .instagram-section {
        padding: 44px 0;
    }

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

    /* Hero */
    .hero-parallax {
        height: 85vh;
    }

    .brand-logo {
        max-width: 280px;
        margin-bottom: 100px;
        transform: scale(1.2);
    }

    .hero-btn {
        padding: 11px 22px;
        font-size: 0.85rem;
    }

    .hero-buttons {
        gap: 10px;
        margin-top: 180px;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 0.88rem;
        margin-bottom: 20px;
    }

    /* Products — 1 per row */
    .products-container {
        gap: 16px;
    }

    .product-card {
        flex: 0 0 100%;
        height: 300px;
    }

    /* Story */
    .story-image-container {
        padding: 4px;
    }

    .story-content {
        padding: 0 4px;
    }

    .highlight-item {
        gap: 12px;
    }

    /* Menu */
    .menu-image {
        min-width: unset;
    }

    .menu-description {
        min-width: unset;
    }

    .menu-description h3 {
        font-size: 1.2rem;
    }

    .btn-view-full {
        width: 100%;
        text-align: center;
    }

    /* Testimonials */
    .testimonial-content {
        padding: 20px;
    }

    .testimonial-quote i {
        font-size: 1.4rem;
    }

    .testimonial-quote p {
        font-size: 0.9rem;
    }

    .testimonial-author {
        gap: 10px;
    }

    .author-info h4 {
        font-size: 0.95rem;
    }

    .testimonial-controls {
        margin-top: 24px;
    }

    /* Instagram */
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .instagram-item {
        border-radius: 12px;
    }

    .instagram-overlay {
        border-radius: 12px;
    }

    /* Newsletter */
    .newsletter-parallax {
        padding: 44px 0;
    }

    .newsletter-content h2 {
        font-size: 1.4rem;
    }

    .newsletter-content p {
        font-size: 0.9rem;
    }

    /* Buttons */
    .btn-explore,
    .btn-view-more {
        padding: 12px 20px;
        font-size: 0.88rem;
        width: 100%;
        text-align: center;
    }

    /* Footer */
    .modern-footer {
        padding: 44px 0 20px;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .social-link {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 8px;
    }

    .category-tab {
        padding: 8px 16px;
        font-size: 0.88rem;
    }
}

/* ======= RESPONSIVE — Extra Small (≤480px) ======= */
@media (max-width: 480px) {
    .brand-logo {
        max-width: 260px;
        margin-bottom: 80px;
        margin-top: -20px;
        transform: scale(1.2);
    }

    .hero-btn {
        padding: 11px 20px;
        font-size: 0.85rem;
        max-width: 240px;
    }

    .hero-buttons {
        gap: 10px;
        padding: 10px 8px;
        margin-top: 200px;
    }

    .hero-content {
        margin-top: 50px;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .product-card {
        height: 260px;
    }

    .menu-description p {
        font-size: 0.88rem;
    }

    .testimonial-content {
        padding: 16px;
    }

    .newsletter-content h2 {
        font-size: 1.25rem;
    }
}

/* ======= RESPONSIVE — Horoscope Button ======= */
@media (max-width: 600px) {
    #boba-horoscope-btn {
        left: 50%;
        right: auto;
        bottom: 82px;
        transform: translateX(-50%);
        font-size: 0.95rem;
        padding: 10px 20px;
    }

    #boba-horoscope-modal .modal-content {
        min-width: 90vw;
        padding: 28px 20px 24px 20px;
    }

    .fortune-lucky {
        gap: 10px;
    }
}
