:root {
    --navy: #1a2332;
    --navy2: #243042;
    --gold: #f4a61d;
    --gold2: #e09510;
    --red: #e53935;
    --green: #2e7d32;
    --light: #f3f4f6;
    --white: #ffffff;
    --muted: #6b7280;
    --border: #e5e7eb;
}

/* ── Skeleton shimmer (while images load) ── */
@keyframes shimmer {
    0% {
        background-position: -800px 0;
    }

    100% {
        background-position: 800px 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, #f0f2f5 25%, #e4e6ea 50%, #f0f2f5 75%);
    background-size: 800px 100%;
    animation: shimmer 1.4s infinite;
    border-radius: 6px;
}

/* ── Section heading ── */
.sec-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--navy);
}

.sec-head h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sec-head h3 i {
    color: var(--gold2);
}

.sec-head a {
    font-size: 0.79rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    background: rgba(26, 35, 50, 0.07);
    padding: 5px 14px;
    border-radius: 20px;
    transition:
        background 0.2s,
        color 0.2s;
}

.sec-head a:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ── Category pill strip ── */
.cat-strip {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 6px 0 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cat-strip::-webkit-scrollbar {
    display: none;
}

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.77rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    flex-shrink: 0;
    transition:
        background 0.2s,
        border-color 0.2s,
        transform 0.15s;
}

.cat-pill .count {
    background: rgba(26, 35, 50, 0.08);
    border-radius: 10px;
    padding: 1px 6px;
    font-size: 0.64rem;
    font-weight: 700;
}

.cat-pill:hover {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
    transform: translateY(-1px);
    text-decoration: none;
}

.cat-pill:hover .count {
    background: rgba(244, 166, 29, 0.2);
    color: var(--gold);
}

/* ── Stats bar ── */
.stats-bar {
    background: var(--navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 16px 20px;
    margin: 16px 0 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    padding: 4px 12px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item .num {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-item .lbl {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
}

/* ── Hero grid ── */
.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.hero-main {
    grid-row: 1/3;
    background: linear-gradient(135deg, var(--navy) 0%, #0f1922 100%);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
}

.hero-main::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    background: rgba(244, 166, 29, 0.05);
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-main-content {
    padding: 36px 32px;
    position: relative;
    z-index: 2;
}

.hero-main-content .tag {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.hero-main-content h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.2;
}

.hero-main-content h2 span {
    color: var(--gold);
}

.hero-main-content p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.84rem;
    margin: 0 0 18px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        background 0.2s,
        transform 0.15s;
}

.btn-hero:hover {
    background: #e09510;
    transform: translateY(-1px);
    text-decoration: none;
    color: var(--navy);
}

.hero-side {
    background: linear-gradient(135deg, #0f1922, #1a2332);
    border-radius: 12px;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-side .tag {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 2px 7px;
    border-radius: 4px;
    margin-bottom: 7px;
}

.hero-side h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 3px;
}

.hero-side p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 10px;
}

.btn-hero-sm {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    align-self: flex-start;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 7px;
    padding: 6px 14px;
    font-size: 0.76rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-hero-sm:hover {
    background: #e09510;
    text-decoration: none;
    color: var(--navy);
}

@media (max-width: 767px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-main {
        grid-row: auto;
        min-height: 190px;
    }

    .hero-main-content h2 {
        font-size: 1.3rem;
    }

    .hero-main-content {
        padding: 24px 20px;
    }
}

/* ── Category horizontal scroller ── */
.cat-card-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 6px 0 14px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.cat-card-grid::-webkit-scrollbar {
    display: none;
}

.cat-card {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 18px 14px;
    text-align: center;
    text-decoration: none;
    transition:
        box-shadow 0.2s,
        transform 0.2s,
        background 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 130px;
    max-width: 150px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.cat-card:hover {
    background: var(--navy);
    box-shadow: 0 6px 18px rgba(26, 35, 50, 0.18);
    transform: translateY(-3px);
    text-decoration: none;
}

.cat-card .cc-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(26, 35, 50, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: background 0.2s;
}

.cat-card:hover .cc-icon {
    background: var(--gold);
}

.cat-card .cc-name {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
    transition: color 0.2s;
    text-align: center;
}

.cat-card:hover .cc-name {
    color: #fff;
}

.cat-card .cc-count {
    font-size: 0.63rem;
    color: var(--muted);
    background: rgba(26, 35, 50, 0.06);
    border-radius: 10px;
    padding: 2px 8px;
    transition:
        background 0.2s,
        color 0.2s;
}

.cat-card:hover .cc-count {
    background: rgba(244, 166, 29, 0.2);
    color: var(--gold);
}

/* ── Shared card style ── */
.hp-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
    display: flex;
    flex-direction: column;
}

.hp-card:hover {
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.09);
    transform: translateY(-3px);
}

.hp-card .hc-img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f7f8fb;
    height: 160px;
}

.hp-card .hc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s;
    background: #f0f2f5;
}

.hp-card:hover .hc-img-wrap img {
    transform: scale(1.05);
}

.hc-badge {
    position: absolute;
    top: 7px;
    left: 7px;
    z-index: 2;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.hc-badge.disc {
    background: var(--red);
    color: #fff;
}

.hc-badge.new {
    background: #22c55e;
    color: #fff;
}

.hc-badge.gold {
    background: var(--gold);
    color: var(--navy);
}

.hp-card .hc-body {
    padding: 10px 11px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hp-card .hc-cat {
    font-size: 0.64rem;
    color: var(--muted);
    margin-bottom: 3px;
}

.hp-card .hc-name {
    font-size: 0.79rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
    margin-bottom: 5px;
    flex: 1;
}

.hp-card .hc-name:hover {
    color: #0d6efd;
}

.hp-card .hc-unit {
    display: inline-block;
    background: rgba(26, 35, 50, 0.07);
    color: var(--navy);
    font-size: 0.58rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 3px;
    margin-bottom: 5px;
}

.hp-card .hc-prices {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.hp-card .hc-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
}

.hp-card .hc-orig {
    font-size: 0.68rem;
    color: var(--muted);
    text-decoration: line-through;
}

.hp-card .hc-vendor {
    font-size: 0.62rem;
    color: var(--muted);
    margin-bottom: 8px;
}

.btn-hc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 7px;
    font-size: 0.73rem;
    font-weight: 600;
    text-decoration: none;
    transition:
        background 0.2s,
        color 0.2s;
    cursor: pointer;
}

.btn-hc:hover {
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
}

/* Flash card (larger img) */
.flash-card .hc-img-wrap {
    height: 200px;
}

@media (max-width: 576px) {
    .flash-card .hc-img-wrap {
        height: 150px;
    }
}

/* ── Static grid fallbacks (non-slick rows) ── */
.flash-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media (max-width: 992px) {
    .flash-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .flash-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.prod-row-wrap {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

@media (max-width: 1200px) {
    .prod-row-wrap {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .prod-row-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── CTA banner ── */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, #0d1b26 100%);
    border-radius: 14px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    margin: 24px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 200px;
    height: 200px;
    background: rgba(244, 166, 29, 0.07);
    border-radius: 50%;
}

.cta-banner h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px;
}

.cta-banner h3 span {
    color: var(--gold);
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.83rem;
    margin: 0;
}

.cta-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cta-gold {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 8px;
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-cta-gold:hover {
    background: #e09510;
    text-decoration: none;
    color: var(--navy);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition:
        border-color 0.2s,
        background 0.2s;
}

.btn-cta-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.07);
    text-decoration: none;
    color: #fff;
}

/* ── Features strip ── */
.features-strip {
    background: var(--navy);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 10px;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feat-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(244, 166, 29, 0.14);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feat-icon i {
    font-size: 1rem;
    color: var(--gold);
}

.feat-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}

.feat-sub {
    font-size: 0.67rem;
    color: rgba(255, 255, 255, 0.48);
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* ══════════════════════════════════════
       SLICK SLIDER OVERRIDES
    ══════════════════════════════════════ */

/* Wrapper padding to expose prev/next arrows */
.slick-slider-wrap {
    position: relative;
    margin: 0 -6px;
    padding-bottom: 4px;
}

/* Each slide gets a gutter */
.slick-slider-wrap .slick-slide {
    padding: 4px 6px 8px;
}

/* Make cards fill full slide height uniformly */
.slick-slider-wrap .slick-slide .hp-card {
    height: 100%;
}

/* ── Custom arrow buttons ── */
.slick-slider-wrap .slick-prev,
.slick-slider-wrap .slick-next {
    width: 34px;
    height: 34px;
    background: var(--navy);
    border-radius: 50%;
    z-index: 10;
    top: 38%;
    transition:
        background 0.2s,
        transform 0.15s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

.slick-slider-wrap .slick-prev {
    left: -14px;
}

.slick-slider-wrap .slick-next {
    right: -14px;
}

.slick-slider-wrap .slick-prev:hover,
.slick-slider-wrap .slick-next:hover {
    background: var(--gold);
    /* transform: scale(1.1); */
}

/* Arrow icons via pseudo content */
.slick-slider-wrap .slick-prev::before,
.slick-slider-wrap .slick-next::before {
    font-family: "bootstrap-icons";
    font-size: 1rem;
    color: #fff;
    opacity: 1;
    line-height: 1;
}

.slick-slider-wrap .slick-prev::before {
    content: "\F284";
}

/* bi-chevron-left */
.slick-slider-wrap .slick-next::before {
    content: "\F285";
}

/* bi-chevron-right */

.slick-slider-wrap .slick-prev:hover::before,
.slick-slider-wrap .slick-next:hover::before {
    color: var(--navy);
}

/* ── Dots ── */
.slick-slider-wrap .slick-dots {
    bottom: -18px;
}

.slick-slider-wrap .slick-dots li button::before {
    font-size: 7px;
    color: var(--navy);
    opacity: 0.25;
}

.slick-slider-wrap .slick-dots li.slick-active button::before {
    color: var(--gold2);
    opacity: 1;
}

/* ── Slide-in animation on each visible card ── */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slick-slider-wrap .slick-slide.slick-active .hp-card {
    animation: slideUp 0.35s ease both;
}

/* stagger per column position */
.slick-slider-wrap .slick-slide:nth-child(2).slick-active .hp-card {
    animation-delay: 0.05s;
}

.slick-slider-wrap .slick-slide:nth-child(3).slick-active .hp-card {
    animation-delay: 0.1s;
}

.slick-slider-wrap .slick-slide:nth-child(4).slick-active .hp-card {
    animation-delay: 0.15s;
}

/* Mobile: hide arrows, show dots */
@media (max-width: 576px) {
    .slick-slider-wrap .slick-prev,
    .slick-slider-wrap .slick-next {
        display: none !important;
    }
}

/* Add this inside your <style> block */

/* Chrome, Safari, Edge */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.qty-input {
    -moz-appearance: textfield;
}

.qty-input {
    width: 56px;
    height: 38px;
    border: none;
    border-left: 1.5px solid var(--border);
    border-right: 1.5px solid var(--border);
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    outline: none;
    -moz-appearance: textfield; /* ← add */
}

/* ← add this block */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

:root {
    --navy: #1a2332;
    --gold: #f4a61d;
    --gold2: #e09510;
    --red: #e53935;
    --green: #16a34a;
    --border: #e5e7eb;
    --light: #f8f9fa;
    --muted: #6b7280;
}

/* ── Breadcrumb ── */
.breadcrumb-wrap {
    background: #f8f9fa;
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    margin-bottom: 28px;
}

.breadcrumb-wrap .bc {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--muted);
    flex-wrap: wrap;
}

.breadcrumb-wrap .bc a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-wrap .bc a:hover {
    color: var(--navy);
}

.breadcrumb-wrap .bc .sep {
    color: #d1d5db;
}

.breadcrumb-wrap .bc .cur {
    color: var(--navy);
    font-weight: 600;
}

/* ── Image gallery ── */
.gallery-wrap {
    position: sticky;
    top: 20px;
}

.main-img-box {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #f8f9fa;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: zoom-in;
}

.main-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.main-img-box:hover img {
    transform: scale(1.08);
}

.main-img-box .zoom-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 4px;
    pointer-events: none;
}

.thumb-strip {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.thumb-strip::-webkit-scrollbar {
    display: none;
}

.thumb {
    width: 72px;
    height: 72px;
    border-radius: 9px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.2s;
    background: #f8f9fa;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb.active {
    border-color: var(--navy);
}

.thumb:hover {
    border-color: var(--gold);
}

/* ── Product Info ── */
.product-info {
    padding-left: 8px;
}

.prod-cat-badge {
    display: inline-block;
    background: rgba(26, 35, 50, 0.07);
    color: var(--navy);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    transition: background 0.2s;
}

.prod-cat-badge:hover {
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
}

.product-info h1 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 14px;
}

/* Price block */
.price-block {
    margin-bottom: 18px;
}

.price-main {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--navy);
}

.price-orig {
    font-size: 1rem;
    color: var(--muted);
    text-decoration: line-through;
    margin-left: 8px;
}

.price-unit {
    display: inline-block;
    background: rgba(26, 35, 50, 0.07);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
}

.discount-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 5px;
    margin-left: 6px;
    vertical-align: middle;
}

.saving-text {
    font-size: 0.8rem;
    color: var(--green);
    font-weight: 600;
    margin-top: 4px;
}

/* Stock badge */
.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.stock-badge.in-stock {
    background: #dcfce7;
    color: var(--green);
}

.stock-badge.low-stock {
    background: #fef9c3;
    color: #854d0e;
}

.stock-badge.out-stock {
    background: #fee2e2;
    color: var(--red);
}

/* Divider */
.info-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 16px 0;
}

/* Vendor card */
.vendor-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    margin-bottom: 16px;
    text-decoration: none;
}

.vendor-avatar {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
}

.vendor-info .vname {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
}

.vendor-info .vloc {
    font-size: 0.72rem;
    color: var(--muted);
}

.vendor-info .vstatus {
    display: inline-block;
    background: #dcfce7;
    color: var(--green);
    font-size: 0.62rem;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 3px;
}

/* Qty selector */
.qty-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--border);
    border-radius: 9px;
    overflow: hidden;
    width: fit-content;
    margin-bottom: 16px;
}

.qty-btn {
    width: 38px;
    height: 38px;
    border: none;
    background: #f8f9fa;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--navy);
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--gold);
}

.qty-input {
    width: 56px;
    height: 38px;
    border: none;
    border-left: 1.5px solid var(--border);
    border-right: 1.5px solid var(--border);
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    outline: none;
}

/* Action buttons */
.btn-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 10px;
    padding: 13px 28px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition:
        background 0.2s,
        transform 0.15s;
    width: 100%;
}

.btn-add-cart:hover {
    background: var(--gold2);
    transform: translateY(-1px);
    color: var(--navy);
    text-decoration: none;
}

.btn-enquire {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px 28px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition:
        background 0.2s,
        transform 0.15s;
    width: 100%;
}

.btn-enquire:hover {
    background: #243042;
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

.btn-wishlist {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #fff;
    color: var(--navy);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    flex-shrink: 0;
}

.btn-wishlist:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: var(--red);
}

/* Bulk price table */
.bulk-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
    margin-top: 8px;
}

.bulk-table th {
    background: var(--navy);
    color: #fff;
    padding: 8px 12px;
    text-align: left;
    font-size: 0.74rem;
    font-weight: 600;
}

.bulk-table th:last-child,
.bulk-table td:last-child {
    text-align: right;
}

.bulk-table td {
    padding: 8px 12px;
    border-bottom: 1px solid var(--border);
    color: var(--navy);
}

.bulk-table tr:last-child td {
    border-bottom: none;
}

.bulk-table tr:nth-child(even) td {
    background: #f8f9fa;
}

.bulk-table .best-price td {
    background: #fefce8;
    font-weight: 700;
}

.best-label {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.58rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 3px;
    margin-left: 4px;
}

/* Spec table */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
    margin-top: 8px;
}

.spec-table tr:nth-child(even) td {
    background: #f8f9fa;
}

.spec-table td {
    padding: 9px 12px;
    border-bottom: 1px solid var(--border);
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--navy);
    width: 40%;
}

.spec-table td:last-child {
    color: #374151;
}

.spec-table tr:last-child td {
    border-bottom: none;
}

/* Tabs */
.detail-tabs {
    margin-top: 32px;
}

.detail-tabs .nav-tabs {
    border-bottom: 2px solid var(--navy);
}

.detail-tabs .nav-tabs .nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    border: none;
    padding: 10px 20px;
    border-radius: 0;
    transition: color 0.2s;
}

.detail-tabs .nav-tabs .nav-link.active {
    color: var(--navy);
    border-bottom: 2px solid var(--gold);
    background: #ffbf5a;
    margin-bottom: -2px;
    border-radius: 10px 10px 0px 0px;
}

.detail-tabs .nav-tabs .nav-link:hover {
    color: var(--navy);
}

.detail-tabs .tab-content {
    padding: 20px 0;
}

/* Info badges */
.info-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f8f9fa;
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 5px 12px;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--navy);
}

.info-badge i {
    color: var(--gold);
}

/* Related products */
.related-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

@media (max-width: 1200px) {
    .related-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.rel-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}

.rel-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09);
    transform: translateY(-3px);
}

.rel-card .rc-img {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: #f8f9fa;
}

.rel-card .rc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.rel-card:hover .rc-img img {
    transform: scale(1.05);
}

.rel-card .rc-body {
    padding: 10px 11px 12px;
}

.rel-card .rc-cat {
    font-size: 0.62rem;
    color: var(--muted);
    margin-bottom: 2px;
}

.rel-card .rc-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
    margin-bottom: 5px;
}

.rel-card .rc-name:hover {
    color: #0d6efd;
}

.rel-card .rc-price {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
}

.rel-card .rc-unit {
    font-size: 0.62rem;
    color: var(--muted);
    margin-bottom: 6px;
}

.btn-rel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 7px;
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-rel:hover {
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
}

/* Sec heading */
.sec-head2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--navy);
}

.sec-head2 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}

.sec-head2 a {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    background: rgba(26, 35, 50, 0.07);
    padding: 4px 12px;
    border-radius: 20px;
    transition: background 0.2s;
}

.sec-head2 a:hover {
    background: var(--gold);
    color: var(--navy);
}

@media (max-width: 768px) {
    .product-info {
        padding-left: 0;
        margin-top: 20px;
    }

    .product-info h1 {
        font-size: 1.2rem;
    }

    .price-main {
        font-size: 1.5rem;
    }
}

/* ── Top bar ── */
.topbar {
    background: #1a2332;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.container-topbar {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar-left a {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.topbar-left a:hover {
    color: #f4a61d;
}

.topbar-left .sep {
    color: rgba(255, 255, 255, 0.2);
}

.topbar-center {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.55);
}

.topbar-center strong {
    color: #f4a61d;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-right a {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.topbar-right a:hover {
    color: #f4a61d;
    text-decoration: none;
}

.topbar-right .phone-badge {
    background: #f4a61d;
    color: #1a2332;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
}

/* ── Main Header ── */
.site-header {
    background: #fff;
    border-bottom: 2px solid #f0f2f5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 68px;
}

/* Logo */
.header-logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo .logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a2332;
    letter-spacing: -0.3px;
    line-height: 1;
}

.header-logo .logo-text span {
    color: #f4a61d;
}

.header-logo .logo-sub {
    font-size: 0.6rem;
    color: #6b7280;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1;
}

/* Search bar */
.header-search {
    flex: 1;
    max-width: 560px;
}

.search-form {
    display: flex;
    border: 2px solid #1a2332;
    border-radius: 10px;
    overflow: hidden;
    height: 40px;
}

.search-cat-select {
    border: none;
    border-right: 1px solid #e5e7eb;
    background: #f8f9fa;
    padding: 0 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #1a2332;
    cursor: pointer;
    min-width: 120px;
    outline: none;
}

.search-input {
    flex: 1;
    border: none;
    padding: 0 14px;
    font-size: 0.85rem;
    color: #1a2332;
    outline: none;
    background: #fff;
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-btn {
    background: #1a2332;
    color: #fff;
    border: none;
    padding: 0 18px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
    display: flex;
    align-items: center;
}

.search-btn:hover {
    background: #f4a61d;
    color: #1a2332;
}

/* Nav */
.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.nav-link-item {
    font-size: 0.82rem;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 7px;
    transition:
        background 0.2s,
        color 0.2s;
    white-space: nowrap;
}

.nav-link-item:hover,
.nav-link-item.active {
    background: #f4a61d;
    color: #1a2332;
    text-decoration: none;
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 10px;
    border-radius: 9px;
    text-decoration: none;
    color: #374151;
    font-size: 0.65rem;
    font-weight: 600;
    transition:
        background 0.2s,
        color 0.2s;
    cursor: pointer;
    border: none;
    background: none;
    position: relative;
}

.action-btn i {
    font-size: 1.2rem;
    color: #1a2332;
}

.action-btn:hover {
    background: #f8f9fa;
    text-decoration: none;
    color: #1a2332;
}

.action-btn .badge-dot {
    position: absolute;
    top: 4px;
    right: 6px;
    width: 16px;
    height: 16px;
    background: #f4a61d;
    color: #1a2332;
    border-radius: 50%;
    font-size: 0.55rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Account dropdown */
.account-wrap {
    position: relative;
}

.account-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    border: 1px solid #e5e7eb;
    min-width: 220px;
    z-index: 999;
    padding: 8px 0;
    animation: fadeDown 0.15s ease;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.account-wrap:hover .account-dropdown {
    display: block;
}

.account-dropdown .acc-header {
    padding: 12px 16px 10px;
    border-bottom: 1px solid #f0f2f5;
    margin-bottom: 6px;
}

.account-dropdown .acc-header .acc-name {
    font-size: 0.84rem;
    font-weight: 700;
    color: #1a2332;
}

.account-dropdown .acc-header .acc-email {
    font-size: 0.72rem;
    color: #9ca3af;
}

.account-dropdown a,
.account-dropdown button {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    font-size: 0.82rem;
    color: #374151;
    text-decoration: none;
    transition: background 0.15s;
    border: none;
    background: none;
    width: auto;
    text-align: left;
    cursor: pointer;
}

.account-dropdown a:hover,
.account-dropdown button:hover {
    background: #f8f9fa;
    color: #1a2332;
    text-decoration: none;
}

.account-dropdown a i,
.account-dropdown button i {
    color: #6b7280;
    font-size: 0.85rem;
}

.account-dropdown .acc-divider {
    border: none;
    border-top: 1px solid #f0f2f5;
    margin: 4px 0;
}

.account-dropdown .btn-login-acc {
    margin: 8px 12px;
    display: block;
    background: #1a2332;
    color: #fff;
    border-radius: 8px;
    padding: 9px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s;
}

.account-dropdown .btn-login-acc:hover {
    background: #f4a61d;
    color: #1a2332;
    text-decoration: none;
}

.account-dropdown .btn-reg-acc {
    margin: 0 12px 8px;
    display: block;
    background: transparent;
    color: #1a2332;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: border-color 0.2s;
}

.account-dropdown .btn-reg-acc:hover {
    border-color: #f4a61d;
    color: #1a2332;
    text-decoration: none;
}

/* Category nav bar */
.cat-nav-bar {
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
}

.cat-nav-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.cat-nav-inner::-webkit-scrollbar {
    display: none;
}

.cat-nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    padding: 9px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition:
        color 0.2s,
        border-color 0.2s;
    flex-shrink: 0;
}

.cat-nav-link:hover,
.cat-nav-link.active {
    color: #1a2332;
    border-bottom-color: #f4a61d;
    text-decoration: none;
}

.cat-nav-link i {
    font-size: 0.85rem;
    color: #f4a61d;
}

/* Vendor CTA pill in nav */
.vendor-nav-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    flex-shrink: 0;
    background: #1a2332;
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.2s;
}

.vendor-nav-btn:hover {
    background: #f4a61d;
    color: #1a2332;
    text-decoration: none;
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: #1a2332;
    font-size: 1.4rem;
}

@media (max-width: 991px) {
    .mobile-toggle {
        display: flex;
    }

    .header-nav {
        display: none;
    }

    .header-search {
        max-width: 100%;
    }

    .topbar-left,
    .topbar-center {
        display: none;
    }
}

@media (max-width: 575px) {
    .search-cat-select {
        display: none;
    }

    .header-actions .action-btn span {
        display: none;
    }
}


    /* ── Sidebar filter ───────────────────────────── */
    .shop-sidebar {
        position: sticky;
        top: 20px;
    }

    .filter-card {
        background: #fff;
        border-radius: 12px;
        border: 1px solid #e8ecef;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .filter-head {
        background: #f7f8fb;
        padding: 12px 18px;
        font-size: 0.85rem;
        font-weight: 700;
        color: #1a2332;
        border-bottom: 1px solid #e8ecef;
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .filter-body {
        padding: 14px 18px;
    }

    .cat-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 7px 0;
        border-bottom: 1px solid #f0f2f5;
        text-decoration: none;
        transition: color .2s;
    }

    .cat-item:last-child {
        border-bottom: none;
    }

    .cat-item .cat-name {
        font-size: 0.83rem;
        color: #374151;
        font-weight: 500;
    }

    .cat-item:hover .cat-name,
    .cat-item.active .cat-name {
        color: #0d6efd;
    }

    .cat-item.active .cat-name {
        font-weight: 700;
    }

    .cat-item .cat-count {
        background: #f0f2f5;
        border-radius: 20px;
        padding: 1px 8px;
        font-size: 0.70rem;
        font-weight: 600;
        color: #6b7280;
    }

    .cat-item.active .cat-count {
        background: #0d6efd;
        color: #fff;
    }

    .cat-children {
        padding-left: 12px;
    }

    .cat-children .cat-item .cat-name {
        font-size: 0.78rem;
        color: #6b7280;
    }

    /* Price range inputs */
    .price-range-wrap {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .price-range-wrap input {
        width: 100%;
        border: 1.5px solid #e4e8ef;
        border-radius: 8px;
        padding: 7px 10px;
        font-size: 0.82rem;
        color: #1a2332;
        background: #f8f9fb;
    }

    .price-range-wrap input:focus {
        outline: none;
        border-color: #0d6efd;
        background: #fff;
    }

    .btn-apply-filter {
        width: 100%;
        background: #1a2332;
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 9px;
        font-size: 0.83rem;
        font-weight: 600;
        cursor: pointer;
        margin-top: 10px;
        transition: background .2s;
    }

    .btn-apply-filter:hover {
        background: #f4a61d;
        color: #1a2332;
    }

    /* ── Shop top bar ─────────────────────────────── */
    .shop-topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
        background: #fff;
        border-radius: 10px;
        padding: 12px 18px;
        border: 1px solid #e8ecef;
    }

    .shop-topbar .result-text {
        font-size: 0.84rem;
        color: #6b7280;
    }

    .shop-topbar .result-text strong {
        color: #1a2332;
    }

    .sort-select {
        border: 1.5px solid #e4e8ef;
        border-radius: 8px;
        padding: 7px 12px;
        font-size: 0.83rem;
        color: #1a2332;
        background: #f8f9fb;
        cursor: pointer;
    }

    .sort-select:focus {
        outline: none;
        border-color: #0d6efd;
    }

    /* ── Product card overrides for shop ─────────── */
    .shop-product-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    @media (max-width: 1200px) {
        .shop-product-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 576px) {
        .shop-product-grid {
            grid-template-columns: 1fr;
        }
    }

    .shop-card {
        background: #fff;
        border-radius: 12px;
        border: 1px solid #e8ecef;
        overflow: hidden;
        transition: box-shadow .2s, transform .2s;
    }

    .shop-card:hover {
        box-shadow: 0 8px 28px rgba(0, 0, 0, .10);
        transform: translateY(-3px);
    }

    .shop-card .img-wrap {
        position: relative;
        width: 100%;
        padding-top: 75%;
        overflow: hidden;
        background: #f7f8fb;
    }

    .shop-card .img-wrap img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .3s;
    }

    .shop-card:hover .img-wrap img {
        transform: scale(1.04);
    }

    .shop-card .img-wrap .badge-label {
        position: absolute;
        top: 10px;
        left: 10px;
        font-size: 0.68rem;
        font-weight: 700;
        padding: 3px 8px;
        border-radius: 4px;
        text-transform: uppercase;
    }

    .shop-card .img-wrap .badge-label.discount {
        background: #f4a61d;
        color: #1a2332;
    }

    .shop-card .img-wrap .badge-label.new {
        background: #22c55e;
        color: #fff;
    }

    .shop-card .card-body-inner {
        padding: 14px 16px 16px;
    }

    .shop-card .cat-tag {
        font-size: 0.70rem;
        color: #9ca3af;
        font-weight: 500;
        margin-bottom: 4px;
        text-decoration: none;
        display: block;
    }

    .shop-card .prod-name {
        font-size: 0.84rem;
        font-weight: 600;
        color: #1a2332;
        text-decoration: none;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .shop-card .prod-name:hover {
        color: #0d6efd;
    }

    .shop-card .unit-badge {
        display: inline-block;
        background: rgba(26, 35, 50, .07);
        color: #1a2332;
        font-size: 0.68rem;
        font-weight: 600;
        padding: 2px 8px;
        border-radius: 4px;
        margin-bottom: 8px;
    }

    .shop-card .price-row {
        display: flex;
        align-items: baseline;
        gap: 8px;
        margin-bottom: 10px;
    }

    .shop-card .price-main {
        font-size: 1.05rem;
        font-weight: 700;
        color: #1a2332;
    }

    .shop-card .price-unit {
        font-size: 0.72rem;
        color: #9ca3af;
    }

    .shop-card .price-original {
        font-size: 0.78rem;
        color: #9ca3af;
        text-decoration: line-through;
    }

    .shop-card .vendor-row {
        font-size: 0.72rem;
        color: #9ca3af;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .btn-add-cart {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: 100%;
        background: #1a2332;
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 9px;
        font-size: 0.82rem;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        transition: background .2s, color .2s;
    }

    .btn-add-cart:hover {
        background: #f4a61d;
        color: #1a2332;
        text-decoration: none;
    }

    /* No products */
    .no-products {
        grid-column: 1 / -1;
        text-align: center;
        padding: 60px 20px;
        color: #9ca3af;
    }

    .no-products i {
        font-size: 3rem;
        display: block;
        margin-bottom: 12px;
    }

    /* Pagination tweaks */
    .pagination .page-link {
        border-radius: 8px !important;
        margin: 0 2px;
        font-size: 0.83rem;
        color: #1a2332;
        border-color: #e4e8ef;
    }

    .pagination .page-item.active .page-link {
        background: #1a2332;
        border-color: #1a2332;
    }

    /* Active filter pills */
    .active-filters {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 14px;
    }

    .filter-pill {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: rgba(13, 110, 253, .08);
        color: #0d6efd;
        border-radius: 20px;
        padding: 3px 10px;
        font-size: 0.75rem;
        font-weight: 600;
        text-decoration: none;
    }

    .filter-pill:hover {
        background: #dc3545;
        color: #fff;
        text-decoration: none;
    }

