/* ==========================================================================
   HYBRID SYSTEM THEME DESIGN VARIABLES
   ========================================================================== */
:root {
    /* Color Palette from Logo */
    --navy-blue: #1B2B5E;
    --navy-surface: #243860;
    --orange-red: #C0392B;
    --gold: #C8A84B;
    --silver: #9EA7B3;
    
    /* Layout Colors (Alternating Theme) */
    --light-bg: #F5F7FA;
    --white: #FFFFFF;
    --border-light: #E2E8F0;
    --text-navy: #1B2B5E;
    --text-grey-dark: #374151;
    --text-grey-muted: #6B7280;
    
    /* WhatsApp Green */
    --whatsapp-green: #25D366;
    
    /* Typography */
    --font-headlines: 'Rajdhani', sans-serif;
    --font-sub: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-hindi: 'Noto Sans Devanagari', sans-serif;
    
    --max-width: 1600px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--transition);
}

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

/* ==========================================================================
   UTILITY LAYOUT CLASSIFIERS
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.gold-transition-divider {
    height: 2px;
    background-color: var(--gold);
    box-shadow: 0 0 8px rgba(200, 168, 75, 0.4);
    width: 100%;
    position: relative;
    z-index: 10;
}

.highlight-red {
    color: var(--orange-red);
}

/* ==========================================================================
   SECTION SYSTEMS (DARK VS LIGHT)
   ========================================================================== */

/* DARK SECTIONS */
.dark-section {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 80px 0;
}

.dark-section .section-title {
    color: var(--white);
}

.dark-section .section-subtitle {
    color: #93A8D4;
}

.dark-section .title-underline {
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
}

/* LIGHT SECTIONS */
.light-section {
    background-color: var(--light-bg);
    color: var(--text-grey-dark);
    padding: 80px 0;
}

.light-section .section-title {
    color: var(--navy-blue);
}

.light-section .section-subtitle {
    color: var(--text-grey-muted);
}

.light-section .title-underline {
    background: var(--orange-red);
    box-shadow: 0 0 10px var(--orange-red);
}

/* TYPOGRAPHY */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-family: var(--font-headlines);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-subtitle {
    font-family: var(--font-sub);
    font-size: 1.05rem;
    font-weight: 500;
}

.title-underline {
    width: 70px;
    height: 4px;
    margin: 16px auto 0 auto;
    border-radius: 2px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-filled {
    background-color: var(--orange-red);
    color: var(--white);
    border: 1px solid var(--orange-red);
}

.btn-filled:hover {
    background-color: #a82e22;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

.btn-outline {
    border: 1px solid var(--white);
    color: var(--white);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-navy {
    background-color: var(--navy-blue);
    color: var(--white);
    border: 1px solid var(--navy-blue);
}

.btn-navy:hover {
    background-color: #142047;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 43, 94, 0.2);
}

.btn-success {
    background-color: var(--whatsapp-green);
    color: var(--white);
    border: 1px solid var(--whatsapp-green);
}

.btn-success:hover {
    background-color: #20ba56;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-orange-red {
    background-color: var(--orange-red);
    color: var(--white);
    border: 1px solid var(--orange-red);
}

.btn-orange-red:hover {
    background-color: #a82e22;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   1. NAVBAR
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--navy-blue);
    border-bottom: 1px solid var(--gold);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: #101a3c;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 12px 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.logo-text-block {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-headlines);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-family: var(--font-headlines);
    font-size: 0.9rem;
    color: var(--orange-red);
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-top: -3px;
}

.nav-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-list {
    display: flex;
    gap: 18px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

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

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

.nav-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--whatsapp-green);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.nav-whatsapp-btn:hover {
    background-color: #20ba56;
    transform: translateY(-1px);
}

/* ==========================================================================
   2. HERO
   ========================================================================== */
.hero {
    position: relative;
    background-color: var(--navy-blue);
    padding: 100px 0 80px 0;
    overflow: hidden;
    color: var(--white);
}

/* Subtle diagonal grid overlay */
.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(255,255,255,0.015) 25%, transparent 25%), 
                      linear-gradient(225deg, rgba(255,255,255,0.015) 25%, transparent 25%), 
                      linear-gradient(45deg, rgba(255,255,255,0.015) 25%, transparent 25%), 
                      linear-gradient(315deg, rgba(255,255,255,0.015) 25%, transparent 25%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    pointer-events: none;
}

.hero-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-logo-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-img {
    max-height: 180px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
}

/* 20+ Years Trust Badge */
.trust-badge-circle {
    display: inline-block;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 6px 20px;
    border-radius: 50px;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-headline {
    font-family: var(--font-headlines);
    font-size: 4.8rem;
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-subheadline {
    font-family: var(--font-sub);
    font-size: 1.2rem;
    color: #93A8D4;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Ribbon Banner */
.ribbon-banner {
    display: inline-block;
    background-color: var(--orange-red);
    color: var(--white);
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    padding: 8px 30px;
    border-radius: 2px;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-trust-line {
    font-family: var(--font-sub);
    color: #93A8D4;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.hindi-trust-tag {
    font-family: var(--font-hindi);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    background-color: rgba(200, 168, 75, 0.1);
    border: 1px dashed var(--gold);
    padding: 6px 20px;
    display: inline-block;
    border-radius: 4px;
    margin-top: 12px;
}

/* ==========================================================================
   3. STATS BAR
   ========================================================================== */
.stats-bar {
    background-color: #152347; /* Slightly darker navy */
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-card {
    position: relative;
}

.stats-grid .stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: var(--gold);
    opacity: 0.4;
}

.stat-number {
    font-family: var(--font-headlines);
    font-size: 3.2rem;
    line-height: 1;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
}

.stat-label {
    font-family: var(--font-sub);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   4. STEEL PRODUCTS (LIGHT)
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* White cards on light background */
.products-section .product-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 32px 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.products-section .product-icon {
    font-size: 2.2rem;
    color: var(--navy-blue);
    margin-bottom: 16px;
    transition: var(--transition);
}

.products-section .product-name {
    font-family: var(--font-sub);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-blue);
    text-transform: uppercase;
}

/* Hover: Navy Blue border glow and lift */
.products-section .product-card:hover {
    transform: translateY(-5px);
    border-color: var(--navy-blue);
    box-shadow: 0 8px 24px rgba(27, 43, 94, 0.12);
}

.products-section .product-card:hover .product-icon {
    color: var(--orange-red);
}

/* ==========================================================================
   5. SERVICES (DARK)
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Dark surface cards on navy background */
.service-card {
    background-color: var(--navy-surface);
    border-top: 4px solid var(--orange-red);
    border-radius: 4px;
    padding: 40px 32px;
    transition: var(--transition);
    border-left: 1px solid rgba(255,255,255,0.03);
    border-right: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-title {
    font-family: var(--font-sub);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.service-text {
    color: #93A8D4;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Hover: Gold border glow and lift */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(200, 168, 75, 0.15);
}

/* ==========================================================================
   6. WARDROBE RATE LIST (LIGHT)
   ========================================================================== */
.table-container {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--border-light);
    background-color: var(--white);
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    margin-bottom: 24px;
}

.rate-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

/* Navy Blue Header row */
.rate-table th {
    background-color: var(--navy-blue);
    color: var(--white);
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 20px;
}

.rate-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--text-grey-dark);
}

/* Alternating light grey rows */
.rate-table tbody tr:nth-child(even) {
    background-color: #F8FAFC;
}

.rate-table tbody tr:hover {
    background-color: rgba(27, 43, 94, 0.02);
}

.rate-cell {
    font-family: var(--font-sub);
    font-weight: 700;
    color: var(--orange-red);
}

.table-notes {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.note-item {
    font-size: 0.85rem;
    color: var(--text-grey-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.note-item i {
    color: var(--orange-red);
}

/* ==========================================================================
   7. GUARANTEE (DARKEST #0A0A0A)
   ========================================================================== */
.guarantee-section {
    background-color: #0A0A0A;
    padding: 90px 0;
}

.guarantee-banner-wrapper {
    position: relative;
    border: 2px solid var(--orange-red);
    box-shadow: 0 0 35px rgba(192, 57, 43, 0.35); /* Orange-red glowing border */
    padding: 60px 48px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #111111;
}

/* Orange-red ribbon at top */
.guarantee-ribbon {
    position: absolute;
    top: 15px;
    left: -40px;
    background-color: var(--orange-red);
    color: var(--white);
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 6px 40px;
    transform: rotate(-45deg);
    width: 150px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.guarantee-body {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    position: relative;
}

.guarantee-title {
    font-family: var(--font-display);
    font-size: 3.2rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--white);
    margin-bottom: 24px;
}

.guarantee-highlight {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(200, 168, 75, 0.25);
}

.guarantee-description {
    font-family: var(--font-sub);
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 24px;
}

.guarantee-disclaimer {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--silver);
    margin-bottom: 28px;
}

.guarantee-footer-values {
    font-family: var(--font-sub);
    color: var(--silver);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 16px;
    display: inline-block;
}

/* Gold Stamp Badge */
.guarantee-stamp {
    position: absolute;
    bottom: 30px;
    right: 40px;
    transform: rotate(8deg);
}

.stamp-outer-ring {
    width: 120px;
    height: 120px;
    border: 3px double var(--gold);
    border-radius: 50%;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stamp-inner-ring {
    width: 100%;
    height: 100%;
    border: 2px dashed var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-align: center;
}

.stamp-stars {
    font-size: 0.65rem;
    letter-spacing: 1px;
}

.stamp-badge-text {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.stamp-badge-title {
    font-family: var(--font-headlines);
    font-size: 1.3rem;
    font-weight: 700;
}

/* ==========================================================================
   8. WARRANTY (LIGHT)
   ========================================================================== */
.warranty-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.warranty-card {
    background-color: var(--white);
    border-top: 4px solid var(--navy-blue);
    border-left: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 36px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.warranty-icon {
    font-size: 2.2rem;
    color: var(--navy-blue);
    margin-bottom: 16px;
}

.warranty-card-title {
    font-family: var(--font-sub);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.warranty-duration {
    font-family: var(--font-headlines);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange-red);
    line-height: 1.1;
    margin-bottom: 12px;
}

.warranty-detail {
    font-size: 0.9rem;
    color: var(--text-grey-muted);
}

.warranty-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(27, 43, 94, 0.08);
}

/* ==========================================================================
   9. DESERT COOLERS (LIGHT)
   ========================================================================== */
.feature-badges-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 24px 0;
}

.f-badge {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    color: var(--text-grey-dark);
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.f-badge.navy-badge {
    border-color: var(--navy-blue);
    color: var(--navy-blue);
}

.brand-title-eyebrow {
    font-family: var(--font-sub);
    font-size: 1.3rem;
    color: var(--navy-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.badge-dealer {
    background-color: rgba(200, 168, 75, 0.15);
    color: #a38220;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
}

/* Real catalog photo card layout */
.coolers-catalog-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 32px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 40px;
}

.catalog-visual {
    background-color: #fafbfc;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 16px;
}

.catalog-main-image {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
}

.catalog-box-title {
    font-family: var(--font-sub);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 24px;
    border-bottom: 2px solid var(--navy-blue);
    padding-bottom: 12px;
    text-transform: uppercase;
}

.coolers-list-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cooler-model-card {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 12px;
}

.cooler-model-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cooler-number {
    font-family: var(--font-headlines);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--orange-red);
    line-height: 1;
}

.cooler-model-name {
    font-family: var(--font-sub);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-blue);
}

.cooler-tag {
    font-size: 0.85rem;
    color: var(--text-grey-dark);
}

.cooler-variant {
    font-size: 0.8rem;
    color: var(--text-grey-muted);
}

.coolers-highlights-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    background-color: #F8FAFC;
    border: 1px solid var(--border-light);
    padding: 24px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.highlight-item i {
    font-size: 1.8rem;
    color: var(--navy-blue);
    margin-top: 4px;
}

.highlight-item h4 {
    font-family: var(--font-sub);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 4px;
}

.highlight-item p {
    font-size: 0.85rem;
    color: var(--text-grey-muted);
}

.catalog-warranty-notice {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-grey-muted);
    font-weight: 600;
}

/* ==========================================================================
   10. PREMIUM ALMIRAH & 11. SUNRISE PLASTIC CATALOGS (LIGHT)
   ========================================================================== */
.catalog-description-text {
    font-family: var(--font-sub);
    font-size: 0.95rem;
    color: var(--text-grey-dark);
    line-height: 1.6;
}

.color-disclaimer {
    font-size: 0.8rem;
    color: var(--text-grey-muted);
}

.catalog-tabs-bar {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 40px;
    padding-bottom: 8px;
}

.catalog-tabs-bar::-webkit-scrollbar {
    height: 4px;
}

.catalog-tabs-bar::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 2px;
}

.tabs-list {
    display: flex;
    justify-content: center;
    gap: 8px;
    width: max-content;
    margin: 0 auto;
    background-color: var(--white);
    border: 1px solid var(--border-light);
    padding: 6px;
    border-radius: 6px;
}

.tab-btn {
    padding: 10px 20px;
    border-radius: 4px;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--navy-blue);
    white-space: nowrap;
}

.tab-btn:hover {
    background-color: #F1F5F9;
}

.tab-btn.active {
    background-color: var(--navy-blue);
    color: var(--white);
}

/* Panel structures */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeUp 0.35s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    background-color: var(--white);
    border: 1px solid var(--border-light);
    padding: 32px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    align-items: center;
}

.panel-visual {
    background-color: #fafbfc;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 16px;
}

.panel-img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.panel-title-text {
    font-family: var(--font-sub);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--navy-blue);
    padding-bottom: 8px;
    text-transform: uppercase;
}

.table-container-nested {
    width: 100%;
}

.panel-table {
    width: 100%;
    border-collapse: collapse;
}

.panel-table th {
    background-color: #F8FAFC;
    color: var(--navy-blue);
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 10px 14px;
    border-bottom: 2px solid var(--border-light);
}

.panel-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.85rem;
}

.panel-table tbody tr:hover {
    background-color: rgba(27, 43, 94, 0.02);
}

.panel-table td.price-text {
    font-family: var(--font-sub);
    font-weight: 700;
    color: var(--orange-red);
}

.catalog-terms-box {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.85rem;
    color: var(--text-grey-muted);
}

/* ==========================================================================
   12. BOOK SHELVES AND SHOE RACKS (LIGHT)
   ========================================================================== */
.catalog-divider-subtitle {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 40px;
    margin-bottom: 24px;
    text-align: center;
    color: var(--navy-blue);
}

.shelves-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.shelf-product-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    transition: var(--transition);
}

.shelf-product-card:hover {
    transform: translateY(-4px);
    border-color: var(--navy-blue);
    box-shadow: 0 8px 24px rgba(27, 43, 94, 0.12);
}

.shelf-visual {
    background-color: #fafbfc;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 8px;
}

.shelf-image {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
}

.shelf-title {
    font-family: var(--font-sub);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.shelf-tags-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shelf-tags-row span {
    background-color: #F8FAFC;
    border: 1px solid var(--border-light);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Shoe Racks visual */
.shoe-racks-visual-box {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto 32px auto;
}

.shoe-rack-main-visual {
    width: 100%;
    max-height: 350px;
    object-fit: contain;
}

.shoe-racks-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.shoe-view-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.shoe-view-card:hover {
    transform: translateY(-4px);
    border-color: var(--navy-blue);
    box-shadow: 0 8px 24px rgba(27, 43, 94, 0.12);
}

.shoe-view-title {
    font-family: var(--font-sub);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 12px;
}

.shoe-tags {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.shoe-tags span {
    font-size: 0.8rem;
    color: var(--text-grey-muted);
}

.shelves-note-muted {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-grey-muted);
}

/* ==========================================================================
   13. AUTHORIZED BRANDS (DARK)
   ========================================================================== */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.brand-display-card {
    background-color: var(--navy-surface);
    border: 1px solid var(--gold);
    border-radius: 4px;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
}

.brand-display-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(200, 168, 75, 0.2);
}

.brand-display-name {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.brand-display-category {
    font-family: var(--font-sub);
    font-size: 1.1rem;
    color: #93A8D4;
    margin-bottom: 24px;
}

.brand-auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(200, 168, 75, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 20px;
    border-radius: 50px;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
}

/* ==========================================================================
   14. SHOP LOCATIONS (LIGHT)
   ========================================================================== */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.showroom-card {
    background-color: var(--white);
    border: 1px solid var(--navy-blue);
    border-radius: 4px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.showroom-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(27, 43, 94, 0.12);
}

.showroom-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.showroom-header i {
    font-size: 1.6rem;
    color: var(--navy-blue);
}

.showroom-header h3 {
    font-family: var(--font-sub);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-blue);
    text-transform: uppercase;
}

.showroom-address {
    font-size: 0.95rem;
    color: var(--text-grey-dark);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hours-notice-bar {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.hours-line {
    font-family: var(--font-sub);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-blue);
    text-transform: uppercase;
}

.hours-line.closed-line {
    color: var(--orange-red);
    margin-top: 6px;
}

/* ==========================================================================
   15. CONTACT (LIGHT)
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.contact-action-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 36px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.contact-action-card:hover {
    transform: translateY(-4px);
    border-color: var(--navy-blue);
    box-shadow: 0 8px 24px rgba(27, 43, 94, 0.12);
}

.c-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 20px;
}

.bg-navy-light {
    background-color: rgba(27, 43, 94, 0.1);
    color: var(--navy-blue);
}

.bg-green-light {
    background-color: rgba(37, 211, 102, 0.1);
    color: var(--whatsapp-green);
}

.bg-red-light {
    background-color: rgba(192, 57, 43, 0.1);
    color: var(--orange-red);
}

.contact-action-card h4 {
    font-family: var(--font-sub);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 6px;
}

.c-detail {
    font-family: var(--font-sub);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 24px;
}

/* Store policies box */
.store-policies-box {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 36px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.policies-title-text {
    font-family: var(--font-sub);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 24px;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 12px;
    text-transform: uppercase;
}

.policies-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.policy-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.policy-label {
    color: var(--text-grey-muted);
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.policy-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-grey-dark);
}

.policy-value.highlight-red {
    color: var(--orange-red);
}

.policy-value.highlight-blue {
    color: var(--navy-blue);
}

/* ==========================================================================
   16. FOOTER (DARK)
   ========================================================================== */
.footer {
    background-color: var(--navy-blue);
    border-top: 2px solid var(--gold);
    padding: 60px 0 40px 0;
    color: var(--white);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

/* Centered full stacked logo layout */
.footer-logo-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.footer-logo-img {
    max-height: 160px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.footer-tagline-text {
    font-family: var(--font-sub);
    font-size: 0.95rem;
    color: #93A8D4;
}

.f-links-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 16px 0;
}

.f-links-row a {
    color: var(--white);
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.f-links-row a:hover {
    color: var(--gold);
}

.footer-bottom-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.f-phone-display {
    font-family: var(--font-sub);
    font-weight: 700;
    color: var(--gold);
    font-size: 0.9rem;
}

.f-copyright-text {
    color: #93A8D4;
    font-size: 0.8rem;
}

/* ==========================================================================
   FLOATING ELEMENTS
   ========================================================================== */

/* Floating WhatsApp button (Bottom-Right) */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: var(--whatsapp-green);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    z-index: 999;
}

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

.floating-whatsapp-btn i {
    font-size: 1.35rem;
}

/* Floating Scroll to Top button (Bottom-Left) */
.floating-scroll-top-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    background-color: var(--navy-blue);
    border: 1px solid var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(27, 43, 94, 0.3);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.floating-scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.floating-scroll-top-btn:hover {
    transform: scale(1.08) translateY(-2px);
    background-color: #142047;
    box-shadow: 0 6px 15px rgba(27, 43, 94, 0.45);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 3.8rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .panel-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .coolers-catalog-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .shelf-product-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
    
    /* Navbar Hamburger drawer */
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #131f47;
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        display: none;
        max-height: 80vh;
        overflow-y: auto;
        border-bottom: 2px solid var(--gold);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 16px;
    }
    
    .nav-whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Hero */
    .hero-headline {
        font-size: 2.8rem;
    }
    .hero-subheadline {
        font-size: 1.05rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .ribbon-banner {
        padding: 6px 16px;
        font-size: 0.75rem;
    }
    
    /* Grids collapse */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .stats-grid .stat-card:not(:last-child)::after {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .warranty-grid {
        grid-template-columns: 1fr;
    }
    
    .shelves-grid {
        grid-template-columns: 1fr;
    }
    
    .shoe-racks-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .policies-details-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Guarantee box */
    .guarantee-banner-wrapper {
        padding: 40px 24px 120px 24px;
    }
    
    .guarantee-title {
        font-size: 2.2rem;
    }
    
    .guarantee-stamp {
        right: 50%;
        transform: translateX(50%) rotate(4deg);
        bottom: 24px;
    }
    
    .footer-bottom-info {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
}

/* ==========================================================================
   NEW INTERACTIVE CATALOG & E-COMMERCE STYLES
   ========================================================================== */

/* Price Display Rules */
.price-range-tag {
    font-family: var(--font-sub);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--orange-red);
    margin: 8px 0;
    display: inline-block;
}

.starting-price-tag {
    font-family: var(--font-sub);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--orange-red);
    margin: 8px 0;
    display: inline-block;
}

/* Catalog Grid Adjustments */
.catalog-section-new {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.reference-image-container {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 32px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.reference-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

@media (max-width: 768px) {
    .reference-img-row {
        grid-template-columns: 1fr;
    }
}

.reference-image-box {
    background-color: #fafbfc;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reference-image-box.zoomable-box {
    cursor: zoom-in;
    transition: var(--transition);
}

.reference-image-box.zoomable-box:hover {
    border-color: var(--navy-blue);
    box-shadow: 0 4px 15px rgba(27, 43, 94, 0.12);
}

.reference-image-box img {
    max-height: 280px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.reference-image-box.zoomable-box:hover img {
    transform: scale(1.03);
}

.reference-img-row.no-image {
    grid-template-columns: 1fr;
    text-align: center;
}

.reference-img-row.no-image .badge-pill-container {
    justify-content: center;
}

.reference-text-box h4 {
    font-family: var(--font-sub);
    color: var(--navy-blue);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.reference-text-box p {
    font-size: 0.95rem;
    color: var(--text-grey-dark);
    margin-bottom: 16px;
    line-height: 1.6;
}

.badge-pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.badge-pill-navy {
    background-color: rgba(27, 43, 94, 0.08);
    color: var(--navy-blue);
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* Product Cards Grid */
.product-cards-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .product-cards-grid-layout {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .product-cards-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .product-cards-grid-layout {
        grid-template-columns: 1fr;
    }
}

/* Interactive Product Cards */
.product-card-interactive {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 24px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

/* Hover: Navy Blue border glow and lift */
.product-card-interactive:hover {
    transform: translateY(-5px);
    border-color: var(--navy-blue);
    box-shadow: 0 8px 24px rgba(27, 43, 94, 0.15);
}

.product-card-interactive .product-icon-box {
    font-size: 2.2rem;
    color: var(--navy-blue);
    margin-bottom: 12px;
    transition: var(--transition);
}

.product-card-interactive:hover .product-icon-box {
    color: var(--orange-red);
}

.product-card-interactive .product-model-code {
    font-family: var(--font-sub);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-blue);
    text-transform: uppercase;
}

.product-card-interactive .product-desc-label {
    font-size: 0.85rem;
    color: var(--text-grey-muted);
    margin-bottom: 12px;
    font-weight: 500;
}

.card-add-cart-btn {
    background-color: var(--navy-blue);
    color: var(--white);
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 4px;
    width: 100%;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.card-add-cart-btn:hover {
    background-color: var(--orange-red);
    box-shadow: 0 4px 10px rgba(192, 57, 43, 0.25);
}

.material-badge-tag {
    font-size: 0.75rem;
    background-color: rgba(200, 168, 75, 0.12);
    color: #a38220;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.note-muted-grey {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-grey-muted);
    margin-top: 24px;
}

/* Dynamic Specific Cooler Cards Layout */
.coolers-grid-interactive {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .coolers-grid-interactive {
        grid-template-columns: 1fr;
    }
}

.cooler-card-premium {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: center;
    transition: var(--transition);
}

.cooler-card-premium:hover {
    border-color: var(--navy-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(27, 43, 94, 0.12);
}

.cooler-card-visual {
    background-color: #fafbfc;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 8px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cooler-card-visual img {
    max-height: 240px;
    width: auto;
    object-fit: contain;
}

.cooler-card-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.cooler-arrival-badge {
    align-self: flex-start;
    background-color: var(--orange-red);
    color: var(--white);
    font-size: 0.65rem;
    font-family: var(--font-sub);
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.cooler-card-title {
    font-family: var(--font-sub);
    color: var(--navy-blue);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.cooler-features-list {
    margin: 8px 0;
    font-size: 0.8rem;
    color: var(--text-grey-dark);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cooler-features-list li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cooler-features-list li i {
    color: var(--gold);
    font-size: 0.7rem;
}

.cooler-capacity-text {
    font-size: 0.8rem;
    color: var(--text-grey-muted);
    font-weight: 600;
    margin-bottom: 6px;
}

/* ==========================================================================
   SHOPPING CART DRAWER (SLIDE-IN FROM RIGHT)
   ========================================================================== */

/* Cart Icon in Navbar */
.nav-cart-trigger {
    position: relative;
    cursor: pointer;
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 4px;
    background-color: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.nav-cart-trigger:hover {
    background-color: rgba(255,255,255,0.15);
    border-color: var(--gold);
}

.nav-cart-badge {
    background-color: var(--orange-red);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* Cart Drawer Container */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 440px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.25);
    z-index: 1060;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* Cart Header */
.cart-header {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--gold);
}

.cart-header-title {
    font-family: var(--font-headlines);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-close-btn {
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0.8;
    transition: var(--transition);
}

.cart-close-btn:hover {
    color: var(--gold);
    opacity: 1;
}

/* Cart Body */
.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Empty Cart State */
.cart-empty-message {
    margin: auto;
    text-align: center;
    color: var(--text-grey-muted);
}

.cart-empty-message i {
    font-size: 3.5rem;
    color: var(--border-light);
    margin-bottom: 16px;
}

.cart-empty-message p {
    font-family: var(--font-sub);
    font-weight: 600;
    font-size: 1rem;
}

/* Cart Item Card */
.cart-item-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

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

.cart-item-title {
    font-family: var(--font-sub);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-blue);
    text-transform: uppercase;
}

.cart-item-subtitle {
    font-size: 0.8rem;
    color: var(--text-grey-muted);
    margin-top: 2px;
}

.cart-item-price {
    font-family: var(--font-sub);
    color: var(--orange-red);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 4px;
}

.cart-item-qty-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid var(--border-light);
    background-color: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--navy-blue);
}

.qty-btn:hover {
    background-color: var(--navy-blue);
    color: var(--white);
    border-color: var(--navy-blue);
}

.qty-val {
    font-family: var(--font-sub);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-grey-dark);
}

.cart-item-remove {
    color: var(--text-grey-muted);
    font-size: 1.1rem;
    transition: var(--transition);
    padding: 4px;
}

.cart-item-remove:hover {
    color: var(--orange-red);
}

/* Cart Footer */
.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border-light);
    background-color: #F8FAFC;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cart-summary-label {
    font-family: var(--font-sub);
    font-weight: 700;
    color: var(--navy-blue);
    font-size: 1.05rem;
    text-transform: uppercase;
}

.cart-summary-value {
    font-family: var(--font-sub);
    font-weight: 700;
    color: var(--orange-red);
    font-size: 1.35rem;
}

.checkout-btn {
    background-color: var(--orange-red);
    color: var(--white);
    font-family: var(--font-sub);
    font-weight: 700;
    width: 100%;
    padding: 14px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.2);
}

.checkout-btn:hover {
    background-color: #a82e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(192, 57, 43, 0.3);
}

/* Custom Item Call Banner */
.custom-order-banner {
    background-color: var(--navy-surface);
    border-left: 5px solid var(--gold);
    padding: 24px;
    border-radius: 4px;
    margin-top: 20px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .custom-order-banner {
        flex-direction: column;
        text-align: center;
    }
}

.custom-banner-text h4 {
    font-family: var(--font-sub);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.custom-banner-text p {
    font-size: 0.85rem;
    color: #93A8D4;
}

.custom-banner-btn {
    background-color: var(--gold);
    color: var(--navy-blue);
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 4px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(200, 168, 75, 0.2);
}

.custom-banner-btn:hover {
    background-color: var(--white);
    color: var(--navy-blue);
    transform: translateY(-2px);
}

/* Floating cart bubble */
.floating-cart-bubble {
    position: fixed;
    bottom: 96px;
    right: 24px;
    background-color: var(--navy-blue);
    border: 1px solid var(--gold);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 4px 15px rgba(27, 43, 94, 0.35);
    z-index: 997;
    cursor: pointer;
    transition: var(--transition);
}

.floating-cart-bubble:hover {
    transform: scale(1.08) translateY(-2px);
    background-color: var(--orange-red);
    border-color: var(--orange-red);
}

.floating-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--orange-red);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* ==========================================================================
   MODALS UI (CHECKOUT & CUSTOMIZATION)
   ========================================================================== */

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 580px;
    max-height: 90vh;
    background-color: var(--white);
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1110;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-container.open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--gold);
}

.modal-header h3 {
    font-family: var(--font-headlines);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.modal-close {
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--gold);
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

/* Stepper progress in Checkout */
.checkout-stepper {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.step-indicator {
    flex: 1;
    text-align: center;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-grey-muted);
    position: relative;
}

.step-indicator.active {
    color: var(--navy-blue);
}

.step-indicator.completed {
    color: var(--whatsapp-green);
}

/* Step Panels */
.step-panel {
    display: none;
}

.step-panel.active {
    display: block;
    animation: fadeUp 0.3s ease;
}

/* Checkout Form fields */
.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 14px;
}

@media (max-width: 480px) {
    .form-group-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--navy-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 14px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(27, 43, 94, 0.1);
}

/* Payment Methods Grid */
.payment-selector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .payment-selector-grid {
        grid-template-columns: 1fr;
    }
}

.payment-method-card {
    border: 1px solid var(--border-light);
    padding: 16px;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.payment-method-card i {
    font-size: 1.5rem;
    color: var(--text-grey-muted);
}

.payment-method-card span {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.payment-method-card.selected {
    border-color: var(--navy-blue);
    background-color: rgba(27, 43, 94, 0.04);
}

.payment-method-card.selected i {
    color: var(--navy-blue);
}

/* UPI QR Code Container */
.upi-checkout-payment-box {
    text-align: center;
    background-color: #F8FAFC;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 24px;
}

.upi-qr-image-wrapper {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 12px;
    display: inline-block;
    margin-bottom: 12px;
}

.upi-qr-image-wrapper img {
    width: 180px;
    height: 180px;
    display: block;
}

.upi-amount-title {
    font-size: 0.85rem;
    color: var(--text-grey-muted);
}

.upi-amount-value {
    font-family: var(--font-sub);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange-red);
    margin-bottom: 12px;
}

/* Card Mock Form */
.card-details-box {
    background-color: #F8FAFC;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 16px;
}

/* Payment Processing Loading Simulator */
.payment-processing-sim {
    text-align: center;
    padding: 40px 0;
}

.spinner-icon {
    font-size: 3rem;
    color: var(--navy-blue);
    animation: spin 1.2s infinite linear;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Order Success Screen & Receipt */
.receipt-wrapper {
    background-color: #F8FAFC;
    border: 1px dashed var(--border-light);
    border-radius: 4px;
    padding: 24px;
    font-family: monospace;
    font-size: 0.85rem;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
}

.receipt-header {
    text-align: center;
    border-bottom: 1px dashed #bbb;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.receipt-header h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--navy-blue);
    font-family: var(--font-sub);
    font-weight: 700;
}

.receipt-items-table {
    width: 100%;
    margin: 12px 0;
    border-collapse: collapse;
}

.receipt-items-table th {
    text-align: left;
    border-bottom: 1px solid #ddd;
    padding-bottom: 4px;
}

.receipt-items-table td {
    padding: 4px 0;
}

.receipt-total-row {
    border-top: 1px dashed #bbb;
    padding-top: 8px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.modal-footer {
    border-top: 1px solid var(--border-light);
    padding: 18px 24px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background-color: #F8FAFC;
}

.success-ribbon {
    background-color: rgba(37, 211, 102, 0.12);
    color: #1e7039;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid rgba(37, 211, 102, 0.2);
    text-align: center;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ==========================================================================
   BILINGUAL STATE & TOGGLE STYLES
   ========================================================================== */
body.lang-en .lang-hi {
    display: none !important;
}
body.lang-hi .lang-en {
    display: none !important;
}

/* Noto Sans Devanagari styling override for Hindi mode */
body.lang-hi {
    font-family: var(--font-hindi), var(--font-body);
}
body.lang-hi h1, 
body.lang-hi h2, 
body.lang-hi h3, 
body.lang-hi h4, 
body.lang-hi h5, 
body.lang-hi h6,
body.lang-hi .section-title,
body.lang-hi .hero-headline {
    font-family: var(--font-hindi), var(--font-headlines);
}

.lang-toggle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    margin-left: 8px;
}

.lang-toggle-btn {
    background-color: var(--gold);
    color: var(--navy-blue);
    font-family: var(--font-headlines);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 50px; /* Pill */
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.lang-toggle-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(200, 168, 75, 0.3);
}

.lang-toggle-btn .lang-opt {
    transition: var(--transition);
    opacity: 0.5; /* Inactive is muted */
    color: #5D4000; /* Muted gold/brown text */
}

.lang-toggle-btn .lang-opt.active {
    opacity: 1;
    color: var(--navy-blue); /* Highlighted in navy blue */
    font-weight: 800;
}

.lang-toggle-btn .lang-divider {
    color: var(--navy-blue);
    opacity: 0.3;
}

.lang-toggle-note {
    font-size: 0.65rem;
    color: var(--silver);
    font-family: var(--font-body);
    text-transform: none;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

/* ==========================================================================
   CUSTOM SECTION BANNER
   ========================================================================== */
.custom-section-banner {
    background-color: var(--navy-blue);
    border-left: 5px solid var(--orange-red);
    padding: 28px;
    border-radius: 4px;
    margin: 32px auto 0 auto;
    max-width: var(--max-width);
    width: calc(100% - 48px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    box-shadow: 0 4px 15px rgba(27, 43, 94, 0.15);
}

@media (max-width: 768px) {
    .custom-section-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }
}

.custom-section-banner-text {
    flex: 1;
    text-align: left;
}

@media (max-width: 768px) {
    .custom-section-banner-text {
        text-align: center;
    }
}

.custom-section-banner-text h4 {
    font-family: var(--font-sub);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.custom-section-banner-text p {
    font-size: 0.9rem;
    color: #93A8D4;
    line-height: 1.5;
}

.custom-section-banner-btn {
    background-color: var(--orange-red);
    color: var(--white);
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 4px;
    white-space: nowrap;
    border: 1px solid var(--orange-red);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(192, 57, 43, 0.25);
    transition: var(--transition);
}

.custom-section-banner-btn:hover {
    background-color: #a82e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(192, 57, 43, 0.45);
}

/* ==========================================================================
   19. CUSTOMER REVIEWS SECTION
   ========================================================================== */
.reviews-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.reviews-grid-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 36px;
    margin-bottom: 48px;
    align-items: start;
}

@media (max-width: 992px) {
    .reviews-grid-container {
        grid-template-columns: 1fr;
    }
}

/* Rating Summary Card */
.rating-summary-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.summary-score-large {
    font-family: var(--font-headlines);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--navy-blue);
    line-height: 1;
    margin-bottom: 8px;
}

.summary-stars-row {
    color: #F1C40F; /* Gold color */
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.summary-label-text {
    font-size: 0.9rem;
    color: var(--text-grey-muted);
    font-weight: 500;
    margin-bottom: 24px;
}

.rating-breakdown-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.breakdown-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-grey-dark);
}

.breakdown-label {
    width: 50px;
    text-align: left;
    white-space: nowrap;
    font-weight: 600;
}

.breakdown-bar-outer {
    flex: 1;
    height: 8px;
    background-color: #E2E8F0;
    border-radius: 4px;
    overflow: hidden;
}

.breakdown-bar-inner {
    height: 100%;
    background-color: #F1C40F; /* Gold fill */
    border-radius: 4px;
}

.breakdown-percent {
    width: 35px;
    text-align: right;
    font-weight: 700;
    color: var(--text-grey-muted);
}

/* Review Submission Form Card */
.review-form-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 36px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.review-form-title {
    font-family: var(--font-sub);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 24px;
    text-transform: uppercase;
}

/* Progressive Star Input */
.star-rating-input-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.star-rating-label-desc {
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--navy-blue);
}

.star-input-group {
    display: flex;
    gap: 6px;
    font-size: 1.75rem;
    color: #CBD5E1; /* Muted slate gray */
    cursor: pointer;
}

.star-input-group .star-icon {
    transition: color 0.15s ease, transform 0.1s ease;
}

.star-input-group .star-icon:hover {
    transform: scale(1.15);
}

.star-input-group .star-icon.hovered,
.star-input-group .star-icon.selected {
    color: #F1C40F; /* Golden yellow */
}

.star-feedback-text {
    font-family: var(--font-sub);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy-blue);
    min-width: 80px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-success-msg {
    display: none;
    margin-top: 16px;
    background-color: rgba(37, 211, 102, 0.12);
    color: #1e7039;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid rgba(37, 211, 102, 0.2);
    text-align: center;
    font-weight: 700;
}

/* Reviews Display Grid */
.reviews-display-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .reviews-display-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .reviews-display-grid {
        grid-template-columns: 1fr;
    }
}

.review-display-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.01);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    transition: var(--transition);
}

.review-display-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.03);
    border-color: var(--gold);
}

.review-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.review-buyer-name {
    font-family: var(--font-sub);
    font-weight: 700;
    color: var(--navy-blue);
    font-size: 0.95rem;
}

.verified-buyer-badge {
    background-color: rgba(37, 211, 102, 0.08);
    color: var(--whatsapp-green);
    font-size: 0.65rem;
    font-family: var(--font-sub);
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified-buyer-badge::before {
    content: "✓";
    font-weight: 900;
}

.review-card-stars {
    color: #F1C40F;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 8px;
}

.review-rating-num {
    margin-left: 6px;
    font-size: 0.75rem;
    color: var(--text-grey-muted);
    font-weight: 700;
}

.review-product-tag {
    display: inline-block;
    font-family: var(--font-sub);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy-blue);
    background-color: rgba(27, 43, 94, 0.06);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.review-card-body {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-grey-dark);
    margin-bottom: 16px;
    font-style: italic;
}

.review-card-date {
    font-size: 0.75rem;
    color: var(--text-grey-muted);
    font-weight: 500;
    border-top: 1px solid #F1F5F9;
    padding-top: 10px;
    margin-top: auto;
}

/* ==========================================================================
   20. FULLSCREEN LIGHTBOX MODAL SYSTEM
   ========================================================================== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.94);
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
    user-select: none;
    overflow: hidden;
}

/* Close Button */
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2.8rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 100001;
    transition: color 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
    color: var(--white);
    transform: scale(1.1);
}

/* Nav Arrows */
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 1.5rem;
    padding: 18px 22px;
    border-radius: 4px;
    cursor: pointer;
    z-index: 100001;
    transition: background 0.2s, transform 0.2s;
    outline: none;
}

.lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.05);
}

.lightbox-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.lightbox-arrow-left {
    left: 24px;
}

.lightbox-arrow-right {
    right: 24px;
}

@media (max-width: 768px) {
    .lightbox-arrow {
        padding: 12px 16px;
        font-size: 1.2rem;
    }
    .lightbox-arrow-left {
        left: 12px;
    }
    .lightbox-arrow-right {
        right: 12px;
    }
}

/* Content Wrapper */
.lightbox-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    touch-action: none; /* Prevents default gestures like browser scaling */
}

/* Lightbox Image with Crisp Scaling */
#lightbox-img {
    max-width: 85%;
    max-height: 80%;
    object-fit: contain;
    transform-origin: center center;
    cursor: grab;
    transition: transform 0.1s ease-out;
    
    /* Strict crisp, pixelated scaling for crisp rendering at all sizes */
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    
    will-change: transform;
}

#lightbox-img:active {
    cursor: grabbing;
}

/* Bottom Bar Info & Controls */
.lightbox-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
    padding: 24px 32px 32px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100001;
    color: var(--white);
    gap: 16px;
}

@media (max-width: 600px) {
    .lightbox-bottom-bar {
        flex-direction: column;
        gap: 12px;
        padding: 16px 20px 24px 20px;
        text-align: center;
    }
}

.lightbox-model-label {
    font-family: var(--font-sub);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--gold);
}

.lightbox-zoom-percentage {
    font-family: monospace;
    font-size: 0.95rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
}

.lightbox-zoom-controls {
    display: flex;
    gap: 8px;
}

.lightbox-zoom-btn {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s, transform 0.1s;
}

.lightbox-zoom-btn:hover {
    background: var(--white);
    color: #000;
    transform: translateY(-2px);
}

.lightbox-zoom-btn:active {
    transform: translateY(0);
}

/* Card Zoomable indicator on cards */
.product-card-interactive,
.cooler-card-premium,
.zoomable-row,
.shelf-product-card,
.shoe-view-card {
    cursor: zoom-in !important;
}




/* ==========================================================================
   APPENDED STYLES FOR COMPATIBILITY WITH NEW TEMPLATE
   ========================================================================== */
/* 9. Catalog Display Layout (40/60 Split) */
.catalog-display-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 45px;
    background-color: var(--pure-white);
    border: 1px solid var(--light-border);
    border-radius: 8px;
    padding: 35px;
    box-shadow: var(--card-shadow);
    align-items: center;
}

.catalog-left-image {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background-color: #F8FAFC;
    cursor: zoom-in;
    border: 1px solid var(--light-border);
}

.catalog-main-img {
    width: 100%;
    display: block;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.catalog-left-image:hover .catalog-main-img {
    transform: scale(1.05);
}

.zoom-overlay-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(27, 43, 94, 0.85);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.05rem;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition-fast);
}

.catalog-left-image:hover .zoom-overlay-icon {
    opacity: 1;
}

.catalog-right-info {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
}

.catalog-title {
    font-size: 2.2rem;
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.dealer-badge {
    background-color: var(--gold);
    color: var(--navy-blue);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 3px;
    align-self: flex-start;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.catalog-price {
    font-family: var(--font-heading);
    color: var(--orange-red);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.material-note {
    font-weight: 600;
    color: #4B5563;
    margin-bottom: 15px;
}

.catalog-description {
    font-size: 0.95rem;
    color: #4B5563;
    margin-bottom: 25px;
    line-height: 1.6;
}

.pricing-text-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}

.pricing-text-list li {
    padding: 6px 0;
    border-bottom: 1px dashed var(--light-border);
    font-size: 0.9rem;
    font-weight: 600;
    color: #4B5563;
}

.image-text-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(192, 57, 43, 0.9);
    color: var(--pure-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    padding: 6px 16px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.catalog-thumb-square {
    max-height: 160px;
    max-width: 100%;
    object-fit: contain;
    cursor: zoom-in;
}

.product-specs li i {
    color: #25D366;
    margin-right: 6px;
}

/* 10. Services Section & Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background-color: var(--lighter-navy);
    border-top: 4px solid var(--orange-red);
    border-radius: 6px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.service-icon {
    font-size: 3rem;
    color: var(--orange-red);
    margin-bottom: 20px;
}

.service-title {
    font-family: var(--font-subheading);
    font-size: 1.25rem;
    color: var(--pure-white);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--dark-muted);
    line-height: 1.5;
}

/* 11. Rate List Table Styles */
.table-container {
    background-color: var(--pure-white);
    border: 1px solid var(--light-border);
    border-radius: 6px;
    overflow-x: auto;
    box-shadow: var(--card-shadow);
}

.rate-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.rate-table th {
    background-color: var(--navy-blue);
    color: var(--pure-white);
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 16px 20px;
    text-align: left;
    text-transform: uppercase;
}

.rate-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--light-border);
    font-size: 0.95rem;
    font-weight: 600;
}

.rate-table tr:last-child td {
    border-bottom: none;
}

.rate-table tr:nth-child(even) {
    background-color: #F8FAFC;
}

.table-notes {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #4B5563;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* 12. Guarantee Section (STAR SECTION) */
.guarantee-section {
    background-color: var(--near-black);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--orange-red);
    box-shadow: inset 0 0 50px rgba(192, 57, 43, 0.3), 0 0 30px rgba(192, 57, 43, 0.2);
}

.guarantee-border-glow {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    box-shadow: inset 0 0 100px rgba(192, 57, 43, 0.4);
    pointer-events: none;
}

.guarantee-container {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.gold-stamp {
    background-color: transparent;
    border: 3px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    padding: 8px 24px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.red-ribbon {
    background-color: var(--orange-red);
    color: var(--pure-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 6px 20px;
    display: inline-block;
    transform: skewX(-12deg);
    margin-bottom: 25px;
}

.guarantee-headline {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--pure-white);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.guarantee-headline .gold {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(200, 168, 75, 0.4);
}

.guarantee-text {
    font-family: var(--font-subheading);
    font-size: 1.2rem;
    color: #D1D5DB;
    line-height: 1.6;
    margin-bottom: 35px;
}

.guarantee-values {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.4rem;
    letter-spacing: 3px;
}

/* 13. Sunrise Composite Catalog & Collage */
.composite-catalog-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background-color: var(--pure-white);
    border: 1px solid var(--light-border);
    border-radius: 8px;
    padding: 35px;
    box-shadow: var(--card-shadow);
    align-items: center;
}

.composite-left-image {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--light-border);
    cursor: zoom-in;
    position: relative;
    padding: 15px;
    background-color: #F8FAFC;
}

.sunrise-collage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 160px);
    gap: 10px;
}

.collage-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    transition: var(--transition-smooth);
    border: 1px solid var(--light-border);
}

.collage-item:nth-child(3) {
    grid-row: span 2;
    height: 100%;
}

.sunrise-collage:hover .collage-item {
    opacity: 0.85;
}

.collage-item:hover {
    transform: scale(1.03);
    opacity: 1 !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.composite-right-info {
    display: flex;
    flex-direction: column;
}

/* 14. Subsection Styles & Accents */
.subsection-wrap {
    margin-bottom: 40px;
}

.subsection-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--navy-blue);
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.accent-cta-card {
    background-color: var(--pure-white);
    border: 1px solid var(--light-border);
    border-left: 5px solid var(--orange-red);
    border-radius: 6px;
    padding: 24px;
    max-width: 800px;
    margin: 30px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: var(--card-shadow);
}

.accent-cta-icon {
    font-size: 2.2rem;
    color: var(--orange-red);
}

.accent-cta-text {
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy-blue);
    flex-grow: 1;
}

.accent-cta-buttons {
    display: flex;
    gap: 12px;
}

/* 15. Reviews Section (Stars + Form + Cards) */
.reviews-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 50px;
}

.rating-summary-card {
    background-color: var(--pure-white);
    border: 1px solid var(--light-border);
    border-radius: 6px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rating-summary-number {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--navy-blue);
    line-height: 1;
}

.rating-summary-stars {
    font-size: 1.6rem;
    color: var(--gold);
    margin: 10px 0;
}

.rating-bars-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
}

.rating-bar-label {
    width: 50px;
    text-align: left;
    color: #4B5563;
}

.rating-bar-bg {
    flex-grow: 1;
    height: 8px;
    background-color: var(--light-border);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background-color: var(--gold);
    border-radius: 4px;
}

.rating-bar-percent {
    width: 35px;
    text-align: right;
    color: #6B7280;
}

.review-form-card {
    background-color: var(--pure-white);
    border: 1px solid var(--light-border);
    border-top: 4px solid var(--navy-blue);
    border-radius: 6px;
    padding: 30px;
    box-shadow: var(--card-shadow);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--navy-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--light-border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy-blue);
    box-shadow: 0 0 0 2px rgba(27, 43, 94, 0.1);
}

.star-rating-input {
    display: flex;
    gap: 8px;
    font-size: 1.5rem;
    color: var(--gold);
    cursor: pointer;
}

.review-success-msg {
    margin-top: 15px;
    padding: 12px;
    background-color: #DCFCE7;
    color: #15803D;
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #BBF7D0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.review-card {
    background-color: var(--pure-white);
    border: 1px solid var(--light-border);
    border-radius: 6px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.review-author {
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy-blue);
    display: block;
}

.verified-badge {
    font-size: 0.75rem;
    color: #15803D;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.review-date {
    font-size: 0.8rem;
    color: #6B7280;
}

.review-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 12px;
}

.product-tag {
    background-color: rgba(192, 57, 43, 0.08);
    color: var(--orange-red);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 3px;
    align-self: flex-start;
    margin-bottom: 12px;
}

.review-body-text {
    font-size: 0.9rem;
    color: #4B5563;
    line-height: 1.5;
}

/* 16. Brand Section (DARK) */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.brand-card {
    background-color: var(--lighter-navy);
    border: 1px solid var(--gold);
    border-radius: 6px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.badge-gold {
    background-color: var(--gold);
    color: var(--navy-blue);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 3px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.brand-card h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.brand-card p {
    color: var(--dark-text);
    font-weight: 500;
    font-size: 0.95rem;
}

/* 17. Locations and Timings */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.location-card {
    background-color: var(--pure-white);
    border: 1px solid var(--light-border);
    border-radius: 6px;
    padding: 35px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.location-details h3 {
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-details h3 i {
    color: var(--orange-red);
}

.address-text {
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 25px;
}

.timings-banner {
    background-color: rgba(200, 168, 75, 0.08);
    border: 1px dashed var(--gold);
    border-radius: 6px;
    padding: 24px;
    text-align: center;
    margin-top: 40px;
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy-blue);
    line-height: 1.6;
}

.timings-banner i {
    color: var(--orange-red);
    margin-right: 6px;
}

/* 18. Contact Section & Methods */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.contact-card {
    background-color: var(--pure-white);
    border: 1px solid var(--light-border);
    border-radius: 6px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 250px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(27, 43, 94, 0.08);
    color: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.contact-card:hover .contact-icon {
    background-color: var(--navy-blue);
    color: var(--pure-white);
}

.contact-card h3 {
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.contact-val {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--orange-red);
    margin-bottom: 20px;
}

.payment-info-bar {
    background-color: rgba(27, 43, 94, 0.04);
    border: 1px solid var(--light-border);
    border-radius: 4px;
    padding: 16px;
    text-align: center;
    margin-top: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #4B5563;
}

/* 19. Footer (DARK) & Logo Layout */
.footer-section {
    background-color: var(--navy-blue);
    color: var(--pure-white);
    border-top: 2px solid var(--gold);
    padding: 80px 20px 40px 20px;
    text-align: center;
}

.footer-logo-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 35px;
}

.gold-trust-badge {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.logo-shield-large {
    width: 64px;
    height: 64px;
    background-color: var(--navy-blue);
    border: 3px solid var(--gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
}

.logo-shield-large::before {
    content: '';
    position: absolute;
    top: 3px; left: 3px; right: 3px; bottom: 3px;
    background-color: var(--orange-red);
    border-radius: 3px;
}

.logo-t-large {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.6rem;
    color: var(--pure-white);
    z-index: 2;
}

.logo-name-large {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.steel-ribbon-monogram {
    background: linear-gradient(90deg, #E2E8F0, #9EA7B3, #E2E8F0);
    color: var(--navy-blue);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    padding: 4px 20px;
    border-radius: 3px;
    letter-spacing: 2px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    margin-bottom: 12px;
}

.orange-ribbon-tagline {
    background-color: var(--orange-red);
    color: var(--pure-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    padding: 5px 24px;
    transform: skewX(-12deg);
    margin-bottom: 15px;
}

.gold-values-list {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.silver-location {
    color: var(--silver);
    font-family: var(--font-subheading);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-tagline {
    font-family: var(--font-subheading);
    font-size: 1rem;
    color: var(--dark-muted);
    margin-bottom: 30px;
}

.footer-quicklinks {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px 25px;
    margin-bottom: 30px;
}

.footer-quicklinks a {
    color: var(--pure-white);
    text-decoration: none;
    font-family: var(--font-subheading);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.footer-quicklinks a:hover {
    color: var(--gold);
}

.footer-contact-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 30px;
    font-weight: 700;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255,255,255,0.08);
    margin: 30px 0;
}

.copyright-text {
    font-size: 0.8rem;
    color: var(--dark-muted);
}

/* 20. Floating Buttons Styles */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: var(--pure-white);
    height: 52px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 990;
    gap: 10px;
    transition: var(--transition-smooth);
    overflow: hidden;
    max-width: 52px;
}

.whatsapp-floating-btn i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.whatsapp-floating-btn .float-text {
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.whatsapp-floating-btn:hover {
    max-width: 200px;
}

.whatsapp-floating-btn:hover .float-text {
    opacity: 1;
}

.scroll-to-top-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background-color: var(--navy-blue);
    color: var(--pure-white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top-btn:hover {
    background-color: var(--darker-navy);
    transform: translateY(-3px);
}

/* 21. Custom Zoomable Lightbox Overlay Styles */
.lightbox-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.94);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    user-select: none;
    outline: none;
}

.lightbox-overlay.active {
    display: flex;
    animation: fadeInFast 0.25s ease;
}

@keyframes fadeInFast {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: var(--pure-white);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    z-index: 2050;
    transition: var(--transition-fast);
}

.lightbox-close-btn:hover {
    color: var(--orange-red);
    transform: scale(1.1);
}

.lightbox-content-container {
    width: 90vw;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.lightbox-image-wrapper {
    position: relative;
    display: inline-block;
    transition: transform 0.05s ease-out;
    cursor: grab;
}

.lightbox-image-wrapper:active {
    cursor: grabbing;
}

#lightbox-image {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    transition: transform 0.15s ease-out;
}

.lightbox-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(27, 43, 94, 0.85);
    border: 1px solid var(--gold);
    border-radius: 30px;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2050;
}

.zoom-ctrl-btn {
    background: none;
    border: none;
    color: var(--pure-white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    transition: var(--transition-fast);
}

.zoom-ctrl-btn:hover {
    color: var(--gold);
}

.zoom-percentage {
    color: var(--pure-white);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    min-width: 50px;
    text-align: center;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(27, 43, 94, 0.7);
    color: var(--pure-white);
    border: 1px solid var(--gold);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2050;
    transition: var(--transition-smooth);
}

.nav-arrow:hover {
    background-color: var(--navy-blue);
    color: var(--gold);
}

.nav-arrow.prev { left: 30px; }
.nav-arrow.next { right: 30px; }

.lightbox-caption {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--pure-white);
    font-family: var(--font-subheading);
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    z-index: 2050;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    pointer-events: none;
}

/* 22. Responsive Breakpoints */
@media (max-width: 992px) {
    .all-caps-headline { font-size: 2.2rem; }
    .hero-headline { font-size: 3.2rem; }
    .catalog-display-layout { grid-template-columns: 1fr; gap: 30px; }
    .series-info-grid { grid-template-columns: 1fr; gap: 30px; }
    .composite-catalog-layout { grid-template-columns: 1fr; }
    .reviews-layout { grid-template-columns: 1fr; }
    .contacts-grid { grid-template-columns: 1fr; max-width: 450px; margin: 40px auto 0 auto; }
}

@media (max-width: 768px) {
    section { padding: 60px 15px; }
    .navbar { padding: 10px 15px; }
    .mobile-menu-btn { display: block; }
    
    .nav-menu {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background-color: var(--darker-navy);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        text-align: center;
        border-bottom: 2px solid var(--gold);
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li a { font-size: 0.95rem; display: block; padding: 10px 0; }
    .stats-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-item:nth-child(2)::after { display: none; }
    .hero-headline { font-size: 2.3rem; }
    .hero-subheadline { font-size: 1rem; }
    .hero-ribbon { font-size: 1rem; padding: 8px 16px; }
    .hero-ctas { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto 25px auto; }
    .accent-cta-card { flex-direction: column; text-align: center; }
    .accent-cta-buttons { width: 100%; justify-content: center; }
    .locations-grid { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: 1fr; }
    .pricing-text-list { grid-template-columns: 1fr; }
    .nav-arrow { width: 44px; height: 44px; font-size: 1rem; }
    .nav-arrow.prev { left: 10px; }
    .nav-arrow.next { right: 10px; }
}


/* ==========================================================================
   ADDITIONAL CUSTOM WORKSPACE POLISH
   ========================================================================== */

/* Navbar logo — image + title, no monogram, no overlap */
.nav-logo {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 10px !important;
    white-space: nowrap;
    text-decoration: none;
}

.nav-logo .nav-logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-logo .logo-title {
    font-family: var(--font-headlines);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Remove .logo-text-inline wrapper if still rendered */
.logo-text-inline {
    display: contents;
}

/* ============================================
   ALL COOLERS GRID — 25 unique cards, 4 col
   ============================================ */
.all-coolers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 0 30px;
}

@media (max-width: 1024px) {
    .all-coolers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .all-coolers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .all-coolers-grid {
        grid-template-columns: 1fr;
    }
    .nav-logo .logo-title {
        font-size: 0.95rem;
    }
}

/* Star rating interactive coloring */
.clickable-stars-input .star-node {
    color: #CBD5E1; /* Muted slate gray default */
    cursor: pointer;
    transition: color 0.15s ease, transform 0.1s ease;
    margin-right: 4px;
}

.clickable-stars-input .star-node.active,
.clickable-stars-input .star-node:hover {
    color: #F1C40F !important; /* Golden active */
    transform: scale(1.15);
}

/* Hide logo text on tiny devices to prevent nav overflow */
@media (max-width: 480px) {
    .logo-title {
        display: none !important;
    }
}

/* Ensure review success displays nicely */
#review-success-msg {
    display: none;
    margin-top: 15px;
    padding: 12px;
    background-color: rgba(37, 211, 102, 0.12);
    color: #1e7039;
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 4px;
    text-align: center;
    font-weight: 700;
}

.review-display-card.new-review-pulse {
    animation: newReviewFade 0.6s ease-out;
}

@keyframes newReviewFade {
    0% {
        opacity: 0;
        transform: translateY(-20px);
        background-color: rgba(200, 168, 75, 0.15);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        background-color: var(--white);
    }
}

/* ==========================================================================
   COMPACT COOLER CARD — used in .all-coolers-grid (25 cards, 4-col layout)
   ========================================================================== */

.cooler-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(27, 43, 94, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.cooler-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(27, 43, 94, 0.14);
    border-color: var(--navy-blue);
}

.cooler-image-box {
    background: #f4f6f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.cooler-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.cooler-card:hover .cooler-image-box img {
    transform: scale(1.06);
}

.cooler-details {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.cooler-name {
    font-family: var(--font-sub);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--navy-blue);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.cooler-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 6px;
    border-top: 1px solid var(--border-light);
}

.cooler-warranty {
    font-size: 0.68rem;
    color: var(--text-grey-muted);
    font-family: var(--font-sub);
    font-weight: 600;
}

.cooler-price {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--orange-red);
    font-family: var(--font-sub);
}

/* ==========================================================================
   ALMIRAH CARD GRID LAYOUT
   ========================================================================== */
.almirah-series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.almirah-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    cursor: zoom-in;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.almirah-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(27, 43, 94, 0.12);
    border-color: var(--gold);
}

.almirah-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background-color: #F8FAFC;
    padding: 10px;
    transition: transform 0.3s ease;
}

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

.alm-info {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-light);
    background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
}

.alm-code {
    font-family: var(--font-sub);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-blue);
    letter-spacing: 0.5px;
}

.alm-price {
    font-family: var(--font-sub);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--orange-red);
}

/* ==========================================================================
   WARDROBE MODEL CARD GRID
   ========================================================================== */
.products-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.model-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    cursor: zoom-in;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.model-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(27, 43, 94, 0.12);
    border-color: var(--gold);
}

.card-visual {
    position: relative;
    background-color: #F8FAFC;
    overflow: hidden;
}

.card-visual img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.3s ease;
}

.model-card:hover .card-visual img {
    transform: scale(1.05);
}

.model-code {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--navy-blue);
    color: var(--white);
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.card-details {
    padding: 16px;
    border-top: 1px solid var(--border-light);
}

.card-details .model-name {
    font-family: var(--font-sub);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-blue);
}

/* ==========================================================================
   ALL COOLERS GRID
   ========================================================================== */
.all-coolers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.cooler-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    cursor: zoom-in;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}

.cooler-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(27, 43, 94, 0.12);
    border-color: var(--gold);
}

/* ==========================================================================
   SUNRISE CARDS GRID
   ========================================================================== */
.sunrise-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.sunrise-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    cursor: zoom-in;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.sunrise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(27, 43, 94, 0.12);
    border-color: var(--gold);
}

.sunrise-img-box {
    position: relative;
    background-color: #F8FAFC;
    overflow: hidden;
}

.sunrise-img-box img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.3s ease;
}

.sunrise-card:hover .sunrise-img-box img {
    transform: scale(1.05);
}

.sunrise-info {
    padding: 14px 16px;
    border-top: 1px solid var(--border-light);
}

.sunrise-card-title {
    font-family: var(--font-sub);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 4px;
}

.sunrise-price-range {
    font-family: var(--font-sub);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--orange-red);
}

/* ==========================================================================
   TAB SYSTEM IMPROVEMENTS
   ========================================================================== */
.tab-content-panel {
    display: none;
}

.tab-content-panel.active {
    display: block;
}

/* ==========================================================================
   CATALOG DISPLAY IMPROVEMENTS - Fill more width
   ========================================================================== */
.catalog-left-image img {
    width: 100%;
    display: block;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.catalog-left-image:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   RESPONSIVE - MOBILE ADJUSTMENTS FOR WIDER LAYOUT
   ========================================================================== */
@media (max-width: 1024px) {
    .almirah-series-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 16px;
    }
    .products-grid-cards {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 16px;
    }
    .all-coolers-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .almirah-series-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .products-grid-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .all-coolers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .sunrise-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
