:root {
    --primary: #8f151a;
    --primary-light: #f3ecec;
    --primary-dark: #61080b;
    --accent: #f4a916;
    --dark-bg: #1a1a1a;
    --dark: #1a2e20;
    --text-dark: #222;
    --text-muted: #666;
    --hero-bg: #f5e9d0;
    --section-bg: #fafafa;


    --muted: #6b7c72;
    --border: #e0ebe4;
    --bg: #f8faf9;
    --card-bg: #ffffff;
    --badge-bg: #d4edda;
    --badge-color: #1c6137;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1420px;
    }
}


/* ── TOP BAR ── */
/* ── TOP BAR ── */
.topbar {
    background: var(--dark);
    color: #d8f0dd;
    font-size: 0.78rem;
    padding: 7px 0;
    text-align: center;
    letter-spacing: 0.3px;
    display: none;
}

.topbar span {
    margin: 0 12px;
}

.topbar i {
    color: var(--accent);
    margin-right: 4px;
}

.search-box {
    display: none;
    width: 200px;
    transition: all 0.3s ease;
}

.search-box.show {
    display: block;
}

/* ── NAVBAR ── */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    padding: 10px 0;
}

.navbar-brand img {
    height: 50px;
}

.navbar-brand span {
    font-family: "Libre Baskerville", serif, serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
}

.nav-link {
    font-weight: 700;
    color: #333 !important;
    font-size: 1rem;
    padding: 8px 14px !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.navbar .btn-outline-warning {
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
}

.navbar .btn-outline-warning:hover {
    background: var(--primary);
    color: #fff;
}

.navbar-icons a {
    color: #333;
    font-size: 18px;
    margin-left: 12px;
    text-decoration: none;
}

.navbar-icons a:hover {
    color: var(--primary);
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-light);
    color: var(--primary) !important;
}

.nav-link.active {
    font-weight: 600;
}

/* ── TOP BAR ── */
.topbar {
    background: var(--dark);
    color: #d8f0dd;
    font-size: 0.78rem;
    padding: 7px 0;
    text-align: center;
    letter-spacing: 0.3px;
}

.topbar span {
    margin: 0 12px;
}

.topbar i {
    color: var(--accent);
    margin-right: 4px;
}


/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, #f5e9d0 0%, #fdf3dc 50%, #e8f5e3 100%);
    min-height: 480px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 160, 32, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: "Libre Baskerville", serif, serif;
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 900;
    line-height: 1.1;
    color: #1a1a1a;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    color: #555;
    font-size: 20px;
    max-width: 440px;
    line-height: 1.7;
    margin: 20px 0 28px;
}

.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 28px;
    font-weight: 800;
    font-size: 14px;
    transition: all .3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 160, 32, 0.35);
}

.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 30px;
    padding: 10px 26px;
    font-weight: 800;
    font-size: 14px;
    background: transparent;
    transition: all .3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: #fff;
}

.hero-badges-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-pill {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(232, 160, 32, 0.3);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-pill i {
    color: var(--primary);
}

.hero-img-wrap {
    position: relative;
}

.hero-img-wrap img {
    border-radius: 20px;
    max-width: 100%;
}

/* ── PROMO BANNER ── */
.promo-banner {
    background: linear-gradient(90deg, #8f151a 0%, #9b191c 100%);
    /*
    linear-gradient(90deg, #674101 0%, #e8a020 100%);
    */
    padding: 40px 0;
    overflow: hidden;
}

.promo-banner .label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

.promo-banner h2 {
    font-family: "Libre Baskerville", serif, serif;
    font-size: 36px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.promo-banner p {
    color: #555;
    font-size: 14px;
    margin-bottom: 16px;
}

/* ── SECTION TITLE ── */
.section-title {
    font-family: "Libre Baskerville", serif, serif;
    font-size: 32px;
    font-weight: 900;
    color: #1a1a1a;
}

.section-divider {
    width: 50px;
    height: 3px;
    background: var(--primary);
    margin: 10px auto 20px;
    border-radius: 2px;
}

.section-divider.left {
    margin-left: 0;
}

/* ── CATEGORIES GRID ── */
.categories-section {
    padding: 60px 0;
    background: #fff;
}

.cat-intro {
    color: #555;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
}

.cat-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
}

.cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cat-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
    padding: 30px 16px 14px;
}

.cat-card .overlay span {
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.cat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 180px 180px;
    gap: 12px;
}

.cat-grid .cat-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.cat-grid .cat-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.cat-grid .cat-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1 / span 2;
}

.cat-grid .cat-card:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}

.cat-grid .cat-card:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}

.cat-grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 180px 180px;
    gap: 12px;
    margin-top: 12px;
}

.cat-grid2 .cat-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.cat-grid2 .cat-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.cat-grid2 .cat-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.cat-grid2 .cat-card:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.cat-grid2 .cat-card:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

/* ── BIG TEXT ── */
.big-text-section {
    padding: 50px 0 20px;
    text-align: center;
}

.big-brand-text {
    font-family: "Libre Baskerville", serif, serif;
    font-size: clamp(60px, 12vw, 136px);
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: -2px;
    line-height: 1;
}

/* ── STATS ── */
.stats-section {
    padding: 60px 0;
    background: #fff;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 12px;
}

.stat-number {
    font-family: "Libre Baskerville", serif, serif;
    font-size: 42px;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    font-weight: 700;
    color: #555;
    margin-top: 8px;
}

.stat-desc {
    font-size: 16px;
    color: #999;
    margin-top: 4px;
}

/* ── PRODUCTS ── */
.products-section {
    padding: 60px 0;
    background: var(--section-bg);
}

.product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: box-shadow .3s, transform .3s;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.product-card .img-wrap {
    background: #fff;
    //height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.product-card .img-wrap img {
    /* max-height: 140px; */
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.product-card .card-body {
    padding: 14px;
}

.product-card .card-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.4;
}

.product-card .card-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
}

.wmax-content {
    width: max-content;
    margin-top: 6px;
}

.btn-add {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    transition: all .3s;
}

.btn-add:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.view-all-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}

.view-all-link:hover {
    text-decoration: underline;
}

/* ── STORE ── */
.store-section {
    padding: 60px 0;
    background: #fff;
}

.store-img {
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
}

.store-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-info {
    padding: 20px 30px;
}

.store-info h3 {
    font-family: "Libre Baskerville", serif, serif;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 20px;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f5e8;
    color: #2d8a2d;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.store-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #444;
}

.store-detail i {
    color: var(--accent);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ── DELIVERY DARK ── */
.delivery-section {
    background: #9b191c;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.delivery-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 160, 32, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.delivery-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 160, 32, 0.15);
    border: 1px solid rgba(232, 160, 32, 0.3);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.delivery-section h2 {
    font-family: "Libre Baskerville", serif, serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.delivery-section h2 span {
    color: var(--accent);
}

.delivery-section p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.delivery-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.delivery-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(232, 160, 32, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    flex-shrink: 0;
}

.delivery-feature h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 4px;
}

.delivery-feature p {
    color: #999;
    font-size: 13px;
    margin: 0;
}

.btn-cta-dark {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 28px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s;
}

.btn-cta-dark:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 24px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s;
}

.btn-whatsapp:hover {
    background: #1ebe5c;
    color: #fff;
}

/* ── BRANDS ── */
.brands-section {
    padding: 50px 0;
    background: #f8f8f8;
}

.brands-section h4 {
    font-family: "Libre Baskerville", serif, serif;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 8px;
}

.brand-logo {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    transition: box-shadow .3s;
}

.brand-logo:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.brand-logo img {
    max-height: 50px;
    max-width: max-content;
    object-fit: contain;
    filter: grayscale(80%);
    transition: filter .3s;
}

.brand-logo:hover img {
    filter: none;
}

/* ── FOOTER ── */
footer {
    background: #111;
    color: #ccc;
    padding: 60px 0 0;
}

footer h6 {
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

footer a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    display: block;
    margin-bottom: 8px;
    transition: color .2s;
}

footer a:hover {
    color: var(--primary);
}

.footer-brand {
    font-family: "Libre Baskerville", serif, serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
}

.footer-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    margin: 12px 0 20px;
}

.footer-contact {
    font-size: 13px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding: 18px 0;
    margin-top: 40px;
    font-size: 12px;
    color: #555;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #222;
    border-radius: 50%;
    color: #aaa;
    font-size: 15px;
    margin-right: 8px;
    text-decoration: none;
    transition: all .3s;
}

.social-icons a:hover {
    background: var(--primary);
    color: #fff;
}



/* ── RESPONSIVE ── */
@media (max-width: 768px) {

    .cat-grid,
    .cat-grid2 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .cat-grid .cat-card:nth-child(3),
    .cat-grid2 .cat-card:nth-child(1) {
        grid-column: auto;
        grid-row: auto;
    }

    .hero {
        padding: 40px 0;
    }

    .big-brand-text {
        font-size: 60px;
    }
}



/* ── PAGE HEADER ── */
.page-header {
    background: linear-gradient(90deg, #8f151a 0%, #9b191c 100%);
    /*linear-gradient(135deg, var(--dark) 0%, #2c6e49 100%)*/

    color: #fff;
    padding: 44px 0 36px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 320px;
    height: 320px;
    background: rgba(244, 169, 22, .12);
    border-radius: 50%;
}

.page-header h1 {
    font-family: "Libre Baskerville", serif;
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 6px;
}

.page-header p {
    font-size: 0.9rem;
    color: #fff;
    margin: 0;
}

.total-badge {
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}














/* ── SIDEBAR ── */
.sidebar-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    position: sticky;
    top: 80px;
}

.sidebar-title {
    background: var(--primary);
    color: #fff;
    padding: 14px 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.category-list {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 20px;
    text-decoration: none;
    color: #2a2a2a;
    font-size: 0.84rem;
    transition: background .15s, color .15s;
    border-left: 3px solid transparent;
}

.category-list li a:hover,
.category-list li a.active {
    background: var(--primary-light);
    color: var(--primary);
    border-left-color: var(--primary);
    font-weight: 500;
}

.category-list li a .count {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
}

.category-list li a.active .count {
    background: var(--primary);
    color: #fff;
}

/* ── TOOLBAR ── */
.toolbar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-wrap {
    flex: 1;
    position: relative;
}

.search-wrap input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 9px 14px 9px 40px;
    font-size: 0.86rem;
    font-family: 'Nunito', sans-serif;
    outline: none;
    transition: border-color .2s;
}

.search-wrap input:focus {
    border-color: var(--primary);
}

.search-wrap i {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 0.95rem;
}

.toolbar select {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 0.84rem;
    font-family: 'Nunito', sans-serif;
    color: #2a2a2a;
    outline: none;
    cursor: pointer;
}

.view-btns button {
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    padding: 8px 10px;
    color: var(--muted);
    cursor: pointer;
    transition: all .2s;
    line-height: 1;
}

.view-btns button.active,
.view-btns button:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.result-count {
    font-size: 0.82rem;
    color: var(--muted);
    white-space: nowrap;
}

/* ── PRODUCT CARDS ── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media(max-width:1199px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:767px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .22s, box-shadow .22s, border-color .22s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(44, 110, 73, .13);
    border-color: var(--primary);
}

.product-card:hover .card-overlay {
    opacity: 1;
}

.card-img-wrap {
    background: #f8f4f4;
    position: relative;
    padding: 1rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-img-wrap img {
    /* max-height: 140px; */
    max-width: 100%;
    object-fit: contain;
    transition: transform .3s;
}

.product-card:hover .card-img-wrap img {
    transform: scale(1.07);
}

.cat-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 0.67rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 110, 73, .08);
    opacity: 0;
    transition: opacity .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-overlay span {
    background: var(--primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(44, 110, 73, .35);
}

.card-body {
    padding: 14px 16px 16px;
}

.card-brand {
    font-size: 0.73rem;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.card-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a2e20;
    line-height: 1.3;
    margin-bottom: 8px;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.weight-tag {
    background: #f0f4f1;
    color: #3a5c45;
    font-size: 0.73rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.origin-tag {
    font-size: 0.73rem;
    color: var(--muted);
}

/* ── LOAD MORE ── */
.load-more-wrap {
    text-align: center;
    margin-top: 32px;
}

.btn-load {
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 12px 36px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    transition: all .2s;
}

.btn-load:hover {
    background: var(--primary);
    color: #fff;
}

/* ── PRODUCT MODAL ── */
.modal-content {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .18);
}

.modal-dialog {
    max-width: 780px;
}

.modal-body {
    padding: 0;
}

.modal-img-pane {
    background: linear-gradient(145deg, #f0f8f2, #e8f4ec);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    padding: 36px 28px;
    position: relative;
}

.modal-img-pane img {
    max-height: 260px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, .12));
}

.modal-cat-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--primary);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.modal-info-pane {
    padding: 36px 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-brand {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.modal-product-name {
    font-family: "Libre Baskerville", serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 18px;
}

.modal-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.modal-tag {
    background: #f0f4f1;
    border: 1px solid #d4e6da;
    color: #2a5c3a;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.modal-tag i {
    font-size: 0.8rem;
    color: var(--primary);
}

.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0 0 22px;
}

.availability-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.avail-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #28a745;
    display: inline-block;
}

.avail-text {
    color: #28a745;
    font-weight: 600;
    font-size: 0.88rem;
}

.store-address {
    color: var(--muted);
    font-size: 0.82rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.store-address i {
    color: var(--primary);
}

.modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-visit {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.88rem;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, transform .15s;
    flex: 1;
    justify-content: center;
}

.btn-visit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    color:#fff;
}

.btn-call {
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.88rem;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
    flex: 1;
    justify-content: center;
    text-decoration: none;
}

.btn-call:hover {
    background: var(--primary);
    color: #fff;
}

.modal-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, .85);
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: #3a4a3e;
    z-index: 10;
    transition: background .2s;
    backdrop-filter: blur(4px);
}

.modal-close-btn:hover {
    background: #fff;
}


.cat-card::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #3333335e;
    position: absolute;
}

/* ── RESPONSIVE ── */
@media(max-width:767px) {
    .page-header h1 {
        font-size: 1.8rem;
    }

    .modal-dialog {
        margin: 10px;
    }

    .modal-product-name {
        font-size: 1.35rem;
    }
}




/* ── BREADCRUMB ── */
.breadcrumb-wrap {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
	display:none !important;
}

.breadcrumb {
    margin: 0;
    font-size: 0.82rem !important;
}

.breadcrumb-item a {
    color: var(--primary) !important;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--muted);
}