:root {
    --v43-surface-strong: color-mix(in srgb, var(--surface-color) 82%, #ffffff 18%);
    --v43-border-strong: color-mix(in srgb, var(--border-color) 65%, rgba(255,255,255,0.35) 35%);
    --v43-shadow-lg: 0 28px 80px rgba(15, 23, 42, 0.18);
    --v43-shadow-md: 0 18px 44px rgba(15, 23, 42, 0.12);
    --v43-radius-xl: 32px;
    --v43-radius-lg: 24px;
    --v43-radius-md: 18px;
    --v43-radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0; min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background: var(--background-color);
    overflow-x: hidden; position: relative;
    padding-bottom: 74px; /* for mobile dock */
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s ease; }

.shell-container { width: min(100% - 32px, 1320px); margin: 0 auto; }
.v43-header { position: sticky; top: 16px; z-index: 40; padding-top: 16px; margin-bottom: 24px; }
.v43-header-bar {
    padding: 14px 18px; border-radius: 999px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(18px);
    border: 1px solid var(--v43-border-strong); box-shadow: var(--v43-shadow-md);
}

.brand-lockup { display: flex; align-items: center; gap: 12px; }
.brand-avatar { width: 52px; height: 52px; border-radius: 18px; overflow: hidden; }
.brand-avatar img { width: 100%; height: 100%; object-fit: cover; }
.brand-lockup strong { font-family: 'Outfit', sans-serif; font-size: 1.15rem; }

.desktop-nav a { font-weight: 500; font-size: 0.95rem; color: var(--text-secondary); margin-left: 24px; }
.desktop-nav a:hover { color: var(--text-primary); }
.header-actions { display: flex; align-items: center; }
.header-icon-btn {
    width: 48px; height: 48px; border-radius: 16px; background: rgba(0,0,0,0.05);
    display: flex; align-items: center; justify-content: center; position: relative;
}
.v43-cart-badge {
    position: absolute; top: -6px; right: -6px; background: var(--accent-color); color: #fff;
    width: 20px; height: 20px; border-radius: 50%; font-size: 0.75rem; 
    display: flex; align-items: center; justify-content: center;
}

/* Hero */
.app-hero-panel { border-radius: var(--v43-radius-xl); overflow: hidden; margin-bottom: 32px; box-shadow: var(--v43-shadow-md); }
.hero-slider, .hero-slide-bg { width: 100%; height: 520px; position: relative; }
.hero-overlay-dark { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%); }
.hero-slide-content {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 48px;
    display: flex; flex-direction: column; align-items: flex-start; z-index: 10;
}
.app-hero-tag { background: var(--accent-color); color: #fff; padding: 6px 12px; border-radius: 8px; font-weight: 600; font-size: 0.85rem; margin-bottom: 12px; }
.hero-slide-content h2 { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); color: #fff; margin: 0 0 24px; max-width: 600px; line-height: 1.15; }
.app-btn-primary { background: var(--primary-color); color: #fff; padding: 14px 28px; border-radius: 12px; font-weight: 600; font-size: 1rem; display: inline-flex; align-items: center; border:none; cursor: pointer; }
.app-btn-primary:hover { opacity: 0.9; color: #fff; }
.app-btn-outline { background: transparent; color: var(--primary-color); padding: 14px 28px; border-radius: 12px; font-weight: 600; font-size: 1rem; display: inline-flex; align-items: center; border: 2px solid var(--primary-color); cursor: pointer; }
.app-btn-outline:hover { background: var(--primary-color); color: #fff; }

/* Sections */
.section-panel { background: #fff; border-radius: var(--v43-radius-xl); padding: 36px; margin-bottom: 32px; box-shadow: var(--v43-shadow-md); }
.app-section-header { margin-bottom: 28px; }
.app-section-header h2 { font-family: 'Outfit', sans-serif; font-size: clamp(1.65rem, 3vw, 2.2rem); margin: 0 0 4px; }
.app-section-subtitle { color: var(--text-secondary); font-size: 0.95rem; }

/* Category Pills & Dropdown */
.app-category-filter { margin-bottom: 28px; }
.app-mobile-cat-select { width: 100%; padding: 14px; border-radius: 12px; border: 1px solid #e2e8f0; background: #fff; font-family: inherit; font-size: 1rem; color: var(--text-primary); appearance: none; }
.app-desk-cat-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.app-cat-pill { padding: 10px 20px; border-radius: 999px; background: rgba(0,0,0,0.05); font-weight: 500; font-size: 0.95rem; }
.app-cat-pill.active, .app-cat-pill:hover { background: var(--primary-color); color: #fff; }

/* Products App Like Grid */
.app-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-bottom: 28px; }
.app-product-card {
    background: #fff; border: 1px solid #f1f5f9; border-radius: 20px; overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}
.app-product-card:hover { transform: translateY(-3px); box-shadow: var(--v43-shadow-md); }
.app-product-media { position: relative; aspect-ratio: 1; background: #f8fafc; padding: 12px; display: flex; align-items: center; justify-content: center; }
.app-product-media img { max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.app-discount-badge { position: absolute; top: 12px; left: 12px; background: var(--accent-color); color: #fff; padding: 4px 8px; border-radius: 6px; font-size: 0.75rem; font-weight: 700; z-index: 2; }
.app-product-body { padding: 16px; }
.app-product-cat { font-size: 0.75rem; color: var(--text-secondary); text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; }
.app-product-body h3 { margin: 6px 0 12px; font-size: 1rem; font-weight: 600; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.app-product-price-row { display: flex; justify-content: space-between; align-items: flex-end; }
.app-prices strong { font-size: 1.1rem; color: var(--text-primary); }
.app-prices small { text-decoration: line-through; color: var(--text-secondary); font-size: 0.85rem; margin-left: 6px; }
.app-add-btn { width: 36px; height: 36px; border-radius: 10px; border: none; background: rgba(0,123,255,0.1); color: var(--primary-color); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.3s; }
.app-add-btn:hover { background: var(--primary-color); color: #fff; }
.app-section-footer { display: flex; justify-content: center; }

/* Offers Grid */
.app-offers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.app-offer-card { display: flex; background: #f8fafc; border-radius: 20px; overflow: hidden; border: 1px solid #f1f5f9; }
.app-offer-visual { width: 130px; position: relative; background: var(--primary-color); display: flex; align-items: center; justify-content: center; }
.app-offer-visual img { width: 100%; height: 100%; object-fit: cover; }
.app-offer-placeholder { font-size: 2.5rem; color: rgba(255,255,255,0.7); }
.app-offer-badge { position: absolute; top: 12px; right: 12px; background: var(--accent-color); color: #fff; padding: 4px 8px; border-radius: 6px; font-size: 0.75rem; font-weight: 700; }
.app-offer-info { padding: 20px; flex: 1; }
.app-offer-info h3 { margin: 0 0 6px; font-size: 1.15rem; font-family: 'Outfit', sans-serif; }
.app-offer-info p { margin: 0 0 16px; color: var(--text-secondary); font-size: 0.9rem; line-height: 1.5; }
.app-coupon-box span { background: #fff; border: 1px dashed var(--primary-color); color: var(--primary-color); padding: 8px 12px; border-radius: 8px; font-weight: 700; font-family: monospace; display: inline-block; font-size: 0.95rem; }

/* Services Grid */
.app-services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.app-service-card { padding: 24px; border-radius: 20px; border: 1px solid #f1f5f9; background: #fff; transition: transform 0.3s, box-shadow 0.3s; }
.app-service-card:hover { transform: translateY(-4px); box-shadow: var(--v43-shadow-md); }
.app-service-icon { width: 64px; height: 64px; border-radius: 16px; background: rgba(0,123,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--primary-color); margin-bottom: 20px; }
.app-service-icon img { width: 100%; height: 100%; object-fit: contain; }
.app-service-content h3 { font-family: 'Outfit', sans-serif; font-size: 1.25rem; margin: 0 0 8px; }
.app-service-content p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.5; margin: 0 0 16px; }
.app-service-content strong { color: var(--primary-color); font-size: 1.15rem; }

/* Gallery */
.app-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.app-gallery-item { border-radius: 16px; overflow: hidden; aspect-ratio: 1; position: relative; }
.app-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.app-gallery-item:hover img { transform: scale(1.08); }

/* Contact Forms & Box */
.app-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.app-enquiry-box, .app-location-box { background: #f8fafc; border-radius: 24px; padding: 32px; }
.app-enquiry-box h3, .app-business-hours h3 { font-family: 'Outfit', sans-serif; font-size: 1.5rem; margin: 0 0 24px; }
.app-contact-form input, .app-contact-form textarea { width: 100%; padding: 14px 18px; border-radius: 12px; border: 1px solid #e2e8f0; margin-bottom: 16px; font-family: inherit; font-size: 1rem; }
.app-contact-form textarea { resize: vertical; }
.app-hours-list { list-style: none; padding: 0; margin: 0; }
.app-hours-list li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed #cbd5e1; }
.app-hours-list li:last-child { border: none; }
.w-full { width: 100%; text-align: center; }

/* Footer */
.app-footer { background: #0f172a; color: #fff; padding: 60px 0 20px; margin-top: 40px; }
.app-footer-grid { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 600px; margin: 0 auto; gap: 24px; }
.app-footer-brand { display: flex; align-items: center; gap: 16px; justify-content: center; }
.app-footer-brand img { width: 64px; height: 64px; border-radius: 20px; object-fit: cover; }
.app-footer-brand-info h3 { font-family: 'Outfit', sans-serif; font-size: 1.8rem; margin: 0; }
.app-footer-brand-info small { color: #94a3b8; }
.app-footer-desc { color: #cbd5e1; font-size: 1rem; line-height: 1.6; }
.app-footer-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; color: #94a3b8; }
.app-footer-meta a:hover { color: #fff; }
.app-social-links { display: flex; gap: 12px; justify-content: center; margin: 16px 0; }
.app-social-btn { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: background 0.3s; }
.app-social-btn:hover { background: var(--primary-color); color: #fff; }
.app-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; color: #64748b; font-size: 0.9rem; width: 100%; }

/* Mobile Dock */
.app-mobile-dock {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid #e2e8f0; display: flex; justify-content: space-around; padding: 12px 0;
    z-index: 999;
}
.app-mobile-dock a {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    color: var(--text-secondary); font-size: 0.75rem; font-weight: 500;
}
.app-mobile-dock a.active, .app-mobile-dock a:hover { color: var(--primary-color); }
.app-mobile-dock a i { font-size: 1.25rem; }

/* Global Additions */
.global-sticky-whatsapp {
    position: fixed; bottom: 84px; right: 24px;
    width: 60px; height: 60px; background: #25D366; color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 32px; box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35); z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.global-sticky-whatsapp:hover { transform: scale(1.1) translateY(-4px); color: #fff; }

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .app-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 991px) {
    .hero-slider, .hero-slide-bg { height: 420px; }
    .hero-slide-content { padding: 32px; align-items: center; text-align: center; }
    .shell-container { width: min(100% - 24px, 480px); }
    .section-panel { padding: 24px; }
    .v43-header-bar { border-radius: 20px; }
    .app-offers-grid { grid-template-columns: 1fr; }
    .global-sticky-whatsapp { bottom: 94px; right: 20px; width: 54px; height: 54px; font-size: 28px; }
}
@media (max-width: 575px) {
    .hero-slider, .hero-slide-bg { height: 380px; }
    .hero-slide-content h2 { font-size: 2.2rem; }
    .app-product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .app-product-body { padding: 12px; }
    .app-product-body h3 { font-size: 0.9rem; }
    .app-enquiry-box, .app-location-box { padding: 20px; }
}

/* Premium Bottom Sheet Modal */
@media (max-width: 575px) {
    .modal.fade .modal-dialog {
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        margin: 0;
        display: flex;
        align-items: flex-end;
        min-height: 100vh;
    }
    .modal.show .modal-dialog {
        transform: translateY(0);
    }
    .modal-content {
        border-radius: 32px 32px 0 0 !important;
        border: none;
        padding-bottom: env(safe-area-inset-bottom);
        max-height: 90vh;
        overflow-y: auto;
    }
    .modal-header {
        border: none;
        padding: 20px 24px 10px;
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 10;
    }
    .modal-header::after {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: #e2e8f0;
        border-radius: 2px;
    }
    .modal-body {
        padding: 0 24px 32px;
    }
}

/* Toast Improvements */
#toast-container > div {
    border-radius: 16px;
    box-shadow: var(--v43-shadow-lg);
    opacity: 1 !important;
}

/* Loading Glassmorphism */
.app-loading-pulse {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px 0;
}
.app-loading-pulse .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0,0,0,0.05);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: v43-spin 0.8s linear infinite;
}
@keyframes v43-spin { to { transform: rotate(360deg); } }

/* Payment Modal (modal1) Fix & Beauty */
.modal1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1050;
    display: none;
    align-items: flex-end;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.modal1.active {
    display: flex;
}

.modal-content1 {
    width: 100%;
    max-width: 440px;
    background: #ffffff;
    border-radius: 32px 32px 0 0;
    padding: 40px 24px 32px;
    text-align: center;
    box-shadow: 0 -15px 50px rgba(15, 23, 42, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.modal1.active .modal-content1 {
    transform: translateY(0);
}

.modal-content1 .closepop {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.modal-content1 .closepop:hover {
    background: #e2e8f0;
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-content1 .popupLogo {
    width: 72px !important;
    height: 72px;
    object-fit: cover;
    margin: 0 auto 20px;
    border-radius: 20px;
    padding: 4px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.modal-content1 h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.modal-content1 p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.modal-content1 .qr-container {
    background: #f8fafc;
    padding: 24px;
    border-radius: 28px;
    display: inline-block;
    margin-bottom: 24px;
    border: 1px dashed #cbd5e1;
    position: relative;
}

.modal-content1 svg, .modal-content1 img.qrCodeImg {
    width: 180px !important;
    height: 180px !important;
    display: block;
}

.modal-content1 .upi-id-box {
    margin: 0 0 24px;
    padding: 12px 16px;
    background: #f1f5f9;
    border-radius: 12px;
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
    word-break: break-all;
}

.modal-content1 .copy-share-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.modal-content1 a[onclick], .modal-content1 .btn-pay-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.modal-content1 a[onclick].btn-copy {
    background: #fff;
    color: var(--text-primary);
    border: 2px solid #e2e8f0;
    box-shadow: none;
}

.modal-content1 a[onclick]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
    filter: brightness(1.1);
}

@media (min-width: 576px) {
    .modal-content1 {
        border-radius: 24px;
        margin-bottom: 40px;
        transform: scale(0.9);
        opacity: 0;
    }
    .modal1.active .modal-content1 {
        transform: scale(1);
        opacity: 1;
    }
}

/* Blog Section */
.app-blog-card {
    display: block;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
    height: 100%;
}

.app-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.app-blog-media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.app-blog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.app-blog-card:hover .app-blog-media img {
    transform: scale(1.08);
}

.app-blog-body {
    padding: 20px;
}

.app-blog-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-blog-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.4;
}

.app-blog-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.app-read-more {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Lightbox Premium Styles */
.app-gallery-item {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 1;
}

.app-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 1.5rem;
    backdrop-filter: blur(4px);
}

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

.app-gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.app-lightbox {
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.app-lightbox.show {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-content {
    max-width: 95%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Pagination Customization */
.blog-pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #e2e8f0;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 25px;
    border-radius: 5px;
    background: var(--primary-color);
}
