:root {
    /* Ultra-light Honey & Pastel Yellow Palette */
    --honey-bg: #FCF9F2;       /* Creamy light honey base */
    --honey-accent: #FFF5E1;   /* Soft warm yellow tint */
    --honey-gold: #E5A93C;     /* Elegant accent honey gold */
    --honey-dark: #654311;     /* Rich deep warm brown for professional typography */
    --text-main: #2D2214; 
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(101, 67, 17, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[v-cloak] {
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--honey-bg);
    color: var(--text-main);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, .brand-title {
    font-family: 'Playfair Display', serif;
    color: var(--honey-dark);
}

/* --- Navigation Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(252, 249, 242, 0.9);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(229, 169, 60, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    text-align: center;
    text-decoration: none;
}

.brand-title {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.1;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--honey-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--honey-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
}

.cart-icon-btn {
    background: none;
    border: none;
    color: var(--honey-dark);
    cursor: pointer;
    position: relative;
    padding: 6px;
    transition: var(--transition);
}

.cart-icon-btn:hover {
    color: var(--honey-gold);
    transform: scale(1.05);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--honey-gold);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Hero Intro Section --- */
.hero {
    min-height: 85vh;
    padding: 8rem 2rem 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    color: #5c5243;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--honey-dark);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(101, 67, 17, 0.15);
}

.btn:hover {
    background: var(--honey-gold);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--honey-dark);
    border: 1px solid rgba(101, 67, 17, 0.2);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--honey-accent);
    color: var(--honey-dark);
}

/* --- Perfect Proportional Bounds for the Hero Layout --- */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 450px;
}

.hero-blob {
    position: absolute;
    width: 420px;
    height: 420px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--honey-accent);
    border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
    z-index: 1;
}

.hero-showcase-frame {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    z-index: 2;
    position: relative;
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow: 0 20px 40px rgba(101, 67, 17, 0.08);
}

.hero-cake-img {
    width: 100%;
    height: 100%;
    object-fit: contain;      
    object-position: center;
    background-color: #ffffff; 
    display: block;
    transition: var(--transition);
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--honey-dark);
    white-space: nowrap;
}

/* --- Menu Section --- */
.menu-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
}

.section-header p {
    color: var(--honey-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 245, 225, 0.6);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
}

/* --- Cake Card Uniform Image Fix Matrix --- */
.product-img-container {
    height: 240px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #FAF6EE;
    border-bottom: 1px solid rgba(229, 169, 60, 0.1);
}

.product-cake-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: var(--transition);
}

.product-card:hover .product-cake-img {
    transform: scale(1.06);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.9rem;
    color: #706553;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--honey-dark);
}

.add-to-cart-btn {
    background: var(--honey-accent);
    color: var(--honey-dark);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart-btn:hover {
    background: var(--honey-gold);
    color: var(--white);
}

/* --- Customise Section --- */
.customise-section {
    padding: 5rem 2rem;
    background: #FAF6EE;
}

.customise-container {
    max-width: 700px;
    margin: 0 auto;
}

.customise-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(229, 169, 60, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--honey-dark);
}

.form-control, .form-control-text {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 1px solid #EAE3D5;
    background: #FDFDFD;
    font-size: 1rem;
    outline: none;
}

.form-control-range {
    width: 100%;
    accent-color: var(--honey-gold);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-group label {
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.custom-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #FAF6EE;
}

.custom-pricing strong {
    font-size: 1.5rem;
    color: var(--honey-dark);
}

/* --- WhatsApp Special Request Custom Component --- */
.whatsapp-request-section {
    padding: 5rem 2rem;
    background: var(--honey-bg);
}

.whatsapp-container {
    max-width: 700px;
    margin: 0 auto;
}

.whatsapp-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 2px dashed rgba(37, 211, 102, 0.3);
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
    background: #1ebd58;
}

/* --- Extra Celebration Toppers Module Inside Basket Drawer --- */
.upsell-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px dashed #FAF6EE;
}

.upsell-section h4 {
    font-size: 0.95rem;
    color: var(--honey-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.upsell-grid {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.upsell-card-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FDFCF9;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(229, 169, 60, 0.1);
}

.upsell-name {
    font-size: 0.85rem;
    font-weight: 500;
}

.upsell-price {
    font-size: 0.8rem;
    color: var(--honey-gold);
    margin-left: 0.5rem;
    font-weight: 600;
}

.upsell-add-btn {
    background: var(--white);
    border: 1px solid var(--honey-gold);
    color: var(--honey-dark);
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.upsell-add-btn:hover {
    background: var(--honey-gold);
    color: var(--white);
}

/* --- Cart Drawer Panel Frame Overlay --- */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 34, 20, 0.2);
    backdrop-filter: blur(4px);
    z-index: 1500;
    display: none;
}

.cart-overlay.open {
    display: block;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100%;
    background: var(--white);
    box-shadow: -10px 0 40px rgba(0,0,0,0.05);
    z-index: 2000;
    transition: cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--honey-accent);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--honey-dark);
}

.cart-items-container {
    flex-grow: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #FAF6EE;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-weight: 600;
}

.cart-item-meta {
    font-size: 0.8rem;
    color: #8c7f6b;
    margin-top: 2px;
}

.cart-item-price {
    color: var(--honey-gold);
    font-weight: 700;
    margin-top: 4px;
}

.remove-item-btn {
    background: none;
    border: none;
    color: #cc8888;
    cursor: pointer;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--honey-accent);
    background: var(--honey-bg);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--honey-dark);
}

.checkout-btn {
    width: 100%;
    justify-content: center;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.checkout-form input, .checkout-form textarea {
    width: 100%;
    padding: 0.7rem;
    border-radius: 8px;
    border: 1px solid #EAE3D5;
    outline: none;
}

.btn-link {
    background: none;
    box-shadow: none;
    color: #706553;
    padding: 0.5rem;
}

.empty-cart-text {
    text-align: center;
    color: #a49885;
    margin-top: 4rem;
}

/* --- UPI Payment Scanner Box Overlay --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 34, 20, 0.4);
    backdrop-filter: blur(6px);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.payment-modal-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%) scale(0.95);
    width: 90%;
    max-width: 400px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(101, 67, 17, 0.15);
    z-index: 3500;
    opacity: 0;
    visibility: hidden;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.payment-modal-box.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(229, 169, 60, 0.1);
}

.modal-header h3 {
    font-size: 1.3rem;
}

.close-modal-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--honey-dark);
}

.upi-instruction {
    font-size: 0.85rem;
    color: var(--honey-dark);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.qr-container {
    background: var(--white);
    padding: 0.5rem;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 0.75rem;
}

.upi-qr-img {
    width: 160px;
    height: 160px;
    display: block;
    object-fit: contain;
}

.upi-id-display {
    font-size: 0.9rem;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.6);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
}

.upi-id-display strong {
    color: var(--honey-dark);
}

.amount-badge {
    background: var(--honey-dark);
    color: var(--white);
    font-weight: 700;
    padding: 0.6rem 1rem;
    border-radius: 30px;
    display: inline-block;
    margin-top: 1rem;
    font-size: 1rem;
}

.paid-btn {
    width: 100%;
    margin-top: 1.25rem;
    justify-content: center;
    background: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.paid-btn:hover {
    background: #1ebd58;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Footer Area --- */
footer {
    background: var(--honey-dark);
    color: #ebdcc5;
    padding: 4rem 2rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 3rem;
}

.footer-brand .brand-title {
    color: var(--honey-bg);
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column h4 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.2rem;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    font-size: 0.85rem;
    color: #a7967e;
}

/* --- Viewport Media Adaptations --- */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 2.6rem;
    }
    .hero-image-container {
        order: -1;
    }
    .nav-links {
        display: none;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
}

/* --- Responsive Adjustments for Mobile Screens --- */
@media (max-width: 480px) {
    .hero-blob {
        width: 300px;
        height: 300px;
    }
    .hero-showcase-frame {
        width: 270px;
        height: 270px;
    }
    .hero-image-container {
        min-height: 320px;
    }
}