/* ==========================================================================
   GET PATTAS KADAI - Global Design System & Stylesheet
   Theme: Vibrant Festive Dark & Golden Crimson
   Fully Responsive (Mobile-First Compatible up to 4K)
   ========================================================================== */

:root {
    --primary-red: #d62828;
    --primary-red-dark: #800f13;
    --gold-accent: #d97706;
    --gold-glow: #f59e0b;
    --dark-bg: #ffffff;
    --dark-surface: #f8fafc;
    --dark-card: #ffffff;
    --text-main: #0f172a;
    --text-muted: #475569;
    --border-color: rgba(226, 232, 240, 0.9);
    --success-green: #16a34a;
    --whatsapp-green: #25d366;

    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;

    --shadow-glow: 0 0 25px rgba(217, 119, 6, 0.25);
    --shadow-red-glow: 0 0 25px rgba(214, 40, 40, 0.35);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Basic Setup */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Canvas background for sparks */
#sparksCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    opacity: 0.65;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 2;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   GET PATTAS - TOP SLIM ANNOUNCEMENT BAR
   ========================================================================== */
.top-announcement-bar {
    background: linear-gradient(90deg, #7f1d1d 0%, #991b1b 30%, #1e1b4b 70%, #0f172a 100%);
    color: #ffffff;
    font-size: 0.82rem;
    padding: 0.45rem 1rem;
    position: relative;
    z-index: 10001;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .top-announcement-bar {
        display: none !important;
    }
}

.announcement-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.announcement-pulse-dot {
    width: 8px;
    height: 8px;
    background: #f59e0b;
    border-radius: 50%;
    box-shadow: 0 0 10px #f59e0b;
    animation: pulseDot 1.8s infinite ease-in-out;
}

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.4);
        opacity: 1;
        box-shadow: 0 0 14px #fbbf24;
    }
}

.announcement-sep {
    color: #ffd700;
    opacity: 0.7;
}

.announcement-extra {
    color: #fde68a;
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* ==========================================================================
   GET PATTAS - MAIN NAVBAR
   ========================================================================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 10000;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    transition: var(--transition);
}

.header-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar-logo-img {
    height: 52px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.mobile-menu-logo-img {
    height: 44px;
    width: auto;
    max-width: 140px;
}

.brand-logo-img {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.brand-logo-emblem {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #d62828 0%, #ea580c 50%, #f59e0b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.35rem;
    box-shadow: 0 4px 14px rgba(214, 40, 40, 0.35);
    transition: var(--transition);
}

.brand-logo-emblem.small {
    width: 34px;
    height: 34px;
    font-size: 1.05rem;
    border-radius: 8px;
}

.brand-logo:hover .brand-logo-emblem {
    transform: scale(1.06) rotate(-4deg);
    box-shadow: 0 6px 20px rgba(214, 40, 40, 0.5);
}

.brand-name {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #0f172a;
    line-height: 1.1;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-heading);
}

.brand-name .brand-get {
    color: #0f172a;
}

.brand-name .highlight {
    color: #d62828;
    background: linear-gradient(135deg, #d62828 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-sub {
    font-size: 0.68rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

/* Nav Menu Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.mobile-menu-header,
.mobile-menu-actions {
    display: none;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    padding: 0.3rem 0;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #d62828;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: linear-gradient(90deg, #d62828, #ea580c);
    border-radius: 2px;
}

/* Center Large Rounded Search Bar */
.header-search-wrap {
    flex: 1;
    max-width: 440px;
    min-width: 250px;
}

.header-search-bar {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 40px;
    padding: 0.52rem 1.15rem;
    position: relative;
    transition: var(--transition);
    width: 100%;
}

.header-search-bar:focus-within {
    background: #ffffff;
    border-color: #ea580c;
    box-shadow: 0 0 16px rgba(234, 88, 12, 0.18);
}

.search-icon-lead {
    color: #94a3b8;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.header-search-bar input {
    width: 100% !important;
    background: transparent;
    border: none;
    outline: none;
    font-size: 0.88rem;
    color: #0f172a;
    font-family: inherit;
}

.header-search-bar input::placeholder {
    color: #94a3b8;
}

.header-search-bar .search-clear-btn {
    position: static;
    background: #e2e8f0;
    color: #64748b;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    cursor: pointer;
    flex-shrink: 0;
}

/* Header Actions & Round Icon Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.nav-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.nav-icon-btn:hover {
    background: #ffffff;
    color: #d62828;
    border-color: #fca5a5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 40, 40, 0.15);
}

.cart-nav-btn {
    background: linear-gradient(135deg, #d62828 0%, #b91c1c 100%);
    color: #ffffff;
    border-color: #b91c1c;
}

.cart-nav-btn:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(214, 40, 40, 0.35);
}

.action-count-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: #d62828;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

.cart-count-pill {
    background: #f59e0b;
    color: #0f172a;
}

.customer-auth-btn {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    color: #0f172a;
    padding: 0.48rem 0.95rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.customer-auth-btn:hover {
    background: #ffffff;
    color: #d62828;
    border-color: #fca5a5;
    box-shadow: 0 4px 12px rgba(214, 40, 40, 0.15);
}

/* ==========================================================================
   GET PATTAS - HORIZONTAL CATEGORY STRIP BELOW NAVBAR
   ========================================================================== */
.category-strip-nav {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.55rem 0;
    position: relative;
    z-index: 9990;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.category-strip-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.category-strip-container::-webkit-scrollbar {
    display: none;
}

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.42rem 0.85rem;
    border-radius: 25px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}

.cat-pill .cat-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    transition: var(--transition);
}

/* Specific Category Accent Colors */
.cat-pill-chakkars .cat-icon {
    background: #fef3c7;
    color: #d97706;
}

.cat-pill-pots .cat-icon {
    background: #fee2e2;
    color: #dc2626;
}

.cat-pill-rockets .cat-icon {
    background: #dbeafe;
    color: #2563eb;
}

.cat-pill-sparklers .cat-icon {
    background: #ecfdf5;
    color: #059669;
}

.cat-pill-fancy .cat-icon {
    background: #f5f3ff;
    color: #7c3aed;
}

.cat-pill-shots .cat-icon {
    background: #e0f2fe;
    color: #0284c7;
}

.cat-pill-kids .cat-icon {
    background: #fdf2f8;
    color: #db2777;
}

.cat-pill-combos .cat-icon {
    background: #fffbeb;
    color: #b45309;
}

.cat-pill-gifts .cat-icon {
    background: #ccfbf1;
    color: #0d9488;
}

.cat-pill:hover {
    transform: translateY(-2px);
    background: #ffffff;
    color: #0f172a;
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.cat-pill-combos {
    background: #fffbeb;
    border-color: #fde68a;
    color: #92400e;
    font-weight: 700;
}

/* ==========================================================================
   GET PATTAS - CINEMATIC DIWALI FIREWORKS HERO SECTION (16:9 DESKTOP)
   ========================================================================== */
.cinematic-hero-section {
    position: relative;
    min-height: 740px;
    background: linear-gradient(180deg, rgba(6, 12, 34, 0.78) 0%, rgba(8, 16, 44, 0.52) 40%, rgba(6, 11, 30, 0.95) 90%),
        url('assets/get_pattas_hero_banner.jpg') center bottom / cover no-repeat;
    color: #ffffff;
    padding: 4.5rem 0 2.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 0 !important;
}

/* Image-only hero variant */
.cinematic-hero-section.hero-image-only,
.brand-dedicated-hero.hero-image-only {
    min-height: unset;
    background: none;
    padding: 0;
    display: block;
    border-radius: 0 !important;
}

.cinematic-hero-section picture,
.brand-dedicated-hero picture {
    display: block;
    width: 100%;
}

.hero-full-img,
.hero-full-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 0;
}

@media (max-width: 768px) {

    /* Completely hide top category strip navigation in mobile view */
    .category-strip-nav {
        display: none !important;
    }

    /* Hide customer login button on mobile view for direct guest checkout */
    .customer-auth-btn {
        display: none !important;
    }

    .hero-full-img,
    .hero-full-banner-img {
        border-radius: 0;
        object-fit: contain;
    }
}


.hero-overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 35%, rgba(245, 158, 11, 0.18) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(214, 40, 40, 0.22) 0%, transparent 55%);
    pointer-events: none;
    z-index: 1;
}

.hero-gold-dust {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#ffd700 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
}

/* Hero Left Column */
.hero-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.42rem 1.1rem;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(245, 158, 11, 0.45);
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.badge-spark {
    color: #fbbf24;
    font-size: 0.85rem;
}

.badge-discount {
    color: #ffffff;
    background: #d62828;
    padding: 0.15rem 0.55rem;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.hero-brand-tagline .brand-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #f59e0b;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.hero-headline {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.85), 0 2px 8px rgba(0, 0, 0, 0.9);
}

.highlight-festive {
    background: linear-gradient(135deg, #ffd700 0%, #fb923c 50%, #f43f5e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: none;
    filter: drop-shadow(0 2px 14px rgba(251, 146, 60, 0.4));
}

.hero-supporting-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fde047;
    letter-spacing: 0.3px;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-sub-description {
    font-size: 1rem;
    color: #e2e8f0;
    line-height: 1.6;
    max-width: 580px;
    margin-bottom: 1.8rem;
    opacity: 0.92;
}

/* Hero Large CTA Buttons */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #d62828 0%, #b91c1c 50%, #ea580c 100%);
    color: #ffffff;
    padding: 0.95rem 2rem;
    border-radius: 35px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(214, 40, 40, 0.45);
    transition: var(--transition);
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(214, 40, 40, 0.65);
}

.cta-arrow {
    transition: transform 0.25s ease;
}

.btn-hero-primary:hover .cta-arrow {
    transform: translateX(4px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    padding: 0.95rem 1.8rem;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: #ffd700;
    color: #ffd700;
    transform: translateY(-2px);
}

/* Trust Badges Under CTAs */
.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: #cbd5e1;
    font-weight: 500;
}

.trust-item i {
    color: #10b981;
    font-size: 0.95rem;
}

/* Right Column: Floating Offer Card */
.hero-floating-offer-card {
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(245, 158, 11, 0.35);
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(245, 158, 11, 0.15);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.hero-floating-offer-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(245, 158, 11, 0.25);
}

.offer-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.offer-pill-tag {
    font-size: 0.72rem;
    font-weight: 800;
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.4);
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    letter-spacing: 0.4px;
}

.offer-pill-discount {
    font-size: 0.75rem;
    font-weight: 900;
    background: #d62828;
    color: #fff;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
}

.offer-card-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.6rem;
    letter-spacing: -0.2px;
}

.offer-card-desc {
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.offer-card-desc strong {
    color: #f59e0b;
}

.offer-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    margin-bottom: 1.3rem;
}

.highlight-mini-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0.65rem 0.4rem;
    text-align: center;
}

.hl-value {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: #fde047;
}

.hl-label {
    display: block;
    font-size: 0.68rem;
    color: #94a3b8;
    font-weight: 600;
}

.btn-offer-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.35);
    transition: var(--transition);
}

.btn-offer-card-cta:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.5);
}

/* Partially Visible Product Cards at Bottom of Hero */
.hero-bottom-products-strip {
    margin-top: 3.5rem;
    position: relative;
    z-index: 3;
}

.strip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
}

.strip-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fde68a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.strip-title i {
    color: #ea580c;
}

.strip-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
    transition: var(--transition);
}

.strip-link:hover {
    opacity: 1;
    color: #f59e0b;
}

.hero-preview-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.hero-mini-card {
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-mini-card:hover {
    transform: translateY(-4px);
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.mini-card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.62rem;
    font-weight: 800;
    background: #d62828;
    color: #fff;
    padding: 0.12rem 0.45rem;
    border-radius: 8px;
}

.mini-card-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.mini-card-info {
    flex: 1;
    min-width: 0;
}

.mini-cat-label {
    font-size: 0.68rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
}

.mini-prod-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0.15rem 0;
}

.mini-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.mini-price {
    font-size: 0.95rem;
    color: #fde047;
    font-weight: 800;
}

.mini-mrp {
    font-size: 0.75rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.mini-card-add {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d62828, #b91c1c);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.82rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.mini-card-add:hover {
    transform: scale(1.1);
    background: #ea580c;
    box-shadow: 0 0 10px rgba(234, 88, 12, 0.6);
}

/* Hero Section Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 2.8rem;
    }

    .hero-preview-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .header-search-wrap {
        display: none;
    }

    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-headline {
        font-size: 2.3rem;
    }

    .cinematic-hero-section {
        padding: 3rem 0 2rem;
        min-height: auto;
    }

    .hero-preview-cards-grid {
        grid-template-columns: 1fr;
    }
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    width: 42px;
    height: 42px;
    padding: 8px;
    transition: all 0.25s ease;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.mobile-toggle:hover {
    background: #fef2f2;
    border-color: var(--primary-red);
}

.mobile-toggle:active {
    background: #fee2e2;
    transform: scale(0.92);
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--primary-red, #dc2626);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-toggle.active {
    background: #fef2f2;
    border-color: #f87171;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-backdrop.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

@media (min-width: 861px) {
    .mobile-menu-backdrop {
        display: none !important;
    }
}

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    border-radius: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), #b91c1c);
    color: #ffffff;
    box-shadow: var(--shadow-red-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e63946, var(--primary-red));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 40, 40, 0.4);
}

.btn-secondary {
    background: #ffffff;
    color: var(--text-main);
    border: 1px solid #cbd5e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.full-width {
    width: 100%;
}

/* Hero Section */
.hero-section {
    width: 100%;
    overflow: hidden;
    display: block;
    line-height: 0;
    position: static;
}

.hero-section picture {
    display: block;
    width: 100%;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(1.05) saturate(1.4);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.45) 75%, var(--dark-bg) 100%);
}

.hero-content-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(214, 40, 40, 0.08);
    border: 1px solid rgba(214, 40, 40, 0.3);
    padding: 0.35rem 0.9rem;
    border-radius: 30px;
    font-size: 0.82rem;
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 1rem;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    max-width: 100%;
    flex-wrap: wrap;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 0;
    letter-spacing: -0.5px;
    color: var(--text-main);
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.8);
    text-align: center;
}

.glow-text {
    background: linear-gradient(90deg, #d62828, #b91c1c, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(214, 40, 40, 0.2));
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    margin: 1rem auto 0;
    max-width: 650px;
    line-height: 1.7;
    text-align: center;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.8rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: #ffffff;
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid #cbd5e1;
    color: var(--text-main);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Festive Card / Timer Widget */
.festive-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.8rem 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07), var(--shadow-glow);
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 440px;
    margin: 0 auto;
}

.festive-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.festive-card-header h3 {
    font-size: 1.25rem;
    color: var(--primary-red);
    margin-bottom: 0.3rem;
}

.festive-card-header p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1.4rem;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 1.3rem;
    flex-wrap: nowrap;
}

.time-block {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    padding: 0.55rem 0.65rem;
    min-width: 56px;
    flex: 1;
}

.time-num {
    font-size: clamp(1.25rem, 3.5vw, 1.6rem);
    font-weight: 800;
    color: var(--primary-red);
    display: block;
}

.time-lbl {
    font-size: 0.62rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    font-weight: 600;
}

.cd-colon {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-red);
    padding-bottom: 4px;
}

.offer-banner-pill {
    background: linear-gradient(90deg, #fff5f5, #fffbeb);
    border: 1px dashed var(--primary-red);
    padding: 0.55rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-red-dark);
}

/* Section Header Commons */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.4rem;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    margin-bottom: 0.7rem;
    color: var(--text-main);
}

.section-sub {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* Products Section */
.products-section {
    padding: 4.5rem 0;
    background: var(--dark-bg);
}

.catalog-controls {
    margin-bottom: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Scrollable Category Tabs Wrapper for Mobile & Desktop */
.category-tabs-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    padding-bottom: 4px;
}

.category-tabs-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.category-tabs {
    display: flex;
    gap: 0.55rem;
    justify-content: center;
    min-width: max-content;
    padding: 0.2rem 0;
}

.tab-btn {
    background: #ffffff;
    color: var(--text-muted);
    border: 1px solid #cbd5e1;
    padding: 0.5rem 1.1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-red);
    color: #ffffff;
    font-weight: 600;
    border-color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.3);
}

.filter-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-input-wrapper {
    flex: 1;
    min-width: 240px;
}

.search-input-wrapper input {
    width: 100%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: var(--text-main);
    padding: 0.65rem 1.1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.search-input-wrapper input::placeholder {
    color: #94a3b8;
}

.search-input-wrapper input:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(214, 40, 40, 0.15);
}

.sort-select {
    background: #ffffff;
    color: var(--text-main);
    border: 1px solid #cbd5e1;
    padding: 0.65rem 1.1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    outline: none;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

/* Products Grid & Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
}

.product-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08), 0 0 15px rgba(214, 40, 40, 0.1);
}

.card-img-holder {
    position: relative;
    width: 100%;
    height: 280px;
    background: #f8fafc;
    overflow: hidden;
}

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

.product-card:hover .card-img-holder img {
    transform: scale(1.06);
}

.discount-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-red);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.feature-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fffbeb;
    color: #b45309;
    border: 1px solid #fde68a;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.18rem 0.45rem;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.card-body {
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--primary-red);
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.card-pack-info {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
}

.card-price-row {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.9rem;
}

.original-mrp {
    font-size: 0.82rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.offer-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-red);
    display: block;
}

.qty-control {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #cbd5e1;
}

.qty-btn {
    background: transparent;
    color: var(--text-main);
    width: 28px;
    height: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover {
    background: #e2e8f0;
}

.qty-val {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    width: 24px;
    text-align: center;
}

/* Offers Section */
.offers-section {
    padding: 4.5rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.combo-banner-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 280px 1fr;
    max-width: 960px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    align-items: center;
}

.combo-banner-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
    border-color: var(--primary-red);
}

.banner-img-holder {
    position: relative;
    width: 100%;
    max-width: 280px;
    height: 220px;
    min-height: 220px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    transition: transform 0.3s ease;
}

.combo-banner-card:hover .banner-img-holder img {
    transform: scale(1.05);
}

.banner-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-red);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.78rem;
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(214, 40, 40, 0.3);
}

.banner-info-holder {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-sub-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.banner-title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--text-main);
    margin-bottom: 0.8rem;
    line-height: 1.25;
}

.banner-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.banner-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--success-green);
    margin-bottom: 1.5rem;
}

.banner-price-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .combo-banner-card {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .banner-img-holder {
        width: 100%;
        max-width: 100%;
        height: 180px;
        min-height: auto;
    }

    .banner-info-holder {
        padding: 1.5rem 1.2rem;
    }
}

.combo-image-holder {
    position: relative;
    height: 200px;
}

.combo-image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.combo-discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-red);
    color: #ffffff;
    font-weight: 900;
    font-size: 0.78rem;
    padding: 0.25rem 0.7rem;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.combo-body {
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.combo-meta {
    display: flex;
    gap: 0.7rem;
    font-size: 0.76rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.item-count {
    color: var(--primary-red);
    font-weight: 700;
}

.tag-eco {
    color: var(--success-green);
    font-weight: 600;
}

.combo-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.combo-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.combo-price-row {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Safety Section */
.safety-section {
    padding: 4.5rem 0;
    background: #ffffff;
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

.safety-card {
    background: #f8fafc;
    border-radius: var(--radius-md);
    padding: 1.8rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.safety-card.do {
    border-top: 4px solid var(--success-green);
}

.safety-card.dont {
    border-top: 4px solid var(--primary-red);
}

.safety-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
}

.safety-header h3 {
    font-size: 1.3rem;
    color: var(--text-main);
}

.safety-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.safety-card li {
    font-size: 0.88rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.safety-card.do li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 800;
}

.safety-card.dont li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 800;
}

/* Contact Us Section */
.contact-section {
    padding: 4.5rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.contact-heading {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.contact-text {
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    font-size: 0.92rem;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.info-card {
    display: flex;
    gap: 0.85rem;
    background: #ffffff;
    padding: 1.1rem;
    border-radius: var(--radius-sm);
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.info-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 0.95rem;
    color: var(--primary-red);
    margin-bottom: 0.2rem;
}

.info-content p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.whatsapp-direct-box {
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid var(--whatsapp-green);
    border-radius: var(--radius-md);
    padding: 1.3rem;
}

.wa-box-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.9rem;
}

.wa-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.wa-box-header h4 {
    font-size: 1rem;
    color: var(--text-main);
}

.wa-box-header p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.contact-form {
    background: #ffffff;
    padding: 2.2rem;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
    color: var(--text-main);
}

.contact-form p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1.3rem;
}

.form-group {
    margin-bottom: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: var(--text-main);
    padding: 0.7rem 0.9rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    /* Prevent auto-zoom on mobile safari */
    outline: none;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(214, 40, 40, 0.15);
}

/* Footer Section */
.main-footer {
    background: linear-gradient(180deg, #0b1120 0%, #030712 100%);
    border-top: 2px solid #1e293b;
    padding: 4rem 0 2rem 0;
    color: #94a3b8;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d97706, #dc2626, transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.footer-logo .brand-name {
    font-size: 1.35rem;
    font-weight: 900;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-logo .brand-name .brand-get {
    color: #ffffff !important;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.footer-logo .brand-name .highlight {
    color: #ef4444;
    background: linear-gradient(135deg, #f87171 0%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo .brand-name .kadai-tag {
    background: linear-gradient(135deg, #ea580c 0%, #d97706 100%);
    color: #ffffff;
    padding: 0.12rem 0.45rem;
    border-radius: 6px;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
}

.footer-logo .brand-sub {
    color: #94a3b8;
    font-size: 0.68rem;
    letter-spacing: 1.2px;
}

.footer-desc {
    font-size: 0.88rem;
    margin-bottom: 1.4rem;
    line-height: 1.7;
    color: #94a3b8;
}

.footer-desc strong {
    color: #f8fafc;
}

.footer-badges-strip {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.f-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fbbf24;
    width: fit-content;
}

.footer-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: #f59e0b;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.88rem;
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a:hover {
    color: #fbbf24;
    transform: translateX(4px);
}

.footer-contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.2rem;
}

.f-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.85rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.f-contact-item strong {
    color: #38bdf8;
}

.f-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #ffffff;
    padding: 0.75rem 1.2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
    transition: var(--transition);
}

.footer-wa-btn:hover {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.45);
}

.footer-bottom,
.footer-bottom-centeGet pattas {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.85rem;
    color: #64748b;
    margin: 0 auto;
}

.footer-copy-text {
    margin: 0;
    font-size: 0.88rem;
    color: #94a3b8;
    text-align: center;
}

.footer-copy-text strong {
    color: #f1f5f9;
}

.kaira-credit-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.92rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    transition: var(--transition);
}

.kaira-credit-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }
}

/* Slide-out Cart Drawer */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 100010;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    height: 100dvh;
    background: #ffffff;
    z-index: 100011;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 1.1rem 1.3rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
}

.cart-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-count {
    font-size: 0.78rem;
    color: var(--primary-red);
    font-weight: 700;
}

.close-cart-btn {
    background: #e2e8f0;
    color: var(--text-main);
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-cart-btn:hover {
    background: #cbd5e1;
}

.cart-drawer-body {
    padding: 1.2rem;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.empty-cart-view {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.empty-cart-icon {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
}

.cart-item-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: #f8fafc;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid #e2e8f0;
}

.cart-item-img {
    width: 55px;
    height: 55px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-info h5 {
    font-size: 0.85rem;
    color: var(--text-main);
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-size: 0.82rem;
    color: var(--primary-red);
    font-weight: 700;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
    flex-shrink: 0;
}

.delete-item-btn {
    background: transparent;
    color: var(--primary-red);
    font-size: 0.85rem;
}

.cart-drawer-footer {
    padding: 1.2rem;
    border-top: 1px solid #e2e8f0;
    background: #ffffff;
}

.cart-summary-box {
    margin-bottom: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.82rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
}

.discount-line {
    color: var(--primary-red);
    font-weight: 600;
}

.green-text {
    color: var(--success-green);
    font-weight: 600;
}

.total-line {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-main);
    border-top: 1px dashed #cbd5e1;
    padding-top: 0.45rem;
    margin-top: 0.25rem;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 20000;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    max-width: calc(100vw - 40px);
}

.toast {
    background: #0f172a;
    color: #ffffff;
    border-left: 4px solid var(--primary-red);
    padding: 0.75rem 1.1rem;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    animation: slideIn 0.3s forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsive Media Queries
   ========================================================================== */

@media (max-width: 992px) {
    .hero-content-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.2rem;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-highlights {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .contact-wrapper,
    .safety-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 860px) {

    /* Mobile Navigation Slide-out Drawer */
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        max-width: 82vw;
        height: 100%;
        height: 100dvh;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        z-index: 100009;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.2);
        gap: 0;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.4rem 1.4rem 1.2rem;
        border-bottom: 1px solid #e2e8f0;
        background: #f8fafc;
    }

    .mobile-menu-brand {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.95rem;
        font-weight: 800;
        color: var(--text-main);
    }

    .mobile-menu-logo {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1.5px solid var(--primary-red);
    }

    .mobile-close-btn {
        background: #e2e8f0;
        border: 1px solid #cbd5e1;
        color: var(--text-main);
        font-size: 1rem;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        flex-shrink: 0;
    }

    .nav-link {
        padding: 1rem 1.4rem;
        border-bottom: 1px solid #f1f5f9;
        font-size: 1rem;
        font-weight: 500;
        color: #334155;
        display: block;
    }

    .nav-link:hover {
        background: #fff5f5;
        color: var(--primary-red);
        padding-left: 1.8rem;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-link.active {
        color: var(--primary-red);
        font-weight: 700;
        background: #fff5f5;
    }

    .mobile-menu-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.4rem;
        margin-top: auto;
        border-top: 1px solid #e2e8f0;
        background: #f8fafc;
    }

    .mobile-toggle {
        display: flex;
    }

    .search-box {
        display: none;
        /* Keep header clean on mobile */
    }

    .category-tabs {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .header-container {
        padding: 0.5rem 0.85rem;
    }

    .brand-logo-img {
        width: 38px;
        height: 38px;
    }

    .brand-name {
        font-size: 1.05rem;
    }

    .brand-sub {
        font-size: 0.62rem;
    }

    .cart-trigger-btn {
        padding: 0.42rem 0.75rem;
        font-size: 0.82rem;
    }


    .hero-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .festive-card {
        padding: 1.3rem 1rem;
    }

    .time-block {
        min-width: 48px;
        padding: 0.45rem 0.4rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .filter-tools {
        flex-direction: column;
        align-items: stretch;
    }

    .sort-select {
        width: 100%;
    }

    .combos-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .contact-form {
        padding: 1.5rem 1.1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.6rem;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .cart-drawer {
        max-width: 100%;
    }
}

@media (max-width: 360px) {
    .brand-name {
        font-size: 0.95rem;
    }

    .kadai-tag {
        font-size: 0.55rem;
    }

    .time-block {
        min-width: 42px;
        padding: 0.4rem 0.2rem;
    }

    .time-num {
        font-size: 1.15rem;
    }
}

/* Customer Auth Header Button */
.customer-auth-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: var(--text-main);
    padding: 0.45rem 0.9rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.customer-auth-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    box-shadow: 0 4px 12px rgba(214, 40, 40, 0.15);
}

/* Customer Modal & Address Book Styling */
.customer-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(5px);
    z-index: 30000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.customer-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.customer-modal-card {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.customer-modal-overlay.active .customer-modal-card {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: var(--text-main);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close-btn:hover {
    background: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
}

.customer-auth-tabs {
    display: flex;
    background: #f1f5f9;
    border-radius: 30px;
    padding: 4px;
    margin-bottom: 1.5rem;
}

.c-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.6rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.c-tab-btn.active {
    background: #ffffff;
    color: var(--primary-red);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.c-auth-form h3 {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 0.3rem;
}

.c-auth-form p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.auth-err-msg {
    color: var(--primary-red);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    min-height: 1rem;
}

/* Customer Profile Banner */
.customer-profile-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.cust-avatar {
    font-size: 2rem;
    background: #ffffff;
    border: 2px solid var(--primary-red);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cust-info {
    flex: 1;
}

.cust-info h3 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.1rem;
}

.cust-tag {
    font-size: 0.78rem;
    color: var(--primary-red);
    font-weight: 600;
}

.cust-phone-badge {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Address Book */
.address-book-wrapper {
    border-top: 1px solid #e2e8f0;
    padding-top: 1.2rem;
}

.address-book-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.address-book-title-row h4 {
    font-size: 1rem;
    color: var(--text-main);
}

.address-crud-form {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    padding: 1.2rem;
    border-radius: 10px;
    margin-bottom: 1.2rem;
}

.address-crud-form h5 {
    font-size: 0.95rem;
    color: var(--primary-red);
    margin-bottom: 0.8rem;
}

.checkbox-align {
    display: flex;
    align-items: center;
}

.checkbox-align label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    cursor: pointer;
}

.form-actions-inline {
    display: flex;
    justify-content: flex-end;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.address-cards-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.address-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
    transition: var(--transition);
}

.address-card.default-address {
    border-color: var(--primary-red);
    box-shadow: 0 2px 10px rgba(214, 40, 40, 0.1);
    background: #fffdfd;
}

.address-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.addr-label-badge {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
    background: #f1f5f9;
    padding: 0.15rem 0.55rem;
    border-radius: 4px;
}

.address-card.default-address .addr-label-badge {
    background: #fee2e2;
    color: var(--primary-red);
}

.default-pill {
    font-size: 0.68rem;
    background: var(--success-green);
    color: #fff;
    font-weight: 700;
    padding: 0.12rem 0.45rem;
    border-radius: 30px;
}

.addr-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.addr-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.4rem;
    border-top: 1px dashed #f1f5f9;
    padding-top: 0.4rem;
}

.btn-logout-sm {
    background: #fee2e2;
    color: var(--primary-red);
    border: 1px solid #fca5a5;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-logout-sm:hover {
    background: var(--primary-red);
    color: #ffffff;
}

/* ==========================================================================
   REFERENCE-MATCH: Navbar Contact Us Button
   ========================================================================== */
.nav-btn-contact {
    display: none;
    padding: 0.65rem 1.4rem;
    border-radius: 30px;
    background: var(--primary-red);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

.nav-btn-contact:hover {
    background: var(--primary-red-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.3);
}

.nav-btn-contact-desktop {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    background: var(--primary-red);
    color: #ffffff !important;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-btn-contact-desktop:hover {
    background: var(--primary-red-dark);
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.3);
}


/* Mobile hamburger toggle — prominent, clearly visible on white header */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: #f1f5f9;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    width: 44px;
    height: 44px;
    padding: 8px;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: #fee2e2;
    border-color: var(--primary-red);
}

.mobile-toggle:active {
    background: #fecaca;
    transform: scale(0.92);
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 3px;
    transition: var(--transition);
}

@media (max-width: 860px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-btn-contact-desktop {
        display: none;
    }

    .nav-btn-contact {
        display: block;
    }

    .nav-menu .nav-btn-contact {
        margin: 0.5rem 1.4rem 0;
        text-align: center;
        display: block;
    }

    /* Hide Login button from header on mobile — it lives in the menu drawer */
    .customer-auth-btn {
        display: none !important;
    }
}

/* ==========================================================================
   REFERENCE-MATCH: Products Layout — Left Sidebar + Grid
   ========================================================================== */
.products-section {
    background: #f8fafc;
    padding: 3.5rem 0;
}

.products-header-banner {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.products-header-banner h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--text-main);
    margin-bottom: 0.4rem;
}

.products-subtext {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.products-layout-container {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 2rem;
    align-items: start;
}

/* --- Left Sidebar Filters Card --- */
.catalog-filters-sidebar {
    position: sticky;
    top: 90px;
}

.filters-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.filters-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.filters-card-header h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
}

.clear-filters-btn {
    background: transparent;
    border: none;
    color: var(--primary-red);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.clear-filters-btn:hover {
    text-decoration: underline;
}

/* Filter Search */
.filter-search-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.55rem 0.9rem;
    margin-bottom: 1.4rem;
    transition: var(--transition);
}

.filter-search-box:focus-within {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.08);
}

.filter-search-box .search-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.filter-search-box input {
    background: transparent;
    border: none;
    outline: none;
    font-size: 0.85rem;
    color: var(--text-main);
    width: 100%;
    font-family: inherit;
}

.filter-search-box input::placeholder {
    color: #94a3b8;
}

/* Filter Groups */
.filter-group {
    margin-bottom: 1.4rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #f1f5f9;
}

.filter-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.filter-group-title {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.filter-options-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

/* Custom Radio Labels */
.filter-radio-label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-main);
    user-select: none;
    padding: 0.25rem 0;
}

.filter-radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
    background: #ffffff;
}

.filter-radio-label input[type="radio"]:checked+.radio-custom {
    border-color: var(--primary-red);
    background: var(--primary-red);
}

.filter-radio-label input[type="radio"]:checked+.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
}

.filter-radio-label input[type="radio"]:checked~.filter-name {
    font-weight: 600;
    color: var(--primary-red);
}

.filter-name {
    flex: 1;
}

.filter-count {
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Sort By Select */
.filter-sort-select {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: var(--text-main);
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

.filter-sort-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.08);
}

/* --- Right Catalog Area --- */
.catalog-main-content {
    min-width: 0;
}

.catalog-status-bar {
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #e2e8f0;
}

.showing-count-text {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.showing-count-text strong {
    color: var(--text-main);
    font-weight: 700;
}

/* Default page background */
body {
    background-color: #ffffff;
}

/* Brand-specific hero backgrounds */
body[data-brand="muthu"] .brand-dedicated-hero {
    background: linear-gradient(135deg, #059669, #047857);
    color: #ffffff;
}

body[data-brand="Get pattas "] .brand-dedicated-hero {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: #ffffff;
}

body[data-brand="red"] .brand-dedicated-hero {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
}

body[data-brand="getpattasu"] .brand-dedicated-hero {
    background: linear-gradient(135deg, #d97706, #b45309);
    color: #ffffff;
}

/* Updated product card with ADD button style */
.product-card .btn-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    width: 100%;
    background: var(--primary-red);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
}

.product-card .btn-add-to-cart:hover {
    background: var(--primary-red-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(214, 40, 40, 0.25);
}

/* Responsive Sidebar */
@media (max-width: 1024px) {
    .products-layout-container {
        grid-template-columns: 1fr;
    }

    .catalog-filters-sidebar {
        position: static;
    }
}

/* ==========================================================================
   REFERENCE-MATCH: Cart Drawer Redesign
   ========================================================================== */
.btn-checkout-proceed {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary-red);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    width: 100%;
}

.btn-checkout-proceed:hover {
    background: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 40, 40, 0.35);
}

/* ==========================================================================
   REFERENCE-MATCH: Checkout Modal Full Design
   ========================================================================== */
.checkout-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 40000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.checkout-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.checkout-modal-card {
    background: #ffffff;
    border-radius: 18px;
    width: 100%;
    max-width: 920px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 40px);
    max-height: calc(100dvh - 40px);
    overflow: hidden;
    margin: auto;
    transform: translateY(30px);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.checkout-modal-overlay.active .checkout-modal-card {
    transform: translateY(0);
}

/* Checkout Header */
.checkout-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.4rem;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 20;
}

.checkout-brand-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkout-logo {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--primary-red);
}

.checkout-brand-title h3 {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 700;
}

.checkout-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.need-help-tag {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.need-help-tag strong {
    color: var(--primary-red);
}

/* 2-Column Grid Container */
.checkout-grid-container {
    display: grid;
    grid-template-columns: 1fr 340px;
    min-height: 0;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.checkout-left-col {
    padding: 1.6rem;
    border-right: 1px solid #e2e8f0;
    overflow-y: auto;
    max-height: calc(100vh - 120px);
}

.checkout-right-col {
    padding: 1.6rem;
    background: #f8fafc;
    overflow-y: auto;
    max-height: calc(100vh - 120px);
}

/* Checkout Sections */
.checkout-section {
    margin-bottom: 1.8rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid #f1f5f9;
}

.checkout-section:last-child {
    border-bottom: none;
}

.checkout-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
}

.section-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.9rem;
}

.section-label-row .checkout-label {
    margin-bottom: 0;
}

.link-btn {
    background: transparent;
    border: none;
    color: var(--primary-red);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

/* Form Inputs */
.checkout-input {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--text-main);
    padding: 0.7rem 0.95rem;
    border-radius: 8px;
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.checkout-input:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.08);
}

.checkout-select {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--text-main);
    padding: 0.7rem 0.95rem;
    border-radius: 8px;
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

.checkout-select:focus {
    border-color: var(--primary-red);
}

.co-form-group {
    margin-bottom: 0.8rem;
}

.co-sublabel {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 0.4rem;
}

.co-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.co-form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 0.75rem;
}

/* Checkbox */
.checkout-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
    margin-top: 0.6rem;
}

/* Save Address button */
.save-addr-row {
    margin-top: 1rem;
}

.btn-save-address {
    background: var(--primary-red);
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-save-address:hover {
    background: var(--primary-red-dark);
    box-shadow: 0 4px 12px rgba(214, 40, 40, 0.2);
}

/* Shipping Method Box */
.shipping-method-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1rem 1.2rem;
    gap: 1rem;
}

.shipping-method-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.shipping-method-info strong {
    font-size: 0.88rem;
    color: var(--text-main);
}

.shipping-method-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.shipping-price-pill {
    background: #dcfce7;
    color: #15803d;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 30px;
    white-space: nowrap;
}

/* Payment Options & Booking Notice */
.co-micro-hint {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.direct-booking-notice {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(251, 191, 36, 0.12));
    border: 1.5px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.05);
}

.direct-booking-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #b45309;
    font-weight: 700;
    font-size: 0.98rem;
    margin-bottom: 0.45rem;
}

.direct-booking-notice .co-micro-hint {
    color: #4b5563;
    font-size: 0.84rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.payment-options-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.payment-option-card {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.9rem 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option-card:has(input:checked) {
    border-color: var(--primary-red);
    background: #fff8f8;
}

.payment-option-card input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.payment-option-details {
    flex: 1;
}

.payment-option-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.2rem;
}

.payment-option-title strong {
    font-size: 0.88rem;
    color: var(--text-main);
}

.payment-icon {
    font-size: 1.2rem;
}

.payment-option-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Complete Order Button */
.btn-complete-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary-red);
    color: #ffffff !important;
    border: none;
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 1rem;
}

.btn-complete-order:hover {
    background: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 40, 40, 0.35);
}

/* Right Column — Order Summary */
.checkout-summary-card h4 {
    font-size: 1.05rem;
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #e2e8f0;
}

/* Item Preview List */
.co-items-preview-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.co-item-preview {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.co-item-img-wrap {
    position: relative;
    flex-shrink: 0;
}

.co-item-thumb {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #e2e8f0;
}

.co-item-qty-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--text-main);
    color: #ffffff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.co-item-details {
    flex: 1;
}

.co-item-name {
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.co-item-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.co-item-price {
    font-size: 0.88rem;
    color: var(--text-main);
    font-weight: 700;
}

/* Promo Code */
.promo-code-container {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.9rem;
    margin-bottom: 1.2rem;
}

.promo-input-group {
    display: flex;
    gap: 0.5rem;
}

.promo-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 0.82rem;
    color: var(--text-main);
    font-family: inherit;
}

.promo-input-group input::placeholder {
    color: #94a3b8;
    font-size: 0.8rem;
}

.promo-apply-btn {
    background: transparent;
    border: none;
    color: var(--primary-red);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.promo-apply-btn:hover {
    text-decoration: underline;
}

.promo-status-msg {
    font-size: 0.78rem;
    margin-top: 0.4rem;
    min-height: 1rem;
}

/* Financials Table */
.co-financials-table {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.co-financial-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.grand-total-row {
    border-top: 1px solid #e2e8f0;
    padding-top: 0.7rem;
    margin-top: 0.3rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
}

.co-total-val {
    font-size: 0.82rem;
}

.co-total-val strong {
    font-size: 1.1rem;
    color: var(--primary-red);
}

/* Trust Badge */
.co-trust-badge {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #15803d;
    line-height: 1.4;
}

.trust-icon {
    flex-shrink: 0;
    font-size: 1rem;
}

/* Responsive Checkout Modal */
@media (max-width: 768px) {
    .checkout-modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .checkout-modal-card {
        border-radius: 20px 20px 0 0;
        height: 94vh;
        height: 94dvh;
        max-height: 94dvh;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .checkout-grid-container {
        grid-template-columns: 1fr;
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 2.5rem;
    }

    .checkout-left-col {
        padding: 1.2rem;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        overflow: visible;
        max-height: none;
    }

    .checkout-right-col {
        padding: 1.2rem;
        overflow: visible;
        max-height: none;
        background: #f8fafc;
    }

    .co-form-row,
    .co-form-row-3 {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Google Reviews Section (Ultra-Attractive & Verified Layout)
   ========================================================================== */
.reviews-section {
    padding: 5.5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(66, 133, 244, 0.2), transparent);
}

.reviews-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.google-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 0.45rem 1.1rem;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e293b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.google-badge-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.15);
    border-color: #cbd5e1;
}

.google-icon-svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.verified-tick-badge {
    background: #ecfdf5;
    color: #059669;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    border: 1px solid #a7f3d0;
}

.reviews-main-heading {
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.reviews-sub-heading {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.reviews-rating-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 1rem 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
}

.rating-score-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-big-num {
    font-size: 2.4rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
}

.rating-stars-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.stars-gold {
    color: #f59e0b;
    font-size: 1.25rem;
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.rating-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
}

.rating-features-pills {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.rf-pill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
}

/* Reviews Carousel Layout */
.reviews-carousel-wrapper {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
}

.reviews-slider-container {
    overflow: hidden;
    padding: 1.5rem 0.5rem;
    user-select: none;
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.review-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.review-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.user-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.user-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.2rem 0;
}

.user-meta {
    font-size: 0.78rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.verified-buyer {
    color: #059669;
    font-weight: 700;
}

.google-source-tag {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.25rem 0.55rem;
    border-radius: 16px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #475569;
}

.google-g-mini {
    width: 14px;
    height: 14px;
}

.card-stars-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.card-stars-row .stars-gold {
    font-size: 1rem;
}

.review-date {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
}

.review-headline {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.review-text {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.65;
    margin: 0;
    flex-grow: 1;
}

/* Nav Buttons */
.review-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    border-radius: 50%;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.review-nav-btn.prev-btn {
    left: -20px;
}

.review-nav-btn.next-btn {
    right: -20px;
}

.review-nav-btn:hover {
    background: var(--primary-red);
    color: #ffffff;
    border-color: var(--primary-red);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(214, 40, 40, 0.3);
}

/* Pagination Dots */
.reviews-pagination {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pagination-dot.active {
    background: var(--primary-red);
    width: 28px;
    box-shadow: 0 2px 8px rgba(214, 40, 40, 0.35);
}

/* CTA */
.reviews-cta-block {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-write-review {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    color: #0f172a;
    padding: 0.85rem 1.8rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    cursor: pointer;
}

.btn-write-review:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.2);
}

.google-g-sm {
    width: 18px;
    height: 18px;
}

/* Policy & Legal Modals - Clean White Card Design */
.policy-modal-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35) !important;
    border: 1px solid #e2e8f0 !important;
    width: 100% !important;
    max-width: 680px !important;
    overflow: hidden !important;
    margin: auto !important;
    display: flex !important;
    flex-direction: column !important;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.checkout-modal-overlay.active .policy-modal-card {
    transform: translateY(0);
}

.policy-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.6rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e2e8f0;
}

.policy-modal-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-modal-body {
    padding: 1.8rem 2rem;
    max-height: 70vh;
    overflow-y: auto;
    color: #334155;
    font-size: 0.92rem;
    line-height: 1.7;
}

.policy-modal-body p {
    margin-bottom: 1.1rem;
}

.policy-modal-body strong {
    color: #0f172a;
}

.policy-modal-body ul {
    margin: 0.5rem 0 1.2rem 1.4rem;
    color: #475569;
}

.policy-modal-body li {
    margin-bottom: 0.4rem;
}

.policy-modal-close-btn {
    background: #e2e8f0;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: var(--transition);
}

.policy-modal-close-btn:hover {
    background: #dc2626;
    color: #ffffff;
}

.policy-modal-footer {
    padding: 1rem 1.6rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
}

.policy-modal-footer .btn-close-policy {
    background: #0f172a;
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
}

.policy-modal-footer .btn-close-policy:hover {
    background: #dc2626;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .review-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .review-nav-btn.prev-btn {
        left: 5px;
    }

    .review-nav-btn.next-btn {
        right: 5px;
    }
}

@media (max-width: 640px) {
    .review-card {
        flex: 0 0 100%;
        padding: 1.4rem;
    }

    .reviews-main-heading {
        font-size: 1.7rem;
    }

    .reviews-rating-bar {
        flex-direction: column;
        padding: 1.2rem;
        gap: 1rem;
    }

    .rating-features-pills {
        justify-content: center;
    }

    .review-nav-btn {
        display: none;
    }

    .policy-modal-body {
        padding: 1.2rem;
    }
}

/* ==========================================================================
   BRAND SWITCHER SECTION (4 PROMINENT BRANDS: MUTHU, Get pattas , RED, GET PATTASU)
   ========================================================================== */
.brand-switcher-section {
    padding: 2.5rem 0 1.5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid #e2e8f0;
}

.brand-switcher-header {
    text-align: center;
    margin-bottom: 2rem;
}

.brand-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0.5rem 0 0.35rem;
    letter-spacing: -0.5px;
}

.brand-section-sub {
    color: #64748b;
    font-size: 1.05rem;
}

.brand-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.brand-card-btn {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.4rem 1.2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    color: inherit;
}

.brand-card-btn:hover {
    transform: translateY(-4px);
    border-color: #cbd5e1;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.brand-card-btn.active {
    border-color: #dc2626;
    background: linear-gradient(145deg, #ffffff 0%, #fff7ed 100%);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.15);
}

#brandBtn-muthu.active {
    border-color: #059669;
    background: linear-gradient(145deg, #ffffff 0%, #ecfdf5 100%);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.15);
}

#brandBtn-Get pattas .active {
    border-color: #7c3aed;
    background: linear-gradient(145deg, #ffffff 0%, #f5f3ff 100%);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.15);
}

#brandBtn-red.active {
    border-color: #dc2626;
    background: linear-gradient(145deg, #ffffff 0%, #fef2f2 100%);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.18);
}

#brandBtn-getpattasu.active {
    border-color: #d97706;
    background: linear-gradient(145deg, #ffffff 0%, #fffbeb 100%);
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.18);
}

.brand-card-pill {
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    background: #f1f5f9;
    color: #475569;
    margin-bottom: 0.85rem;
}

.brand-card-btn.active .brand-card-pill {
    background: #dc2626;
    color: #ffffff;
}

#brandBtn-muthu.active .brand-card-pill {
    background: #059669;
    color: #ffffff;
}

#brandBtn-Get pattas .active .brand-card-pill {
    background: #7c3aed;
    color: #ffffff;
}

#brandBtn-red.active .brand-card-pill {
    background: #dc2626;
    color: #ffffff;
}

#brandBtn-getpattasu.active .brand-card-pill {
    background: #d97706;
    color: #ffffff;
}

.brand-card-icon {
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
}

.brand-card-name {
    font-size: 1.18rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.25rem;
    line-height: 1.25;
}

.brand-card-count {
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

.brand-card-action {
    font-size: 0.84rem;
    font-weight: 700;
    color: #dc2626;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: transform 0.2s ease;
}

#brandBtn-Get pattas .brand-card-action {
    color: #059669;
}

#brandBtn-Get pattas .brand-card-action {
    color: #7c3aed;
}

#brandBtn-Get pattas .brand-card-action {
    color: #dc2626;
}

#brandBtn-getpattasu .brand-card-action {
    color: #d97706;
}

.brand-card-btn:hover .brand-card-action {
    transform: translateX(4px);
}

/* ==========================================================================
   WHOLESALE TABLE SECTION (FULL-WIDTH ORDER PRICE LIST)
   ========================================================================== */
.wholesale-table-section {
    padding: 2rem 0 6rem;
    background: #f8fafc;
}

.active-brand-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    border-radius: 16px;
    padding: 1.75rem 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.current-brand-badge {
    display: inline-block;
    background: rgba(220, 38, 38, 0.9);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 0.75px;
    margin-bottom: 0.4rem;
}

.current-brand-title {
    color: #ffffff;
    font-size: 1.65rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.current-brand-tagline {
    color: #cbd5e1;
    font-size: 0.92rem;
}

.brand-banner-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
}

.meta-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #f1f5f9;
}

.meta-pill strong {
    color: #f59e0b;
}

/* Table Controls Bar */
.table-controls-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.table-search-box {
    flex: 1;
    min-width: 280px;
    position: relative;
    display: flex;
    align-items: center;
}

.table-search-box .search-icon {
    position: absolute;
    left: 14px;
    font-size: 1rem;
    color: #94a3b8;
    pointer-events: none;
}

.table-search-box input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 2.6rem;
    font-size: 0.95rem;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    outline: none;
    color: #0f172a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.table-search-box input:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.search-clear-btn {
    position: absolute;
    right: 12px;
    background: #e2e8f0;
    border: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-jump-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-jump-select {
    padding: 0.72rem 1rem;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    outline: none;
    cursor: pointer;
}

.category-jump-select:focus {
    border-color: #dc2626;
}

.btn-clear-cart-table {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fca5a5;
    padding: 0.72rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-clear-cart-table:hover {
    background: #fecaca;
    color: #991b1b;
}

/* Category Navigation Pills Horizontal Scroll */
.category-pills-scroll {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    overflow-x: auto;
    padding: 0.5rem 0 1.2rem;
    scrollbar-width: thin;
}

.category-pills-scroll::-webkit-scrollbar {
    height: 4px;
}

.category-pills-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.category-pill-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.category-pill-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.category-pill-btn.active {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.category-pill-btn .pill-badge {
    background: #f1f5f9;
    color: #475569;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.1rem 0.45rem;
    border-radius: 10px;
}

.category-pill-btn.active .pill-badge {
    background: #dc2626;
    color: #ffffff;
}

/* ==========================================================================
   WHOLESALE PRICE LIST TABLE (CLEAN, BILINGUAL, TOUCH STEPPERS)
   ========================================================================== */
.table-responsive-wrapper {
    width: 100%;
}

.category-table-block {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.category-table-header {
    background: linear-gradient(90deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
    padding: 0.9rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cat-header-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.cat-header-icon {
    font-size: 1.2rem;
}

.cat-header-title h3 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}

.cat-header-right {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.cat-header-count {
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 12px;
    color: #f8fafc;
}

.cat-accordion-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s ease;
    flex-shrink: 0;
}

.cat-accordion-arrow svg {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.mobile-mrp-strike {
    display: none;
}

/* Desktop defaults: chevron hidden, table always visible, natural cursor */
@media (min-width: 769px) {
    .cat-accordion-arrow {
        display: none !important;
    }

    .category-body-collapse,
    .category-table-block.is-collapsed .category-body-collapse {
        display: block !important;
        height: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .category-table-header {
        cursor: default;
    }
}

.table-scroll-container {
    overflow-x: auto;
    width: 100%;
}

.wholesale-price-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.wholesale-price-table thead tr {
    background: #f1f5f9;
    border-bottom: 2px solid #e2e8f0;
}

.wholesale-price-table th {
    padding: 0.85rem 1rem;
    font-weight: 700;
    color: #475569;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.wholesale-price-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.product-row {
    transition: background-color 0.15s ease;
}

.product-row:hover {
    background-color: #f8fafc;
}

.product-row.row-selected {
    background-color: #fffbeb !important;
    border-left: 4px solid #f59e0b;
}

.td-sno {
    width: 70px;
    white-space: nowrap;
}

.sno-num {
    font-weight: 700;
    color: #0f172a;
    margin-right: 0.35rem;
}

.item-code-badge {
    font-size: 0.68rem;
    color: #64748b;
    display: block;
}

.td-name {
    min-width: 250px;
}

.prod-name-box {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.prod-eng-name {
    font-size: 0.96rem;
    font-weight: 700;
    color: #0f172a;
}

.prod-tamil-name {
    font-size: 0.82rem;
    color: #b45309;
    font-weight: 600;
}

.td-pack {
    white-space: nowrap;
}

.pack-badge {
    background: #e2e8f0;
    color: #334155;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
}

.td-mrp {
    white-space: nowrap;
}

.mrp-strikethrough {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 0.88rem;
}

.td-net {
    white-space: nowrap;
}

.net-price-highlight {
    color: #dc2626;
    font-size: 1.05rem;
    font-weight: 800;
    margin-right: 0.35rem;
}

.discount-micro-badge {
    background: #dcfce7;
    color: #15803d;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}

/* Touch Quantity Stepper */
.td-qty {
    width: 140px;
    white-space: nowrap;
}

.qty-touch-stepper {
    display: inline-flex;
    align-items: center;
    background: #f8fafc;
    border: 2px solid #cbd5e1;
    border-radius: 10px;
    overflow: hidden;
}

.qty-touch-stepper.mini {
    border-width: 1px;
}

.btn-qty-minus,
.btn-qty-plus {
    background: #ffffff;
    border: none;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.btn-qty-minus:hover,
.btn-qty-plus:hover {
    background: #dc2626;
    color: #ffffff;
}

.btn-qty-minus:active,
.btn-qty-plus:active {
    transform: scale(0.92);
}

.qty-numeric-input {
    width: 44px;
    height: 34px;
    border: none;
    background: #ffffff;
    text-align: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: #0f172a;
    outline: none;
    -moz-appearance: textfield;
}

.qty-numeric-input::-webkit-outer-spin-button,
.qty-numeric-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.td-total {
    width: 110px;
    white-space: nowrap;
    text-align: right;
}

.row-total-val {
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 800;
}

.product-row.row-selected .row-total-val {
    color: #b45309;
}

/* Empty state */
.table-empty-state {
    text-align: center;
    padding: 3.5rem 1.5rem;
    background: #ffffff;
    border-radius: 14px;
    border: 1px dashed #cbd5e1;
}

.table-empty-state .empty-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.table-empty-state h3 {
    font-size: 1.3rem;
    color: #0f172a;
    margin-bottom: 0.35rem;
}

.table-empty-state p {
    color: #64748b;
    margin-bottom: 1.25rem;
}

/* ==========================================================================
   STICKY BOTTOM ORDER ESTIMATE BAR (kannancrackers & jallikattucrackers UX)
   ========================================================================== */
.sticky-order-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: rgba(15, 23, 42, 0.96);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-top: 2px solid rgba(245, 158, 11, 0.4);
    color: #ffffff;
    padding: 0.75rem 1.25rem;
    z-index: 999;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.sticky-bar-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.sticky-info-col {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.sticky-main-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    flex-wrap: wrap;
}

.sticky-items-count strong {
    color: #f59e0b;
    font-size: 1.2rem;
}

.sticky-boxes-count {
    color: #cbd5e1;
    font-size: 0.92rem;
}

.sticky-divider {
    color: #475569;
}

.sticky-net-price strong {
    color: #4ade80;
    font-size: 1.35rem;
    font-weight: 800;
}

.sticky-mrp-savings {
    color: #fbbf24;
    font-size: 0.85rem;
    font-weight: 600;
}

.sticky-min-order-status {
    font-size: 0.8rem;
}

.min-order-tag {
    color: #cbd5e1;
}

.min-order-progress {
    color: #fbbf24;
    font-weight: 600;
}

.min-order-success {
    color: #4ade80;
    font-weight: 700;
}

.sticky-actions-col {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-sticky-whatsapp {
    background: #25d366;
    color: #ffffff;
    border: none;
    padding: 0.7rem 1.25rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    white-space: nowrap;
}

.btn-sticky-whatsapp:hover {
    background: #1eb857;
    transform: translateY(-2px);
}

.btn-sticky-checkout {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    border: none;
    padding: 0.7rem 1.4rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4);
    white-space: nowrap;
}

.btn-sticky-checkout:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-2px);
}

.btn-sticky-checkout .btn-arrow {
    transition: transform 0.2s ease;
}

.btn-sticky-checkout:hover .btn-arrow {
    transform: translateX(3px);
}

/* ==========================================================================
   RESPONSIVE LAYOUT ADJUSTMENTS FOR MOBILE & TABLETS
   ========================================================================== */
@media (max-width: 1024px) {
    .brand-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .active-brand-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.4rem;
    }
}

@media (max-width: 768px) {
    .brand-cards-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .brand-section-title {
        font-size: 1.75rem;
    }

    .table-controls-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .category-jump-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .category-jump-select,
    .btn-clear-cart-table {
        width: 100%;
    }

    .sticky-bar-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
    }

    .sticky-actions-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .btn-sticky-whatsapp,
    .btn-sticky-checkout {
        justify-content: center;
        padding: 0.65rem 0.5rem;
        font-size: 0.85rem;
    }

    .wholesale-table-section {
        padding-bottom: 9rem;
    }
}

@media (max-width: 480px) {

    .th-mrp,
    .td-mrp {
        display: none;
    }

    .wholesale-price-table th,
    .wholesale-price-table td {
        padding: 0.65rem 0.5rem;
        font-size: 0.82rem;
    }

    .prod-eng-name {
        font-size: 0.86rem;
    }

    .prod-tamil-name {
        font-size: 0.75rem;
    }

    .btn-qty-minus,
    .btn-qty-plus {
        width: 28px;
        height: 28px;
    }

    .qty-numeric-input {
        width: 32px;
        height: 28px;
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   UNIVERSAL UPI QR CODE SCANNER STYLING (CHECKOUT MODAL)
   ========================================================================== */
.upi-qr-display-box {
    background: #f8fafc;
    border: 2px solid #cbd5e1;
    border-radius: 14px;
    padding: 1.25rem;
    margin: 0.75rem 0 1.25rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.upi-qr-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.qr-pulse-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: qrPulse 1.8s infinite;
}

@keyframes qrPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.upi-qr-body {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.upi-qr-frame {
    background: #ffffff;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.upi-qr-code-img {
    width: 160px;
    height: 160px;
    display: block;
    border-radius: 6px;
    object-fit: contain;
}

.upi-qr-instructions {
    flex: 1;
    min-width: 220px;
}

.qr-amount-row {
    font-size: 0.95rem;
    color: #334155;
    margin-bottom: 0.4rem;
}

.qr-amount-row strong {
    color: #059669;
    font-size: 1.4rem;
    margin-left: 0.35rem;
}

.upi-id-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.82rem;
    margin-bottom: 0.75rem;
}

.upi-id-pill strong {
    color: #0f172a;
    font-family: monospace;
}

.btn-copy-upi {
    background: #e2e8f0;
    border: none;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-copy-upi:hover {
    background: #cbd5e1;
}

.qr-hint-text {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 0.6rem;
}

.utr-input {
    background: #ffffff;
    border: 2px solid #cbd5e1;
    font-size: 0.88rem;
    font-family: monospace;
    padding: 0.55rem 0.85rem;
}

.utr-input:focus {
    border-color: #059669;
}

/* ==========================================================================
   4-BRAND DISTINCT HERO BANNERS & FULL-PAGE COLOR THEMES
   1. Get pattas 's Crackers: Royal Electric Purple (#7c3aed, #6d28d9, #f5f3ff)
   2. Get pattas Crackers: Emerald Forest Green (#059669, #047857, #ecfdf5)
   3. The Get pattas : Fiery Crimson Get pattas (#dc2626, #b91c1c, #fef2f2)
   4. Get Pattasu: Festive Golden Amber & Crimson (#d97706, #b45309, #fffbeb)
   ========================================================================== */

.brand-dedicated-hero {
    padding: 3.5rem 1.5rem;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.brand-dedicated-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero-brand-heading {
    font-size: 3rem;
    font-weight: 900;
    margin: 0.6rem 0;
    color: #ffffff;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.hero-brand-desc {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.hero-brand-meta-pills {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

/* ----------------------------------------------------
   THEME 1: Get pattas 'S CRACKERS (ROYAL ELECTRIC PURPLE)
   ---------------------------------------------------- */
body[data-brand="Get pattas "] {
    --primary-red: #7c3aed !important;
    --primary-red-dark: #4c1d95 !important;
    --primary-brand: #7c3aed !important;
    --brand-glow: rgba(124, 58, 237, 0.45) !important;
    --brand-bg-light: #f5f3ff !important;
    --brand-border: #a855f7 !important;
}

body[data-brand="Get pattas "] .brand-logo-img {
    border-color: #7c3aed !important;
    box-shadow: 0 0 14px rgba(124, 58, 237, 0.4) !important;
}

body[data-brand="Get pattas "] .brand-name .highlight {
    color: #7c3aed !important;
}

body[data-brand="Get pattas "] .kadai-tag {
    background: linear-gradient(135deg, #7c3aed, #4c1d95) !important;
    border-color: #7c3aed !important;
}

body[data-brand="Get pattas "] .cart-badge {
    background: #7c3aed !important;
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.5) !important;
}

body[data-brand="Get pattas "] .nav-link.active,
body[data-brand="Get pattas "] .nav-link:hover {
    color: #7c3aed !important;
}

body[data-brand="Get pattas "] .brand-dedicated-hero {
    background: linear-gradient(135deg, #1e0b36 0%, #3b0764 35%, #581c87 65%, #7c3aed 100%) !important;
    border-bottom: 5px solid #a855f7 !important;
    box-shadow: 0 12px 36px rgba(124, 58, 237, 0.3) !important;
}

body[data-brand="Get pattas "] .hero-btn-shop {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%) !important;
    border: 1px solid #a855f7 !important;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.45) !important;
}

body[data-brand="Get pattas "] .hero-btn-shop:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #4c1d95 100%) !important;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.6) !important;
}

body[data-brand="Get pattas "] .active-brand-banner {
    background: linear-gradient(135deg, #2e1065 0%, #4c1d95 60%, #1e1b4b 100%) !important;
    border-left: 5px solid #a855f7 !important;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.2) !important;
}

body[data-brand="Get pattas "] .current-brand-badge {
    background: #7c3aed !important;
    color: #ffffff !important;
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.5) !important;
}

body[data-brand="Get pattas "] .category-table-header {
    background: linear-gradient(90deg, #2e1065 0%, #581c87 50%, #7c3aed 100%) !important;
    border-bottom: 2px solid #a855f7 !important;
}

body[data-brand="Get pattas "] .net-price-highlight {
    color: #7c3aed !important;
    font-weight: 800 !important;
}

body[data-brand="Get pattas "] .product-row.row-selected {
    background-color: #f5f3ff !important;
    border-left: 4px solid #7c3aed !important;
}

body[data-brand="Get pattas "] .product-row.row-selected .row-total-val {
    color: #6d28d9 !important;
    font-weight: 800 !important;
}

body[data-brand="Get pattas "] .btn-qty-minus:hover,
body[data-brand="Get pattas "] .btn-qty-plus:hover {
    background: #7c3aed !important;
    color: #ffffff !important;
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.4) !important;
}

body[data-brand="Get pattas "] .btn-sticky-checkout {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%) !important;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5) !important;
}

body[data-brand="Get pattas "] .btn-sticky-checkout:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #4c1d95 100%) !important;
}

body[data-brand="Get pattas "] .category-pill-btn.active {
    background: #7c3aed !important;
    border-color: #7c3aed !important;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3) !important;
}

body[data-brand="Get pattas "] .category-pill-btn.active .pill-badge {
    background: #4c1d95 !important;
    color: #ffffff !important;
}

body[data-brand="Get pattas "] .table-search-box input:focus,
body[data-brand="Get pattas "] .category-jump-select:focus {
    border-color: #7c3aed !important;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.2) !important;
}

body[data-brand="Get pattas "] .upi-qr-display-box {
    border-color: #a855f7 !important;
    background: linear-gradient(145deg, #ffffff 0%, #f5f3ff 100%) !important;
}

body[data-brand="Get pattas "] .upi-copy-btn {
    background: #7c3aed !important;
}

body[data-brand="Get pattas "] .btn-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%) !important;
    border-color: #7c3aed !important;
}

/* ----------------------------------------------------
   THEME 2: Get pattas Crackers (EMERALD GREEN)
   ---------------------------------------------------- */
body[data-brand="muthu"] {
    --primary-red: #059669 !important;
    --primary-red-dark: #064e3b !important;
    --primary-brand: #059669 !important;
    --brand-glow: rgba(5, 150, 105, 0.45) !important;
    --brand-bg-light: #ecfdf5 !important;
    --brand-border: #10b981 !important;
}

body[data-brand="muthu"] .brand-logo-img {
    border-color: #059669 !important;
    box-shadow: 0 0 14px rgba(5, 150, 105, 0.4) !important;
}

body[data-brand="muthu"] .brand-name .highlight {
    color: #059669 !important;
}

body[data-brand="muthu"] .kadai-tag {
    background: linear-gradient(135deg, #059669, #064e3b) !important;
    border-color: #059669 !important;
}

body[data-brand="muthu"] .cart-badge {
    background: #059669 !important;
    box-shadow: 0 0 8px rgba(5, 150, 105, 0.5) !important;
}

body[data-brand="muthu"] .nav-link.active,
body[data-brand="muthu"] .nav-link:hover {
    color: #059669 !important;
}

body[data-brand="muthu"] .brand-dedicated-hero {
    background: linear-gradient(135deg, #022c22 0%, #064e3b 35%, #047857 65%, #059669 100%) !important;
    border-bottom: 5px solid #10b981 !important;
    box-shadow: 0 12px 36px rgba(5, 150, 105, 0.3) !important;
}

body[data-brand="muthu"] .hero-btn-shop {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    border: 1px solid #10b981 !important;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.45) !important;
}

body[data-brand="muthu"] .hero-btn-shop:hover {
    background: linear-gradient(135deg, #047857 0%, #064e3b 100%) !important;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.6) !important;
}

body[data-brand="muthu"] .active-brand-banner {
    background: linear-gradient(135deg, #022c22 0%, #064e3b 60%, #0f172a 100%) !important;
    border-left: 5px solid #10b981 !important;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.2) !important;
}

body[data-brand="muthu"] .current-brand-badge {
    background: #059669 !important;
    color: #ffffff !important;
    box-shadow: 0 0 10px rgba(5, 150, 105, 0.5) !important;
}

body[data-brand="muthu"] .category-table-header {
    background: linear-gradient(90deg, #022c22 0%, #064e3b 50%, #059669 100%) !important;
    border-bottom: 2px solid #10b981 !important;
}

body[data-brand="muthu"] .net-price-highlight {
    color: #059669 !important;
    font-weight: 800 !important;
}

body[data-brand="muthu"] .product-row.row-selected {
    background-color: #ecfdf5 !important;
    border-left: 4px solid #059669 !important;
}

body[data-brand="muthu"] .product-row.row-selected .row-total-val {
    color: #047857 !important;
    font-weight: 800 !important;
}

body[data-brand="muthu"] .btn-qty-minus:hover,
body[data-brand="muthu"] .btn-qty-plus:hover {
    background: #059669 !important;
    color: #ffffff !important;
    box-shadow: 0 0 10px rgba(5, 150, 105, 0.4) !important;
}

body[data-brand="muthu"] .btn-sticky-checkout {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.5) !important;
}

body[data-brand="muthu"] .btn-sticky-checkout:hover {
    background: linear-gradient(135deg, #047857 0%, #064e3b 100%) !important;
}

body[data-brand="muthu"] .category-pill-btn.active {
    background: #059669 !important;
    border-color: #059669 !important;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3) !important;
}

body[data-brand="muthu"] .category-pill-btn.active .pill-badge {
    background: #022c22 !important;
    color: #ffffff !important;
}

body[data-brand="muthu"] .table-search-box input:focus,
body[data-brand="muthu"] .category-jump-select:focus {
    border-color: #059669 !important;
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.2) !important;
}

body[data-brand="muthu"] .upi-qr-display-box {
    border-color: #10b981 !important;
    background: linear-gradient(145deg, #ffffff 0%, #ecfdf5 100%) !important;
}

body[data-brand="muthu"] .upi-copy-btn {
    background: #059669 !important;
}

body[data-brand="muthu"] .btn-primary {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    border-color: #059669 !important;
}

/* ----------------------------------------------------
   THEME 3: THE Get pattas  (FIERY CRIMSON RED)
   ---------------------------------------------------- */
body[data-brand="red"] {
    --primary-red: #dc2626 !important;
    --primary-red-dark: #7f1d1d !important;
    --primary-brand: #dc2626 !important;
    --brand-glow: rgba(220, 38, 38, 0.45) !important;
    --brand-bg-light: #fef2f2 !important;
    --brand-border: #ef4444 !important;
}

body[data-brand="red"] .brand-logo-img {
    border-color: #dc2626 !important;
    box-shadow: 0 0 14px rgba(220, 38, 38, 0.4) !important;
}

body[data-brand="red"] .brand-name .highlight {
    color: #dc2626 !important;
}

body[data-brand="red"] .kadai-tag {
    background: linear-gradient(135deg, #dc2626, #7f1d1d) !important;
    border-color: #dc2626 !important;
}

body[data-brand="red"] .cart-badge {
    background: #dc2626 !important;
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.5) !important;
}

body[data-brand="red"] .nav-link.active,
body[data-brand="red"] .nav-link:hover {
    color: #dc2626 !important;
}

body[data-brand="red"] .brand-dedicated-hero {
    background: linear-gradient(135deg, #2b0606 0%, #450a0a 35%, #7f1d1d 65%, #dc2626 100%) !important;
    border-bottom: 5px solid #ef4444 !important;
    box-shadow: 0 12px 36px rgba(220, 38, 38, 0.3) !important;
}

body[data-brand="red"] .hero-btn-shop {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
    border: 1px solid #ef4444 !important;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.45) !important;
}

body[data-brand="red"] .hero-btn-shop:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%) !important;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6) !important;
}

body[data-brand="red"] .active-brand-banner {
    background: linear-gradient(135deg, #450a0a 0%, #7f1d1d 60%, #0f172a 100%) !important;
    border-left: 5px solid #ef4444 !important;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.2) !important;
}

body[data-brand="red"] .current-brand-badge {
    background: #dc2626 !important;
    color: #ffffff !important;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5) !important;
}

body[data-brand="red"] .category-table-header {
    background: linear-gradient(90deg, #450a0a 0%, #991b1b 50%, #dc2626 100%) !important;
    border-bottom: 2px solid #ef4444 !important;
}

body[data-brand="red"] .net-price-highlight {
    color: #dc2626 !important;
    font-weight: 800 !important;
}

body[data-brand="red"] .product-row.row-selected {
    background-color: #fef2f2 !important;
    border-left: 4px solid #dc2626 !important;
}

body[data-brand="red"] .product-row.row-selected .row-total-val {
    color: #b91c1c !important;
    font-weight: 800 !important;
}

body[data-brand="red"] .btn-qty-minus:hover,
body[data-brand="red"] .btn-qty-plus:hover {
    background: #dc2626 !important;
    color: #ffffff !important;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.4) !important;
}

body[data-brand="red"] .btn-sticky-checkout {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5) !important;
}

body[data-brand="red"] .btn-sticky-checkout:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%) !important;
}

body[data-brand="red"] .category-pill-btn.active {
    background: #dc2626 !important;
    border-color: #dc2626 !important;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3) !important;
}

body[data-brand="red"] .category-pill-btn.active .pill-badge {
    background: #7f1d1d !important;
    color: #ffffff !important;
}

body[data-brand="red"] .table-search-box input:focus,
body[data-brand="red"] .category-jump-select:focus {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.2) !important;
}

body[data-brand="red"] .upi-qr-display-box {
    border-color: #ef4444 !important;
    background: linear-gradient(145deg, #ffffff 0%, #fef2f2 100%) !important;
}

body[data-brand="red"] .upi-copy-btn {
    background: #dc2626 !important;
}

body[data-brand="red"] .btn-primary {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
    border-color: #dc2626 !important;
}

/* ----------------------------------------------------
   THEME 4: GET PATTASU (FESTIVE GOLDEN AMBER)
   ---------------------------------------------------- */
body[data-brand="getpattasu"] {
    --primary-red: #d97706 !important;
    --primary-red-dark: #78350f !important;
    --primary-brand: #d97706 !important;
    --brand-glow: rgba(217, 119, 6, 0.45) !important;
    --brand-bg-light: #fffbeb !important;
    --brand-border: #f59e0b !important;
}

body[data-brand="getpattasu"] .brand-logo-img {
    border-color: #d97706 !important;
    box-shadow: 0 0 14px rgba(217, 119, 6, 0.4) !important;
}

body[data-brand="getpattasu"] .brand-name .highlight {
    color: #d97706 !important;
}

body[data-brand="getpattasu"] .kadai-tag {
    background: linear-gradient(135deg, #d97706, #78350f) !important;
    border-color: #d97706 !important;
}

body[data-brand="getpattasu"] .cart-badge {
    background: #d97706 !important;
    box-shadow: 0 0 8px rgba(217, 119, 6, 0.5) !important;
}

body[data-brand="getpattasu"] .nav-link.active,
body[data-brand="getpattasu"] .nav-link:hover {
    color: #d97706 !important;
}

body[data-brand="getpattasu"] .brand-dedicated-hero {
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

body[data-brand="getpattasu"] .hero-btn-shop {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
    border: 1px solid #f59e0b !important;
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45) !important;
}

body[data-brand="getpattasu"] .hero-btn-shop:hover {
    background: linear-gradient(135deg, #b45309 0%, #78350f 100%) !important;
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.6) !important;
}

body[data-brand="getpattasu"] .active-brand-banner {
    background: linear-gradient(135deg, #451a03 0%, #78350f 60%, #0f172a 100%) !important;
    border-left: 5px solid #f59e0b !important;
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.2) !important;
}

body[data-brand="getpattasu"] .current-brand-badge {
    background: #d97706 !important;
    color: #ffffff !important;
    box-shadow: 0 0 10px rgba(217, 119, 6, 0.5) !important;
}

body[data-brand="getpattasu"] .category-table-header {
    background: linear-gradient(90deg, #451a03 0%, #92400e 50%, #d97706 100%) !important;
    border-bottom: 2px solid #f59e0b !important;
}

body[data-brand="getpattasu"] .net-price-highlight {
    color: #d97706 !important;
    font-weight: 800 !important;
}

body[data-brand="getpattasu"] .product-row.row-selected {
    background-color: #fffbeb !important;
    border-left: 4px solid #d97706 !important;
}

body[data-brand="getpattasu"] .product-row.row-selected .row-total-val {
    color: #b45309 !important;
    font-weight: 800 !important;
}

body[data-brand="getpattasu"] .btn-qty-minus:hover,
body[data-brand="getpattasu"] .btn-qty-plus:hover {
    background: #d97706 !important;
    color: #ffffff !important;
    box-shadow: 0 0 10px rgba(217, 119, 6, 0.4) !important;
}

body[data-brand="getpattasu"] .btn-sticky-checkout {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.5) !important;
}

body[data-brand="getpattasu"] .btn-sticky-checkout:hover {
    background: linear-gradient(135deg, #b45309 0%, #78350f 100%) !important;
}

body[data-brand="getpattasu"] .category-pill-btn.active {
    background: #d97706 !important;
    border-color: #d97706 !important;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3) !important;
}

body[data-brand="getpattasu"] .category-pill-btn.active .pill-badge {
    background: #78350f !important;
    color: #ffffff !important;
}

body[data-brand="getpattasu"] .table-search-box input:focus,
body[data-brand="getpattasu"] .category-jump-select:focus {
    border-color: #d97706 !important;
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.2) !important;
}

body[data-brand="getpattasu"] .upi-qr-display-box {
    border-color: #f59e0b !important;
    background: linear-gradient(145deg, #ffffff 0%, #fffbeb 100%) !important;
}

body[data-brand="getpattasu"] .upi-copy-btn {
    background: #d97706 !important;
}

body[data-brand="getpattasu"] .btn-primary {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
    border-color: #d97706 !important;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE FIXES — ALL PAGES (Mobile-First)
   ========================================================================== */

/* ---------- TABLET (≤1024px) ---------- */
@media (max-width: 1024px) {
    .brand-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .hero-brand-heading {
        font-size: clamp(2rem, 5vw, 3.2rem);
    }

    .container {
        padding: 0 1rem;
    }

    .announcement-track {
        font-size: 0.78rem;
    }
}

/* ---------- TABLET PORTRAIT (≤860px) ---------- */
@media (max-width: 860px) {

    /* Keep brand logo readable */
    .logo-text {
        max-width: 160px;
    }

    .brand-name {
        font-size: 1rem;
        flex-wrap: wrap;
    }

    /* Hero section */
    .brand-dedicated-hero {
        padding: 3rem 0 2.5rem;
    }

    .hero-brand-heading {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
        text-align: center;
    }

    .hero-brand-desc {
        text-align: center;
        font-size: 0.95rem;
    }

    .hero-brand-meta-pills {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .hero-quick-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-quick-actions .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* Brand switcher */
    .brand-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }

    /* Wholesale table — enable horizontal scroll */
    .wholesale-table-wrapper,
    .catalog-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 12px;
    }

    /* Cart drawer wider on tablet */
    .cart-drawer {
        width: 360px;
    }
}

/* ---------- MOBILE (≤600px) ---------- */
@media (max-width: 600px) {

    /* Header */
    .header-container {
        padding: 0.45rem 0.75rem;
        gap: 0.6rem;
    }

    .brand-logo-img {
        width: 36px;
        height: 36px;
    }

    .brand-name {
        font-size: 0.95rem;
    }

    .brand-sub {
        display: none;
    }

    .cart-trigger-btn .cart-text {
        display: none;
    }

    .cart-trigger-btn {
        padding: 0.45rem 0.65rem;
        border-radius: 50%;
        gap: 0;
    }

    /* Hero */
    .brand-dedicated-hero {
        padding: 2.5rem 0 2rem;
    }

    .section-tag {
        font-size: 0.72rem;
        padding: 0.3rem 0.8rem;
    }

    .hero-brand-heading {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }

    .hero-brand-desc {
        font-size: 0.88rem;
    }

    .hero-brand-meta-pills {
        gap: 0.4rem;
    }

    .meta-pill {
        font-size: 0.75rem;
        padding: 0.3rem 0.65rem;
    }

    /* Brand cards — 2 cols on mobile */
    .brand-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.7rem;
    }

    .brand-card-btn {
        padding: 1rem 0.8rem;
        border-radius: 12px;
    }

    .brand-card-icon {
        font-size: 1.6rem;
    }

    .brand-card-name {
        font-size: 0.88rem;
    }

    .brand-card-desc,
    .brand-card-price {
        font-size: 0.75rem;
    }

    .brand-section-title {
        font-size: 1.5rem;
    }

    .brand-section-sub {
        font-size: 0.88rem;
    }

    /* ==========================================================================
     MOBILE RESPONSIVE PRODUCT LIST & CATEGORY ACCORDION (≤768px)
     Replaces wide horizontal-scroll table with touch-friendly responsive cards
     Only applies on mobile - Desktop remains 100% full wholesale table
     ========================================================================== */
    .wholesale-table-section {
        padding-bottom: 10rem;
    }

    /* Hide category horizontal scroll pills on mobile in favor of accordion list & jump dropdown */
    .category-pills-scroll {
        display: none !important;
    }

    .table-controls-bar {
        flex-direction: column !important;
        gap: 0.75rem !important;
        align-items: stretch !important;
    }

    .category-jump-wrapper {
        width: 100% !important;
        display: flex !important;
        gap: 0.5rem !important;
    }

    .category-jump-select {
        flex: 1 !important;
        font-size: 0.88rem !important;
    }

    /* Category Block & Accordion Header */
    .category-table-block {
        border-radius: 12px !important;
        margin-bottom: 0.75rem !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
        overflow: hidden !important;
    }

    .category-table-header {
        padding: 0.85rem 1rem !important;
        cursor: pointer !important;
        user-select: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }

    .cat-header-title h3 {
        font-size: 0.95rem !important;
        line-height: 1.3 !important;
    }

    .cat-header-count {
        font-size: 0.72rem !important;
        padding: 0.15rem 0.5rem !important;
    }

    .cat-accordion-arrow {
        display: inline-flex !important;
    }

    .category-table-block.is-open .cat-accordion-arrow svg {
        transform: rotate(180deg) !important;
    }

    .category-table-block.is-collapsed .category-body-collapse {
        display: none !important;
    }

    .category-table-block.is-open .category-body-collapse {
        display: block !important;
    }

    /* ELIMINATE HORIZONTAL SCROLL ENTIRELY ON MOBILE */
    .table-responsive-wrapper {
        width: 100% !important;
        overflow: visible !important;
    }

    .table-scroll-container {
        overflow-x: visible !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .wholesale-price-table {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        border-collapse: collapse !important;
    }

    .wholesale-price-table thead {
        display: none !important;
    }

    .wholesale-price-table tbody {
        display: block !important;
        width: 100% !important;
    }

    /* Product Row formatted as mobile-friendly responsive card with 0 horizontal scroll */
    .product-row {
        display: grid !important;
        grid-template-columns: 36px 1fr auto !important;
        grid-template-rows: auto auto !important;
        grid-template-areas:
            "sno name pack"
            "price qty total" !important;
        row-gap: 0.55rem !important;
        column-gap: 0.5rem !important;
        align-items: center !important;
        padding: 0.85rem 0.75rem !important;
        border-bottom: 1px solid #f1f5f9 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        background: #ffffff !important;
        transition: background-color 0.15s ease !important;
    }

    .product-row:last-child {
        border-bottom: none !important;
    }

    .product-row.row-selected {
        background-color: #fffbeb !important;
        border-left: 4px solid #f59e0b !important;
    }

    .td-sno {
        grid-area: sno !important;
        width: auto !important;
        min-width: 0 !important;
        padding: 0 !important;
        border: none !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;
    }

    .sno-num {
        font-size: 0.88rem !important;
        font-weight: 800 !important;
        color: #475569 !important;
        margin-right: 0 !important;
        line-height: 1.1 !important;
    }

    .item-code-badge {
        font-size: 0.65rem !important;
        color: #94a3b8 !important;
        line-height: 1.1 !important;
    }

    .td-name {
        grid-area: name !important;
        width: auto !important;
        min-width: 0 !important;
        padding: 0 !important;
        border: none !important;
    }

    .prod-name-box {
        gap: 0.12rem !important;
    }

    .prod-eng-name {
        font-size: 0.88rem !important;
        font-weight: 700 !important;
        color: #0f172a !important;
        line-height: 1.25 !important;
        word-break: break-word !important;
    }

    .prod-tamil-name {
        font-size: 0.78rem !important;
        color: #b45309 !important;
        font-weight: 600 !important;
        line-height: 1.2 !important;
    }

    .td-pack {
        grid-area: pack !important;
        width: auto !important;
        min-width: 0 !important;
        padding: 0 !important;
        border: none !important;
        text-align: right !important;
    }

    .pack-badge {
        font-size: 0.72rem !important;
        padding: 0.2rem 0.5rem !important;
        border-radius: 6px !important;
        white-space: nowrap !important;
    }

    .td-mrp {
        display: none !important;
    }

    .mobile-mrp-strike {
        display: inline-block !important;
        color: #94a3b8 !important;
        text-decoration: line-through !important;
        font-size: 0.78rem !important;
        font-weight: 600 !important;
        margin-right: 0.25rem !important;
    }

    .td-net {
        grid-area: price !important;
        width: auto !important;
        min-width: 0 !important;
        padding: 0 !important;
        border: none !important;
        display: flex !important;
        align-items: baseline !important;
        flex-wrap: wrap !important;
        gap: 0.25rem !important;
    }

    .net-price-highlight {
        font-size: 1.05rem !important;
        font-weight: 800 !important;
        margin-right: 0.15rem !important;
    }

    .discount-micro-badge {
        font-size: 0.62rem !important;
        padding: 0.1rem 0.35rem !important;
    }

    .td-qty {
        grid-area: qty !important;
        width: auto !important;
        min-width: 0 !important;
        padding: 0 !important;
        border: none !important;
        display: flex !important;
        justify-content: center !important;
    }

    .qty-touch-stepper {
        border-radius: 8px !important;
    }

    .btn-qty-minus,
    .btn-qty-plus {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.95rem !important;
    }

    .qty-numeric-input {
        width: 34px !important;
        height: 30px !important;
        font-size: 0.9rem !important;
    }

    .td-total {
        grid-area: total !important;
        width: auto !important;
        min-width: 0 !important;
        padding: 0 !important;
        border: none !important;
        text-align: right !important;
    }

    .row-total-val {
        font-size: 0.98rem !important;
        font-weight: 800 !important;
    }

    /* Cart drawer full width on phone */
    .cart-drawer {
        width: 100%;
        max-width: 100vw;
        border-radius: 0;
    }

    /* Checkout modal bottom-sheet on phone */
    .checkout-modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .checkout-modal-card {
        border-radius: 20px 20px 0 0;
        height: 94vh;
        height: 94dvh;
        max-height: 94dvh;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .checkout-grid-container {
        grid-template-columns: 1fr;
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 3.5rem;
    }

    /* Sticky bar */
    .sticky-order-bar {
        padding: 0.7rem 0.75rem;
    }

    .sticky-summary-col {
        font-size: 0.8rem;
    }

    .sticky-net-total {
        font-size: 1.1rem;
    }

    .btn-sticky-whatsapp,
    .btn-sticky-checkout {
        font-size: 0.82rem;
        padding: 0.6rem 0.5rem;
    }

    /* Section headings */
    .section-heading {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    .section-sub {
        font-size: 0.9rem;
    }

    /* Reviews */
    .reviews-rating-bar {
        padding: 1rem;
        gap: 0.75rem;
    }

    /* Safety */
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .safety-card {
        padding: 1.3rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Combo offer banners */
    .combo-banner-card {
        grid-template-columns: 1fr;
    }

    .banner-img-holder {
        height: 180px;
    }

    /* Contact form */
    .contact-form {
        padding: 1.2rem 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Modals */
    .modal-card {
        margin: 0.5rem;
        border-radius: 16px;
    }

    .customer-modal-card,
    .estimate-modal-card {
        width: calc(100vw - 1rem);
        max-width: 100%;
        border-radius: 16px;
        margin: 0.5rem;
    }
}

/* ---------- SMALL MOBILE (≤480px) ---------- */
@media (max-width: 480px) {
    .brand-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .brand-card-btn {
        padding: 0.85rem 0.65rem;
    }

    .hero-brand-heading {
        font-size: 1.5rem;
    }

    .prod-eng-name {
        font-size: 0.85rem;
        line-height: 1.25;
    }

    .prod-tamil-name {
        font-size: 0.74rem;
    }

    .btn-qty-minus,
    .btn-qty-plus {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.9rem !important;
    }

    .qty-numeric-input {
        width: 32px !important;
        height: 28px !important;
        font-size: 0.85rem !important;
    }

    .announcement-track span:not(:first-child) {
        display: none;
    }

    .announcement-track {
        justify-content: center;
    }

    /* Cart items */
    .cart-item-img {
        width: 50px;
        height: 50px;
    }

    .cart-item-name {
        font-size: 0.85rem;
    }

    .upi-qr-img {
        max-width: 140px;
    }
}

/* ---------- VERY SMALL MOBILE (≤360px) ---------- */
@media (max-width: 360px) {
    .brand-name {
        font-size: 0.85rem;
    }

    .kadai-tag {
        display: none;
    }

    .brand-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .brand-card-btn {
        padding: 0.7rem 0.5rem;
    }

    .brand-card-icon {
        font-size: 1.4rem;
    }

    .brand-card-name {
        font-size: 0.8rem;
    }

    .hero-brand-heading {
        font-size: 1.35rem;
    }

    .btn-sticky-whatsapp span:last-child,
    .btn-sticky-checkout span:last-child {
        display: none;
    }

    .cart-trigger-btn .cart-badge {
        width: 17px;
        height: 17px;
        font-size: 0.65rem;
    }
}

/* ---------- ADMIN RESPONSIVE FIXES ---------- */
@media (max-width: 768px) {
    .app-layout {
        flex-direction: column;
    }

    .app-sidebar {
        width: 100%;
        height: auto;
        position: static;
        flex-direction: row;
        overflow-x: auto;
        padding: 0.5rem;
        gap: 0.25rem;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .sidebar-brand {
        display: none;
    }

    .sidebar-menu {
        display: flex;
        flex-direction: row;
        gap: 0.25rem;
        width: 100%;
    }

    .menu-item {
        flex-direction: column;
        gap: 0.2rem;
        padding: 0.5rem 0.7rem;
        font-size: 0.7rem;
        border-radius: 8px;
        min-width: 56px;
        flex-shrink: 0;
    }

    .menu-label {
        display: block;
        font-size: 0.65rem;
    }

    .sidebar-user {
        display: none;
    }

    .app-workspace {
        margin-left: 0;
    }

    .workspace-topbar {
        padding: 0.75rem 1rem;
    }

    .topbar-title {
        font-size: 1rem;
    }

    .workspace-content {
        padding: 1rem;
    }

    .metrics-row-6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .orders-table-wrapper {
        overflow-x: auto;
    }

    .orders-table th,
    .orders-table td {
        padding: 0.6rem 0.5rem;
        font-size: 0.82rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .app-sidebar {
        padding: 0.4rem 0.3rem;
    }

    .menu-item {
        padding: 0.4rem 0.5rem;
        min-width: 48px;
    }

    .menu-icon svg {
        width: 18px;
        height: 18px;
    }

    .menu-label {
        font-size: 0.6rem;
    }

    .metrics-row-6 {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .metric-card {
        padding: 0.85rem;
    }

    .metric-value {
        font-size: 1.3rem;
    }

    .workspace-content {
        padding: 0.75rem;
    }
}

/* ---------- 100% FULL-WIDTH / FULL-SCREEN HERO BANNER STYLING ---------- */
.brand-dedicated-hero {
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
    background: transparent !important;
    width: 100% !important;
}

.hero-full-width-banner {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    overflow: hidden;
    background: transparent !important;
}

.hero-full-width-banner picture {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
}

.hero-full-banner-img {
    width: 100% !important;
    width: 100vw !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    object-fit: cover;
}

@media (max-width: 768px) {
    .brand-dedicated-hero {
        padding: 0 !important;
        margin: 0 !important;
    }

    .hero-full-banner-img {
        width: 100% !important;
        width: 100vw !important;
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain;
    }
}

/* ---------- PRINT HIDE INTERACTIVE ELEMENTS ---------- */
@media print {

    .main-header,
    .sticky-order-bar,
    .cart-drawer,
    .mobile-toggle,
    .announcement-bar {
        display: none !important;
    }
}

/* ==========================================================================
   FONT AWESOME ENHANCEMENTS & ALIGNMENTS
   ========================================================================== */
.auth-icon,
.cart-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.auth-icon i,
.cart-icon i {
    font-size: 1rem;
    line-height: 1;
}

.search-icon i {
    font-size: 0.95rem;
    color: #94a3b8;
}

.btn i,
.btn-primary i,
.btn-secondary i,
.btn-whatsapp i,
.btn-sticky-whatsapp i,
.btn-sticky-checkout i {
    margin-right: 0.35rem;
    vertical-align: -0.05em;
}

.meta-pill i {
    margin-right: 0.3rem;
    vertical-align: -0.05em;
}

.f-badge i {
    margin-right: 0.35rem;
    vertical-align: -0.05em;
}

.f-icon i,
.info-icon i {
    line-height: 1;
}

.wa-icon i {
    line-height: 1;
    color: #25d366;
}

.payment-icon i {
    font-size: 1.15rem;
}

.trust-icon i {
    font-size: 1.25rem;
    color: #16a34a;
}

.mobile-close-btn i,
.modal-close-btn i,
.policy-modal-close-btn i,
.close-cart-btn i,
.search-clear-btn i {
    font-size: 0.9rem;
    line-height: 1;
}

.brand-card-icon i {
    display: inline-block;
    line-height: 1;
}

/* ==========================================
   ORDER CONFIRMED MODAL STYLING
   ========================================== */
.order-confirmed-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 1rem;
}

.order-confirmed-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.order-confirmed-card {
    background: #ffffff;
    border-radius: 24px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.05);
    transform: scale(0.92) translateY(20px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.order-confirmed-modal-overlay.active .order-confirmed-card {
    transform: scale(1) translateY(0);
}

.confirmed-success-header {
    background: linear-gradient(135deg, #065f46 0%, #047857 50%, #059669 100%);
    color: #ffffff;
    padding: 2.2rem 1.8rem 1.6rem;
    text-align: center;
    position: relative;
    border-top-left-radius: 23px;
    border-top-right-radius: 23px;
}

.success-animated-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    animation: popSuccess 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes popSuccess {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.confirmed-success-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.confirmed-tamil-subtitle {
    font-size: 0.92rem;
    font-weight: 600;
    color: #a7f3d0;
    margin-bottom: 0.8rem;
}

.confirmed-order-id-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-family: monospace;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.confirmed-card-body {
    padding: 1.5rem;
}

.confirmed-summary-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.1rem;
    margin-bottom: 1.2rem;
}

.confirmed-summary-box .summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 0.86rem;
    color: #475569;
}

.confirmed-summary-box .summary-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.confirmed-summary-box .summary-row strong {
    color: #0f172a;
    text-align: right;
    max-width: 60%;
    word-break: break-word;
}

.confirmed-summary-box .summary-row.total-highlight {
    padding-top: 0.7rem;
    font-size: 0.98rem;
}

.confirmed-summary-box .highlight-amt {
    font-size: 1.35rem;
    font-weight: 800;
    color: #059669;
}

.confirmed-summary-box .summary-row.status-highlight .status-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #dcfce7;
    color: #15803d;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
}

.status-badge-pill .pulse-dot {
    width: 7px;
    height: 7px;
    background: #16a34a;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.3);
}

.confirmed-next-steps {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    padding: 0.9rem 1rem;
    margin-bottom: 1.3rem;
}

.confirmed-next-steps .step-box {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.confirmed-next-steps i {
    color: #2563eb;
    font-size: 1.3rem;
    margin-top: 2px;
}

.confirmed-next-steps strong {
    display: block;
    color: #1e40af;
    font-size: 0.88rem;
    margin-bottom: 0.2rem;
}

.confirmed-next-steps p {
    color: #3b82f6;
    font-size: 0.8rem;
    line-height: 1.45;
    margin: 0;
}

.confirmed-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-whatsapp-share {
    background: #25d366;
    color: #ffffff;
    border: none;
    padding: 0.85rem 1.2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-share:hover {
    background: #1eb857;
    transform: translateY(-1px);
}

.confirmed-btn-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.btn-print-receipt {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #cbd5e1;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.86rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.2s;
}

.btn-print-receipt:hover {
    background: #e2e8f0;
}

.btn-done-close {
    background: #0f172a;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.86rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.2s;
}

.btn-done-close:hover {
    background: #1e293b;
    transform: translateY(-1px);
}

/* ==========================================================================
   LANDING PAGE DEDICATED STYLES (ABOUT, HIGHLIGHTS & HERO)
   ========================================================================== */
.landing-hero-content {
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    padding: 2.5rem 0 1.5rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.hero-feature-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.hero-pill-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    padding: 0.6rem 1.15rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1e293b;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.hero-pill-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(214, 40, 40, 0.12);
    border-color: #fecaca;
}

.hero-pill-item i {
    color: var(--primary-red);
    font-size: 1rem;
}

/* ==========================================================================
   ABOUT US SECTION (CenteGet pattas Header, Compact Photo & Paragraph Story Flow)
   ========================================================================== */
.about-section {
    padding: 4.5rem 0;
    background: #ffffff;
    position: relative;
}

.about-header-center {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 3rem auto;
}

.about-header-center .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fef2f2;
    color: #dc2626;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #fecaca;
    margin-bottom: 0.75rem;
}

.about-header-center .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 0.6rem;
}

.about-header-center .section-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.6;
}

/* Hide title and subtitle on desktop view in About Us */
@media (min-width: 769px) {
    .about-header-center {
        margin: 0 auto 1.5rem auto;
    }

    .about-header-center .section-title,
    .about-header-center .section-subtitle,
    .hide-on-desktop {
        display: none !important;
    }
}

.about-dual-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 3.5rem;
    align-items: center;
}

@media (max-width: 992px) {
    .about-dual-grid {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }
}

.about-image-column {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.about-image-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.11);
    border: 4px solid #ffffff;
    background: #f8fafc;
    height: 380px;
    max-width: 450px;
    width: 100%;
    transition: all 0.35s ease;
    display: flex;
}

.about-image-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(220, 38, 38, 0.18);
}

.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 18px;
    transition: transform 0.5s ease;
}

.about-image-card:hover img {
    transform: scale(1.04);
}

/* About Right Single Paragraph Flow */
.about-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-single-paragraph {
    font-size: 1.05rem;
    color: #334155;
    font-weight: 400;
    line-height: 1.95;
    letter-spacing: 0.15px;
    text-align: justify;
    text-justify: inter-word;
    margin: 0;
}

.about-single-paragraph strong {
    color: #0f172a;
    font-weight: 700;
}

/* Responsive adjustments for mobile & tablet */
@media (max-width: 992px) {
    .about-section {
        padding: 2.5rem 0 2rem;
    }

    .about-header-center {
        margin-bottom: 1.35rem;
    }

    .about-dual-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .about-image-card {
        max-width: 480px;
        height: 300px;
        margin: 0 auto;
    }

    .about-single-paragraph {
        font-size: 0.98rem;
        line-height: 1.85;
        text-align: justify !important;
        text-justify: inter-word !important;
        hyphens: auto;
        -webkit-hyphens: auto;
        word-break: normal;
        letter-spacing: 0;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 1.85rem 0 1.5rem;
    }

    .about-header-center {
        margin-bottom: 1rem;
    }

    .about-header-center .section-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .about-header-center .section-subtitle {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .about-dual-grid {
        gap: 1.15rem;
    }

    .about-image-card {
        max-width: 100%;
        height: 230px;
        border-radius: 16px;
    }

    .about-single-paragraph {
        font-size: 0.92rem;
        line-height: 1.8;
        text-align: justify !important;
        text-justify: inter-word !important;
        hyphens: auto;
        -webkit-hyphens: auto;
        word-break: normal;
        letter-spacing: 0;
    }
}

.landing-nav-action-btn {
    background: linear-gradient(135deg, #25d366 0%, #16a34a 100%);
    color: #ffffff;
    font-weight: 700;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.2s ease;
    text-decoration: none;
}

.landing-nav-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

/* Mobile responsive gaps and header button corrections */
@media (max-width: 860px) {
    .header-container {
        padding: 0.6rem 1rem;
        gap: 0.75rem;
    }

    .navbar-logo-img {
        height: 42px;
        max-width: 140px;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }

    .landing-nav-action-btn {
        padding: 0.48rem 0.85rem;
        font-size: 0.82rem;
        gap: 0.4rem;
    }

    .landing-hero-content {
        padding: 1.25rem 0 1rem;
    }

    .hero-feature-pills {
        margin-top: 0.5rem;
        gap: 0.5rem;
    }

    .hero-pill-item {
        padding: 0.45rem 0.85rem;
        font-size: 0.78rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }

    .navbar-logo-img {
        height: 38px;
        max-width: 120px;
    }

    .header-actions {
        gap: 0.45rem;
    }

    .landing-nav-action-btn {
        padding: 0.42rem 0.7rem;
        font-size: 0.78rem;
        gap: 0.3rem;
    }

    .hero-feature-pills {
        gap: 0.4rem;
    }

    .hero-pill-item {
        padding: 0.4rem 0.7rem;
        font-size: 0.74rem;
    }
}

/* ==========================================================================
   MAIN FOOTER & CENTEGet pattas KAIRA TECHNOLOGIES CREDIT
   ========================================================================== */
.main-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 4rem 0 1.75rem;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1.2fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }
}

.footer-logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 1.25rem;
}

.footer-desc strong {
    color: #ffffff;
}

.footer-badges-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.f-badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e2e8f0;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.f-badge i {
    color: #22c55e;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.92rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: #f87171;
    padding-left: 4px;
}

.footer-contact-card {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.f-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.f-contact-item .f-icon {
    color: #ef4444;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-wa-btn {
    background: #25d366;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.7rem 1.25rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
    transition: all 0.2s ease;
}

.footer-wa-btn:hover {
    background: #1eb857;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

/* CenteGet pattas Footer Bottom */
.footer-bottom-centeGet pattas {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.75rem;
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.65rem;
}

.footer-copy-text {
    font-size: 0.88rem;
    color: #94a3b8;
    margin: 0;
}

.footer-copy-text strong {
    color: #ffffff;
}

.kaira-credit-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #94a3b8;
    font-size: 0.88rem;
    text-decoration: none;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    transition: all 0.25s ease;
}

.kaira-credit-link:hover {
    background: rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.4);
    color: #ffffff;
    transform: translateY(-1px);
}

.kaira-brand-highlight {
    color: #f87171;
    font-weight: 700;
    letter-spacing: 0.3px;
}