@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Alex+Brush&family=Great+Vibes&family=Marck+Script&display=swap');

:root {
    --primary-color: #022F36; /* Deep & Muted Teal */
    --accent-color: #E98A8D; /* Dusty Rose / Muted Salmon */
    --accent-hover: #D9787E;
    --bordeaux: #6B2E2E; /* Bordeaux Nuance */
    --light-bg: #F8E7DC; /* Warm Cream / Light */
    --text-dark: #111111; /* Anthracite */
    --text-light: #FFF3EA;
    --white: #FFF3EA; /* Warm White */
    
    /* New Brand Colors */
    --soft-peach: #FFC0AD;
    --neon-pink: #FF45C8;
    --wood-beige: #B79573;
    
    /* Glow Effects - Sparing Use */
    --cyan-glow: 0 0 20px 5px rgba(37, 199, 217, 0.6); /* Electric Cyan #25C7D9 */
    --cyan-glow-intense: 0 0 30px 10px rgba(37, 199, 217, 0.8);
    
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --font-script: 'Alex Brush', 'Marck Script', cursive;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.font-script {
    font-family: var(--font-script);
    font-weight: normal;
    text-transform: none;
    letter-spacing: normal;
}

.brush-circle {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50% 40% 50% 40% / 40% 50% 40% 50%;
    border: 3px solid var(--accent-color);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 300px;
    height: 300px;
    margin: 2rem auto;
    box-shadow: 0 0 15px rgba(255, 143, 143, 0.4);
}

/* Brush effect button */
.brush-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 70px;
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-image: url('../assets/images/brush-stroke.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    transition: var(--transition);
}
.brush-btn:hover {
    transform: scale(1.05);
    filter: drop-shadow(var(--cyan-glow-intense));
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    /* Base UL styling - let lists be lists where needed */
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: var(--cyan-glow);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: var(--cyan-glow-intense);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    box-shadow: var(--cyan-glow);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: var(--cyan-glow-intense);
    border-color: transparent;
}

/* Navbar */
.navbar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(255, 143, 143, 0.5);
}

.navbar-brand img, .footer-logo-img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--cyan-glow);
    transition: var(--transition);
}

.navbar-brand:hover img, .footer-logo-img:hover {
    box-shadow: var(--cyan-glow-intense);
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(37, 199, 217, 0.4);
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    text-shadow: 0 0 15px rgba(37, 199, 217, 0.8), 0 0 10px rgba(37, 199, 217, 0.6);
    color: var(--accent-color);
}

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

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 15px;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    padding: 5rem 0;
    background: linear-gradient(rgba(5, 47, 58, 0.4), rgba(5, 47, 58, 0.5)), url('../assets/images/hero-desktop-1.webp') center/cover fixed;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--font-body);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Features/About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--cyan-glow);
    position: relative;
}

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

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

/* Cards (Menu/Gallery) */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--cyan-glow);
}

.card-img {
    height: 250px;
    overflow: hidden;
}

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

.card:hover .card-img img {
    transform: scale(1.1);
}

.card-share-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.05rem;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: background 0.3s, transform 0.3s, color 0.3s;
    z-index: 10;
}

.card-share-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: scale(1.1);
}

.share-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    z-index: 9999;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s;
    border: 1px solid var(--accent-color);
}

.share-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

@keyframes card-pulse-highlight {
    0% {
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        border: 2px solid transparent;
    }
    30% {
        box-shadow: 0 0 25px var(--accent-color);
        border: 2px solid var(--accent-color);
    }
    70% {
        box-shadow: 0 0 25px var(--accent-color);
        border: 2px solid var(--accent-color);
    }
    100% {
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        border: 2px solid transparent;
    }
}

.card.highlighted {
    animation: card-pulse-highlight 3s ease-in-out;
}

.card-body {
    padding: 1.5rem;
    text-align: center;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-price {
    font-size: 1.25rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-title {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

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

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--white);
    box-shadow: var(--cyan-glow);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--cyan-glow-intense);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Page Specifics */
.about-hero {
    background: var(--primary-color);
    color: var(--white);
    padding: 6rem 1rem;
    text-align: center;
}

.about-split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    padding: 4rem 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-split-text {
    flex: 1;
    min-width: 300px;
}

.about-split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.about-split-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-split-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.about-split-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--accent-color);
    opacity: 0.2;
    border-radius: 50%;
    z-index: -1;
}

.about-philosophy {
    background: var(--primary-color);
    color: var(--white);
    padding: 6rem 15px;
    margin-top: 4rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.philosophy-card {
    text-align: center;
}

.philosophy-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.philosophy-card p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* Gallery Masonry Layout */
.masonry {
    column-count: 3;
    column-gap: 1.5rem;
    padding: 0 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.masonry-item {
    display: inline-block;
    margin-bottom: 1.5rem;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: #fff;
}

.masonry-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(233,138,141,0.2);
}

.masonry-item img {
    width: 100%;
    display: block;
    height: auto;
    transition: opacity 0.3s ease;
}

.masonry-item:hover img {
    opacity: 0.9;
}

@media(max-width: 900px) {
    .masonry { column-count: 2; }
}

@media(max-width: 600px) {
    .masonry { column-count: 1; }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 47, 54, 0.95); /* Deep Teal transparent */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.3s ease;
    user-select: none;
    padding: 20px;
}

.lightbox-prev:hover, .lightbox-next:hover {
    color: var(--accent-color);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Admin Dashboard Specifics */
.admin-sidebar {
    background: var(--primary-color);
    color: white;
    min-height: 100vh;
    padding: 2rem;
}

.admin-main {
    padding: 2rem;
    background: #f4f6f9;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-card h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #666;
    font-family: var(--font-body);
}

.stat-card .value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Shopify Checkout Style */
.checkout-layout {
    display: flex;
    min-height: 100vh;
    flex-wrap: wrap;
    background: var(--primary-color);
}

.checkout-left {
    flex: 1.2;
    padding: 4rem 10%;
    background: var(--primary-color);
    color: var(--white);
    min-width: 320px;
}

.checkout-right {
    flex: 0.8;
    padding: 4rem 5%;
    background: var(--light-bg);
    min-width: 320px;
}

.checkout-header-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: bold;
}

.checkout-section-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 2rem 0 1rem;
    color: var(--white);
}

.checkout-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.checkout-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.checkout-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.checkout-right .checkout-input {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.checkout-right .checkout-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.checkout-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 1px var(--accent-color);
}

.checkout-payment-box {
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    border-color: var(--accent-color);
    background: rgba(233, 138, 141, 0.05);
}

/* Right column items */
.dark-summary .checkout-input {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.dark-summary .checkout-input::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.dark-summary #discount-btn {
    background: rgba(255, 255, 255, 0.15) !important;
    color: var(--white) !important;
}

.dark-summary #discount-box,
.dark-summary .checkout-total-line {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

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

.checkout-item-img-wrapper {
    position: relative;
    width: 65px;
    height: 65px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.checkout-item-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-item-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: rgba(114, 114, 114, 0.9);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 2;
}

.checkout-item-info {
    flex-grow: 1;
}

.checkout-item-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 0.2rem;
}

.checkout-item-price {
    font-weight: 500;
    color: #333;
}

.checkout-summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    color: #555;
}

.checkout-total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e1e1e1;
}

.checkout-total-text {
    font-size: 1.2rem;
    color: #333;
}

.checkout-total-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

/* Responsive Navbar (Trigger earlier to avoid overlap) */
@media (max-width: 1100px) {
    .navbar-brand {
        font-size: 1.4rem;
        gap: 10px;
    }
    .navbar-brand img {
        width: 45px;
        height: 45px;
    }
    .nav-actions {
        gap: 12px;
        margin-left: auto;
    }
    
    #mobile-menu-btn {
        display: block !important;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--primary-color);
        padding: 1rem 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        z-index: 1000;
        gap: 1rem;
    }
    
    .nav-links.active-mobile {
        display: flex;
    }
}

/* Drinks Menu List */
.drinks-menu-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4rem;
    row-gap: 1.5rem;
    padding: 0 15px 3rem;
}

.drinks-menu-item-wrapper {
    display: flex;
    flex-direction: column;
    padding: 6px 0;
}

.drinks-menu-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
}

.drink-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.drink-volume {
    font-size: 0.8rem;
    color: #8b6f55; /* Wood beige / taupe color */
    font-family: var(--font-body);
    font-weight: 500;
    margin-top: 1px;
    line-height: 1;
}

.drink-dots {
    flex-grow: 1;
    border-bottom: 2px dotted rgba(5, 42, 48, 0.2);
    margin: 0 10px;
    position: relative;
    top: -4px;
}

.drink-price {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 1.1rem;
    white-space: nowrap;
}

/* General Mobile Responsive */
@media (max-width: 768px) {
    .footer-logo-img {
        width: 45px;
        height: 45px;
    }
    
    .hero {
        background: linear-gradient(rgba(5, 47, 58, 0.45), rgba(5, 47, 58, 0.55)), url('../assets/images/hero-mobile.webp') center/cover no-repeat !important;
        min-height: calc(100vh - 65px) !important;
        padding: 3rem 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }
    
    .brush-circle {
        width: 190px !important;
        height: 190px !important;
        padding: 15px !important;
        margin: 1.5rem auto !important;
        box-shadow: 0 0 10px rgba(255, 143, 143, 0.3) !important;
    }
    
    .brush-circle h3 {
        font-size: 0.8rem !important;
        margin-bottom: 0.2rem !important;
        line-height: 1.2 !important;
    }
    
    .brush-circle .font-script {
        font-size: 1.3rem !important;
    }
    
    .about-grid, .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Compact Centered Footer on Mobile */
    footer {
        padding: 3rem 0 2rem !important;
        text-align: center !important;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        margin-bottom: 2rem !important;
    }
    .footer-brand {
        justify-content: center !important;
        text-align: center !important;
    }
    .footer-title {
        font-size: 1.3rem !important;
        margin-bottom: 1.2rem !important;
        margin-top: 0.5rem !important;
        position: relative;
        display: inline-block;
    }
    .footer-title::after {
        content: "";
        position: absolute;
        bottom: -6px;
        left: 50%;
        transform: translateX(-50%);
        width: 35px;
        height: 2px;
        background-color: var(--accent-color);
    }
    .footer-quick-links {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        column-gap: 2rem !important;
        row-gap: 0.8rem !important;
        max-width: 320px;
        margin: 0 auto !important;
        text-align: left !important;
    }
    .footer-quick-links li {
        margin-bottom: 0 !important;
        font-size: 0.9rem !important;
    }
    .footer-links:not(.footer-quick-links) li {
        justify-content: center !important;
        margin-bottom: 0.6rem !important;
        font-size: 0.9rem !important;
    }
    .social-icons {
        justify-content: center !important;
        margin-top: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    footer p {
        font-size: 0.85rem !important;
    }
    .footer-bottom {
        padding-top: 1.5rem !important;
        border-top: 1px solid rgba(255,255,255,0.05);
        font-size: 0.8rem !important;
        text-align: center !important;
    }
    
    .drinks-menu-list {
        grid-template-columns: 1fr !important;
        row-gap: 1.2rem !important;
        column-gap: 0 !important;
        padding-bottom: 2rem !important;
    }
    
    .drink-name, .drink-price {
        font-size: 1rem !important;
    }
    
    .cart-sidebar {
        width: 100% !important;
    }
}

/* Pogacha Modal Styles */
.pogacha-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 42, 48, 0.6); /* deep teal semi-transparent overlay */
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}
.pogacha-modal-overlay.show {
    opacity: 1;
}
.pogacha-modal-content {
    background: var(--light-bg); /* warm white/peach */
    border-radius: 15px;
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    border: 1px solid rgba(233, 138, 141, 0.3); /* subtle dusty rose border */
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}
.pogacha-modal-overlay.show .pogacha-modal-content {
    transform: translateY(0);
}
.pogacha-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(5, 42, 48, 0.1);
    padding-bottom: 1rem;
}
.pogacha-modal-header h3 {
    font-family: var(--font-title);
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
}
.pogacha-modal-header i {
    cursor: pointer;
    font-size: 1.3rem;
    color: #888;
    transition: color 0.3s;
}
.pogacha-modal-header i:hover {
    color: var(--accent-color);
}
.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.form-group label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid rgba(5, 42, 48, 0.15);
    border-radius: 8px;
    box-sizing: border-box;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
    background: var(--white);
}
.form-control:focus {
    border-color: var(--accent-color);
}
.form-help {
    color: #666;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* Catering Promo Grid Images Styling */
.catering-promo-img {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(2, 47, 54, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.catering-promo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    display: block;
    transition: transform 0.5s ease;
}
.catering-promo-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(233, 138, 141, 0.3); /* Salmon/Dusty Rose shadow glow */
}
.catering-promo-img:hover img {
    transform: scale(1.05);
}

/* Catering Page Collage Gallery Styling */
.catering-gallery-collage {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}
.collage-main-img {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(2, 47, 54, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.collage-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 10;
    display: block;
    transition: transform 0.5s ease;
}
.collage-sub-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.collage-sub-img {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(2, 47, 54, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.collage-sub-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover effects for collage */
.collage-main-img:hover, .collage-sub-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(233, 138, 141, 0.3); /* Salmon shadow glow */
}
.collage-main-img:hover img, .collage-sub-img:hover img {
    transform: scale(1.05);
}

