/* ===== FANTA TROPICAL MIX LANDING PAGE ===== */

/* === ROOT VARIABLES === */
:root {
    /* Colors */
    --primary-orange: #FF6B00;
    --primary-orange-dark: #E85D00;
    --primary-orange-light: #FF8533;
    --mango-yellow: #FFD166;
    --pineapple-light: #FFF1C9;
    --lime-green: #7ED957;
    --ocean-teal: #00B3A4;
    --blueberry-purple: #6B4BA2;
    --blackcurrant-dark: #2B1C47;
    --text-dark: #1F2937;
    --pure-white: #FFFFFF;
    --gradient-orange: linear-gradient(135deg, #FF6B00 0%, #E85D00 100%);
    --gradient-orange-bright: linear-gradient(135deg, #FF6B00 0%, #FF8533 50%, #FFD166 100%);
    --gradient-tropical: linear-gradient(180deg, #FF6B00 0%, #FFD166 25%, #7ED957 50%, #00B3A4 75%, #6B4BA2 100%);
    
    /* Fonts */
    --font-primary: 'Noto Sans KR', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    /* Spacing */
    --container-padding: 20px;
    --section-padding: 80px 0;
    --border-radius: 24px;
    --border-radius-small: 12px;
    
    /* Shadows */
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Z-index */
    --z-background: -1;
    --z-content: 1;
    --z-overlay: 10;
    --z-modal: 1000;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--pure-white);
}

.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-family: var(--font-secondary);
}

h2 {
    font-size: 2rem;
    font-family: var(--font-secondary);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* === BUTTONS === */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 40px;
    border: none;
    border-radius: var(--border-radius-small);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    min-width: 250px;
    justify-content: center;
}

.cta-button.primary {
    background: var(--gradient-orange);
    color: var(--pure-white);
    border: 2px solid var(--primary-orange-dark);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.6);
    background: var(--gradient-orange-bright);
    border-color: var(--primary-orange);
}

.cta-button.secondary {
    background: var(--pure-white);
    color: var(--primary-orange-dark);
    border: 2px solid var(--primary-orange);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.2);
}

.cta-button.secondary:hover {
    background: var(--primary-orange);
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.4);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.cta-button i {
    font-size: 1.1em;
}

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

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

/* FANTA 히어로 동영상 */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 15;
    opacity: 1;
}

/* 백업 FANTA 배경 */
.fanta-backup-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #FF6B35 0%, 
        #FF8E53 20%,
        #FFAB40 40%,
        #FFB74D 60%,
        #FFC107 80%,
        #FF9800 100%
    );
    z-index: 1;
    animation: fantaGradientShift 8s ease-in-out infinite;
    opacity: 0; /* 시뮬레이션이 나오도록 숨김 */
}

/* 동영상 시뮬레이션 배경 */
.hero-video-simulation {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 25 !important;
    opacity: 1 !important;
    display: block !important;
    background: 
        radial-gradient(circle at 60% 40%, rgba(255, 165, 0, 1) 0%, rgba(255, 165, 0, 0.3) 50%),
        radial-gradient(circle at 20% 70%, rgba(255, 99, 71, 0.9) 0%, rgba(255, 99, 71, 0.2) 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.8) 0%, rgba(255, 140, 0, 0.2) 50%),
        linear-gradient(135deg, #FF6B35 0%, #FF8E53 25%, #FFAB40 50%, #FFB74D 75%, #FF9800 100%);
    animation: heroVideoSimulation 8s ease-in-out infinite !important;
}

.fanta-splash-animation {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, rgba(255,165,0,0.4) 40%, transparent 70%);
    border-radius: 50%;
    animation: splashPulse 4s ease-in-out infinite;
}

.fruit-explosion-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 60%, rgba(255, 0, 150, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 70% 30%, rgba(0, 255, 150, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 0, 0.3) 0%, transparent 30%);
    animation: fruitExplosionMove 8s linear infinite;
}

.dynamic-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    animation: shimmerOverlay 6s linear infinite;
}

@keyframes heroVideoSimulation {
    0%, 100% { 
        background-size: 120% 120%, 100% 100%, 80% 80%, 100% 100%;
        background-position: 0% 0%, 20% 30%, 80% 70%, 0% 0%;
    }
    25% { 
        background-size: 100% 100%, 120% 120%, 100% 100%, 100% 100%;
        background-position: 10% 20%, 60% 40%, 40% 30%, 0% 0%;
    }
    50% { 
        background-size: 80% 80%, 100% 100%, 120% 120%, 100% 100%;
        background-position: 30% 40%, 20% 70%, 60% 20%, 0% 0%;
    }
    75% { 
        background-size: 100% 100%, 80% 80%, 100% 100%, 100% 100%;
        background-position: 70% 60%, 80% 20%, 20% 80%, 0% 0%;
    }
}

@keyframes splashPulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
    50% { transform: translateX(-50%) scale(1.3); opacity: 0.9; }
}

@keyframes fruitExplosionMove {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes shimmerOverlay {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

@keyframes fantaGradientShift {
    0%, 100% { 
        background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 20%, #FFAB40 40%, #FFB74D 60%, #FFC107 80%, #FF9800 100%);
    }
    50% { 
        background: linear-gradient(135deg, #FF9800 0%, #FFC107 20%, #FFB74D 40%, #FFAB40 60%, #FF8E53 80%, #FF6B35 100%);
    }
}

/* 동영상 백업 배경 이미지 */
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 15;
    opacity: 0;
    transition: opacity 0.8s ease;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255,140,0,0.1) 0%, 
        rgba(255,165,0,0.05) 50%, 
        rgba(255,200,0,0.1) 100%),
        url('https://images.unsplash.com/photo-1621263764928-df1444c5e859?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.hero-logo {
    margin-bottom: 2rem;
}

.fanta-logo {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.hero-text {
    margin-bottom: 3rem;
    color: var(--pure-white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--pure-white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.5;
}



.hero-product {
    margin-bottom: 3rem;
}

.product-can {
    height: 300px;
    width: auto;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-cta .cta-button {
    width: 320px;
    justify-content: center;
}

/* === BUBBLES === */
.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 20;
}

.bubble {
    position: absolute;
    background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0.3) 70%, transparent 100%);
    border-radius: 50%;
    animation: rise 8s infinite ease-in-out;
    box-shadow: 
        0 0 15px rgba(255,255,255,0.6),
        inset 0 3px 6px rgba(255,255,255,0.9),
        0 0 8px rgba(255, 122, 0, 0.3);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255,255,255,0.4);
}

/* 동적 기포 스타일 */
.dynamic-bubble {
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 30%, rgba(255,255,255,0.1) 70%, transparent 100%);
    box-shadow: 
        0 0 15px rgba(255,255,255,0.5),
        inset 0 2px 6px rgba(255,255,255,0.9),
        0 0 5px rgba(255, 122, 0, 0.2);
}

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

.bubble-2 {
    width: 15px;
    height: 15px;
    left: 20%;
    bottom: -10%;
    animation-delay: 1s;
}

.bubble-3 {
    width: 25px;
    height: 25px;
    left: 80%;
    bottom: -10%;
    animation-delay: 2s;
}

.bubble-4 {
    width: 12px;
    height: 12px;
    left: 70%;
    bottom: -10%;
    animation-delay: 3s;
}

.bubble-5 {
    width: 18px;
    height: 18px;
    left: 90%;
    bottom: -10%;
    animation-delay: 4s;
}







/* === DISCOVERY SECTION === */
.discovery-section {
    background: linear-gradient(180deg, #FFF8E1 0%, var(--pure-white) 100%);
    padding: var(--section-padding);
}

.discovery-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
}

@media (max-width: 768px) {
    .discovery-container {
        flex-direction: column;
        gap: 2rem;
        max-width: 400px;
    }
}

.discovery-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.discovery-can {
    height: 350px;
    width: auto;
    filter: drop-shadow(0 12px 32px rgba(0,0,0,0.15));
}

@media (max-width: 768px) {
    .discovery-can {
        height: 250px;
    }
}

.discovery-right {
    flex: 1.2;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-dark);
    opacity: 0.8;
    font-size: 1.1rem;
    text-align: center;
}

.fruit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .fruit-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }
}

.fruit-card {
    background: var(--pure-white);
    padding: 1.5rem 1rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .fruit-card {
        height: 170px;
        padding: 1.5rem 1rem;
    }
}

.fruit-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255,165,0,0.3);
    background: linear-gradient(135deg, #fff 0%, #fff8f0 100%);
}

/* 과즙 튀는 효과 */
.fruit-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,165,0,0.3) 0%, rgba(255,140,0,0.2) 50%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.fruit-card:hover::after {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255,165,0,0.2) 0%, rgba(255,140,0,0.1) 30%, rgba(255,200,0,0.05) 60%, transparent 80%);
}

/* 과일별 과즙 색상 */
.fruit-card[data-fruit="mango"]:hover::after {
    background: radial-gradient(circle, rgba(255,195,77,0.3) 0%, rgba(255,171,64,0.1) 50%, transparent 70%);
}

.fruit-card[data-fruit="passion"]:hover::after {
    background: radial-gradient(circle, rgba(128,0,128,0.3) 0%, rgba(139,0,139,0.1) 50%, transparent 70%);
}

.fruit-card[data-fruit="blueberry"]:hover::after {
    background: radial-gradient(circle, rgba(0,100,200,0.3) 0%, rgba(0,120,255,0.1) 50%, transparent 70%);
}

.fruit-card[data-fruit="blackcurrant"]:hover::after {
    background: radial-gradient(circle, rgba(50,0,80,0.3) 0%, rgba(70,0,100,0.1) 50%, transparent 70%);
}

.fruit-card[data-fruit="pineapple"]:hover::after {
    background: radial-gradient(circle, rgba(255,215,0,0.3) 0%, rgba(255,193,7,0.1) 50%, transparent 70%);
}

.fruit-card[data-fruit="orange"]:hover::after {
    background: radial-gradient(circle, rgba(255,140,0,0.3) 0%, rgba(255,165,0,0.1) 50%, transparent 70%);
}

.fruit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.fruit-card:hover::before {
    transform: scaleX(1);
}

.fruit-image {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    position: relative;
    z-index: 1;
}

.fruit-img {
    max-height: 70px;
    max-width: 70px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

@media (max-width: 768px) {
    .fruit-image {
        height: 80px;
        margin-bottom: 1.2rem;
    }
    
    .fruit-img {
        max-height: 65px;
        max-width: 65px;
    }
}

.fruit-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    font-family: var(--font-primary);
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .fruit-name {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
}

.fruit-description {
    color: var(--text-dark);
    opacity: 0.65;
    font-size: 0.8rem;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    font-weight: 400;
    transition: all 0.3s ease;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .fruit-description {
        font-size: 0.85rem;
        opacity: 0.7;
    }
}

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

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

.lifestyle-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,122,0,0.8) 0%, rgba(255,209,102,0.6) 50%, rgba(107,75,162,0.8) 100%);
}

.love-content {
    position: relative;
    z-index: var(--z-content);
    padding: 40px 20px;
    text-align: center;
    color: var(--pure-white);
}

.love-text {
    margin-bottom: 3rem;
}

.love-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.love-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.love-hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.hashtag {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.love-product {
    display: flex;
    justify-content: center;
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.love-can {
    height: 200px;
    width: auto;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* 캔의 부드러운 애니메이션 (중앙 고정) */
.love-can.animate-float {
    animation: gentleCanFloat 10s ease-in-out infinite !important;
}

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

/* === FLOATING FRUITS ANIMATION === */
.floating-fruits {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 25;
}

.floating-fruit {
    position: absolute;
    transform-origin: center;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 15;
    pointer-events: all;
    opacity: 0.9;
}

.floating-fruit-img {
    width: 60px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.25));
    transform: translate(-50%, -50%);
    animation: fruitFloat 3s ease-in-out infinite alternate;
    transition: all 0.3s ease;
}

/* Natural floating effect for fruits */
@keyframes fruitFloat {
    0% {
        transform: translate(-50%, -50%) translateY(0px) rotate(0deg);
        filter: drop-shadow(0 6px 16px rgba(0,0,0,0.25)) brightness(1);
    }
    100% {
        transform: translate(-50%, -50%) translateY(-8px) rotate(3deg);
        filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3)) brightness(1.05) saturate(1.1);
    }
}

/* Hover effect for fruits */
.floating-fruit:hover .floating-fruit-img {
    transform: translate(-50%, -50%) scale(1.2);
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4)) brightness(1.1) saturate(1.2);
}

/* Juice explosion effect */
.juice-explosion {
    position: absolute;
    pointer-events: none;
    z-index: 20;
}

.juice-drop {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: juiceDrop 1.5s ease-out forwards;
}

.juice-splash {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    opacity: 0.8;
    animation: juiceSplash 1s ease-out forwards;
}

/* Fruit-specific juice colors */
.juice-mango { background: radial-gradient(circle, #FFD700 0%, #FF8C00 100%); }
.juice-orange { background: radial-gradient(circle, #FFA500 0%, #FF6347 100%); }
.juice-pineapple { background: radial-gradient(circle, #FFFF00 0%, #FFD700 100%); }
.juice-passion { background: radial-gradient(circle, #FF1493 0%, #8B008B 100%); }
.juice-blueberry { background: radial-gradient(circle, #4169E1 0%, #000080 100%); }
.juice-blackcurrant { background: radial-gradient(circle, #800080 0%, #4B0082 100%); }

@keyframes juiceDrop {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) translateY(100px) scale(0);
        opacity: 0;
    }
}

@keyframes juiceSplash {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Click feedback animation */
.floating-fruit.clicked .floating-fruit-img {
    animation: fruitPop 0.6s ease-out;
}

.fruit-card.clicked {
    animation: cardPop 0.6s ease-out;
}

.fruit-card.clicked .fruit-img {
    animation: fruitImagePop 0.6s ease-out;
}

@keyframes cardPop {
    0% { transform: scale(1); }
    30% { transform: scale(0.95); }
    70% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes fruitImagePop {
    0% { transform: scale(1) rotate(0deg); }
    30% { transform: scale(0.8) rotate(-5deg); }
    70% { transform: scale(1.2) rotate(10deg); }
    100% { transform: scale(1.1) rotate(5deg); }
}

/* 떠다니는 과일 애니메이션 */
@keyframes floatUp {
    0% {
        transform: translateY(0px);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    90% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

/* 부드러운 떠다니는 애니메이션 */
@keyframes gentleFloat {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    5% {
        opacity: 0.8;
    }
    25% {
        transform: translateY(-25vh) translateX(-20px);
    }
    50% {
        transform: translateY(-50vh) translateX(20px);
    }
    75% {
        transform: translateY(-75vh) translateX(-15px);
    }
    95% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-120vh) translateX(0px);
        opacity: 0;
    }
}

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

@keyframes rotateReverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

/* 천천히 회전하는 애니메이션 */
@keyframes slowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(180deg); }
}

@keyframes slowRotateReverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-180deg); }
}

@keyframes fruitPop {
    0% { transform: translate(-50%, -50%) scale(1); }
    30% { transform: translate(-50%, -50%) scale(0.8); }
    60% { transform: translate(-50%, -50%) scale(1.3); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

/* Custom juice drop animation */
@keyframes juiceDropCustom {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) translateX(var(--drop-x)) translateY(var(--drop-y)) scale(0);
        opacity: 0;
    }
}

/* Screen shake effect */
@keyframes screenShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

/* Juice toast notification */
.juice-toast {
    position: fixed;
    top: 80px;
    right: 20px;
    background: var(--gradient-orange);
    color: var(--pure-white);
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: var(--shadow-heavy);
    transform: translateX(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1001;
    opacity: 0;
    font-weight: 600;
    font-size: 0.9rem;
    max-width: 280px;
}

.juice-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.juice-toast .toast-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.juice-toast .toast-content span {
    animation: juiceTextPulse 0.6s ease-out;
}

@keyframes juiceTextPulse {
    0% { transform: scale(0.8); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

/* Individual fruit animations - each orbits at different radius and speed */
/* 캔 중심으로 완벽한 원형 배치 - Love 섹션 전용 */
.love-product .fruit-mango {
    top: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    animation: gentlePulse 12s ease-in-out infinite !important;
    animation-delay: 0s !important;
}

.love-product .fruit-orange {
    top: 50% !important;
    right: 30px !important;
    transform: translateY(-50%) !important;
    animation: gentlePulse 14s ease-in-out infinite !important;
    animation-delay: -2s !important;
}

.love-product .fruit-pineapple {
    bottom: 50px !important;
    right: 80px !important;
    transform: none !important;
    animation: gentlePulse 13s ease-in-out infinite !important;
    animation-delay: -4s !important;
}

.love-product .fruit-passion {
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    animation: gentlePulse 15s ease-in-out infinite !important;
    animation-delay: -6s !important;
}

.love-product .fruit-blueberry {
    bottom: 50px !important;
    left: 80px !important;
    transform: none !important;
    animation: gentlePulse 13.5s ease-in-out infinite !important;
    animation-delay: -8s !important;
}

.love-product .fruit-blackcurrant {
    top: 50% !important;
    left: 30px !important;
    transform: translateY(-50%) !important;
    animation: gentlePulse 14.5s ease-in-out infinite !important;
    animation-delay: -10s !important;
}

/* Natural floating animations - each fruit floats naturally around the can */
/* 부드러운 펄스 애니메이션 - Love 섹션 전용 */
@keyframes gentlePulse {
    0%, 100% {
        opacity: 0.8;
        filter: brightness(1) drop-shadow(0 4px 12px rgba(0,0,0,0.2));
    }
    50% {
        opacity: 1;
        filter: brightness(1.15) drop-shadow(0 6px 16px rgba(0,0,0,0.3));
    }
}

/* 원형 배치를 위한 컨테이너 스타일링 */
.love-product .floating-fruits {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* 과일들이 컨테이너 밖으로 나가지 않도록 */
    pointer-events: none; /* 컨테이너 자체는 클릭되지 않도록 */
}

.love-product .floating-fruit {
    pointer-events: all; /* 개별 과일은 클릭 가능 */
}

/* Love 섹션 과일 이미지 스타일링 */
.love-product .floating-fruit {
    position: absolute !important;
    /* 각 과일별 애니메이션은 개별 클래스에서 설정됨 */
}

.love-product .floating-fruit-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
    transition: all 0.3s ease;
    /* 과일 이미지에도 부드러운 애니메이션 적용 */
}

.love-product .floating-fruit:hover .floating-fruit-img {
    transform: scale(1.1) !important;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.3));
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .love-product {
        width: 320px;
        height: 320px;
    }
    
    .floating-fruit-img {
        width: 32px;
        height: 32px;
    }
    
    .juice-toast {
        top: 20px;
        right: 15px;
        left: 15px;
        max-width: none;
        text-align: center;
    }
    
    /* Reduce orbit radius for mobile */
    @keyframes floatOrbit1 {
        0%, 100% {
            transform: translate(-50%, -50%) rotate(0deg) translateX(60px) rotate(0deg) scale(1);
        }
        25% {
            transform: translate(-50%, -50%) rotate(90deg) translateX(65px) rotate(-90deg) scale(1.1);
        }
        50% {
            transform: translate(-50%, -50%) rotate(180deg) translateX(60px) rotate(-180deg) scale(1);
        }
        75% {
            transform: translate(-50%, -50%) rotate(270deg) translateX(55px) rotate(-270deg) scale(1.1);
        }
    }
    
    @keyframes floatOrbit2 {
        0%, 100% {
            transform: translate(-50%, -50%) rotate(60deg) translateX(70px) rotate(-60deg) scale(1);
        }
        25% {
            transform: translate(-50%, -50%) rotate(150deg) translateX(75px) rotate(-150deg) scale(1.1);
        }
        50% {
            transform: translate(-50%, -50%) rotate(240deg) translateX(65px) rotate(-240deg) scale(1);
        }
        75% {
            transform: translate(-50%, -50%) rotate(330deg) translateX(60px) rotate(-330deg) scale(1.1);
        }
    }
    
    @keyframes floatOrbit3 {
        0%, 100% {
            transform: translate(-50%, -50%) rotate(120deg) translateX(50px) rotate(-120deg) scale(1.1);
        }
        25% {
            transform: translate(-50%, -50%) rotate(210deg) translateX(60px) rotate(-210deg) scale(1);
        }
        50% {
            transform: translate(-50%, -50%) rotate(300deg) translateX(70px) rotate(-300deg) scale(1.1);
        }
        75% {
            transform: translate(-50%, -50%) rotate(30deg) translateX(55px) rotate(-30deg) scale(1);
        }
    }
    
    @keyframes floatOrbit4 {
        0%, 100% {
            transform: translate(-50%, -50%) rotate(180deg) translateX(80px) rotate(-180deg) scale(1);
        }
        25% {
            transform: translate(-50%, -50%) rotate(270deg) translateX(70px) rotate(-270deg) scale(1.1);
        }
        50% {
            transform: translate(-50%, -50%) rotate(360deg) translateX(85px) rotate(-360deg) scale(1);
        }
        75% {
            transform: translate(-50%, -50%) rotate(90deg) translateX(75px) rotate(-90deg) scale(1.1);
        }
    }
    
    @keyframes floatOrbit5 {
        0%, 100% {
            transform: translate(-50%, -50%) rotate(240deg) translateX(55px) rotate(-240deg) scale(1);
        }
        25% {
            transform: translate(-50%, -50%) rotate(330deg) translateX(65px) rotate(-330deg) scale(1.1);
        }
        50% {
            transform: translate(-50%, -50%) rotate(60deg) translateX(60px) rotate(-60deg) scale(1);
        }
        75% {
            transform: translate(-50%, -50%) rotate(150deg) translateX(55px) rotate(-150deg) scale(1.1);
        }
    }
    
    @keyframes floatOrbit6 {
        0%, 100% {
            transform: translate(-50%, -50%) rotate(300deg) translateX(45px) rotate(-300deg) scale(1.1);
        }
        25% {
            transform: translate(-50%, -50%) rotate(30deg) translateX(55px) rotate(-30deg) scale(1);
        }
        50% {
            transform: translate(-50%, -50%) rotate(120deg) translateX(65px) rotate(-120deg) scale(1.1);
        }
        75% {
            transform: translate(-50%, -50%) rotate(210deg) translateX(50px) rotate(-210deg) scale(1);
        }
    }
}

/* === SOCIAL PROOF SECTION === */
.social-proof-section {
    background: var(--mango-yellow);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.social-proof-section .container {
    position: relative;
    z-index: 10;
}

.social-proof-section .section-header {
    position: relative;
    z-index: 10;
}

.social-proof-section .instagram-feed {
    position: relative;
    z-index: 10;
}

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

.animated-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 70%, transparent 100%);
    animation: bubbleFloat 6s infinite ease-in-out;
}

/* 올라가는 기포들 - 기본 스타일 */
.rising-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.3) 50%, rgba(255,140,0,0.2) 80%, transparent 100%);
    pointer-events: none;
    box-shadow: 
        0 0 6px rgba(255,255,255,0.3),
        inset 0 2px 4px rgba(255,255,255,0.5),
        0 0 3px rgba(255, 140, 0, 0.2);
    z-index: -1;
    opacity: 0.5;
}

/* 왼쪽 기포 라인 */
.bubble-rise-1 { width: 12px; height: 12px; left: 15%; bottom: 0; animation: carbonBubbleFloat1 8s infinite linear; animation-delay: 0s; }
.bubble-rise-2 { width: 18px; height: 18px; left: 12%; bottom: 0; animation: carbonBubbleFloat2 9s infinite linear; animation-delay: 2s; }
.bubble-rise-3 { width: 8px; height: 8px; left: 18%; bottom: 0; animation: carbonBubbleFloat3 7s infinite linear; animation-delay: 4s; }
.bubble-rise-4 { width: 15px; height: 15px; left: 10%; bottom: 0; animation: carbonBubbleFloat1 8.5s infinite linear; animation-delay: 6s; }
.bubble-rise-5 { width: 22px; height: 22px; left: 14%; bottom: 0; animation: carbonBubbleFloat2 9.5s infinite linear; animation-delay: 1s; }

/* 중앙 기포 라인 */
.bubble-rise-6 { width: 10px; height: 10px; left: 45%; bottom: 0; animation: carbonBubbleFloat3 7.5s infinite linear; animation-delay: 0.5s; }
.bubble-rise-7 { width: 16px; height: 16px; left: 48%; bottom: 0; animation: carbonBubbleFloat1 8.2s infinite linear; animation-delay: 2.5s; }
.bubble-rise-8 { width: 25px; height: 25px; left: 42%; bottom: 0; animation: carbonBubbleFloat2 9.2s infinite linear; animation-delay: 4.5s; }
.bubble-rise-9 { width: 13px; height: 13px; left: 50%; bottom: 0; animation: carbonBubbleFloat3 7.8s infinite linear; animation-delay: 6.5s; }
.bubble-rise-10 { width: 20px; height: 20px; left: 46%; bottom: 0; animation: carbonBubbleFloat1 8.8s infinite linear; animation-delay: 1.5s; }

/* 오른쪽 기포 라인 */
.bubble-rise-11 { width: 14px; height: 14px; left: 82%; bottom: 0; animation: carbonBubbleFloat2 8.3s infinite linear; animation-delay: 0.3s; }
.bubble-rise-12 { width: 19px; height: 19px; left: 85%; bottom: 0; animation: carbonBubbleFloat3 9.3s infinite linear; animation-delay: 2.3s; }
.bubble-rise-13 { width: 11px; height: 11px; left: 88%; bottom: 0; animation: carbonBubbleFloat1 7.3s infinite linear; animation-delay: 4.3s; }
.bubble-rise-14 { width: 17px; height: 17px; left: 80%; bottom: 0; animation: carbonBubbleFloat2 8.7s infinite linear; animation-delay: 6.3s; }
.bubble-rise-15 { width: 23px; height: 23px; left: 86%; bottom: 0; animation: carbonBubbleFloat3 9.7s infinite linear; animation-delay: 1.3s; }

/* 추가 미세 기포들 */
.bubble-rise-16 { width: 6px; height: 6px; left: 25%; bottom: 0; animation: carbonBubbleFloat1 6s infinite linear; animation-delay: 3s; }
.bubble-rise-17 { width: 9px; height: 9px; left: 35%; bottom: 0; animation: carbonBubbleFloat2 6.5s infinite linear; animation-delay: 5s; }
.bubble-rise-18 { width: 7px; height: 7px; left: 65%; bottom: 0; animation: carbonBubbleFloat3 6.2s infinite linear; animation-delay: 7s; }
.bubble-rise-19 { width: 12px; height: 12px; left: 75%; animation: carbonBubbleFloat1 6.8s infinite linear; animation-delay: 3.5s; }
.bubble-rise-20 { width: 8px; height: 8px; left: 55%; animation: carbonBubbleFloat2 6.3s infinite linear; animation-delay: 5.5s; }

/* 탄산 버블 애니메이션 - 위로 올라가는 효과 */
@keyframes carbonBubbleFloat1 {
    0% { 
        transform: translateY(100vh) translateX(0px) scale(0.3); 
        opacity: 0; 
    }
    10% { 
        transform: translateY(90vh) translateX(5px) scale(0.5); 
        opacity: 0.3; 
    }
    50% { 
        transform: translateY(50vh) translateX(-8px) scale(1); 
        opacity: 0.6; 
    }
    90% { 
        transform: translateY(10vh) translateX(12px) scale(1.2); 
        opacity: 0.4; 
    }
    100% { 
        transform: translateY(-10vh) translateX(15px) scale(0.8); 
        opacity: 0; 
    }
}

@keyframes carbonBubbleFloat2 {
    0% { 
        transform: translateY(100vh) translateX(0px) scale(0.2) rotate(0deg); 
        opacity: 0; 
    }
    15% { 
        transform: translateY(85vh) translateX(-6px) scale(0.6) rotate(45deg); 
        opacity: 0.4; 
    }
    40% { 
        transform: translateY(60vh) translateX(10px) scale(1.1) rotate(-30deg); 
        opacity: 0.7; 
    }
    70% { 
        transform: translateY(30vh) translateX(-3px) scale(1.3) rotate(60deg); 
        opacity: 0.5; 
    }
    100% { 
        transform: translateY(-10vh) translateX(8px) scale(0.9) rotate(90deg); 
        opacity: 0; 
    }
}

@keyframes carbonBubbleFloat3 {
    0% { 
        transform: translateY(100vh) translateX(0px) scale(0.4); 
        opacity: 0; 
    }
    20% { 
        transform: translateY(80vh) translateX(-10px) scale(0.7); 
        opacity: 0.5; 
    }
    60% { 
        transform: translateY(40vh) translateX(15px) scale(1.2); 
        opacity: 0.8; 
    }
    85% { 
        transform: translateY(15vh) translateX(-5px) scale(1.4); 
        opacity: 0.3; 
    }
    100% { 
        transform: translateY(-5vh) translateX(20px) scale(1); 
        opacity: 0; 
    }
}

/* FANTA 캔 기포 애니메이션 - 캔에서 나와서 위로 올라가는 효과 - 강화 */
@keyframes fantaBubbleRise1 {
    0% { 
        transform: translateY(0) translateX(0) scale(0.5) !important; 
        opacity: 0 !important; 
    }
    15% { 
        transform: translateY(-30px) translateX(-8px) scale(0.8) !important; 
        opacity: 0.9 !important; 
    }
    35% { 
        transform: translateY(-80px) translateX(-20px) scale(1.2) !important; 
        opacity: 1 !important; 
    }
    65% { 
        transform: translateY(-150px) translateX(-15px) scale(1.4) !important; 
        opacity: 0.8 !important; 
    }
    100% { 
        transform: translateY(-250px) translateX(-30px) scale(1) !important; 
        opacity: 0 !important; 
    }
}

@keyframes fantaBubbleRise2 {
    0% { 
        transform: translateY(0) translateX(0) scale(0.4) !important; 
        opacity: 0 !important; 
    }
    20% { 
        transform: translateY(-40px) translateX(12px) scale(0.9) !important; 
        opacity: 0.8 !important; 
    }
    45% { 
        transform: translateY(-100px) translateX(25px) scale(1.3) !important; 
        opacity: 1 !important; 
    }
    75% { 
        transform: translateY(-170px) translateX(20px) scale(1.5) !important; 
        opacity: 0.6 !important; 
    }
    100% { 
        transform: translateY(-280px) translateX(40px) scale(1.1) !important; 
        opacity: 0 !important; 
    }
}

@keyframes fantaBubbleRise3 {
    0% { 
        transform: translateY(0) translateX(0) scale(0.6) !important; 
        opacity: 0 !important; 
    }
    25% { 
        transform: translateY(-35px) translateX(-12px) scale(1.0) !important; 
        opacity: 0.9 !important; 
    }
    55% { 
        transform: translateY(-90px) translateX(-25px) scale(1.4) !important; 
        opacity: 0.8 !important; 
    }
    85% { 
        transform: translateY(-160px) translateX(-18px) scale(1.6) !important; 
        opacity: 0.5 !important; 
    }
    100% { 
        transform: translateY(-270px) translateX(-35px) scale(1.2) !important; 
        opacity: 0 !important; 
    }
}

/* 인스타그램 피드 스타일 */
.instagram-feed {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: var(--z-content);
    max-width: 500px;
    margin: 0 auto;
}

.instagram-post {
    background: var(--pure-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.instagram-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* 포스트 헤더 */
.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-orange);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.username {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.post-time {
    font-size: 0.75rem;
    color: var(--text-dark);
    opacity: 0.6;
}

.instagram-icon {
    color: #E4405F;
    font-size: 1.2rem;
}

/* 포스트 이미지 */
.post-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.ig-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-post:hover .ig-photo {
    transform: scale(1.02);
}

/* 포스트 콘텐츠 */
.post-content {
    padding: 1rem 1.2rem 1.2rem;
}

.post-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.post-actions i {
    font-size: 1.2rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
}

.post-actions i:hover {
    color: var(--primary-orange);
    transform: scale(1.1);
}

.like-count {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.post-caption {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-dark);
}

.post-caption .username {
    font-weight: 600;
    margin-right: 0.3rem;
}

/* 모바일 최적화 */
@media (max-width: 768px) {
    .instagram-feed {
        max-width: 100%;
        gap: 1.5rem;
    }
    
    .post-caption {
        font-size: 0.85rem;
    }
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
    color: #FFD700;
}

.review-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.reviewer {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.reviewer-name {
    font-weight: 600;
}

/* === CTA SECTION === */
.cta-section {
    background: var(--gradient-orange);
    padding: var(--section-padding);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    z-index: var(--z-background);
}

.cta-content {
    position: relative;
    z-index: var(--z-content);
    color: var(--pure-white);
}

.cta-product {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

/* FANTA 캔 주변 기포 효과 */
.fanta-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.fanta-bubble {
    position: absolute !important;
    border-radius: 50% !important;
    background: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 40%, rgba(255,140,0,0.4) 70%, rgba(255,140,0,0.2) 100%) !important;
    pointer-events: none;
    display: block !important;
    opacity: 0.8 !important;
    z-index: 100 !important;
    /* 강제로 보이게 하기 위한 테스트용 배경 */
    box-shadow: 0 0 10px rgba(255,140,0,0.5) !important;
}

/* FANTA 캔 기포들 - 캔 둘레에서 나와서 위로 올라감 - 강제 실행 */
.fb-1 { width: 8px !important; height: 8px !important; left: 35% !important; top: 80% !important; animation: fantaBubbleRise1 4s infinite ease-out !important; animation-delay: 0s !important; }
.fb-2 { width: 12px !important; height: 12px !important; left: 45% !important; top: 75% !important; animation: fantaBubbleRise2 5s infinite ease-out !important; animation-delay: 0.5s !important; }
.fb-3 { width: 6px !important; height: 6px !important; left: 55% !important; top: 85% !important; animation: fantaBubbleRise3 3.5s infinite ease-out !important; animation-delay: 1s !important; }
.fb-4 { width: 10px !important; height: 10px !important; left: 65% !important; top: 70% !important; animation: fantaBubbleRise1 4.5s infinite ease-out !important; animation-delay: 1.5s !important; }
.fb-5 { width: 14px !important; height: 14px !important; left: 40% !important; top: 60% !important; animation: fantaBubbleRise2 5.5s infinite ease-out !important; animation-delay: 2s !important; }

.fb-6 { width: 7px !important; height: 7px !important; left: 30% !important; top: 85% !important; animation: fantaBubbleRise3 4.2s infinite ease-out !important; animation-delay: 0.3s !important; }
.fb-7 { width: 11px !important; height: 11px !important; left: 50% !important; top: 90% !important; animation: fantaBubbleRise1 4.8s infinite ease-out !important; animation-delay: 0.8s !important; }
.fb-8 { width: 9px !important; height: 9px !important; left: 60% !important; top: 65% !important; animation: fantaBubbleRise2 4.3s infinite ease-out !important; animation-delay: 1.3s !important; }
.fb-9 { width: 13px !important; height: 13px !important; left: 38% !important; top: 70% !important; animation: fantaBubbleRise3 5.2s infinite ease-out !important; animation-delay: 1.8s !important; }
.fb-10 { width: 8px !important; height: 8px !important; left: 52% !important; top: 80% !important; animation: fantaBubbleRise1 4.6s infinite ease-out !important; animation-delay: 2.3s !important; }

.fb-11 { width: 5px !important; height: 5px !important; left: 42% !important; top: 95% !important; animation: fantaBubbleRise2 3.8s infinite ease-out !important; animation-delay: 0.2s !important; }
.fb-12 { width: 15px !important; height: 15px !important; left: 48% !important; top: 65% !important; animation: fantaBubbleRise3 5.8s infinite ease-out !important; animation-delay: 0.7s !important; }
.fb-13 { width: 6px !important; height: 6px !important; left: 58% !important; top: 88% !important; animation: fantaBubbleRise1 4.1s infinite ease-out !important; animation-delay: 1.2s !important; }
.fb-14 { width: 10px !important; height: 10px !important; left: 33% !important; top: 78% !important; animation: fantaBubbleRise2 4.7s infinite ease-out !important; animation-delay: 1.7s !important; }
.fb-15 { width: 12px !important; height: 12px !important; left: 62% !important; top: 75% !important; animation: fantaBubbleRise3 5.1s infinite ease-out !important; animation-delay: 2.2s !important; }

.cta-can {
    height: 320px;
    width: auto;
    filter: drop-shadow(0 12px 32px rgba(0,0,0,0.3));
}

.product-reflection {
    position: absolute;
    bottom: -10px;
    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-text {
    margin-bottom: 3rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cta-buttons .cta-button {
    width: 320px;
    justify-content: center;
}

/* === MAP SECTION === */
.map-section {
    background: linear-gradient(180deg, var(--pure-white) 0%, var(--pineapple-light) 100%);
    padding: var(--section-padding);
}

.map-container {
    position: relative;
    margin-top: 2rem;
}

/* 구글 맵 래퍼 */
.google-map-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.google-map {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--border-radius);
}

/* 지도 오버레이 */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

/* 작은 마커들 */
.small-marker {
    position: absolute;
    cursor: pointer;
    pointer-events: all;
    z-index: 20;
    transition: transform 0.2s ease;
}

.small-marker:hover {
    transform: scale(1.2);
    z-index: 30;
}

.mini-can {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: all 0.2s ease;
}

.small-marker:hover .mini-can {
    width: 25px;
    height: 25px;
}

/* 툴팁 효과 */
.small-marker::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 40;
}

.small-marker:hover::after {
    opacity: 1;
}

.map-background {
    width: 90%;
    height: 90%;
    object-fit: contain;
    opacity: 0.8;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.map-marker {
    position: absolute;
    cursor: pointer;
    z-index: var(--z-content);
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

.marker-icon {
    position: relative;
    width: 40px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -100%);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50% 50% 50% 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    border: 2px solid var(--primary-orange);
}

.marker-can {
    width: 24px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    z-index: 2;
    position: relative;
}

.marker-icon::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--primary-orange);
    z-index: 1;
}

.convenience .marker-icon {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 0, 0.1);
}

.convenience .marker-icon::before {
    border-top-color: var(--primary-orange);
}

.mart .marker-icon {
    border-color: var(--blueberry-purple);
    background: rgba(107, 75, 162, 0.1);
}

.mart .marker-icon::before {
    border-top-color: var(--blueberry-purple);
}

.map-marker:hover .marker-icon {
    transform: translate(-50%, -100%) scale(1.2);
}

.marker-tooltip {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pure-white);
    padding: 12px 16px;
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-medium);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: var(--z-overlay);
}

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

.map-marker:hover .marker-tooltip {
    opacity: 1;
    visibility: visible;
}

.marker-tooltip h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.marker-tooltip p {
    font-size: 0.8rem;
    color: var(--text-dark);
    opacity: 0.7;
    margin: 0;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--pure-white);
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-light);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.legend-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.convenience-icon {
    background: var(--primary-orange);
}

.mart-icon {
    background: var(--blueberry-purple);
}

/* === MODAL === */
.modal {
    display: none;
    position: fixed;
    z-index: var(--z-modal);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: var(--pure-white);
    margin: 10% auto;
    padding: 0;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 400px;
    box-shadow: var(--shadow-heavy);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: #aaa;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 100;
}

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

.modal-body {
    padding: 1.5rem;
}

.modal-cta {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.modal-cta .cta-button {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* === FOOTER === */
.footer {
    background: linear-gradient(135deg, #8B5A99 0%, #6B46C1 100%);
    color: var(--pure-white);
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.footer-fanta-logo {
    height: 80px;
    width: auto;
}

.footer-text p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    color: var(--pure-white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--mango-yellow);
    transform: translateY(-2px);
}

/* === RESPONSIVE DESIGN === */
@media (min-width: 480px) {
    .container, .discovery-container {
        max-width: 480px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .fruit-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .discovery-container {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
    
    .discovery-left {
        flex: 1;
    }
    
    .discovery-right {
        flex: 2;
    }
    
    .discovery-can {
        height: 250px;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .modal-cta {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .container, .discovery-container {
        max-width: 600px;
    }
    
    section {
        padding: 100px 0;
    }
    
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
    
    .korea-map {
        height: 500px;
    }
    
    .discovery-container {
        gap: 4rem;
    }
    
    .discovery-can {
        height: 300px;
    }
    
    .fruit-grid {
        gap: 1.5rem;
    }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    /* FANTA 캔 기포 애니메이션은 유지 - 핵심 브랜딩 요소 */
    .fanta-bubble {
        animation-duration: revert !important;
        animation-iteration-count: infinite !important;
    }
    
    /* 히어로 비디오는 표시되어야 함 */
}

@media (prefers-color-scheme: dark) {
    :root {
        --text-dark: #F9FAFB;
        --pure-white: #1F2937;
    }
}