:root {
    --dark-pink: #FFFFFF;
    --logo-pink: #FD3DB5;
    --mid-pink: #FD3DB5;  
    --gold: #D4AF37;
    --gold-hover: #B8860B;
    --light-pink: #FFF0F5; /* Light Pink */
    --sandal: #FEF9E7; /* Sandal/Cream Color */
    --card-width: 280px;
    --card-height: 410px; 
    --banner-width: 380px;
    --swiper-card-width: 320px;
    --swiper-card-height: 450px;
    --maroon: #c2185b;
    --trust-green: #FD3DB5; 
    --trust-pink: #FD3DB5;
}

@media (max-width: 768px) {
    :root {
        --card-width: 240px;
        --card-height: 380px;
        --banner-width: 100%;
        --swiper-card-width: 240px;
        --swiper-card-height: 360px;
    }
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-pink);
    color: var(--logo-pink);
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    touch-action: pan-y;
}

/* Base Typography Fonts */
h1, h2, h3, .serif { font-family: 'Playfair Display', serif; }
.script-font { font-family: 'Great Vibes', cursive; }
.welcome-pink { color: #FD3DB5; }

/* Gradient Text & Title Effects */
.theme-gradient-text {
    background: linear-gradient(45deg, #FD3DB5, #D4AF37, #FD3DB5);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-flow 5s ease infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h2, .logo-title {
    background: linear-gradient(45deg, #FD3DB5, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.gold-btn {
    background: linear-gradient(45deg, #FD3DB5, #D4AF37);
    background-size: 200% auto;
    transition: all 0.5s ease;
    color: white;
    border: none;
}

.gold-btn:hover {
    background-position: right center;
    transform: translateY(-2px);
}

.btn-enquiry {
    background: linear-gradient(45deg, #FD3DB5, #D4AF37);
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
}
.btn-enquiry:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 61, 181, 0.4);
}

/* Navigation & Header */
.brand-logo-container { display: flex; align-items: center; gap: 12px; }

.header-search {
    background: rgba(253, 61, 181, 0.05);
    border: 1px solid #FD3DB5;
    border-radius: 99px;
    padding: 8px 16px;
    width: 250px;
    font-size: 12px;
    outline: none;
    color: #FD3DB5;
}
@media (max-width: 1024px) { .header-search { display: none; } }

.count-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #ff0000;
    color: white;
    font-size: 9px;
    padding: 2px 5px;
    border-radius: 99px;
    font-weight: bold;
    border: 2px solid white;
}

.selected-items-modal {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid #fce7f3;
    display: none;
    z-index: 100;
    margin-top: 10px;
    animation: slideDown 0.3s ease-out;
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

.modal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fdf2f8;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 10px;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
}

/* REFINED LOGO-REVEAL SPLASH SCREEN WITH ENHANCED BACKDROP VISIBILITY */
#splash-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
    cursor: pointer;
}

.splash-bg-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.48;
    z-index: 0;
    pointer-events: none;
}

.splash-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.45) 0%, rgba(255,240,245,0.72) 100%);
    z-index: 1;
    pointer-events: none;
}

.splash-logo-box {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.65);
    padding: 2.5rem 3rem;
    border-radius: 32px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(253, 61, 181, 0.2);
}

.splash-logo-img {
    width: 180px;
    height: auto;
    opacity: 0;
    transform: scale(0.85);
    animation: logoReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

@media (min-width: 768px) {
    .splash-logo-img { width: 240px; }
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.85); }
    100% { opacity: 1; transform: scale(1); }
}

.splash-tagline {
    font-size: 13px;
    font-weight: 800;
    color: #D4AF37;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-top: 16px;
    opacity: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: taglineFade 0.6s ease-out 0.35s forwards;
}
@media (min-width: 768px) {
    .splash-tagline { font-size: 16px; }
}

@keyframes taglineFade {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* SIDE-BY-SIDE CYCLING HERO SECTION - EXPANDED CLICK TARGET */
.hero-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(212, 175, 55, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    outline: none;
}

.hero-dot::after {
    content: '';
    position: absolute;
    top: -12px;
    bottom: -12px;
    left: -12px;
    right: -12px;
}

.hero-dot.active {
    background-color: #D4AF37;
    width: 32px;
    border-radius: 10px;
    border-color: #D4AF37;
}

/* REDESIGNED TOP CATEGORIES CARDS (4 Cards Grid) */
.top-categories-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .top-categories-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .top-categories-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.category-card {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    border: 1px solid #FFE4E9;
    box-shadow: 0 4px 15px rgba(253, 61, 181, 0.05);
    text-decoration: none;
    color: inherit;
    /* IntersectionObserver Entry Animation state */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    will-change: opacity, transform, box-shadow;
}

.category-card.appear {
    opacity: 1;
    transform: translateY(0);
}

.category-card.appear:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(253, 61, 181, 0.15);
    border-color: #FD3DB5;
}

.category-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.02em;
}

.category-desc {
    font-size: 0.78rem;
    color: #6B7280;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 1.25rem;
}

.category-card-img-wrapper {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin: 1rem 0;
    border: 3px solid #FD3DB5;
    box-shadow: 0 6px 16px rgba(253, 61, 181, 0.15);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.category-card:hover .category-card-img-wrapper {
    transform: scale(1.06);
}

.category-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card-link {
    font-size: 0.7rem;
    font-weight: 800;
    color: #FD3DB5;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 0.5rem;
    transition: color 0.2s ease, gap 0.2s ease;
}

.category-card:hover .category-card-link {
    color: #D4AF37;
    gap: 8px;
}

/* CHEF'S SPECIALS FLAT ROW CAROUSEL */
.trending-row-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.trending-scroll-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding: 20px 10px;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}
.trending-scroll-container::-webkit-scrollbar { display: none; }

.food-card-flat {
    flex: 0 0 270px;
    height: 380px;
    border-radius: 28px;
    overflow: hidden;
    scroll-snap-align: center;
    background: #FFFFFF;
    border: 2px solid #FD3DB5;
    position: relative;
    box-shadow: 0 6px 20px rgba(253, 61, 181, 0.1);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
    user-select: none;
}

@media (min-width: 768px) {
    .food-card-flat {
        flex: 0 0 310px;
        height: 440px;
    }
}

.food-card-flat:hover, .food-card-flat.active-card {
    transform: translateY(-6px) scale(1.02);
    border-color: #D4AF37;
    box-shadow: 0 14px 30px rgba(212, 175, 55, 0.25);
}

.food-card-flat img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0,0,0,0) 45%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.dot {
    height: 8px;
    width: 8px;
    background-color: rgba(253, 61, 181, 0.25);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 4px;
}

.dot.active {
    background: linear-gradient(45deg, #FD3DB5, #D4AF37);
    width: 24px;
    border-radius: 8px;
}

.nav-scroll-btn {
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white; 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100; 
    color: #FD3DB5;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #FD3DB5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    top: 50%;
    transform: translateY(-50%);
}

.nav-scroll-btn:hover { background: #fff5f8; transform: translateY(-50%) scale(1.1); }
.btn-left { left: -10px; } 
.btn-right { right: -10px; } 

@media (max-width: 1024px) {
    .btn-left { left: 5px; }
    .btn-right { right: 5px; }
}

@media (max-width: 768px) {
    .nav-scroll-btn { display: none !important; }
}

/* Product Collections & Filter Banner */
.filter-banner-container {
    background: linear-gradient(45deg, #FD3DB5, #D4AF37);
    padding: 12px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    box-shadow: 0 10px 20px rgba(253, 61, 181, 0.2);
    position: relative;
    -webkit-overflow-scrolling: touch;
}
.filter-banner-container::-webkit-scrollbar { display: none; }

@media (max-width: 768px) {
    .filter-banner-container {
        justify-content: flex-start;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.filter-tab {
    cursor: pointer;
    padding: 0.6rem 1.4rem;
    border: none;
    transition: all 0.3s ease;
    color: #FD3DB5;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
    border-radius: 6px;
    background: white;
    text-transform: uppercase;
    flex-shrink: 0;
}

.filter-tab.active {
    color: white;
    background: rgba(0,0,0,0.2);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.category-header-banner {
    background-color: #FD3DB5;
    color: white;
    padding: 12px 35px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    width: fit-content;
    margin: 0 auto 30px auto;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(253, 61, 181, 0.2);
}

.category-row {
    display: flex;
    width: 100%;
    align-items: flex-start;
    padding: 10px 0;
}

.scroll-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: var(--card-height);
    overflow: visible;
}

.scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 20px 20px 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    width: 100%;
}

.scroll-container::-webkit-scrollbar { display: none; }

.product-card {
    flex: 0 0 var(--card-width);
    height: var(--card-height);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid #FD3DB5;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card img { width: 100%; height: 60%; object-fit: cover; }
.product-card .p-2 { padding: 0.5rem 0.75rem !important; }

.qty-label { font-size: 10px; font-weight: bold; color: #999; margin-right: 8px; text-transform: uppercase; }

.qty-select {
    border: 1px solid #000;
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    min-width: 70px;
    background: white;
}

.custom-qty-input {
    width: 70px;
    border: 1px solid #000;
    border-radius: 6px;
    padding: 2px 6px;
    font-size: 11px;
    outline: none;
}

.basket-btn {
    background: linear-gradient(45deg, #FD3DB5, #D4AF37);
    color: white;
    font-weight: bold;
    font-size: 11px;
    padding: 8px 0;
    border-radius: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
    border: none;
}

.basket-btn:hover { background-position: right center; transform: scale(0.98); }

/* Trust Banner Container */
.trust-banner-container {
    background: linear-gradient(135deg, #FD3DB5, #D4AF37);
    padding: 35px 25px;
    border-radius: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.trust-item { 
    display: flex; 
    align-items: center; 
    color: white; 
    gap: 15px; 
    min-width: 200px;
}
.trust-icon-badge {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}
.trust-item-text { display: flex; flex-direction: column; }
.trust-item h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; margin: 0; letter-spacing: 0.05em; }
.trust-item p { font-size: 9px; opacity: 0.9; margin: 0; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px;}

/* Story Grid */
.story-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.story-img-large { grid-column: span 2; height: 300px; width: 100%; object-fit: cover; border-radius: 12px; }
.story-img-small { height: 180px; width: 100%; object-fit: cover; border-radius: 12px; }

/* Reviews */
.review-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid #fce7f3;
    transition: all 0.3s ease;
}
.review-card:hover { transform: translateY(-5px); }
.guide-badge {
    font-size: 10px;
    font-weight: 700;
    color: #f59e0b;
    background: #fffbeb;
    padding: 2px 8px;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Location & Shop */
.location-box {
    background: white;
    border: 2px solid var(--gold);
    border-radius: 40px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.location-box:hover { transform: translateY(-5px); }
.location-icon-wrapper { color: #ff0000; font-size: 2.5rem; margin-bottom: 1.5rem; }
.location-box h3 { font-size: 1.2rem; font-weight: 800; color: #1a2b48; margin-bottom: 1rem; letter-spacing: 0.1em; }
.location-box p { font-size: 0.9rem; color: #4b5563; font-weight: 600; line-height: 1.6; }

.shop-preview-container {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    border: 4px solid var(--gold);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.shop-preview-container img { width: 100%; height: auto; display: block; }

/* Corporate Inquiry Form */
.inquiry-input {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 99px;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.3s;
}
.inquiry-input:focus { border-color: #FD3DB5; }
.inquiry-textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    min-height: 120px;
    outline: none;
}

/* Policy Full Screen Overlay */
#policy-overlay {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 1000;
    display: none;
    overflow-y: auto;
    animation: fadeInOverlay 0.4s ease-out;
}
@keyframes fadeInOverlay { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.close-policy-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: #FD3DB5;
    cursor: pointer;
    z-index: 1001;
    line-height: 1;
    transition: transform 0.3s ease;
}
.policy-content-wrapper { max-width: 800px; margin: 80px auto; padding: 20px; }
.policy-list-item {
    padding: 15px;
    margin-bottom: 15px;
    background: #fff5fa;
    border-radius: 12px;
    border-left: 4px solid #FD3DB5;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* Footer styling */
footer {
    position: relative;
    background-color: #FFF5F8 !important;
    overflow: hidden;
}
