/* ══════════════════════════════════════════════════════════════════════════════
   GORA — Advanced Mobile UI  (max-width: 768px)
   Bewakoof-level: clean, smooth, organised, elegant
══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

/* ── GLOBAL ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-size: 14px;
    line-height: 1.5;
    background: #f7f7f7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── NAVBAR ────────────────────────────────────────────────────────────────── */
#nav_bar_container {
    position: sticky !important;
    top: 0;
    z-index: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,.09);
}

#nav_bar_top { display: none !important; }

#nav_bar_search {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    height: 52px;
}

/* Logo area: hamburger + logo */
#logo_menu {
    display: flex !important;
    align-items: center;
    gap: 6px;
    flex: 1;
    overflow: visible;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
}
#logo_menu > li:first-child {
    display: flex !important;
    align-items: center;
}
#logo_menu > li:first-child a img {
    width: 100px !important;
    height: auto;
    vertical-align: middle;
}
/* Hide all nav category links on mobile — shown in drawer */
#logo_menu > li:not(:first-child) { display: none !important; }
#logo_menu > [id^="logo_sub_menu_"] { display: none !important; }

/* Hamburger — already first in DOM, sits left of logo */
.hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: none !important;
    border: none !important;
    font-size: 22px !important;
    color: #1a1a1a !important;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    line-height: 1;
}

/* Right icons */
#nav_search_bar {
    display: flex !important;
    align-items: center;
    gap: 2px !important;
    padding: 0 !important;
    width: auto !important;
    flex-wrap: nowrap !important;
    flex-shrink: 0;
}
#nav_search_bar > li { margin: 0 !important; list-style: none; }

/* Hide text search input */
#nav_search_bar > li:has(input) { display: none !important; }

/* Search icon visible on mobile (triggers search input focus) */
.mobile-search-icon { display: flex !important; }

#nav_search_bar > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 18px !important;
    color: #1a1a1a !important;
    text-decoration: none;
}

/* User icon for login link */
#nav_search_bar > li > a[href*="login"] {
    font-size: 0 !important;
}
#nav_search_bar > li > a[href*="login"]::before {
    content: '\f007';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
    color: #1a1a1a;
}
/* When logged in (href = dashboard) */
#nav_search_bar > li > a[href*="dashboard"] {
    font-size: 0 !important;
}
#nav_search_bar > li > a[href*="dashboard"]::before {
    content: '\f007';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
    color: #1a1a1a;
}

/* Cart badge */
#nav_search_bar > li:last-child { position: relative; }
#nav_search_bar > li:last-child > a {
    font-size: 0 !important;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
#nav_search_bar > li:last-child > a::before {
    content: '\f290';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: #1a1a1a;
}
#items {
    position: absolute !important;
    top: 1px !important; right: 2px !important;
    background: #c8832a !important;
    color: #fff !important;
    font-size: 9px !important;
    width: 16px !important; height: 16px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important; justify-content: center !important;
    font-weight: 800 !important;
    z-index: 2; line-height: 1 !important;
}

/* Hide hamburger when drawer is open */
#logo_menu.mobile-menu-open .hamburger { display: none !important; }

/* ── SLIDE-FROM-LEFT DRAWER ──────────────────────────────────────────────── */
#logo_menu.mobile-menu-open {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    width: 82vw !important;
    max-width: 320px !important;
    background: #fff !important;
    z-index: 600 !important;
    flex-direction: column !important;
    overflow-y: auto !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: 4px 0 24px rgba(0,0,0,.22) !important;
    animation: slideInLeft .25s cubic-bezier(.4,0,.2,1) !important;
    border-radius: 0 16px 16px 0 !important;
}
@keyframes slideInLeft {
    from { transform: translateX(-100%); }
    to   { transform: translateX(0); }
}


/* Drawer header — removed, logo is now at top */

/* Logo at top of drawer */
#logo_menu.mobile-menu-open > li:first-child {
    display: flex !important;
    padding: 18px 18px 10px;
    border-bottom: 1px solid #f0f0f0;
}
#logo_menu.mobile-menu-open > li:first-child a img {
    width: 110px !important;
    height: auto;
}

#logo_menu.mobile-menu-open > li:not(:first-child) {
    display: flex !important;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #f5f5f5;
}
#logo_menu.mobile-menu-open > li:not(:first-child) > a {
    display: flex !important;
    align-items: center;
    gap: 14px;
    padding: 15px 18px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    text-decoration: none;
    width: 100%;
    transition: background .12s;
    text-transform: capitalize !important;
    letter-spacing: 0 !important;
}
#logo_menu.mobile-menu-open > li:not(:first-child) > a:active { background: #f9f9f9; }

/* Icon circle before each category */
#logo_menu.mobile-menu-open > li:not(:first-child) > a::before {
    content: '\f553';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 16px;
    color: #c8832a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff9f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
/* Women */
#logo_menu.mobile-menu-open > li:nth-child(3) > a::before { content: '\f182'; color: #e63946; background: #fff0f0; }
/* Accessories */
#logo_menu.mobile-menu-open > li:nth-child(4) > a::before { content: '\f06b'; color: #2a9d4e; background: #e8f5e9; }

/* Arrow */
#logo_menu.mobile-menu-open > li:not(:first-child) > a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    color: #ccc;
    margin-left: auto;
}
/* Sub-menu dropdowns inside drawer — collapsed by default */
#logo_menu.mobile-menu-open > li > div {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: block !important;
    width: 100%;
    background: #fafafa;
    border: none;
    box-shadow: none;
    position: static;
    margin: 0;
    padding: 0;
    visibility: visible !important;
    opacity: 1 !important;
}
#logo_menu.mobile-menu-open > li.expanded > div {
    max-height: 2000px;
    overflow: visible;
}
/* Sub-menu items inside drawer */
#logo_menu.mobile-menu-open > li > div #sub_menu_item {
    display: flex;
    flex-direction: column;
    padding: 6px 18px 12px;
    border: none;
    background: transparent;
    position: static;
    width: 100%;
    margin: 0;
    visibility: visible !important;
    opacity: 1 !important;
}
#logo_menu.mobile-menu-open > li > div #sub_menu_item > ul {
    padding: 6px 0;
    margin: 0;
    min-width: unset;
}
#logo_menu.mobile-menu-open > li > div #sub_menu_item > ul > li > a {
    font-size: 13px;
    padding: 6px 0;
    line-height: 1.5;
    color: #444;
    display: block;
    text-decoration: none;
}
#logo_menu.mobile-menu-open > li > div #sub_menu_item > ul > li > a > h3 {
    font-size: 12px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 8px 0 4px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 4px;
}
/* Remove the arrow for items that have sub-menus (they get a down arrow instead) */
#logo_menu.mobile-menu-open > li.expanded > a::after {
    content: '\f078' !important;
}
#logo_menu.mobile-menu-open > li[data-has-children] > a {
    cursor: pointer;
}

/* ── MARGIN TOP SLIDER ────────────────────────────────────────────────────── */
#margin-top-slider1 { height: 0 !important; }

/* ── HOME PAGE ────────────────────────────────────────────────────────────── */

/* Hero: single panel on mobile */
.hero-panel {
    min-width: 100% !important;
    height: 260px !important;
    aspect-ratio: unset !important;
}
.hero-arr { width: 30px !important; height: 30px !important; font-size: 14px !important; }
.hero-arr-l { left: 8px !important; }
.hero-arr-r { right: 8px !important; }

/* Promo bar */
.promo-bar {
    padding: 8px 14px !important;
    font-size: 11px !important;
    text-align: center;
    gap: 6px !important;
    flex-wrap: wrap;
    justify-content: center;
}
.promo-cta { padding: 4px 12px !important; font-size: 11px !important; }

/* Wide banner */
.wide-banner img { max-height: 140px !important; }

/* Trending categories — 2-per-view horizontal slider on mobile */
.tc-section { padding: 20px 0 18px !important; overflow: hidden; }
.tc-heading {
    font-size: 14px !important;
    margin-bottom: 14px !important;
    padding: 0 14px;
}
.tc-grid {
    display: flex !important;
    gap: 10px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    padding: 0 14px 8px !important;
    width: 100% !important;
    grid-template-columns: unset !important;
}
.tc-grid::-webkit-scrollbar { display: none !important; }
.tc-card {
    flex-shrink: 0 !important;
    width: calc(50vw - 20px) !important;
    min-width: calc(50vw - 20px) !important;
    max-width: 180px !important;
    scroll-snap-align: start !important;
    aspect-ratio: 2/3 !important;
    border-radius: 12px !important;
    display: block !important;
    overflow: hidden !important;
}
.tc-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
.tc-label {
    font-size: 13px !important;
    padding: 28px 10px 10px !important;
    font-weight: 700 !important;
}

/* Section shells */
.hs {
    padding: 0 14px !important;
    margin-top: 28px !important;
}
.hs-head { margin-bottom: 14px !important; }
.hs-title { font-size: 15px !important; }
.hs-sub { font-size: 10px !important; }
.hs-viewall { font-size: 12px !important; }

/* Product rows - horizontal scroll on mobile */
.product-row-6 {
    display: flex !important;
    gap: 10px !important;
    overflow-x: auto !important;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 4px 0 10px !important;
    margin: 0 -14px;
    padding-left: 14px !important;
}
.product-row-6::-webkit-scrollbar { display: none; }
.product-row-6 .pc {
    flex-shrink: 0 !important;
    width: 140px !important;
    min-width: 140px !important;
}

/* Row labels */
.row-label {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 0 8px !important;
}
.row-label span { font-size: 14px !important; }

/* Row slider wrap */
.row-slider-wrap { padding: 0 !important; }
.row-slide-btn { display: none !important; }

/* Bottom section */
.bottom-section { padding: 0 14px 20px !important; }

/* Full width banner */
.fullw-banner img { max-height: 120px !important; }

/* Mini banners */
.mini-banner-row {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scrollbar-width: none;
}
.mini-banner-row::-webkit-scrollbar { display: none; }
.mini-banner-item { flex: 0 0 80% !important; }

/* Main grid */
.main-grid-wrap { padding: 14px !important; }
.center-col { padding: 0 !important; }

/* Trust bar */
.trust-bar {
    padding: 10px 12px !important;
    gap: 0 !important;
    justify-content: space-between !important;
}
.trust-item {
    flex-direction: column !important;
    gap: 4px !important;
    font-size: 10px !important;
    text-align: center;
}
.trust-item .fas { font-size: 18px !important; }

/* Discount tiles */
.discount-tiles {
    grid-template-columns: repeat(3,1fr) !important;
    gap: 8px !important;
}
.disc-tile { padding: 14px 8px !important; }
.disc-tile-pct { font-size: 12px !important; }
.disc-tile-count { font-size: 10px !important; }
.disc-tile-arrow { font-size: 10px !important; }

/* Product slider wrap */
.product-slider-wrap { padding: 0 !important; }
.ps-btn { display: none !important; }
.product-slider {
    margin: 0 -14px;
    padding: 4px 14px 12px !important;
}
.pcard {
    width: 148px !important;
    min-width: 148px !important;
}

/* Product grid (index 4-col) */
.product-grid-4 {
    grid-template-columns: repeat(2,1fr) !important;
    gap: 10px !important;
}
.product-grid-4 .pcard { width: 100% !important; min-width: unset !important; }

/* ── PRODUCT LISTING PAGE ─────────────────────────────────────────────────── */
#product_container {
    width: 100% !important;
    padding: 0 12px;
    margin-bottom: 80px !important;
}

.product-toolbar {
    flex-wrap: wrap;
    padding: 10px 0 12px !important;
    gap: 8px !important;
}
.product-toolbar h1 {
    font-size: 16px !important;
    font-weight: 800 !important;
}
.toolbar-right label { display: none; }
.toolbar-right .sort-icon { display: none; }
#sortPrice {
    font-size: 12px !important;
    padding: 7px 10px !important;
}

/* Filter sidebar → drawer */
.filter-sidebar {
    position: fixed !important;
    left: -100% !important;
    top: 0 !important;
    height: 100vh !important;
    width: 82vw !important;
    max-width: 300px !important;
    z-index: 400 !important;
    background: #fff !important;
    transition: left .28s cubic-bezier(.4,0,.2,1) !important;
    overflow-y: auto !important;
    padding: 20px 16px !important;
    box-shadow: 4px 0 20px rgba(0,0,0,.15);
    border: none !important;
    max-height: 100vh !important;
}
.filter-sidebar.mobile-open { left: 0 !important; }

.filter-sidebar-head {
    position: sticky;
    top: -20px;
    background: #fff;
    z-index: 2;
    padding: 10px 0 14px;
    margin: -20px -16px 0;
    padding-left: 16px;
    padding-right: 16px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 12px;
}
.filter-title { font-size: 15px !important; }

/* Product grid: 2 col on mobile */
.product_item_box {
    grid-template-columns: repeat(2,1fr) !important;
    gap: 10px !important;
}

/* Product card compact */
.product-card-img-wrap { aspect-ratio: 3/4; }
.product-card-info { padding: 8px 8px 10px !important; }
.prod-brand { font-size: 10px !important; }
.product-card-info h5 { font-size: 11px !important; }
.price-eff { font-size: 13px !important; }
.price-orig { font-size: 10px !important; }
.price-disc { font-size: 10px !important; }
.wish-btn { width: 28px !important; height: 28px !important; }
.discount-badge { font-size: 9px !important; padding: 2px 5px !important; }
.prod-rating-pill { font-size: 10px !important; padding: 2px 6px !important; }

/* Active filter chips */
.active-chips { gap: 6px !important; }
.filter-chip { font-size: 11px !important; padding: 4px 9px !important; }

/* Mobile filter bar */
.mobile-filter-bar {
    display: flex !important;
    padding: 0 !important;
}
.mfb-btn {
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 12px 0 !important;
    letter-spacing: .03em;
    gap: 6px !important;
}
.mfb-btn .fas { font-size: 15px !important; }

/* ── SINGLE PRODUCT PAGE ──────────────────────────────────────────────────── */
.sp-wrapper { width: 100% !important; margin-bottom: 80px !important; }

.sp-layout {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
}

/* Thumbs: horizontal strip below main image */
.sp-thumbs {
    flex-direction: row !important;
    position: static !important;
    order: 2 !important;
    overflow-x: auto !important;
    gap: 8px !important;
    padding: 10px 14px !important;
    background: #fafafa;
    scrollbar-width: none;
}
.sp-thumbs::-webkit-scrollbar { display: none; }
.sp-thumb { width: 54px !important; flex-shrink: 0 !important; border-radius: 6px !important; }

/* Main image full width */
.sp-main-img-wrap {
    position: static !important;
    order: 1 !important;
    aspect-ratio: 1/1 !important;
    border-radius: 0 !important;
}

.sp-info {
    order: 3 !important;
    padding: 16px 14px !important;
}

.sp-name { font-size: 15px !important; font-weight: 700 !important; }
.sp-brand { font-size: 11px !important; }
.sp-eff-price { font-size: 1.3rem !important; }
.sp-orig-price { font-size: 14px !important; }
.sp-disc-pct { font-size: 14px !important; }

.sp-sizes { gap: 6px !important; }
.sp-size-btn {
    min-width: 40px !important;
    height: 40px !important;
    font-size: 12px !important;
    padding: 0 10px !important;
}

.sp-cta-row {
    position: fixed !important;
    bottom: 0;
    left: 0;
    right: 0;
    grid-template-columns: 1fr 2fr !important;
    gap: 0 !important;
    margin: 0 !important;
    z-index: 200;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    box-shadow: 0 -2px 12px rgba(0,0,0,.08);
}
.sp-btn-wishlist {
    border-radius: 0 !important;
    border: none !important;
    border-right: 1px solid #f0f0f0 !important;
    padding: 14px 10px !important;
    font-size: 12px !important;
}
.sp-btn-cart {
    border-radius: 0 !important;
    padding: 14px 10px !important;
    font-size: 13px !important;
    box-shadow: none !important;
}

.sp-acc-head { padding: 13px 0 !important; font-size: 12px !important; }
.sp-similar-grid { grid-template-columns: repeat(2,1fr) !important; gap: 10px !important; }
.sp-mini-info { padding: 8px 8px 10px !important; }

/* ── CART PAGE ────────────────────────────────────────────────────────────── */
.cart-wrap {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 14px !important;
    gap: 14px !important;
}

.cart-right { position: static !important; }

.cart-item {
    border-radius: 10px !important;
    padding: 12px !important;
    gap: 12px !important;
}
.cart-item-img {
    width: 88px !important;
    aspect-ratio: 3/4;
}
.cart-item-name { font-size: 13px !important; }
.cart-item-eff  { font-size: 15px !important; }
.cart-item-actions { gap: 12px !important; }
.cart-item-actions button { font-size: 11px !important; }

.cart-checkout-btn {
    position: sticky !important;
    bottom: 14px !important;
    font-size: 14px !important;
    padding: 15px !important;
}

/* ── CHECKOUT / ORDER SUMMARY / PAYMENT ──────────────────────────────────── */
.checkout-progress {
    padding: 12px 10px !important;
    gap: 0 !important;
    overflow-x: hidden;
}
.cp-step { min-width: 48px !important; }
.cp-step i { width: 30px !important; height: 30px !important; font-size: 12px !important; }
.cp-step span { display: none !important; }
.cp-line { max-width: 30px !important; }

.checkout-wrap {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 14px !important;
    gap: 14px !important;
}
.checkout-right { position: static !important; }

.co-card-head { padding: 12px 14px !important; }
.co-card-head h3 { font-size: 13px !important; }
.co-card-body { padding: 12px 14px !important; }
.addr-name { font-size: 14px !important; }
.addr-detail, .addr-mobile { font-size: 12px !important; }

.order-item { padding: 10px 14px !important; gap: 10px !important; }
.order-item img { width: 52px !important; height: 66px !important; }
.oi-name { font-size: 12px !important; }

.checkout-cta-btn {
    position: sticky !important;
    bottom: 14px !important;
    font-size: 14px !important;
}

/* Payment page */
.pay-layout { flex-direction: column !important; }
.pay-tabs {
    width: 100% !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    border-right: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
    scrollbar-width: none;
    background: #fafafa;
}
.pay-tabs::-webkit-scrollbar { display: none; }
.pay-tab {
    flex-shrink: 0 !important;
    padding: 11px 14px !important;
    font-size: 12px !important;
    border-left: none !important;
    border-bottom: 3px solid transparent !important;
}
.pay-tab.active {
    border-left: none !important;
    border-bottom-color: #c8832a !important;
}
.pay-panels { padding: 16px 14px !important; }
.card-preview { height: 120px !important; padding: 14px 16px !important; }
.card-num-display { font-size: 13px !important; }
.pay-now-btn { font-size: 14px !important; padding: 14px !important; }

.wallet-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
.bank-grid { grid-template-columns: repeat(3,1fr) !important; gap: 6px !important; }
.bank-item { padding: 10px !important; font-size: 12px !important; }

/* ── AUTH PAGES ───────────────────────────────────────────────────────────── */
.auth-page {
    grid-template-columns: 1fr !important;
    min-height: calc(100vh - 60px) !important;
}
.auth-left { display: none !important; }
.auth-right {
    padding: 24px 20px 40px !important;
    align-items: flex-start !important;
}
.auth-form-box { max-width: 100% !important; }
.auth-form-title { font-size: 1.3rem !important; }
.form-row-2 { grid-template-columns: 1fr !important; gap: 0 !important; }
.auth-submit-btn { padding: 14px !important; }
.google-btn { padding: 12px !important; font-size: 12px !important; }

/* ── WISHLIST PAGE ────────────────────────────────────────────────────────── */
#wishlist-container {
    grid-template-columns: repeat(2,1fr) !important;
    gap: 10px !important;
    padding: 14px !important;
}

/* ── ORDER SUCCESS ────────────────────────────────────────────────────────── */
.con { padding: 30px 20px !important; }
.greenimage { width: 120px !important; height: 120px !important; }
#h1tag { font-size: 1.2rem !important; }
#tq { font-size: 1rem !important; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
#gora-footer { margin-top: 30px !important; }
.footer-top {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    padding: 28px 14px 20px !important;
}
.footer-brand { grid-column: span 2 !important; }
.footer-brand img { height: 28px !important; }
.footer-tagline { font-size: 11px !important; }
.footer-col h4 { font-size: 10px !important; }
.footer-col ul li a { font-size: 11px !important; line-height: 1.8; }
.footer-col-newsletter { grid-column: span 2 !important; }
.footer-newsletter-form { flex-direction: row !important; }
.footer-newsletter-form input { font-size: 12px !important; }
.footer-newsletter-form button { font-size: 11px !important; padding: 0 12px !important; }

.footer-badges {
    gap: 10px !important;
    padding: 16px 14px !important;
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
}
.footer-badge { font-size: 11px !important; gap: 6px !important; }
.footer-badge i { font-size: 16px !important; }

.footer-seo {
    grid-template-columns: repeat(2,1fr) !important;
    gap: 16px !important;
    padding: 20px 14px !important;
}
.footer-seo-col h5 { font-size: 10px !important; }
.footer-seo-col a { font-size: 11px !important; margin-bottom: 5px !important; }

.footer-about { padding: 18px 14px !important; }
.footer-about h3 { font-size: 10px !important; }
.footer-about p { font-size: 11px !important; line-height: 1.7; }

.footer-bottom {
    padding: 14px !important;
    flex-direction: column !important;
    gap: 8px !important;
    text-align: center;
}
.footer-bottom p, .footer-bottom-links a { font-size: 11px !important; }
.footer-bottom-links { gap: 14px !important; }

/* WhatsApp join button */
#gora-footer .whatsapp-join-btn {
    font-size: 13px !important;
    padding: 10px 18px !important;
    margin-top: 10px !important;
}

/* Social icons */
.footer-social { gap: 8px !important; }
.footer-social a { width: 32px !important; height: 32px !important; font-size: 13px !important; }

/* ── BREADCRUMB ───────────────────────────────────────────────────────────── */
.catName ul { font-size: 11px !important; padding: 10px 0 6px !important; gap: 3px !important; }
.sp-breadcrumb { font-size: 11px !important; padding: 10px 14px 6px !important; }

/* ── ADMIN PANEL ──────────────────────────────────────────────────────────── */
.admin-panel { overflow-x: auto; }

/* ── GENERAL SPACING FIXES ────────────────────────────────────────────────── */
hr { margin: 8px 0 !important; }
.price-box-head { font-size: 10px !important; padding: 10px 14px !important; }
.price-row { padding: 9px 14px !important; font-size: 12px !important; }
.price-row-total { font-size: 14px !important; }
.savings-pill { font-size: 12px !important; padding: 9px 12px !important; }

/* Overlay scrollbar - mobile filter */
body.filter-overlay-active::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.48);
    z-index: 399;
}

} /* end @media (max-width: 768px) */


/* ── EXTRA SMALL: 480px and below ─────────────────────────────────────────── */
@media (max-width: 480px) {

.hero-panel { height: 220px !important; }
.tc-grid { grid-template-columns: repeat(3,1fr) !important; gap: 6px !important; }
.pcard { width: 130px !important; min-width: 130px !important; }
.product-row-6 .pc { width: 130px !important; min-width: 130px !important; }

.product_item_box {
    grid-template-columns: repeat(2,1fr) !important;
    gap: 8px !important;
}

.cart-item { gap: 10px !important; }
.cart-item-img { width: 76px !important; }

.auth-right { padding: 20px 14px 40px !important; }

.checkout-wrap { padding: 10px !important; gap: 10px !important; }

}
