/* 基礎樣式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    font-feature-settings: "kern" 1;
    text-rendering: optimizeLegibility;
}

/* 色彩變數 */
:root {
    --primary-pink: #FF6B9D;
    --secondary-pink: #FF8FAB;
    --light-pink: #FFE1E9;
    --primary-blue: #4A90E2;
    --light-blue: #87CEEB;
    --sky-blue: #E8F4FD;
    --primary-green: #7ED321;
    --light-green: #B8E994;
    --yellow: #FFD93D;
    --orange: #FF9500;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --text-dark: #2C3E50;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* 導航欄樣式 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
}

.monkey-icon {
    font-size: 2rem;
    margin-right: 0.5rem;
    animation: bounce 2s infinite;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--yellow);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--yellow);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.nav-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* 英雄區域樣式 */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--sky-blue), var(--light-pink));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cloud {
    position: absolute;
    background: white;
    border-radius: 50px;
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 50px;
}

.cloud-1 {
    width: 100px;
    height: 40px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cloud-1::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 10px;
}

.cloud-1::after {
    width: 60px;
    height: 40px;
    top: -15px;
    right: 15px;
}

.cloud-2 {
    width: 80px;
    height: 35px;
    top: 30%;
    right: 20%;
    animation-delay: 2s;
}

.cloud-2::before {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 15px;
}

.cloud-2::after {
    width: 50px;
    height: 35px;
    top: -12px;
    right: 10px;
}

.cloud-3 {
    width: 120px;
    height: 45px;
    top: 15%;
    right: 5%;
    animation-delay: 4s;
}

.cloud-3::before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 20px;
}

.cloud-3::after {
    width: 70px;
    height: 45px;
    top: -18px;
    right: 20px;
}

.sun {
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--yellow), var(--orange));
    border-radius: 50%;
    top: 10%;
    right: 10%;
    animation: rotate 20s linear infinite;
    box-shadow: 0 0 30px var(--yellow);
}

.sun::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(0deg, transparent 40%, var(--yellow) 50%, transparent 60%),
        linear-gradient(45deg, transparent 40%, var(--yellow) 50%, transparent 60%),
        linear-gradient(90deg, transparent 40%, var(--yellow) 50%, transparent 60%),
        linear-gradient(135deg, transparent 40%, var(--yellow) 50%, transparent 60%);
    border-radius: 50%;
    transform: scale(1.5);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 10;
    position: relative;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.title-line1 {
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 600;
}

.title-line2 {
    color: var(--primary-pink);
    font-size: 4rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.title-line3 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 700;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

.hero-image {
    text-align: center;
    animation: slideInRight 1s ease-out;
}

.monkey-mascot {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
}

/* 產品區域樣式 */
.products-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--white), var(--light-gray));
}

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.emoji {
    font-size: 3.5rem;
    animation: pulse 2s infinite;
}

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

.products-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    justify-items: center;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-card.featured {
    border: 3px solid var(--primary-pink);
    transform: scale(1.05);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.placeholder-product {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.pink-drink {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
}

.green-drink {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
}

.brown-drink {
    background: linear-gradient(135deg, #8B4513, #D2691E);
}

.mystery-drink {
    background: linear-gradient(135deg, #2C3E50, #34495E, #5D6D7E, #85929E);
    position: relative;
    overflow: hidden;
}

.mystery-drink::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    animation: shimmer 3s infinite;
}

.mystery-icon {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.8);
    animation: mysterious-pulse 2s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

.mystery-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    font-size: 1.5rem;
    animation: sparkle 4s ease-in-out infinite;
}

.sparkle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 15%;
    right: 20%;
    animation-delay: 1s;
}

.sparkle-3 {
    bottom: 25%;
    left: 25%;
    animation-delay: 2s;
}

.sparkle-4 {
    bottom: 20%;
    right: 15%;
    animation-delay: 3s;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-pink);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.product-badge.new {
    background: var(--primary-green);
}

.product-badge.mystery {
    background: linear-gradient(135deg, #6C5CE7, #A29BFE);
    animation: mystery-glow 2s ease-in-out infinite alternate;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background: var(--light-pink);
    color: var(--primary-pink);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.mystery-tag {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(162, 155, 254, 0.2));
    color: #6C5CE7;
    border: 1px solid rgba(108, 92, 231, 0.3);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.mystery-price {
    color: #6C5CE7;
    background: linear-gradient(135deg, #6C5CE7, #A29BFE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: mystery-text 3s ease-in-out infinite;
}

.mystery-title {
    background: linear-gradient(135deg, #2C3E50, #6C5CE7, #A29BFE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.notify-btn {
    width: 100%;
    background: linear-gradient(135deg, #6C5CE7, #A29BFE);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

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

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

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

.coming-soon {
    position: relative;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(162, 155, 254, 0.1));
    border-radius: 25px;
    pointer-events: none;
    z-index: 1;
}

/* 關於我們區域樣式 */
.about-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--light-pink), var(--sky-blue));
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-item i {
    font-size: 1.5rem;
}

.text-pink { color: var(--primary-pink); }
.text-green { color: var(--primary-green); }
.text-yellow { color: var(--yellow); }

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-pink);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Values Cards in About Section */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.value-card:hover {
    transform: translateY(-8px) translateX(5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(255, 107, 157, 0.1);
}

.value-icon-large {
    font-size: 3.5rem;
    animation: iconFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.value-card:nth-child(1) .value-icon-large {
    animation-delay: 0s;
}

.value-card:nth-child(2) .value-icon-large {
    animation-delay: 0.5s;
}

.value-card:nth-child(3) .value-icon-large {
    animation-delay: 1s;
}

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

.value-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.value-content p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Find A Store 區域樣式 */
.find-store-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--sky-blue), var(--light-pink));
}

.store-finder-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* 搜尋與篩選區 */
.search-filter-section {
    margin-bottom: 3rem;
}

.search-container {
    margin-bottom: 2rem;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    background: white;
    border-radius: 30px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.search-box:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 25px;
    background: transparent;
    color: var(--text-dark);
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    border: none;
    border-radius: 25px;
    padding: 1rem 2rem;
    color: white;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.search-btn.searching .search-icon {
    animation: wink 1s ease-in-out infinite;
}

@keyframes wink {
    0%, 80%, 100% { transform: scaleY(1); }
    90% { transform: scaleY(0.1); }
}





/* 地圖與門市列表容器 */
.map-stores-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Google 地圖樣式 */
.google-map-container {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map-title {
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.map-controls {
    display: flex;
    gap: 0.5rem;
}

.map-control-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.map-control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.google-map-wrapper {
    position: relative;
    height: 450px;
    overflow: hidden;
}

#google-map {
    width: 100%;
    height: 100%;
    border: none;
    filter: saturate(0.8) brightness(1.1);
    transition: filter 0.3s ease;
}

#google-map:hover {
    filter: saturate(1) brightness(1);
}

.map-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.map-legend h5 {
    margin: 0 0 0.8rem 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-dark);
}

.legend-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.legend-icon.flagship {
    filter: hue-rotate(10deg) brightness(1.2);
}

.legend-icon.regular {
    filter: hue-rotate(180deg);
}

.legend-icon.coming {
    filter: grayscale(0.5);
}

.quick-links {
    padding: 1rem 1.5rem;
    background: var(--light-gray);
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.quick-link-btn {
    background: white;
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex: 1;
    min-width: 120px;
    justify-content: center;
}

.quick-link-btn:hover {
    background: var(--primary-pink);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
}

.quick-link-btn.active {
    background: var(--primary-pink);
    color: white;
}

/* 門市列表 */
.stores-list {
    max-height: 500px;
    overflow-y: auto;
}

.stores-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.stores-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.stores-count {
    background: var(--primary-pink);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.store-cards-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.store-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.store-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-pink);
}

.store-card.flagship {
    background: linear-gradient(135deg, #FFF8E1, #FFFBF0);
    border: 2px solid var(--yellow);
}

.store-image {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.store-photo {
    display: inline-block;
    position: relative;
}

.store-emoji {
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
}

.store-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: var(--yellow);
    color: var(--text-dark);
    padding: 0.2rem 0.8rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
}

.flagship-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    animation: pulse 2s infinite;
}

.store-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.store-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    font-size: 0.9rem;
}

.rating-text {
    font-size: 0.8rem;
    color: #666;
}

.store-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.detail-item i {
    color: var(--primary-pink);
    width: 14px;
    text-align: center;
}

.distance {
    background: var(--light-green);
    color: var(--primary-green);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.8rem;
}

.store-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.feature-tag.new-drinks {
    background: var(--light-pink);
    color: var(--primary-pink);
}

.feature-tag.wifi {
    background: var(--sky-blue);
    color: var(--primary-blue);
}

.feature-tag.parking {
    background: #E8F5E8;
    color: #2E7D32;
}

.feature-tag.outdoor {
    background: var(--light-green);
    color: var(--primary-green);
}

.feature-tag.student {
    background: #FFF3E0;
    color: #E65100;
}

.feature-tag.takeout {
    background: #F3E5F5;
    color: #7B1FA2;
}

.feature-tag.night {
    background: #E8EAF6;
    color: #3F51B5;
}

.feature-tag.tourist {
    background: #FFF8E1;
    color: #F57F17;
}

.feature-tag.family {
    background: #FCE4EC;
    color: #C2185B;
}

.feature-tag.delivery {
    background: #E0F2F1;
    color: #00695C;
}



/* 品牌故事區域樣式 */
.brand-story-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--sky-blue), var(--light-pink));
    position: relative;
    overflow: hidden;
}

.story-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-pink), var(--primary-blue), var(--primary-green), var(--yellow));
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 107, 157, 0.3);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: relative;
}

.story-illustration {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.story-illustration.forest {
    background: linear-gradient(135deg, #7ED321, #B8E994);
}

.story-illustration.discovery {
    background: linear-gradient(135deg, #FF6B9D, #FF8FAB);
}

.story-illustration.experiment {
    background: linear-gradient(135deg, #4A90E2, #87CEEB);
}

.story-illustration.sharing {
    background: linear-gradient(135deg, #FFD93D, #FF9500);
}

.story-illustration .main-character {
    font-size: 2.5rem;
    animation: bounce 2s infinite;
}

.story-illustration .environment,
.story-illustration .discovery-item,
.story-illustration .tool,
.story-illustration .ingredient,
.story-illustration .friend,
.story-illustration .drink {
    position: absolute;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.story-illustration .environment {
    top: 10px;
    right: 10px;
}

.story-illustration .element {
    bottom: 10px;
    left: 10px;
    font-size: 1rem;
    animation: rotate 4s linear infinite;
}

.story-illustration .discovery-item:nth-child(2) {
    top: 5px;
    right: 5px;
    animation-delay: 0.5s;
}

.story-illustration .discovery-item:nth-child(3) {
    bottom: 5px;
    right: 15px;
    animation-delay: 1s;
}

.story-illustration .discovery-item:nth-child(4) {
    top: 15px;
    left: 5px;
    animation-delay: 1.5s;
}

.story-illustration .friend:nth-child(2) {
    top: 10px;
    right: 15px;
}

.story-illustration .friend:nth-child(3) {
    bottom: 10px;
    left: 15px;
}

.story-illustration .drink {
    bottom: 5px;
    right: 5px;
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    margin: 0 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    max-width: 400px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -30px;
    border-right-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -30px;
    border-left-color: white;
}

.story-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.story-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.story-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}



.sharing-heart {
    position: absolute;
    top: 20%;
    right: 20%;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.sharing-star {
    position: absolute;
    top: 60%;
    left: 15%;
    font-size: 1.2rem;
    animation: rotate 4s linear infinite;
}

.sharing-sparkle {
    position: absolute;
    bottom: 30%;
    right: 30%;
    font-size: 1rem;
    animation: sparkle 3s ease-in-out infinite;
}

/* 頁腳樣式 */
.footer {
    background: linear-gradient(135deg, var(--text-dark), #34495e);
    color: white;
    padding: 3rem 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.monkey-icon-large {
    font-size: 3rem;
    animation: bounce 2s infinite;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-pink);
}

.brand-tagline {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.2rem;
}

.brand-characters {
    display: flex;
    gap: 1.5rem;
}

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

.footer-character {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

.footer-character.main {
    animation: bounce 2s infinite;
}

.character-name {
    font-size: 0.8rem;
    opacity: 0.8;
}

.footer-contact h4,
.footer-social h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-pink);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
}

.footer-item i {
    color: var(--primary-pink);
    width: 16px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-icon {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.icon-container {
    position: relative;
    z-index: 2;
}

.social-icon i {
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

.social-emoji {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.8rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.social-icon:hover .social-emoji {
    opacity: 1;
    transform: scale(1.2);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-icon.facebook {
    background: #3b5998;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.line {
    background: #00c300;
}

.social-icon.youtube {
    background: #ff0000;
}

.social-cta {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.copyright {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-pink);
}

.footer-links span {
    opacity: 0.5;
}

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

.decoration-element {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.decoration-element:nth-child(2) {
    animation-delay: 0.5s;
}

.decoration-element:nth-child(3) {
    animation-delay: 1s;
}

/* 動畫效果 */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

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

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

@keyframes sparkle {
    0%, 100% { 
        opacity: 0; 
        transform: scale(0.8) rotate(0deg); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2) rotate(180deg); 
    }
}

@keyframes mystery-glow {
    0% { 
        box-shadow: 0 0 5px rgba(108, 92, 231, 0.5); 
    }
    100% { 
        box-shadow: 0 0 20px rgba(108, 92, 231, 0.8); 
    }
}

@keyframes mystery-text {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

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

/* 響應式設計 */
@media (max-width: 768px) {
    /* 品牌故事響應式 */
    .story-timeline::before {
        left: 30px;
        transform: none;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 4rem;
    }

    .timeline-item:nth-child(even) {
        flex-direction: row !important;
    }

    .timeline-icon {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
    }

    .story-illustration {
        width: 60px;
        height: 60px;
    }

    .story-illustration .main-character {
        font-size: 1.8rem;
    }

    .story-illustration .environment,
    .story-illustration .discovery-item,
    .story-illustration .tool,
    .story-illustration .ingredient,
    .story-illustration .friend,
    .story-illustration .drink {
        font-size: 0.8rem;
    }

    .timeline-content {
        margin: 0 0 0 1rem;
        max-width: none;
    }

    .timeline-content::before {
        display: none;
    }

    .story-title {
        font-size: 1.2rem;
    }

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



    /* Find A Store 響應式 */
    .map-stores-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .google-map-wrapper {
        height: 350px;
    }

    .map-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .map-overlay {
        position: static;
        margin: 1rem;
        background: white;
    }

    .quick-links {
        gap: 0.5rem;
    }

    .quick-link-btn {
        flex: 1;
        min-width: 100px;
        font-size: 0.8rem;
    }

    .fruit-filters {
        gap: 1rem;
    }

    .fruit-filter {
        min-width: 100px;
        padding: 0.8rem 1rem;
    }

    .fruit-shape {
        width: 40px;
        height: 40px;
    }

    .fruit-emoji {
        font-size: 1.5rem;
    }

    .search-box {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
    }

    /* 頁腳響應式 */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .brand-characters {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-line1 {
        font-size: 1.5rem;
    }
    
    .title-line2 {
        font-size: 3rem;
    }
    
    .title-line3 {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .emoji {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
    }
    
    .stat-item {
        flex: 1;
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-container {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .product-card {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .product-image {
        height: 200px;
    }
    
    .mystery-icon {
        font-size: 4rem;
    }
    
    .sparkle {
        font-size: 1.2rem;
    }
    
    .cloud {
        display: none;
    }
    
    .sun {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 5rem 0.5rem 3rem;
        min-height: 90vh;
    }
    
    .products-section,
    .about-section,
    .brand-story-section,
    .values-section,
    .contact-section {
        padding: 3rem 0.5rem;
    }
    
    .hero-content {
        gap: 1.5rem;
        padding: 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .title-line1 {
        font-size: 1.2rem;
    }
    
    .title-line2 {
        font-size: 2.2rem;
    }
    
    .title-line3 {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
    
    .emoji {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .products-container {
        padding: 0;
        gap: 1.5rem;
    }
    
    .product-card {
        max-width: 100%;
        margin: 0;
    }
    
    .product-name {
        font-size: 1.2rem;
    }
    
    .product-price {
        font-size: 1.3rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .info-item i {
        margin-top: 0;
        font-size: 2rem;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .mystery-icon {
        font-size: 3rem;
    }
    
    .sparkle {
        font-size: 1rem;
    }

    /* 品牌故事手機優化 */
    .brand-story-section {
        padding: 3rem 0.5rem;
    }

    .story-timeline {
        padding: 1rem 0;
    }

    .timeline-item {
        margin-bottom: 2rem;
        padding-left: 3rem;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
    }

    .story-illustration {
        width: 50px;
        height: 50px;
    }

    .story-illustration .main-character {
        font-size: 1.5rem;
    }

    .timeline-content {
        padding: 1rem;
        margin-left: 0.5rem;
    }

    .story-title {
        font-size: 1.1rem;
    }

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

    .story-year {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }

    /* 價值主張手機優化 */
    .values-section {
        padding: 3rem 0.5rem;
    }

    .values-content-2col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-info-column {
        padding: 1rem;
        order: 2;
    }

    .values-visual-column {
        padding: 1rem;
        order: 1;
    }

    .values-title {
        font-size: 2rem;
        text-align: center;
    }

    .values-motto {
        font-size: 1.1rem;
        padding: 1.5rem;
    }

    .value-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

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

    .value-icon-large {
        font-size: 2.5rem;
    }

    .sharing-scene-enhanced {
        width: 280px;
        height: 280px;
    }

    .character-emoji {
        font-size: 2.5rem;
    }

    .character-drink {
        font-size: 1.3rem;
    }

    .character-label {
        font-size: 0.8rem;
    }

    .cloud {
        font-size: 1.2rem;
    }

    .sun {
        font-size: 1.5rem;
    }

    /* 頁腳手機優化 */
    .footer {
        padding: 2rem 0 0;
    }

    .footer-content {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .monkey-icon-large {
        font-size: 2.5rem;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .brand-tagline {
        font-size: 0.8rem;
    }

    .brand-characters {
        gap: 1rem;
    }

    .footer-character {
        font-size: 1.5rem;
    }

    .character-name {
        font-size: 0.7rem;
    }

    .footer-item {
        font-size: 0.8rem;
        justify-content: center;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .footer-bottom {
        padding: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-links span {
        display: none;
    }

    /* Find A Store 手機優化 */
    .find-store-section {
        padding: 3rem 0.5rem;
    }

    .search-box {
        margin: 0 1rem;
        padding: 0.5rem;
    }

    .search-input {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }

    .search-btn {
        padding: 0.8rem 1.5rem;
    }

    .fruit-filters {
        gap: 0.8rem;
        padding: 0 1rem;
    }

    .fruit-filter {
        min-width: 80px;
        padding: 0.6rem 0.8rem;
        gap: 0.3rem;
    }

    .fruit-shape {
        width: 35px;
        height: 35px;
    }

    .fruit-emoji {
        font-size: 1.3rem;
    }

    .filter-text {
        font-size: 0.8rem;
    }

    .map-stores-container {
        padding: 1rem;
        gap: 1.5rem;
    }

    .google-map-wrapper {
        height: 250px;
    }

    .map-header {
        padding: 1rem;
        flex-direction: column;
        gap: 0.8rem;
    }

    .map-title {
        font-size: 1rem;
    }

    .map-control-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .map-overlay {
        position: static;
        margin: 0.5rem;
        padding: 0.8rem;
    }

    .map-legend h5 {
        font-size: 0.8rem;
    }

    .legend-item {
        font-size: 0.7rem;
    }

    .quick-links {
        padding: 0.8rem;
        gap: 0.4rem;
    }

    .quick-link-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
        min-width: 80px;
    }

    .store-card {
        padding: 1rem;
    }

    .store-emoji {
        font-size: 2.5rem;
    }

    .store-name {
        font-size: 1.1rem;
    }

    .detail-item {
        font-size: 0.8rem;
    }

    .feature-tag {
        font-size: 0.6rem;
        padding: 0.1rem 0.4rem;
    }

    .stores-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .stores-count {
        font-size: 0.8rem;
    }

    /* 新產品區域手機優化 */
    .product-details-section,
    .nutrition-section,
    .product-gallery-section,
    .product-features-section {
        padding: 3rem 0.5rem;
    }

    .product-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase-image {
        height: 250px;
    }

    .nutrition-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-icon-large {
        font-size: 3rem;
    }

    /* 畫廊手機優化 */
    .gallery-container {
        padding: 0 1rem;
    }
    
    .gallery-particles .particle {
        width: 4px;
        height: 4px;
    }
    
    .enhanced-title .glow {
        animation-duration: 2s;
    }
    
    .photo-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-auto-rows: 200px;
        gap: 1.5rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .gallery-item {
        min-height: 200px;
    }
    
    .gallery-item.featured,
    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 2;
        min-height: 200px;
    }
    
    .gallery-item.tall {
        grid-row: span 2;
        min-height: 420px;
    }
    
    .gallery-item img {
        height: 100%;
        min-height: 200px;
    }
    
    .gallery-item.featured img {
        height: 100%;
        min-height: 200px;
    }
    
    .gallery-item.tall img {
        height: 100%;
        min-height: 420px;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .card-header h4 {
        font-size: 1.5rem;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ingredient-item {
        padding: 0.8rem;
    }
    
    .ingredient-icon {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    

    
    .overlay-content h4 {
        font-size: 1.3rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
    }
    
    .photo-tags {
        gap: 0.3rem;
    }
    
    .photo-tags .tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

/* ===============================
   新增產品展示區域樣式
=============================== */

/* 產品詳細資訊區域 */
.product-details-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--sky-blue), var(--light-pink));
    position: relative;
    overflow: hidden;
}

.product-details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 61, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(126, 211, 33, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.product-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.showcase-image:hover {
    transform: translateY(-10px);
}

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

.showcase-image:hover .lifestyle-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.showcase-image:hover .image-overlay {
    transform: translateY(0);
}

.overlay-text h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.showcase-info {
    padding: 2rem 0;
}

.showcase-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stars-large {
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
}

.rating-text {
    color: var(--text-dark);
    font-weight: 600;
}

.product-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-content h5 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-content p {
    color: #666;
    line-height: 1.6;
}

/* 營養成分區域 */
.nutrition-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.nutrition-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.nutrition-card,
.ingredients-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.nutrition-card:hover,
.ingredients-card:hover {
    transform: translateY(-5px);
}

.nutrition-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-pink);
}

.nutrition-header h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
}

.bottle-small {
    width: 80px;
    height: auto;
    border-radius: 10px;
}

.nutrition-facts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nutrition-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.nutrition-item:last-child {
    border-bottom: none;
}

.nutrient-name {
    color: var(--text-dark);
    font-weight: 500;
}

.nutrient-value {
    color: var(--primary-pink);
    font-weight: 700;
    font-size: 1.1rem;
}

.ingredients-card h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ingredients-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ingredient-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ingredient-item:hover {
    background: var(--light-pink);
    transform: translateX(5px);
}

.ingredient-icon {
    font-size: 2rem;
    margin-top: 0.2rem;
}

.ingredient-info strong {
    color: var(--text-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

.ingredient-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 增強產品畫廊區域 */
.product-gallery-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-green), var(--sky-blue));
    position: relative;
    overflow: hidden;
}

.product-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(74, 144, 226, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(126, 211, 33, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.product-gallery-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: shimmer 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes shimmer {
    0%, 100% { opacity: 0; transform: translateX(-100%); }
    50% { opacity: 1; transform: translateX(100%); }
}

/* 動態粒子背景 */
.gallery-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, var(--primary-pink), transparent);
    border-radius: 50%;
    animation: floatParticle 15s linear infinite;
}

.particle-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.particle-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.particle-4 {
    bottom: 20%;
    right: 25%;
    animation-delay: 6s;
    animation-duration: 13s;
}

.particle-5 {
    top: 50%;
    left: 50%;
    animation-delay: 8s;
    animation-duration: 15s;
}

.particle-6 {
    top: 70%;
    right: 40%;
    animation-delay: 10s;
    animation-duration: 11s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    20% {
        transform: translateY(-20px) translateX(10px) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-40px) translateX(-15px) scale(1.2);
        opacity: 0.6;
    }
    80% {
        transform: translateY(-60px) translateX(20px) scale(0.8);
        opacity: 0.3;
    }
    90% {
        opacity: 0;
    }
}

/* 增強標題效果 */
.enhanced-title {
    position: relative;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.enhanced-title .glow {
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 5px var(--primary-pink));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 15px var(--primary-pink));
        transform: scale(1.1);
    }
}

.enhanced-subtitle {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-pink), transparent);
    border-radius: 1px;
}

.decoration-circle {
    width: 12px;
    height: 12px;
    border: 2px solid var(--primary-pink);
    border-radius: 50%;
    position: relative;
}

.decoration-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--primary-pink);
    border-radius: 50%;
    animation: decorationPulse 2s ease-in-out infinite;
}

@keyframes decorationPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.5); }
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* 照片畫廊網格 - 優化響應式設計 */
.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-height: 250px;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-pink), var(--primary-blue), var(--primary-green));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
    opacity: 1;
    animation: gradientRotate 3s linear infinite;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(255, 107, 157, 0.1);
}

.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 520px;
}

.gallery-item.large {
    grid-column: span 2;
    min-height: 250px;
}

.gallery-item.wide {
    grid-column: span 2;
    min-height: 250px;
}

.gallery-item.tall {
    grid-row: span 2;
    min-height: 520px;
}

.gallery-item.tall img {
    height: 100%;
    min-height: 520px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-item.featured img {
    height: 100%;
    min-height: 520px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent);
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 10;
}

/* 手機版 overlay 優化 */
@media (max-width: 767px) {
    .gallery-overlay {
        padding: 1rem;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.6), transparent);
    }
    
    .gallery-item:hover .gallery-overlay {
        transform: translateY(0);
    }
    
    .overlay-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }
    
    .category-label {
        padding: 0.3rem 0.8rem;
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.category-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.8rem;
    text-transform: capitalize;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Product category specific styling */
[data-category="product"] .category-label {
    background: linear-gradient(135deg, var(--primary-pink), var(--light-pink));
    border: 1px solid rgba(255, 107, 157, 0.5);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

/* 大屏幕優化 (1200px+) */
@media (min-width: 1200px) {
    .photo-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
    }
    
    .gallery-item.featured {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 2;
    }
    
    .gallery-item.tall {
        grid-row: span 2;
    }
}

/* 中等屏幕 (768px - 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    .photo-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .gallery-item.featured,
    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 2;
    }
    
    .gallery-item.tall {
        grid-row: span 2;
    }
}

.overlay-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.photo-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.photo-tags .tag {
    background: var(--primary-pink);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* 信息卡片樣式 */
.info-card {
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-pink), var(--sky-blue));
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-header {
    margin-bottom: 1.5rem;
}

.card-header h4 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.serving-size {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.ingredient-item {
    text-align: center;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ingredient-item:hover {
    transform: translateY(-5px);
}

.ingredient-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

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

.nutrition-list {
    margin-bottom: 1rem;
}

.nutrition-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nutrition-row:last-child {
    border-bottom: none;
}

.nutrient {
    color: var(--text-dark);
    font-weight: 500;
}

.value {
    font-weight: 700;
    color: var(--primary-pink);
    font-size: 1.1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    text-align: center;
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    display: block;
}

.benefit-item h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.benefit-item p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
}

.card-description {
    color: #555;
    line-height: 1.6;
    font-style: italic;
}







/* 產品特色區域 */
.product-features-section {
    padding: 4rem 0;
    background: white;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--light-pink), var(--sky-blue));
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: scale(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    z-index: 2;
}

.feature-card h4 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.feature-stats {
    position: relative;
    z-index: 2;
}

.feature-stats .stat {
    display: inline-block;
    background: var(--primary-pink);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* 響應式設計補充 */
@media (max-width: 1024px) {
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .nutrition-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .photo-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        gap: 1.5rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .gallery-item.featured,
    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 250px;
    }
    
    .gallery-item img {
        height: 100%;
        min-height: 250px;
    }
    
    .gallery-item.featured img,
    .gallery-item.tall img {
        height: 100%;
        min-height: 250px;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .gallery-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}