/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2C2C2C;
    --secondary-color: #666666;
    --accent-color: #D4A574;
    --gold: #C9A86A;
    --gold-light: #E8DCC4;
    --gold-dark: #B8935A;
    --bronze: #A67C52;
    --cream: #F5F1E8;
    --beige: #E8DED0;
    --dark: #1a1a1a;
    --light: #FAF8F3;
    --white: #FFFFFF;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-soft: 0 4px 16px rgba(212, 165, 116, 0.12);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--primary-color);
    overflow-x: hidden;
    background: var(--light);
}

html {
    scroll-behavior: smooth;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--cream);
    box-shadow: none;
    border-bottom: 1px solid rgba(44, 44, 44, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
}

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

.nav-link:hover {
    color: var(--accent-color);
}

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


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 65vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--beige) 0%, var(--cream) 100%);
    margin-top: 90px;
}

/* Floating Bubbles */
.bubbles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 235, 59, 0.9), rgba(255, 193, 7, 0.7));
    border-radius: 50%;
    opacity: 0.85;
    animation: float-up linear infinite;
    box-shadow: inset -2px -2px 10px rgba(255, 255, 255, 0.5),
                0 0 25px rgba(255, 193, 7, 0.4),
                inset 3px 3px 10px rgba(255, 193, 7, 0.3);
    border: 2px solid rgba(255, 235, 59, 0.6);
}

.bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 20%;
    animation-duration: 10s;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    width: 100px;
    height: 100px;
    left: 35%;
    animation-duration: 7s;
    animation-delay: 1s;
}

.bubble:nth-child(4) {
    width: 50px;
    height: 50px;
    left: 50%;
    animation-duration: 9s;
    animation-delay: 3s;
}

.bubble:nth-child(5) {
    width: 70px;
    height: 70px;
    left: 65%;
    animation-duration: 11s;
    animation-delay: 0.5s;
}

.bubble:nth-child(6) {
    width: 90px;
    height: 90px;
    left: 75%;
    animation-duration: 8.5s;
    animation-delay: 2.5s;
}

.bubble:nth-child(7) {
    width: 55px;
    height: 55px;
    left: 85%;
    animation-duration: 10.5s;
    animation-delay: 1.5s;
}

.bubble:nth-child(8) {
    width: 65px;
    height: 65px;
    left: 15%;
    animation-duration: 9.5s;
    animation-delay: 4s;
}

.bubble:nth-child(9) {
    width: 75px;
    height: 75px;
    left: 45%;
    animation-duration: 7.5s;
    animation-delay: 0.8s;
}

.bubble:nth-child(10) {
    width: 85px;
    height: 85px;
    left: 92%;
    animation-duration: 8.8s;
    animation-delay: 3.5s;
}

@keyframes float-up {
    0% {
        bottom: -100px;
        opacity: 0;
        transform: translateX(0) rotate(0deg) scale(0.8);
    }
    10% {
        opacity: 0.85;
    }
    90% {
        opacity: 0.85;
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(50px) rotate(360deg) scale(1.1);
    }
}

/* Boba Pearls */
.boba-pearls-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.boba-pearl {
    position: absolute;
    bottom: -50px;
    background: radial-gradient(circle at 35% 35%, #4a4a4a, #2c2c2c);
    border-radius: 50%;
    opacity: 0.7;
    animation: pearl-float linear infinite;
    box-shadow: inset -2px -2px 8px rgba(0, 0, 0, 0.5),
                inset 2px 2px 8px rgba(255, 255, 255, 0.1),
                0 4px 15px rgba(0, 0, 0, 0.3);
}

.boba-pearl:nth-child(1) {
    width: 25px;
    height: 25px;
    left: 15%;
    animation-duration: 10s;
    animation-delay: 0s;
}

.boba-pearl:nth-child(2) {
    width: 20px;
    height: 20px;
    left: 30%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.boba-pearl:nth-child(3) {
    width: 28px;
    height: 28px;
    left: 45%;
    animation-duration: 9s;
    animation-delay: 1s;
}

.boba-pearl:nth-child(4) {
    width: 22px;
    height: 22px;
    left: 60%;
    animation-duration: 11s;
    animation-delay: 3s;
}

.boba-pearl:nth-child(5) {
    width: 26px;
    height: 26px;
    left: 75%;
    animation-duration: 10.5s;
    animation-delay: 1.5s;
}

.boba-pearl:nth-child(6) {
    width: 24px;
    height: 24px;
    left: 85%;
    animation-duration: 9.5s;
    animation-delay: 4s;
}

.boba-pearl:nth-child(7) {
    width: 21px;
    height: 21px;
    left: 8%;
    animation-duration: 11.5s;
    animation-delay: 2.5s;
}

.boba-pearl:nth-child(8) {
    width: 27px;
    height: 27px;
    left: 92%;
    animation-duration: 10.2s;
    animation-delay: 0.8s;
}

@keyframes pearl-float {
    0% {
        bottom: -50px;
        opacity: 0;
        transform: translateX(0) translateY(0);
    }
    10% {
        opacity: 0.7;
    }
    50% {
        transform: translateX(20px) translateY(-50vh);
    }
    90% {
        opacity: 0.7;
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(-20px) translateY(-100vh);
    }
}

/* Decorative Elements */
.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.straw {
    position: absolute;
    width: 12px;
    height: 150px;
    background: repeating-linear-gradient(
        0deg,
        #2c2c2c 0px,
        #2c2c2c 20px,
        #1a1a1a 20px,
        #1a1a1a 25px,
        #2c2c2c 25px,
        #2c2c2c 45px,
        transparent 45px,
        transparent 50px
    );
    border-radius: 6px;
    opacity: 0.8;
    animation: straw-rotate 20s linear infinite;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.straw-1 {
    top: 15%;
    left: 8%;
    transform: rotate(45deg);
}

.straw-2 {
    top: 20%;
    right: 10%;
    transform: rotate(-30deg);
    animation-duration: 25s;
}

@keyframes straw-rotate {
    0% {
        transform: rotate(45deg);
    }
    100% {
        transform: rotate(405deg);
    }
}

.drink-cup {
    position: absolute;
    width: 90px;
    height: 120px;
    opacity: 0.7;
    animation: cup-float 15s ease-in-out infinite;
}

/* Cup body */
.drink-cup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 120px;
    background: linear-gradient(180deg, 
        transparent 0%,
        transparent 25%,
        rgba(255, 235, 200, 0.6) 25%,
        rgba(244, 208, 165, 0.7) 100%
    );
    border-radius: 0 0 40px 40px;
    border: 4px solid rgba(44, 44, 44, 0.6);
    border-top: 10px solid rgba(255, 193, 7, 0.8);
    box-shadow: inset 0 -30px 20px rgba(255, 193, 7, 0.3),
                0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Liquid/milk pouring animation */
.drink-cup::after {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 40px;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 235, 200, 0.8) 50%,
        transparent 100%
    );
    border-radius: 10px;
    animation: milk-pour 3s ease-in-out infinite;
    opacity: 0;
}

@keyframes milk-pour {
    0%, 100% {
        opacity: 0;
        height: 0;
        top: -15px;
    }
    20% {
        opacity: 0.9;
        height: 50px;
        top: -15px;
    }
    40% {
        opacity: 0.9;
        height: 70px;
    }
    60% {
        opacity: 0.8;
        height: 50px;
    }
    80% {
        opacity: 0.3;
        height: 20px;
    }
}

.cup-1 {
    bottom: 8%;
    left: 3%;
}

.cup-1::after {
    animation-delay: 0s;
}

.cup-2 {
    top: 10%;
    right: 5%;
    transform: rotate(10deg);
    animation-duration: 18s;
}

.cup-2::after {
    animation-delay: 1.5s;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 168, 106, 0.05) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--primary-color);
    max-width: 900px;
    animation: fadeIn 1s ease;
    padding: 0 40px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: 8px;
    animation: fadeInUp 1s ease;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
    font-weight: 400;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.2s backwards;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-button {
    padding: 16px 45px;
    font-size: 0.75rem;
    border: 2px solid var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
    border-radius: 0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    animation: fadeInUp 1s ease 0.4s backwards;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.cta-button:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

/* Menu Section */
.menu-section {
    padding: 50px 40px;
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
    position: relative;
    overflow: hidden;
}

/* Physical menu image - full menu view */
.physical-menu-wrap {
    margin-bottom: 28px;
}

.physical-menu-image-wrap {
    max-width: 900px;
    margin: 16px auto 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(44, 44, 44, 0.08);
}

.physical-menu-image {
    width: 100%;
    height: auto;
    display: block;
}

.section-title-divider {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid var(--beige);
}

/* Decorative floating elements in menu */
.menu-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 235, 59, 0.3), rgba(255, 193, 7, 0.15));
    border-radius: 50%;
    animation: float-gentle 8s ease-in-out infinite;
    pointer-events: none;
}

.menu-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 3%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 35% 35%, #4a4a4a, #2c2c2c);
    border-radius: 50%;
    animation: float-gentle 10s ease-in-out infinite;
    animation-delay: 1s;
    pointer-events: none;
}

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

.section-title {
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: left;
    color: var(--secondary-color);
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.category-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 12px 28px;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.category-tab:hover,
.category-tab.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Signature fruit teas: one image + dropdown */
.menu-grid.menu-dropdown-layout {
    grid-template-columns: 1fr;
    max-width: 480px;
}

.menu-single-display {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
}

.menu-single-image-wrap {
    width: 220px;
    height: 220px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--beige) 0%, var(--gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.menu-single-image-wrap:hover {
    opacity: 0.95;
}

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

.menu-single-icon {
    font-size: 4rem;
    opacity: 0.8;
}

.menu-single-dropdowns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 220px;
}

.menu-dropdown-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-dropdown-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-select {
    padding: 10px 12px;
    font-size: 0.95rem;
    border: 2px solid var(--beige);
    border-radius: 8px;
    background: var(--white);
    color: var(--primary-color);
    cursor: pointer;
    min-width: 200px;
}

.menu-select:focus {
    border-color: var(--accent-color);
    outline: none;
}

.menu-single-hint {
    font-size: 0.8rem;
    color: var(--secondary-color);
    margin: 0;
}

.menu-item {
    position: relative;
    background: var(--white);
    border: 1px solid rgba(44, 44, 44, 0.08);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 400px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

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

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }
.menu-item:nth-child(5) { animation-delay: 0.5s; }
.menu-item:nth-child(6) { animation-delay: 0.6s; }

.menu-item:hover {
    height: 520px;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 193, 7, 0.2);
    border-color: var(--accent-color);
    transform: translateY(-8px) scale(1.01);
    z-index: 10;
}

/* Bubble effect on menu hover */
.menu-item::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 235, 59, 0.6), rgba(255, 193, 7, 0.3));
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.menu-item:hover::before {
    bottom: 100%;
    opacity: 1;
    width: 40px;
    height: 40px;
}

.item-image {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, var(--beige) 0%, var(--cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.item-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.menu-item:hover .item-image {
    height: 360px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--beige) 100%);
}

.item-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item:hover .item-details {
    padding: 30px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.item-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.item-price {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.item-description {
    color: var(--secondary-color);
    font-size: 0.85rem;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item:hover .item-description {
    max-height: 200px;
    opacity: 1;
    margin-bottom: 15px;
}

.item-category {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 0;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 4;
}

.item-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item:hover .item-tags-container {
    opacity: 1;
    max-height: 200px;
}

.item-tag {
    padding: 6px 14px;
    background: var(--beige);
    color: var(--primary-color);
    border-radius: 0;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    border: 1px solid var(--gold-light);
}

.item-tag:hover {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.item-icon-only {
    display: none;
}

/* Explore Section */
.explore-section {
    padding: 100px 60px;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
    position: relative;
}

/* Section divider with pearls */
.explore-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-color) 20%,
        var(--accent-color) 80%,
        transparent 100%);
}

.explore-section::after {
    content: '⚫ ⚫ ⚫';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    color: var(--accent-color);
    letter-spacing: 10px;
}

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

.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.explore-card {
    background: var(--white);
    border: 1px solid rgba(44, 44, 44, 0.08);
    border-radius: 0;
    padding: 50px 35px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

/* Ripple effect */
.explore-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.explore-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(255, 193, 7, 0.15);
}

.explore-card:hover::after {
    width: 300px;
    height: 300px;
}

.explore-card:hover .explore-icon {
    transform: scale(1.2) rotate(5deg);
}

.explore-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    transition: all 0.4s ease;
}

.explore-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.explore-description {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Section Page Views */
.section-page {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.section-page.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.section-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.section-page-content {
    position: relative;
    background: var(--light);
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

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

.section-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border: none;
    border-radius: 0;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 400;
    transition: all 0.3s;
}

.section-close:hover {
    background: var(--accent-color);
}

.section-page-inner {
    padding: 80px 60px;
}

#faqs-page .section-page-content {
    max-width: 900px;
}

#faqs-page .section-page-inner {
    padding: 70px 50px;
}

#faqs-page .page-intro {
    max-width: 650px;
    margin-bottom: 50px;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

/* FAQ Category Selection */
.faq-category-selection {
    margin-top: 20px;
}

.faq-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.faq-category-card {
    background: var(--white);
    border: 1px solid rgba(44, 44, 44, 0.08);
    padding: 35px 30px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.faq-category-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.category-card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.category-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.category-card-desc {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.5;
}

.category-card-count {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ Questions Container */
.faq-questions-container {
    animation: fadeIn 0.4s ease;
}

.faq-back-button {
    background: transparent;
    border: 1px solid var(--beige);
    color: var(--primary-color);
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.faq-back-button:hover {
    background: var(--light);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.faq-back-button span {
    font-size: 1.2rem;
    margin-right: 8px;
}

.faq-questions-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 35px;
    letter-spacing: 1px;
}

/* FAQ Category Styles */
.faq-category {
    margin-bottom: 60px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding-left: 5px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(44, 44, 44, 0.08);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--beige);
    box-shadow: var(--shadow);
}

.faq-item.active {
    border-color: var(--accent-color);
    box-shadow: 0 4px 16px rgba(212, 165, 116, 0.15);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--primary-color);
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
}

.faq-question:hover {
    color: var(--accent-color);
    padding-left: 35px;
}

.faq-item.active .faq-question {
    color: var(--accent-color);
    font-weight: 600;
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 30px;
}

.faq-arrow {
    font-size: 0.9rem;
    color: var(--secondary-color);
    transition: all 0.3s;
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-arrow {
    transform: rotate(-180deg);
    color: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--light);
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer p {
    color: var(--secondary-color);
    line-height: 1.9;
    font-size: 0.95rem;
    margin: 0;
    padding: 25px 30px;
    border-top: 1px solid var(--beige);
}

@media (max-width: 768px) {
    .faq-category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-category-card {
        padding: 30px 25px;
    }
    
    .faq-questions-title {
        font-size: 1.4rem;
    }
    
    .faq-back-button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .faq-category {
        margin-bottom: 40px;
    }

    .faq-category-title {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .faq-question {
        padding: 20px 25px;
        font-size: 0.95rem;
    }
    
    .faq-question:hover {
        padding-left: 25px;
    }
    
    .faq-answer p {
        padding: 20px 25px;
        font-size: 0.9rem;
    }
    
    .faq-arrow {
        font-size: 0.8rem;
    }
    
    .faq-accordion {
        gap: 15px;
    }
}

.page-title {
    font-size: 3rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.page-intro {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
    line-height: 1.8;
}

.page-content {
    color: var(--secondary-color);
    font-size: 1.05rem;
    line-height: 1.8;
}

.page-content p {
    margin-bottom: 20px;
}

.page-action-button {
    padding: 16px 45px;
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 0;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 30px;
}

.page-action-button:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Raw Materials page: category cards with images */
.raw-materials-categories-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 45px;
    margin-bottom: 24px;
}

.raw-materials-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.raw-mat-card {
    background: var(--white);
    border: 1px solid rgba(44, 44, 44, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.raw-mat-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.raw-mat-card {
    cursor: pointer;
}

.raw-mat-card-image-wrap {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--beige) 0%, var(--gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.raw-mat-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.raw-mat-card-icon {
    font-size: 5rem;
}

.raw-mat-card-body {
    padding: 20px;
}

.raw-mat-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.raw-mat-card-desc {
    font-size: 0.9rem;
    color: var(--secondary-color);
    line-height: 1.5;
    margin: 0;
}

.raw-materials-cta {
    margin-top: 40px;
    text-align: center;
}

/* Raw Materials: product list when category is clicked */
.raw-mat-back-btn {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.raw-mat-back-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.raw-mat-products-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.raw-materials-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.raw-mat-product-card {
    background: var(--white);
    border: 1px solid rgba(44, 44, 44, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.raw-mat-product-card:hover {
    box-shadow: var(--shadow-lg);
}

.raw-mat-product-image-wrap {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--beige) 0%, var(--gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.raw-mat-product-icon {
    font-size: 4rem;
}

.raw-mat-product-body {
    padding: 16px;
}

.raw-mat-product-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 4px 0;
}

.raw-mat-product-size {
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin: 0 0 6px 0;
}

.raw-mat-product-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0;
}

.raw-materials-products-wrap .raw-materials-cta {
    margin-top: 32px;
}

/* Raw materials: one image + dropdowns (Fruit Tea syrups, Popping boba flavors) */
.raw-mat-dropdown-layout {
    grid-template-columns: 1fr;
    max-width: 560px;
}

.raw-mat-single-display {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
}

.raw-mat-single-image-wrap {
    width: 260px;
    height: 260px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--beige) 0%, var(--gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.raw-mat-single-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.raw-mat-single-icon {
    font-size: 5rem;
    opacity: 0.8;
}

.raw-mat-dropdowns {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 280px;
}

.raw-mat-dropdown-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.raw-mat-dropdown-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.raw-mat-select {
    padding: 12px 14px;
    font-size: 1rem;
    border: 2px solid var(--beige);
    border-radius: 8px;
    background: var(--white);
    color: var(--primary-color);
    cursor: pointer;
    min-width: 240px;
}

.raw-mat-select:hover,
.raw-mat-select:focus {
    border-color: var(--accent-color);
    outline: none;
}

/* About Page Styles */
.about-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.highlight-card {
    background: var(--light);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.highlight-card:hover {
    background: var(--beige);
    transform: translateY(-5px);
}

.highlight-icon-large {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.highlight-card p {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Gallery Page Styles */
.gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-full-item {
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(44, 44, 44, 0.08);
    transition: all 0.4s ease;
}

.gallery-full-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(255, 193, 7, 0.15);
}

/* Featured gallery item (first one with actual image) */
.gallery-featured {
    grid-column: span 2;
}

.gallery-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.gallery-full-item:hover .gallery-image {
    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), transparent);
    color: var(--white);
    padding: 30px;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

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

.gallery-overlay h4 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.gallery-full-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--beige) 0%, var(--gold-light) 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    margin-bottom: 20px;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.gallery-full-placeholder:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-full-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.gallery-full-item p {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

/* Catering Terms & Conditions — numbered tabs */
.catering-tc-wrap {
    margin-bottom: 48px;
    padding: 28px 32px;
    background: var(--white);
    border: 1px solid rgba(44, 44, 44, 0.1);
}

.catering-tc-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.catering-tc-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.catering-tc-tab {
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border: 2px solid var(--beige);
    background: var(--light);
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.catering-tc-tab:hover {
    border-color: var(--accent-color);
    background: var(--white);
}

.catering-tc-tab.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.catering-tc-tab-hint {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 16px 0;
}

.catering-tc-panels {
    min-height: 120px;
}

.catering-tc-panel {
    display: none;
}

.catering-tc-panel.active {
    display: block;
}

.catering-tc-panel[hidden] {
    display: none !important;
}

.catering-tc-panel-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 14px 0;
    letter-spacing: 0.5px;
}

.catering-tc-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 16px 0 10px 0;
}

.catering-tc-panel p {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0 0 12px 0;
}

.catering-tc-list {
    margin: 0;
    padding-left: 1.25em;
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.75;
}

.catering-tc-list li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .catering-tc-wrap {
        padding: 20px 18px;
    }

    .catering-tc-tabs {
        gap: 6px;
    }

    .catering-tc-tab {
        min-width: 40px;
        height: 40px;
        padding: 0 10px;
        font-size: 0.9rem;
    }
}

/* Catering Page Styles */
.catering-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.catering-full-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid rgba(44, 44, 44, 0.08);
    transition: all 0.3s;
}

.catering-full-card:hover {
    background: var(--light);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--accent-color);
}

.catering-full-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.catering-full-card p {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.catering-features {
    list-style: none;
    padding: 0;
}

.catering-features li {
    padding: 12px 0;
    color: var(--secondary-color);
    font-size: 0.9rem;
    position: relative;
    padding-left: 25px;
    border-bottom: 1px solid var(--light);
}

.catering-features li:last-child {
    border-bottom: none;
}

.catering-features li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Catering Quote Form Styles */
.catering-quote-content {
    max-width: 1000px;
}

.catering-quote-form {
    margin-top: 30px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--beige);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.form-section-description {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--beige);
    background: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--primary-color);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Drink Selection */
#drink-selection-container {
    margin-bottom: 20px;
}

.drink-selection-item {
    background: var(--white);
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid var(--beige);
}

.drink-selection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light);
}

.drink-number {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.remove-drink-button {
    padding: 6px 16px;
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.remove-drink-button:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.drink-select-group {
    flex: 2;
}

.quantity-group {
    flex: 1;
}


.material-details-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-top: 20px;
    animation: fadeIn 0.3s ease;
}

.material-category-select {
    font-weight: 600;
}

@media (max-width: 768px) {
    .material-details-row {
        grid-template-columns: 1fr;
    }
}

.add-drink-button {
    width: 100%;
    padding: 14px;
    background: var(--light);
    border: 2px dashed var(--beige);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.add-drink-button:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
}

/* Order Summary Styles */
.order-summary {
    background: linear-gradient(135deg, var(--beige) 0%, var(--gold-light) 100%);
    padding: 30px !important;
    border: 2px solid var(--accent-color) !important;
    border-radius: 0;
}

.order-summary-items {
    margin-bottom: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.no-drinks-message {
    text-align: center;
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-style: italic;
    padding: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.summary-item-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.summary-item-name {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
}

.summary-item-quantity {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 400;
}

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

.summary-item-name {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 500;
}

.summary-item-price {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 3px solid var(--primary-color);
    margin-top: 20px;
}

.order-total-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 3px;
}

.order-total-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 2px;
}

/* Form Actions */
.form-actions {
    background: var(--beige);
    border-color: var(--accent-color);
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 40px;
}

.form-button-primary,
.form-button-secondary {
    padding: 16px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
}

.form-button-primary {
    background: var(--primary-color);
    color: var(--white);
}

.form-button-primary:hover {
    background: transparent;
    color: var(--primary-color);
}

.form-button-secondary {
    background: transparent;
    color: var(--primary-color);
}

.form-button-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Gift Cards Page Styles */
.gift-cards-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.gift-card-large {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--gold-dark) 100%);
    padding: 60px 40px;
    border-radius: 0;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.gift-card-large-icon {
    font-size: 8rem;
    margin-bottom: 20px;
}

.gift-card-large h2 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.gift-card-large p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.gift-card-options-full h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.gift-amount-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.gift-amount-option {
    position: relative;
}

.gift-amount-option input[type="radio"] {
    display: none;
}

.gift-amount-option label {
    display: block;
    padding: 20px;
    background: var(--white);
    border: 2px solid var(--beige);
    border-radius: 0;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
}

.gift-amount-option input[type="radio"]:checked + label {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
}

.gift-amount-option label:hover {
    transform: scale(1.05);
}

.gift-card-form .gift-amount-grid { margin-bottom: 15px; }
.gift-custom-amount-wrap { margin-top: 15px; }
.gift-custom-amount-wrap input { max-width: 160px; }

.gift-features-full {
    background: var(--light);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.gift-features-full h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.gift-features-full ul {
    list-style: none;
    padding: 0;
}

.gift-features-full li {
    padding: 8px 0;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

/* DIY Kit Page */
.diy-kit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.diy-kit-card {
    background: var(--white);
    border: 1px solid var(--beige);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.diy-kit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.diy-kit-image-wrap {
    position: relative;
    aspect-ratio: 1;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.diy-kit-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.diy-kit-image-placeholder {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.5;
    align-items: center;
    justify-content: center;
}

.diy-kit-info {
    padding: 20px;
}

.diy-kit-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 8px 0;
}

.diy-kit-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 0 0 12px 0;
}

.diy-kit-description {
    font-size: 0.95rem;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.5;
}

.diy-kit-included-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 12px 0 6px 0;
}

.diy-kit-included {
    margin: 0 0 0 1.2em;
    padding: 0;
    font-size: 0.9rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Catering Request Form */
.catering-request-content {
    max-width: 1000px;
}

.catering-request-form {
    margin-top: 30px;
}

.form-section {
    margin-bottom: 45px;
    padding: 35px;
    background: var(--white);
    border: 1px solid var(--beige);
}

.form-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.form-section-subtitle {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--beige);
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--primary-color);
    transition: all 0.3s;
    background: var(--light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--white);
}

.drink-selections {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.drink-selection-item {
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    gap: 15px;
    align-items: end;
    padding: 20px;
    background: var(--light);
    border: 1px solid var(--beige);
}

.drink-selection-item select,
.drink-selection-item input {
    background: var(--white);
}

.remove-drink-button {
    padding: 12px 20px;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.remove-drink-button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.add-drink-button {
    width: 100%;
    padding: 14px;
    background: var(--beige);
    border: 1px solid var(--gold);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.add-drink-button:hover {
    background: var(--gold-light);
    border-color: var(--accent-color);
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 35px;
}

.form-button-secondary {
    padding: 16px 40px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s;
}

.form-button-secondary:hover {
    background: var(--beige);
}

.form-button-primary {
    padding: 16px 40px;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s;
}

.form-button-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .drink-selection-item {
        grid-template-columns: 1fr;
    }
    
    .form-section {
        padding: 25px 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-button-secondary,
    .form-button-primary {
        width: 100%;
    }
}

/* Contact Page Styles */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info-full {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--light);
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s;
}

.contact-info-card:hover {
    background: var(--beige);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.contact-info-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-card p {
    color: var(--secondary-color);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-form-full h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-form-full input,
.contact-form-full textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.contact-form-full input:focus,
.contact-form-full textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--light);
}


/* Drink Detail Modal */
.drink-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.drink-modal.active {
    display: flex;
}

.drink-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.drink-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s ease;
}

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

.drink-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.drink-modal-close:hover {
    background: var(--accent-color);
}

.drink-modal-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.drink-modal-image {
    background: linear-gradient(135deg, var(--beige) 0%, var(--gold-light) 100%);
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.drink-modal-icon {
    font-size: 15rem;
    animation: float 3s ease-in-out infinite;
}

.drink-modal-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}

.drink-modal-gallery .drink-modal-photo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.drink-modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s;
    z-index: 2;
}
.drink-modal-arrow:hover {
    background: rgba(0,0,0,0.6);
}
.drink-modal-prev { left: 16px; }
.drink-modal-next { right: 16px; }

.drink-modal-photo-counter {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 14px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 0.85rem;
    border-radius: 20px;
    display: none;
}

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

.drink-modal-details {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
}

.drink-modal-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 0;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    align-self: flex-start;
    margin-bottom: 20px;
}

.drink-modal-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.drink-modal-price {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.drink-modal-description {
    color: var(--secondary-color);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.drink-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 2px solid var(--light);
}

.drink-modal-tags .item-tag {
    padding: 8px 16px;
    font-size: 0.75rem;
}

.drink-modal-specs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spec-item-addon {
    display: none;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--light);
    border-radius: 12px;
    transition: all 0.3s;
}

.spec-item:hover {
    background: var(--beige);
    transform: translateX(5px);
}

.spec-label {
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
}

.spec-value {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .drink-modal-inner {
        grid-template-columns: 1fr;
    }
    
    .drink-modal-image {
        min-height: 350px;
        padding: 60px 40px;
    }
    
    .drink-modal-icon {
        font-size: 10rem;
    }
    
    .drink-modal-details {
        padding: 40px 30px;
    }
    
    .drink-modal-name {
        font-size: 2rem;
    }
    
    .drink-modal-price {
        font-size: 1.5rem;
    }
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.9);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
}

.footer-section p {
    color: #BDC3C7;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #BDC3C7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--gold-light);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495E;
    color: #BDC3C7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-container {
        padding: 0 30px;
        height: 70px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--cream);
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 30px 0;
        gap: 25px;
        border-bottom: 1px solid rgba(44, 44, 44, 0.08);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        margin-top: 70px;
        height: 50vh;
        min-height: 400px;
    }
    
    .bubble {
        opacity: 0.7;
    }
    
    .bubble:nth-child(n+8) {
        display: none;
    }
    
    .boba-pearl:nth-child(n+6) {
        display: none;
    }
    
    .straw {
        opacity: 0.6;
        width: 10px;
        height: 120px;
    }
    
    .drink-cup {
        opacity: 0.5;
        width: 70px;
        height: 90px;
    }
    
    .drink-cup::before {
        width: 70px;
        height: 90px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .menu-section {
        padding: 36px 24px;
    }

    .physical-menu-wrap {
        margin-bottom: 20px;
    }

    .physical-menu-image-wrap {
        margin-top: 12px;
        max-width: 100%;
    }

    .section-title-divider {
        margin-top: 20px;
        padding-top: 20px;
    }

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

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .explore-section {
        padding: 60px 30px;
    }

    .explore-grid {
        grid-template-columns: 1fr;
    }

    .section-page-inner {
        padding: 60px 30px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .gift-cards-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .catering-full-grid,
    .about-highlights-grid {
        grid-template-columns: 1fr;
    }

    .gallery-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-featured {
        grid-column: span 2;
    }
    
    .gallery-image {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }

    .logo {
        font-size: 1.5rem;
    }

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

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .menu-section {
        padding: 28px 16px;
    }

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

    .menu-item {
        height: 350px;
    }
    
    .menu-item:hover {
        height: 480px;
    }

    .item-image {
        height: 280px;
    }

    .menu-item:hover .item-image {
        height: 300px;
    }
    
    .item-details {
        padding: 20px;
    }
    
    .item-name {
        font-size: 1.1rem;
    }
    
    .item-price {
        font-size: 0.95rem;
    }
    
    .item-description {
        font-size: 0.8rem;
    }
    
    .item-tag {
        font-size: 0.6rem;
        padding: 4px 10px;
    }

    .explore-section {
        padding: 40px 20px;
    }

    .section-page-inner {
        padding: 40px 20px;
    }

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

    .section-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .gallery-full-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-featured {
        grid-column: span 1;
    }
    
    .gallery-image {
        height: 300px;
    }

    .gift-amount-grid {
        grid-template-columns: 1fr;
    }

    .gallery-full-placeholder {
        height: 200px;
        font-size: 4rem;
    }
}

/* Success Notification Modal */
.notification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.notification-modal.active {
    display: flex;
}

.notification-content {
    background: var(--white);
    padding: 50px 60px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    position: relative;
}

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

.notification-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--gold-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 25px;
    font-weight: bold;
    animation: scaleIn 0.5s ease 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.notification-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.notification-message {
    font-size: 1.05rem;
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 30px;
}

.notification-button {
    padding: 14px 50px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.notification-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .notification-content {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .notification-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .notification-title {
        font-size: 1.5rem;
    }
    
    .notification-message {
        font-size: 0.95rem;
    }
}