.bolkhari-catalog {
  --primary: #18392B;
  --primary-soft: #2C5B45;
  --background: #F8F4EC;
  --background-alt: #EFE8DB;
  --surface: #FFFDF9;
  --accent: #F47B3A;
  --accent-dark: #D94A45;
  --secondary: #F39A93;
  --icon: #2C5B45;
  --text: #2E2E2E;
  --text-muted: #8C8983;
  --text-on-dark: #F8F4EC;
  --text-on-dark-muted: rgba(248,244,236,0.75);
  --border: #DED8CF;
  --border-on-dark: rgba(248,244,236,0.18);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --shadow-soft: 0 8px 24px rgba(24,57,43,0.08);
  --shadow-med: 0 16px 40px rgba(24,57,43,0.14);
  --max-width: 1280px;
  --ease: ease;
}
.bolkhari-catalog *, .bolkhari-catalog *::before, .bolkhari-catalog *::after { box-sizing: border-box; }
.bolkhari-catalog .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-3);
}
.bolkhari-catalog .eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin: 0 0 var(--space-2);
  display: block;
}
.bolkhari-catalog .section { padding: var(--space-7) 0; }
.bolkhari-catalog .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  font-family: inherit;
  text-decoration: none;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), color 0.25s var(--ease);
}
.bolkhari-catalog .btn-primary { background: var(--accent); color: #fff; }
.bolkhari-catalog .btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.bolkhari-catalog .btn-ghost { background: transparent; color: #ee948a; border: 1.5px solid; }
.bolkhari-catalog .btn-ghost:hover { color: #f05609; border-color: #f05609; }
.bolkhari-catalog .btn-small { padding: 10px 16px; font-size: 0.82rem; }
.bolkhari-catalog .icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  border: none;
  background: none;
  transition: background 0.25s var(--ease);
}
.bolkhari-catalog .icon-btn:hover { background: rgba(24,57,43,0.08); }
.bolkhari-catalog .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  background: rgba(24,57,43,0.03);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: var(--space-2);
}
.bolkhari-catalog .placeholder-product { aspect-ratio: 4 / 3; }
.bolkhari-catalog .placeholder-modal { aspect-ratio: 1 / 1; }
.bolkhari-catalog [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.bolkhari-catalog [data-reveal].is-visible { opacity: 1; transform: none; }/* -----------------------------------------------------------
   1. SMALL CATEGORY HERO
   ----------------------------------------------------------- */
.bolkhari-catalog .category-hero {
    padding: 130px 0 0;
  }
.bolkhari-catalog .category-hero-banner {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-med);
    padding: var(--space-5) var(--space-4);
    color: var(--text-on-dark);
  }
/* Seigaiha-inspired overlapping wave texture, rendered with pure
     CSS gradients so no extra image asset is required. Kept very
     subtle so it reads as texture, not decoration competing with text. */
.bolkhari-catalog .seigaiha-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
    background-image:
      radial-gradient(circle at 0 100%, transparent 0, transparent 19%, rgba(248,244,236,0.07) 20%, rgba(248,244,236,0.07) 33%, transparent 34%),
      radial-gradient(circle at 50% 100%, transparent 0, transparent 19%, rgba(248,244,236,0.07) 20%, rgba(248,244,236,0.07) 33%, transparent 34%),
      radial-gradient(circle at 100% 100%, transparent 0, transparent 19%, rgba(248,244,236,0.07) 20%, rgba(248,244,236,0.07) 33%, transparent 34%);
    background-size: 46px 46px;
    background-repeat: repeat;
  }
.bolkhari-catalog .seigaiha-pattern-light {
    opacity: 0.9;
  }
.bolkhari-catalog .sakura-decor {
    position: absolute;
    z-index: 0;
    color: var(--secondary);
    opacity: 0.35;
    pointer-events: none;
  }
.bolkhari-catalog .sakura-decor-1 { top: 18px; left: 28px; }
.bolkhari-catalog .sakura-decor-2 { bottom: 22px; left: 90px; color: var(--accent); opacity: 0.25; }
.bolkhari-catalog .sakura-decor-3 { top: 16px; left: 40px; color: var(--secondary); opacity: 0.3; }
.bolkhari-catalog .breadcrumb {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-on-dark-muted);
    margin-bottom: var(--space-3);
    flex-wrap: wrap;
  }
.bolkhari-catalog .breadcrumb a {
    color: var(--text-on-dark-muted);
    transition: color 0.2s var(--ease);
  }
.bolkhari-catalog .breadcrumb a:hover {
    color: var(--accent);
  }
.bolkhari-catalog .crumb-sep {
    opacity: 0.5;
  }
.bolkhari-catalog .crumb-current {
    color: var(--text-on-dark);
    font-weight: 700;
  }
.bolkhari-catalog .category-hero-banner {
   background-image:url(../../public/hero1.jpg);
  }
.bolkhari-catalog .category-hero-banner .eyebrow {
    position: relative;
    z-index: 1;
    color: var(--accent);
  }
.bolkhari-catalog .category-hero-banner h1 {
    position: relative;
    z-index: 1;
    color: var(--text-on-dark);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: var(--space-2);
  }
.bolkhari-catalog .category-hero-desc {
    position: relative;
    z-index: 1;
    color: var(--text-on-dark-muted);
    max-width: 640px;
    font-size: 1rem;
  }
.bolkhari-catalog .category-hero-count {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-top: var(--space-3);
    font-size: 0.85rem;
    color: var(--text-on-dark-muted);
    border: 1.5px solid var(--border-on-dark);
    border-radius: var(--radius-pill);
    padding: 8px 18px;
  }
.bolkhari-catalog .category-hero-count b {
    color: var(--accent);
    font-weight: 800;
  }
/* -----------------------------------------------------------
     2. CATEGORY NAVIGATION (horizontal pill selector)
     ----------------------------------------------------------- */
.bolkhari-catalog .category-nav-section {
    padding: var(--space-4) 0 var(--space-2);
  }
.bolkhari-catalog .category-pills-wrap {
    overflow-x: auto;
    scrollbar-width: none;
  }
.bolkhari-catalog .category-pills-wrap::-webkit-scrollbar {
    display: none;
  }
.bolkhari-catalog .category-pills {
    display: flex;
    gap: 10px;
    padding-bottom: 4px;
    width: max-content;
    min-width: 100%;
  }
.bolkhari-catalog .category-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text);
    white-space: nowrap;
    transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
  }
.bolkhari-catalog .category-pill-icon {
    display: inline-flex;
    color: var(--icon);
  }
.bolkhari-catalog .category-pill:hover {
    transform: translateY(-2px);
  }
.bolkhari-catalog .category-pill.is-active {
    background: var(--accent);
    color: #fff;
  }
.bolkhari-catalog .category-pill.is-active .category-pill-icon {
    color: #fff;
  }
/* -----------------------------------------------------------
     3. SEARCH & FILTERS BAR
     ----------------------------------------------------------- */
.bolkhari-catalog .filters-section {
    padding: var(--space-3) 0 var(--space-5);
  }
.bolkhari-catalog .filters-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: var(--space-3) var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
  }
.bolkhari-catalog .filters-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-pill);
    color: var(--text-muted);
    transition: border-color 0.2s var(--ease);
  }
.bolkhari-catalog .filters-search:focus-within {
    border-color: var(--accent);
    color: var(--text);
  }
.bolkhari-catalog .filters-search input {
    border: none;
    outline: none;
    background: none;
    flex: 1;
    font-size: 0.95rem;
    color: var(--text);
  }
.bolkhari-catalog .filters-row {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: var(--space-2);
  }
.bolkhari-catalog .filter-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 160px;
    flex: 1;
  }
.bolkhari-catalog .filter-field label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
  }
.bolkhari-catalog .filter-field select {
    appearance: none;
    -webkit-appearance: none;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 10px 36px 10px 16px;
    font-size: 0.85rem;
    font-family: inherit;
    font-weight: 600;
    color: var(--text);
    background: var(--background) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='6,9 12,15 18,9' fill='none' stroke='%232C5B45' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat left 12px center / 14px;
    transition: border-color 0.2s var(--ease);
  }
.bolkhari-catalog .filter-field select:focus {
    border-color: var(--accent);
    outline: none;
  }
.bolkhari-catalog .filters-clear {
    align-self: center;
    white-space: nowrap;
  }
.bolkhari-catalog .filters-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
  }
/* -----------------------------------------------------------
     4. PRODUCT CARD — simplified to match the reference layout:
     a square dashed-border image, a one-line product name, and
     two pill buttons (ghost + primary) underneath. Four columns
     on desktop, stepping down responsively.
     -----------------------------------------------------------
     .bolkhari-catalog */
 .product-listing {
    padding-top: var(--space-2);
  }
.bolkhari-catalog .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
.bolkhari-catalog .product-media {
    aspect-ratio: 1 / 1;
    padding: var(--space-2);
  }
.bolkhari-catalog .product-media .img-placeholder {
    height: 100%;
  }
.bolkhari-catalog .product-body {
    padding: 0 var(--space-3) var(--space-3);
    gap: 10px;
  }
.bolkhari-catalog .product-name {
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
.bolkhari-catalog .product-actions {
    padding-top: 0;
  }
.bolkhari-catalog .product-actions .btn {
    flex: 1;
  }
.bolkhari-catalog .product-actions .btn-primary {
    flex: 1.3;
  }
.bolkhari-catalog .product-actions .btn svg {
    flex-shrink: 0;
  }
/* full detail (price, origin, description) lives in the modal now */
.bolkhari-catalog .product-price, .bolkhari-catalog .product-price-contact, .bolkhari-catalog .product-desc, .bolkhari-catalog .product-badge, .bolkhari-catalog .product-badge-country, .bolkhari-catalog .product-fav {
    display: none;
  }
.bolkhari-catalog .modal-info .product-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 14px;
  }
.bolkhari-catalog .modal-info .product-price {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--primary);
  }
.bolkhari-catalog .modal-info .product-price small {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-right: 3px;
  }
.bolkhari-catalog .modal-info .product-price-contact {
    display: inline-block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent-dark);
  }
/* -----------------------------------------------------------
     5. EMPTY STATE
     ----------------------------------------------------------- */
.bolkhari-catalog .empty-state {
    text-align: center;
    padding: var(--space-6) var(--space-3);
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
  }
.bolkhari-catalog .empty-state-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--background);
    color: var(--icon);
    margin-bottom: var(--space-2);
  }
.bolkhari-catalog .empty-state h3 {
    margin-bottom: 6px;
  }
.bolkhari-catalog .empty-state p {
    color: var(--text-muted);
    max-width: 420px;
    margin: 0 auto var(--space-3);
  }
/* -----------------------------------------------------------
     6. PAGINATION
     ----------------------------------------------------------- */
.bolkhari-catalog .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-5);
    flex-wrap: wrap;
  }
.bolkhari-catalog .page-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
  }
.bolkhari-catalog .page-btn:hover {
    transform: translateY(-2px);
  }
.bolkhari-catalog .page-btn.is-active {
    background: var(--accent);
    color: #fff;
  }
.bolkhari-catalog .page-btn.page-arrow {
    border-radius: 50%;
    color: var(--icon);
  }
.bolkhari-catalog .page-btn:disabled {
    opacity: 0.4;
    pointer-events: none;
  }
.bolkhari-catalog .page-dots {
    color: var(--text-muted);
    padding: 0 4px;
  }
/* -----------------------------------------------------------
     7. PROMO BANNER — decorative variant of .cta-banner
     ----------------------------------------------------------- */
.bolkhari-catalog .cta-banner-pattern {
    position: relative;
    overflow: hidden;
  }
.bolkhari-catalog .cta-banner-pattern .cta-banner-inner {
    position: relative;
    z-index: 1;
  }
/* -----------------------------------------------------------
     9. FOOTER MAP
     ----------------------------------------------------------- */
.bolkhari-catalog .footer-map-wrap {
    margin-top: var(--space-4);
  }
.bolkhari-catalog .footer-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-med);
    border: 1.5px solid var(--border-on-dark);
    height: 280px;
  }
.bolkhari-catalog .footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(0.15) contrast(1.02);
  }
@media (max-width: 760px) {
.bolkhari-catalog .footer-map {
      height: 220px;
    }
}
/* -----------------------------------------------------------
     10. RESPONSIVE
     ----------------------------------------------------------- */
@media (max-width: 1100px) {
.bolkhari-catalog .product-grid {
      grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 760px) {
.bolkhari-catalog .category-hero {
      padding-top: 20px; /* 118px */
    }
.bolkhari-catalog .category-hero-banner {
      padding: var(--space-4) var(--space-3);
    }
.bolkhari-catalog .filter-field {
      min-width: 45%;
    }
.bolkhari-catalog .filters-clear {
      width: 100%;
    }
.bolkhari-catalog .sakura-decor-2 {
      display: none;
    }
.bolkhari-catalog .product-grid {
      grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
.bolkhari-catalog .filter-field {
      min-width: 100%;
    }
.bolkhari-catalog .product-grid {
      grid-template-columns: 1fr;
    }
.bolkhari-catalog .product-actions {
      flex-direction: column;
    }
a.btn.btn-ghost.btn-small {
    margin-bottom: 10px !important;
}
}
.bolkhari-catalog .fab-instagram {
    background: linear-gradient(
        45deg,
        #F58529,
        #FEDA77,
        #DD2A7B,
        #8134AF,
        #515BD4
    );
}
.bolkhari-catalog .fab-instagram:hover {
  transform: translateY(-4px) scale(1.05);
}



/* emad add */

.bolkhari-catalog .product-listing {
    max-width: 100% !important;
    padding-top: 20px !important;
}

.bolkhari-catalog .filters-section {
    max-width: 100% !important;
    padding: var(--space-3) 0 var(--space-5) !important;
}

.container-narrow {
    max-width: 100% !important;
    margin-top: 2% !important;
}




/* محصولات */
.product-actions {
    margin-top: auto !important;
    display: flex !important;
    gap: 0px !important;
    padding-top: var(--space-2) !important;
}

.bolkhari-catalog .category-hero {
    padding: 20px 0 0 !important; 
}

