/* Karvan Global Styles v7 — Shared across all pages */

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

:root {
    --navy: #1B2A4A;
    --navy-light: #243656;
    --saffron: #E8732A;
    --saffron-hover: #d4631d;
    --gold: #C5963A;
    --cream: #FFF9F0;
    --text: #2D3748;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --success: #2D8B5F;
    --bg: #ffffff;
    --radius: 10px;
    --radius-lg: 14px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    color: var(--text);
    background: white;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.25;
}

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

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ========================================
   POWER BAR (Navigation Header)
   ======================================== */
.power-bar {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.power-bar-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

.pb-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.pb-logo img {
    height: 34px;
    width: auto;
}

.pb-search {
    flex: 1;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    max-width: 600px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.pb-search:focus-within {
    border-color: var(--saffron);
}

.pb-cat-select {
    background: #f1f5f9;
    border: none;
    border-right: 1px solid var(--border);
    padding: 10px 12px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    white-space: nowrap;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2364748b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 24px;
}

.pb-ai-icon {
    margin: 0 8px 0 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.pb-ai-icon svg {
    width: 18px;
    height: 18px;
}

.pb-input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text);
    padding: 10px 0;
    min-width: 0;
}

.pb-input::placeholder {
    color: var(--text-muted);
}

.pb-search-btn {
    background: var(--saffron);
    color: white;
    border: none;
    padding: 0 14px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 0 6px 6px 0;
}

.pb-search-btn svg {
    width: 18px;
    height: 18px;
}

.pb-search-btn:hover {
    background: var(--saffron-hover);
}

.pb-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    margin-left: auto;
}

.pb-nav-link {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    transition: color 0.15s;
}

.pb-nav-link:hover {
    color: white;
}

.pb-sell-btn {
    background: var(--saffron);
    color: white;
    padding: 7px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
    transition: background 0.2s;
}

.pb-sell-btn:hover {
    background: var(--saffron-hover);
}

.pb-hamburger {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.pb-hamburger svg {
    color: white;
    width: 22px;
    height: 22px;
}

.pb-img-search {
    background: none;
    border: none;
    padding: 6px 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-left: 1px solid var(--border);
    transition: background 0.2s;
    flex-shrink: 0;
}

.pb-img-search svg {
    width: 16px;
    height: 16px;
}

.pb-img-search:hover {
    background: #f1f5f9;
}

/* ========================================
   CATEGORY STRIP
   ======================================== */
.cat-strip {
    background: var(--navy-light);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}

.cat-strip-inner {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cat-strip-inner::-webkit-scrollbar {
    display: none;
}

.cs-link {
    padding: 8px 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
    transition: all 0.15s;
    border-bottom: 2px solid transparent;
    font-weight: 500;
}

.cs-link:hover {
    color: white;
    background: rgba(255,255,255,0.04);
    border-bottom-color: var(--saffron);
}

/* ========================================
   TRUST STRIP
   ======================================== */
.trust-strip {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 6px 0;
    overflow: hidden;
}

.trust-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0 16px;
    font-size: 11px;
    color: var(--text-light);
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.trust-strip-inner::-webkit-scrollbar {
    display: none;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

/* ========================================
   SECTION HEADERS & UTILITIES
   ======================================== */
.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 16px 0 10px;
}

.section-header h2 {
    font-size: 18px;
    color: var(--navy);
}

.section-header .view-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--saffron);
    white-space: nowrap;
}

.section-header .view-all:hover {
    text-decoration: underline;
}

/* ========================================
   LOAD MORE BUTTON
   ======================================== */
.load-more-btn {
    display: block;
    margin: 20px auto;
    padding: 12px 40px;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    transition: all 0.2s;
}

.load-more-btn:hover {
    border-color: var(--saffron);
    color: var(--saffron);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ========================================
   PAGE CONTENT WRAPPER
   ======================================== */
.page-content {
    padding: 24px 0 40px;
}

/* ========================================
   FAB BUTTONS (Floating Action Buttons)
   ======================================== */
.fab-container {
    display: none;
}

.fab {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

.fab-whatsapp {
    background: #25D366;
    color: white;
}

.fab-karvan-assist {
    background: linear-gradient(135deg, #a882ff, #60a5fa, #c084fc);
    color: white;
    background-size: 200% 200%;
    animation: fabGlow 3s ease infinite;
}

@keyframes fabGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.fab-karvan-assist svg {
    width: 24px;
    height: 24px;
}

/* ========================================
   KARVAN ASSIST POPUP
   ======================================== */
.karvan-assist-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: flex-end;
    justify-content: center;
}

.karvan-assist-popup-overlay.open {
    display: flex;
}

.karvan-assist-popup {
    background: white;
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-width: 440px;
    max-height: 75vh;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.karvan-assist-popup-head {
    background: var(--navy);
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.karvan-assist-popup-head .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.karvan-assist-popup-head .info h4 {
    font-size: 14px;
    margin-bottom: 0;
}

.karvan-assist-popup-head .info span {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
}

.karvan-assist-popup-close {
    margin-left: auto;
    background: none;
    color: white;
    font-size: 22px;
    padding: 4px 8px;
}

.karvan-assist-popup-body {
    padding: 16px 20px;
    max-height: 300px;
    overflow-y: auto;
}

.karvan-assist-msg {
    margin-bottom: 12px;
    max-width: 85%;
}

.karvan-assist-msg.bot {
    margin-right: auto;
}

.karvan-assist-msg.user {
    margin-left: auto;
}

.karvan-assist-msg .bubble {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.5;
}

.karvan-assist-msg.bot .bubble {
    background: #f1f5f9;
    color: var(--text);
    border-bottom-left-radius: 4px;
}

.karvan-assist-msg.user .bubble {
    background: var(--saffron);
    color: white;
    border-bottom-right-radius: 4px;
}

.karvan-assist-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 20px 12px;
}

.karvan-assist-suggestion {
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    background: var(--cream);
    border: 1px solid #e8dcc8;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
}

.karvan-assist-suggestion:hover {
    background: var(--saffron);
    color: white;
    border-color: var(--saffron);
}

.karvan-assist-popup-input {
    display: flex;
    gap: 8px;
    padding: 12px 20px;
    border-top: 1px solid var(--border);
}

.karvan-assist-popup-input input {
    flex: 1;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    font-family: inherit;
    outline: none;
}

.karvan-assist-popup-input input:focus {
    border-color: var(--saffron);
}

.karvan-assist-popup-input button {
    background: var(--saffron);
    color: white;
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 13px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.8);
    padding: 28px 0 0;
    font-size: 13px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 20px;
}

.footer-brand p {
    margin-top: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-logo-row img {
    height: 32px;
}

.footer-wordmark {
    font-family: 'Plus Jakarta Sans';
    font-weight: 800;
    font-size: 18px;
    color: white;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-contact {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.footer-contact-item svg {
    width: 14px;
    height: 14px;
    color: var(--saffron);
    flex-shrink: 0;
}

.footer-contact-item a {
    display: inline;
    padding: 0;
    color: rgba(255,255,255,0.7);
}

.footer-contact-item a:hover {
    color: var(--saffron);
}

.footer-section h4 {
    color: white;
    font-size: 11px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 8px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--saffron);
    border-radius: 2px;
}

.footer h4 {
    color: white;
    font-size: 11px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 8px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--saffron);
    border-radius: 2px;
}

.footer a {
    display: block;
    padding: 3px 0;
    color: rgba(255,255,255,0.5);
    transition: all 0.2s;
    font-size: 12px;
}

.footer a:hover {
    color: white;
    padding-left: 4px;
}

.footer-cta-row {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.25s;
    letter-spacing: 0.3px;
    flex: 1;
    min-width: 200px;
}

.footer-cta-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.footer-cta-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

.footer-cta-seller {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
}

.footer-cta-seller:hover {
    border-color: var(--saffron);
    color: var(--saffron);
    transform: translateY(-2px);
}

.footer-section {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.footer-section .footer-acc-toggle {
    display: none;
}

.footer-section .footer-acc-links {
    display: block;
}

.footer-bottom-wrap {
    background: rgba(0,0,0,0.15);
    margin-top: 4px;
    padding: 12px 0;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copy {
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    line-height: 1.5;
    text-align: center;
}

/* ========================================
   BOTTOM NAVIGATION
   ======================================== */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 200;
    padding: 4px 0 env(safe-area-inset-bottom, 0);
    box-shadow: 0 -2px 16px rgba(27,42,74,0.3);
}

.bottom-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 500px;
    margin: 0 auto;
}

.bn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 0;
    min-width: 56px;
    text-decoration: none;
    color: rgba(255,255,255,0.55);
    font-size: 10px;
    font-weight: 500;
    transition: color 0.15s;
    position: relative;
    font-family: 'DM Sans', sans-serif;
}

.bn-item.active {
    color: white;
}

.bn-item:hover {
    color: white;
}

.bn-item svg {
    width: 22px;
    height: 22px;
    margin-bottom: 2px;
}

.bn-item .bn-label {
    line-height: 1;
}

.bn-item.bn-center {
    position: relative;
    top: -16px;
}

.bn-center-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(232,115,42,0.5), 0 0 0 3px rgba(255,255,255,0.15);
    margin-bottom: 2px;
    animation: karvanPulse 2.5s ease-in-out 1;
}

.bn-center-circle svg {
    width: 26px;
    height: 26px;
    color: white;
}

.bn-item.bn-center .bn-label {
    color: white;
    font-weight: 700;
    font-size: 11px;
}

@keyframes karvanPulse {
    0% {
        box-shadow: 0 4px 18px rgba(232,115,42,0.4), 0 0 0 3px rgba(232,115,42,0.12);
    }
    50% {
        box-shadow: 0 4px 24px rgba(232,115,42,0.55), 0 0 0 6px rgba(232,115,42,0.18);
    }
    100% {
        box-shadow: 0 4px 18px rgba(232,115,42,0.4), 0 0 0 3px rgba(232,115,42,0.12);
    }
}

.bn-cart-badge {
    position: absolute;
    top: 0;
    right: 8px;
    background: var(--saffron);
    color: white;
    font-size: 9px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.bn-cart-badge:empty {
    display: none;
}

/* Theme transitions for nav components */
.power-bar,
.cat-strip,
.bottom-nav,
.bn-item,
.bn-item.bn-center .bn-label,
.bn-center-circle {
    transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* Light theme variants */
.bottom-nav.nav-light {
    background: white !important;
    border-top: 1px solid #e2e8f0 !important;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.06) !important;
}

.bottom-nav.nav-light .bn-item {
    color: var(--text-muted) !important;
}

.bottom-nav.nav-light .bn-item.active {
    color: var(--saffron) !important;
}

.bottom-nav.nav-light .bn-item:hover {
    color: var(--saffron) !important;
}

.bottom-nav.nav-light .bn-item.bn-center .bn-label {
    color: var(--navy) !important;
    font-weight: 700;
}

.bottom-nav.nav-light .bn-center-circle {
    box-shadow: 0 4px 18px rgba(232,115,42,0.4), 0 0 0 3px rgba(232,115,42,0.12) !important;
}

.power-bar.nav-light {
    background: white !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
}

.power-bar.nav-light .pb-logo img {
    filter: brightness(0) !important;
}

.power-bar.nav-light .pb-search {
    border-color: #e2e8f0 !important;
    background: #f7f8fa !important;
}

.power-bar.nav-light .pb-input {
    color: var(--text) !important;
}

.power-bar.nav-light .pb-nav-link {
    color: var(--navy) !important;
}

.power-bar.nav-light .pb-nav-link:hover {
    color: var(--saffron) !important;
}

.power-bar.nav-light .pb-hamburger svg {
    color: var(--navy) !important;
}

.power-bar.nav-light .pb-sell-btn {
    background: var(--saffron) !important;
}

.cat-strip.nav-light {
    background: #f7f8fa !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

.cat-strip.nav-light .cs-link {
    color: var(--navy) !important;
}

.cat-strip.nav-light .cs-link:hover,
.cat-strip.nav-light .cs-link.active {
    color: var(--saffron) !important;
    border-bottom-color: var(--saffron) !important;
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */
.reveal {
    opacity: 1;
    transform: none;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible > *:nth-child(1) {
    transition-delay: 0.05s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.visible > *:nth-child(2) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.visible > *:nth-child(3) {
    transition-delay: 0.15s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.visible > *:nth-child(4) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.visible > *:nth-child(5) {
    transition-delay: 0.25s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.visible > *:nth-child(6) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.visible > *:nth-child(n+7) {
    transition-delay: 0.35s;
    opacity: 1;
    transform: translateY(0);
}

.section-header h2 {
    transition: color 0.2s;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   RESPONSIVE DESIGN: Tablet & Below (768px)
   ======================================== */
@media (max-width: 768px) {
    .pb-cat-select,
    .pb-nav {
        display: none;
    }

    .pb-hamburger {
        display: none;
    }

    .pb-search {
        max-width: none;
        flex: 1;
    }

    .pb-logo img {
        height: 32px;
    }

    .cat-strip {
        display: block;
        overflow: hidden;
    }

    .cat-strip-inner {
        max-width: none;
        padding: 0 4px;
    }

    .cs-link {
        padding: 7px 12px;
        font-size: 11px;
        flex-shrink: 0;
    }

    body {
        padding-bottom: 60px;
    }

    .fab-container {
        display: none;
    }

    .container {
        padding: 0 12px;
    }

    .section-header {
        padding: 16px 0 8px;
    }

    .section-header h2 {
        font-size: 16px;
    }

    .page-content {
        padding: 16px 0 32px;
    }

    .trust-strip-inner {
        gap: 16px;
        font-size: 10px;
    }

    /* Footer mobile */
    .footer {
        padding: 20px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 8px;
    }

    .footer-brand {
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        margin-bottom: 0;
    }

    .footer-brand p {
        display: none;
    }

    .footer-logo-row {
        margin-bottom: 6px;
    }

    .footer-logo-row img {
        height: 28px;
    }

    .footer-contact {
        margin-top: 8px;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-contact-item {
        font-size: 11px;
    }

    .footer-brand .footer-socials {
        margin-top: 10px;
    }

    .footer-section {
        padding: 0;
    }

    .footer-section .footer-acc-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 12px 0;
        cursor: pointer;
        background: none;
        border: none;
    }

    .footer-section .footer-acc-toggle h4 {
        margin: 0;
        padding: 0;
        pointer-events: none;
    }

    .footer-section .footer-acc-toggle h4::after {
        display: none;
    }

    .footer-section .footer-acc-toggle .footer-chevron {
        width: 16px;
        height: 16px;
        color: rgba(255,255,255,0.3);
        transition: transform 0.2s;
    }

    .footer-section.open .footer-chevron {
        transform: rotate(180deg);
    }

    .footer-section .footer-acc-links {
        display: none;
        padding: 0 0 10px;
    }

    .footer-section .footer-acc-links a {
        padding: 3px 0;
        font-size: 12px;
    }

    .footer-section.open .footer-acc-links {
        display: block;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-wrap {
        padding: 10px 0 70px;
    }

    .footer-cta-btn {
        min-width: unset;
        flex: 1 1 100%;
        padding: 10px 20px;
        font-size: 13px;
    }

    .footer-cta-row {
        margin-top: 12px;
        gap: 8px;
    }

    .karvan-assist-popup {
        max-width: 100%;
        border-radius: 16px 16px 0 0;
    }

    .bottom-nav {
        display: block;
    }

    .fab-container {
        bottom: 72px;
    }
}

/* ========================================
   RESPONSIVE DESIGN: Mobile (480px and below)
   ======================================== */
@media (max-width: 480px) {
    .power-bar-inner {
        gap: 8px;
        padding: 8px 12px;
    }

    .pb-logo img {
        height: 28px;
    }

    .pb-search {
        border-radius: 6px;
    }

    .pb-search-btn {
        padding: 0 10px;
        height: 36px;
    }

    .pb-search-btn svg {
        width: 16px;
        height: 16px;
    }

    .pb-img-search {
        padding: 4px 6px;
    }

    .pb-img-search svg {
        width: 14px;
        height: 14px;
    }

    .cs-link {
        padding: 6px 10px;
        font-size: 10px;
    }

    .section-header {
        padding: 12px 0 6px;
    }

    .section-header h2 {
        font-size: 14px;
    }

    .section-header .view-all {
        font-size: 12px;
    }

    .container {
        padding: 0 10px;
    }

    .page-content {
        padding: 12px 0 24px;
    }

    .load-more-btn {
        padding: 10px 30px;
        font-size: 13px;
        margin: 16px auto;
    }

    .footer-cta-btn {
        padding: 10px 16px;
        font-size: 12px;
        min-width: unset;
    }

    .footer-wordmark {
        font-size: 16px;
    }

    .footer-copy {
        font-size: 9px;
    }

    .karvan-assist-popup {
        border-radius: 12px 12px 0 0;
    }

    .karvan-assist-popup-head {
        padding: 12px 16px;
    }

    .karvan-assist-popup-body {
        padding: 12px 16px;
        max-height: 250px;
    }

    .karvan-assist-popup-input {
        padding: 10px 16px;
        gap: 6px;
    }

    .karvan-assist-suggestions {
        padding: 0 16px 10px;
        gap: 4px;
    }

    .karvan-assist-suggestion {
        padding: 5px 10px;
        font-size: 10px;
    }

    .trust-strip-inner {
        gap: 12px;
        padding: 0 12px;
        font-size: 9px;
    }

    .bn-item {
        min-width: 50px;
        padding: 4px 0;
    }

    .bn-item svg {
        width: 20px;
        height: 20px;
    }

    .bn-item .bn-label {
        font-size: 9px;
    }

    .bn-center-circle {
        width: 48px;
        height: 48px;
    }

    .bn-center-circle svg {
        width: 22px;
        height: 22px;
    }

    .bottom-nav {
        padding: 2px 0 env(safe-area-inset-bottom, 0);
    }
}
