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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #1F2937;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Bubble Cursor */
.cursor-bubble {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, 
        rgba(255, 209, 102, 0.8) 0%, 
        rgba(255, 122, 0, 0.4) 50%, 
        transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
    animation: cursorBubble 2s ease-in-out infinite;
}

@keyframes cursorBubble {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.8; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2); 
        opacity: 1; 
    }
}

.cursor-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    background: rgba(255, 122, 0, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    animation: trailFade 0.8s ease-out forwards;
}

@keyframes trailFade {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(0.3); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ===== COLOR VARIABLES ===== */
:root {
    --primary-orange: #FF7A00;
    --mango-yellow: #FFD166;
    --pineapple-light: #FFF1C9;
    --lime-green: #7ED957;
    --ocean-teal: #00B3A4;
    --text-dark: #1F2937;
    --pure-white: #FFFFFF;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.2);
    --shadow-heavy: rgba(0, 0, 0, 0.3);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 122, 0, 0.1) 0%,
        rgba(255, 209, 102, 0.2) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--pure-white);
    width: 100%;
    padding: 200px 0 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    min-height: 700px;
}



/* Hero Text */
.hero-text {
    margin-bottom: 60px;
    z-index: 10;
}

.hero-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: clamp(72px, 10vw, 120px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.6),
                 0px 0px 20px rgba(255, 122, 0, 0.3);
    animation: titlePop 1.2s ease-out;
}

.title-line-1, .title-line-2 {
    display: block;
}

@keyframes titlePop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.hero-subtitle {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 500;
    margin-bottom: 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease-out 0.3s both;
    backdrop-filter: blur(2px);
    padding: 10px 20px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.1);
}

/* ===== PRODUCT SHOWCASE SECTION ===== */
.product-showcase-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--pure-white) 0%, var(--pineapple-light) 100%);
    position: relative;
    overflow: hidden;
}

.product-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.hero-product-bottom {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: productFloatBottom 3s ease-in-out infinite;
}

.product-can-large {
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15))
            drop-shadow(0 10px 20px rgba(255, 122, 0, 0.1));
    animation: canPopBottom 1.2s ease-out both;
    transition: all 0.3s ease;
    background: transparent;
    object-fit: contain;

}

.product-can-clean:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.2))
            drop-shadow(0 15px 30px rgba(255, 122, 0, 0.2));
}

@keyframes productFloatBottom {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes canPopBottom {
    0% { 
        transform: scale(0.3) rotate(-15deg); 
        opacity: 0; 
        filter: blur(10px);
    }
    60% { 
        transform: scale(1.1) rotate(5deg); 
        opacity: 0.8;
        filter: blur(2px);
    }
    100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 1;
        filter: blur(0px);
    }
}

/* Bottom Floating Fruits */
.hero-fruits-bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-fruit-bottom {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
    animation: heroFruitFloatBottom 5s ease-in-out infinite;
    transition: all 0.3s ease;
    background: transparent;

    object-fit: contain;
}

.floating-fruit-bottom:hover {
    transform: scale(1.2) rotate(15deg) !important;
    filter: drop-shadow(0 12px 24px rgba(255, 122, 0, 0.3));
}

.fruit-blackberry-bottom { top: 15%; left: 20%; animation-delay: 0.8s; }
.fruit-orange-bottom { top: 25%; right: 15%; animation-delay: 1.3s; }
.fruit-pineapple-bottom { top: 65%; left: 15%; animation-delay: 1.8s; }
.fruit-mango-bottom { top: 70%; right: 25%; animation-delay: 2.3s; }
.fruit-blueberry-bottom { top: 45%; left: 85%; animation-delay: 2.8s; }
.fruit-passion-bottom { top: 55%; right: 10%; animation-delay: 3.3s; }

@keyframes heroFruitFloatBottom {
    0% { 
        opacity: 0; 
        transform: translateY(80px) scale(0.3) rotate(0deg); 
    }
    15% { 
        opacity: 1; 
        transform: translateY(20px) scale(0.8) rotate(90deg); 
    }
    50% { 
        opacity: 1; 
        transform: translateY(0px) scale(1) rotate(180deg); 
    }
    85% { 
        opacity: 1; 
        transform: translateY(-15px) scale(1.1) rotate(270deg); 
    }
    100% { 
        opacity: 0; 
        transform: translateY(-60px) scale(0.6) rotate(360deg); 
    }
}

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

@keyframes canPop {
    0% { transform: scale(0.5) rotate(-10deg); opacity: 0; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.cta-primary, .cta-secondary {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: breathe 2s ease-in-out infinite;
}

.cta-primary {
    background: var(--primary-orange);
    color: var(--pure-white);
    box-shadow: 0 8px 24px rgba(255, 122, 0, 0.4);
}

.cta-primary:hover {
    background: #E66A00;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 122, 0, 0.6);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

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



/* ===== DISCOVERY SECTION ===== */
.discovery-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--pineapple-light) 0%, var(--pure-white) 100%);
    position: relative;
    overflow: hidden;
}

/* Fruit Animation Container */
.fruit-animation-container {
    position: relative;
    margin: 60px 0;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-fruit-sequence {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 800px;
}

.fruit-item {
    position: relative;
    opacity: 0;
    transform: translateY(100px) scale(0.5);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fruit-item.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fruit-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
    animation: fruitBounce 2s ease-in-out infinite;
    background: transparent;

}

.fruit-image:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 20px 35px rgba(255, 122, 0, 0.3));
}

@keyframes fruitBounce {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Fruit Splash Effect */
.fruit-splash {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(255, 209, 102, 0.4) 0%, 
        rgba(255, 122, 0, 0.2) 50%, 
        transparent 70%);
    opacity: 0;
    animation: splashPulse 3s ease-in-out infinite;
}

@keyframes splashPulse {
    0%, 100% { 
        opacity: 0; 
        transform: translate(-50%, -50%) scale(0.8); 
    }
    50% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1.2); 
    }
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #6B7280;
    font-weight: 400;
}

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

.fruit-card {
    background: var(--pure-white);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 12px 32px var(--shadow-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.fruit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 48px var(--shadow-medium);
}

.card-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: var(--mango-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255, 209, 102, 0.4);
    overflow: hidden;
}

.fruit-icon-img-clean {
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    background: transparent;

    cursor: pointer;
}

.fruit-card:hover .fruit-icon-img-clean {
    transform: scale(1.1) rotate(10deg);
}

.fruit-card:hover .fruit-icon-img {
    transform: scale(1.1) rotate(10deg);
}

.card-icon i {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--lime-green);
    font-size: 24px;
}

.fruit-emoji {
    font-size: 48px;
    animation: bounce 2s infinite;
}

.card-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.card-description {
    font-size: 18px;
    color: #6B7280;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.card-description.hover-desc {
    display: none;
    font-size: 16px;
    line-height: 1.5;
    color: #4B5563;
    text-align: center;
}

.interactive-fruit:hover .default-desc {
    display: none;
}

.interactive-fruit:hover .hover-desc {
    display: block;
    animation: fadeInUp 0.3s ease-out;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 209, 102, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fruit-card:hover .card-glow {
    opacity: 1;
}

/* ===== LOVE SECTION ===== */
.love-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.love-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.love-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.love-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 241, 201, 0.9) 0%,
        rgba(255, 255, 255, 0.8) 100%
    );
    backdrop-filter: blur(2px);
}

.love-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-dark);
}

.love-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.love-subtitle {
    font-size: clamp(20px, 3vw, 28px);
    margin-bottom: 40px;
    color: #6B7280;
}

.lifestyle-elements {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.lifestyle-tag {
    background: var(--primary-orange);
    color: var(--pure-white);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
    animation: tagFloat 3s ease-in-out infinite;
}

.lifestyle-tag:nth-child(1) { animation-delay: 0s; }
.lifestyle-tag:nth-child(2) { animation-delay: 1s; }
.lifestyle-tag:nth-child(3) { animation-delay: 2s; }

@keyframes tagFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.social-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.stat-item i {
    font-size: 24px;
    color: var(--primary-orange);
}

/* ===== SOCIAL PROOF SECTION ===== */
.social-section {
    padding: 120px 0;
    background: var(--pure-white);
}

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

.review-card {
    background: var(--mango-yellow);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    box-shadow: 0 8px 24px rgba(255, 209, 102, 0.3);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}



.review-stars {
    color: var(--primary-orange);
    font-size: 20px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.4;
}

.review-author {
    font-size: 16px;
    color: #6B7280;
    font-weight: 600;
}

/* Bubble Background Effect */
.bubbles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    border-radius: 20px;
}

.bubble-bg {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(255, 209, 102, 0.3) 0%, 
        rgba(255, 122, 0, 0.2) 100%);
    animation: bubbleRise 4s ease-in-out infinite;
}

.bubble-1 { 
    width: 15px; height: 15px; 
    bottom: -15px; left: 10%; 
    animation-delay: 0s; 
}
.bubble-2 { 
    width: 20px; height: 20px; 
    bottom: -20px; left: 30%; 
    animation-delay: 0.8s; 
}
.bubble-3 { 
    width: 12px; height: 12px; 
    bottom: -12px; left: 50%; 
    animation-delay: 1.6s; 
}
.bubble-4 { 
    width: 18px; height: 18px; 
    bottom: -18px; left: 70%; 
    animation-delay: 2.4s; 
}
.bubble-5 { 
    width: 14px; height: 14px; 
    bottom: -14px; right: 10%; 
    animation-delay: 3.2s; 
}

@keyframes bubbleRise {
    0% {
        transform: translateY(0px) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-300px) scale(0.3);
        opacity: 0;
    }
}

.bubble-effect:hover .bubble-bg {
    animation-play-state: running;
    animation-duration: 2s;
}

/* ===== STORE LOCATOR SECTION ===== */
.store-locator-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--pure-white) 0%, #F8FAFC 100%);
}

.store-locator-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

/* Map Container */
.map-container {
    position: relative;
    background: var(--pure-white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.store-map {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #E6F3FF 0%, #F0F8FF 100%);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 122, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 209, 102, 0.1) 0%, transparent 50%);
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 20px;
}

.location-search {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.search-input-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-icon {
    color: var(--primary-orange);
    font-size: 18px;
    margin-left: 16px;
}

.location-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    padding: 12px 0;
    color: var(--text-dark);
}

.location-input::placeholder {
    color: #9CA3AF;
}

.search-btn {
    background: var(--primary-orange);
    color: var(--pure-white);
    border: none;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #E66A00;
    transform: translateY(-2px);
}

/* Store Markers */
.store-marker {
    position: absolute;
    cursor: pointer;
    z-index: 5;
    animation: markerPulse 2s ease-in-out infinite;
    transform: scale(0);
    opacity: 0;
    transition: all 0.3s ease;
}

.marker-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.marker-icon.gs25 { background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%); }
.marker-icon.cu { background: linear-gradient(135deg, #059669 0%, #10B981 100%); }
.marker-icon.seven { background: linear-gradient(135deg, #DC2626 0%, #F59E0B 100%); }
.marker-icon.emart { background: linear-gradient(135deg, #1D4ED8 0%, #3B82F6 100%); }
.marker-icon.homeplus { background: linear-gradient(135deg, #B91C1C 0%, #EF4444 100%); }

.store-marker:hover .marker-icon {
    transform: scale(1.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

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

/* Marker Tooltips */
.marker-tooltip {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pure-white);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    line-height: 1.4;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 20;
}

.marker-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--pure-white);
}

.store-marker:hover .marker-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* User Location */
.user-location {
    position: absolute;
    z-index: 8;
}

.user-marker {
    width: 20px;
    height: 20px;
    background: var(--primary-orange);
    border: 3px solid var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 12px;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.4);
}

.location-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    opacity: 0.6;
    animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }
    100% {
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}

/* Map Legend */
.map-legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.map-legend h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #6B7280;
}

.legend-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 10px;
}

.legend-icon.gs25 { background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%); }
.legend-icon.emart { background: linear-gradient(135deg, #1D4ED8 0%, #3B82F6 100%); }
.legend-icon.user { background: var(--primary-orange); }

/* Store List */
.store-list {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.store-list h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-align: center;
}

.store-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.store-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 2px solid #F3F4F6;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.store-item:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 8px 24px rgba(255, 122, 0, 0.1);
    transform: translateY(-2px);
}

.store-item .store-icon {
    width: 48px;
    height: 48px;
    background: var(--mango-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 20px;
}

.store-info {
    flex: 1;
}

.store-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.store-address {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 2px;
}

.store-hours {
    font-size: 12px;
    color: #9CA3AF;
}

.store-distance {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-orange);
    background: rgba(255, 122, 0, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
}

.directions-btn {
    background: var(--primary-orange);
    color: var(--pure-white);
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.directions-btn:hover {
    background: #E66A00;
    transform: translateY(-1px);
}

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

.find-more-btn {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.find-more-btn:hover {
    background: var(--primary-orange);
    color: var(--pure-white);
    transform: translateY(-2px);
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gradient-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-orange) 0%, var(--mango-yellow) 100%);
}

.cta-content {
    position: relative;
    text-align: center;
    color: var(--pure-white);
}

.cta-product {
    position: relative;
    margin-bottom: 60px;
}

.cta-can {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.3));
    animation: canTilt 4s ease-in-out infinite;
}

@keyframes canTilt {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

.product-reflection {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 60px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary, .btn-secondary {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    padding: 24px 48px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s ease-in-out infinite;
}

.btn-primary {
    background: var(--pure-white);
    color: var(--primary-orange);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.5);
}

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

.btn-secondary:hover {
    background: var(--pure-white);
    color: var(--primary-orange);
    transform: translateY(-3px);
}

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

/* Floating Fruits */
.floating-fruits {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-fruit {
    position: absolute;
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: transparent;

    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
    animation: fruitFloat 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-fruit:hover {
    transform: scale(1.2) rotate(15deg);
    filter: drop-shadow(0 12px 24px rgba(255, 122, 0, 0.3));
}

.fruit-1 { top: 20%; left: 10%; animation-delay: 0s; }
.fruit-2 { top: 30%; right: 15%; animation-delay: 1s; }
.fruit-3 { top: 60%; left: 20%; animation-delay: 2s; }
.fruit-4 { top: 70%; right: 25%; animation-delay: 3s; }
.fruit-5 { top: 40%; left: 5%; animation-delay: 4s; }
.fruit-6 { top: 50%; right: 10%; animation-delay: 5s; }

@keyframes fruitFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 1; }
}

/* Juice Particle Animation */
.juice-particle {
    animation: juiceSpray 1s ease-out forwards;
}

@keyframes juiceSpray {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0;
    }
}

/* Enhanced fruit hover effects */
.fruit-item:hover .fruit-image {
    animation-play-state: paused;
    transform: scale(1.15) rotate(10deg);
    filter: drop-shadow(0 25px 40px rgba(255, 122, 0, 0.4)) 
            brightness(1.1) 
            saturate(1.2);
}

.fruit-item:hover .fruit-splash {
    animation-play-state: running;
    opacity: 1;
}

/* Extra bubble animation for fruit interactions */
@keyframes extraBubbleFloat {
    0% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translateY(-50px) scale(0.5);
        opacity: 0;
    }
}

/* Enhanced bubble effects for mobile */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    .cursor-bubble,
    .cursor-trail {
        display: none;
    }
    
    .bubble-bg {
        animation-duration: 3s;
    }
    
    .floating-fruit {
        width: 50px;
        height: 50px;
    }
    
    /* Store Locator Mobile */
    .store-locator-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .store-map {
        height: 400px;
    }
    
    .search-input-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .search-btn {
        width: 100%;
    }
    
    .map-legend {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
    }
    
    .legend-items {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .store-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .directions-btn {
        width: 100%;
        padding: 12px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: var(--pure-white);
    padding: 40px 0;
    text-align: center;
}

.footer-content p {
    margin: 8px 0;
    font-size: 16px;
}

/* ===== UTILITY ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .hero-content {
        padding: 120px 0 80px;
        min-height: 600px;
    }
    
    .product-showcase-section {
        padding: 60px 0;
    }
    
    .product-showcase {
        min-height: 500px;
    }
    
    .product-can-large {
        max-width: 350px;
    }
    
    .floating-fruit-bottom {
        width: 60px;
        height: 60px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Mobile Fruit Animation */
    .fruit-animation-container {
        height: 300px;
        margin: 40px 0;
    }
    
    .animated-fruit-sequence {
        gap: 20px;
        justify-content: space-around;
    }
    
    .fruit-image {
        width: 80px;
        height: 80px;
    }
    
    .floating-fruit-hero {
        width: 40px;
        height: 40px;
    }
    
    .fruit-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .card-icon {
        width: 100px;
        height: 100px;
    }
    
    .fruit-icon-img-clean {
        width: 60px;
        height: 60px;
    }
    
    .lifestyle-elements {
        flex-direction: column;
        align-items: center;
    }
    
    .social-stats {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .review-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 56px;
    }
    
    .hero-content {
        min-height: 500px;
        padding: 100px 0 60px;
    }
    
    .product-showcase {
        min-height: 400px;
    }
    
    .product-can-large {
        max-width: 280px;
    }
    
    .floating-fruit-bottom {
        width: 50px;
        height: 50px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .product-can, .cta-can {
        max-width: 250px;
    }
    
    /* Extra small mobile adjustments */
    .fruit-animation-container {
        height: 250px;
    }
    
    .animated-fruit-sequence {
        gap: 15px;
        flex-wrap: wrap;
        max-width: 300px;
    }
    
    .fruit-image {
        width: 60px;
        height: 60px;
    }
    
    .floating-fruit-hero {
        width: 30px;
        height: 30px;
    }
    
    .fruit-splash {
        width: 80px;
        height: 80px;
    }
}