/**
 * House Computer — palette: red, white, black only. RTL + responsive.
 */


:root {
  /* Palette: red, white, black (+ black at alpha for borders/muted) */
  --hc-bg: #ffffff;
  --hc-surface: #ffffff;
  --hc-black: #0a0a0a;
  --hc-text: #0a0a0a;
  --hc-text-muted: rgba(10, 10, 10, 0.62);
  --hc-red: #c41e3a;
  --hc-red-dark: #9b1b2e;
  --hc-red-soft: rgba(196, 30, 58, 0.12);
  --hc-border: rgba(10, 10, 10, 0.14);
  --hc-radius: 10px;
  --hc-radius-sm: 6px;
  --hc-shadow: 0 2px 12px rgba(10, 10, 10, 0.08);
  --hc-shadow-hover: 0 8px 28px rgba(10, 10, 10, 0.12);
}


.hc-body {
  font-family: 'Cairo', system-ui, sans-serif;
  background: var(--hc-bg);
  color: var(--hc-text);
  -webkit-font-smoothing: antialiased;
}

[dir="rtl"] .hc-body {
  font-family: 'Cairo', 'DM Sans', system-ui, sans-serif;
}

/* ——— Header (compact, aligned) ——— */
.hc-header {
  background: var(--hc-surface);
  box-shadow: 1px 1px 20px var(--hc-border);
  z-index: 1030;
}

.hc-header-container {
  max-width: 1140px;
}

.hc-header .main_menu .main_box {
  border: none !important;
  padding: 0 !important;
  max-width: 1140px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-shadow: none !important;
  background: var(--hc-surface) !important;
}

.hc-header .navbar {
  min-height: 60px;
  align-items: center !important;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

/* Kill legacy main.css header spacing (wide nav, tall links) */
.hc-header .navbar .nav.navbar-nav .nav-item {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.hc-header .navbar .hc-main-nav .nav-item+.nav-item {
  margin-inline-start: 0.2rem;
}

.hc-header .navbar .hc-toolbar .nav-item+.nav-item {
  margin-inline-start: 0.2rem;
}

@media (min-width: 992px) {
  .hc-header .navbar .navbar-collapse {
    margin-top: 0 !important;
  }

  .hc-header .navbar .hc-main-nav,
  .hc-header .navbar .hc-toolbar {
    align-items: center;
  }
}

.hc-brand.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  margin-right: 1rem;
}

[dir="rtl"] .hc-brand.navbar-brand {
  margin-right: 0;
  margin-left: 1rem;
}

.hc-brand img {
  display: block;
  height: 40px !important;
  width: auto !important;
  max-height: 40px;
}

.hc-main-nav .nav-link {
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  color: var(--hc-black) !important;
  padding: 0.5rem 0.75rem !important;
  border-radius: var(--hc-radius-sm);
  line-height: 1.25;
  white-space: nowrap;
}

.hc-main-nav .nav-item.active .nav-link,
.hc-main-nav .nav-link:hover {
  background: var(--hc-red-soft);
  color: var(--hc-red) !important;
}

.hc-toolbar {
  gap: 0.35rem;
}

.hc-toolbar .nav-link {
  padding: 0.35rem 0.5rem !important;
  color: var(--hc-black) !important;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
}

.hc-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: var(--hc-radius-sm);
  border: 1px solid var(--hc-border);
  background: var(--hc-surface);
  color: var(--hc-black);
  padding: 0;
  transition: border-color 0.15s, background 0.15s;
}

.hc-icon-btn:hover {
  border-color: var(--hc-black);
  color: var(--hc-black);
  background: var(--hc-bg);
}

.hc-whatsapp-btn {
  color: var(--hc-black) !important;
  border-color: var(--hc-border) !important;
  background: var(--hc-surface) !important;
}

.hc-whatsapp-btn:hover {
  border-color: var(--hc-red) !important;
  color: var(--hc-red) !important;
}

.hc-header .badgecart {
  font-size: 0.6rem !important;
  font-weight: 700;
  min-width: 1.1rem;
  line-height: 1.2;
  padding: 0.15rem 0.3rem !important;
  background: var(--hc-red) !important;
}

.hc-header .navbar-right .nav-link.position-relative .badgecart,
.hc-header .hc-toolbar .position-relative .badgecart {
  top: 2px;
  right: 2px;
}

[dir="rtl"] .hc-header .navbar-right .nav-link.position-relative .badgecart,
[dir="rtl"] .hc-header .hc-toolbar .position-relative .badgecart {
  right: auto;
  left: 2px;
}

.hc-header .cartmobile.position-relative .badgecart {
  top: -2px;
  right: -2px;
}

[dir="rtl"] .hc-header .cartmobile.position-relative .badgecart {
  right: auto;
  left: -2px;
}

.hc-lang .dropdown-toggle {
  border-radius: var(--hc-radius-sm) !important;
  border: 1px solid var(--hc-border) !important;
  background: var(--hc-surface) !important;
  color: var(--hc-black) !important;
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.4rem 0.75rem !important;
  line-height: 1.25;
  height: 40px;
  display: inline-flex;
  align-items: center;
}

.hc-lang .dropdown-toggle:focus {
  box-shadow: 0 0 0 2px var(--hc-red-soft);
}

.hc-search-panel {
  background: var(--hc-black) !important;
}

.hc-search-panel .form-control {
  border-radius: var(--hc-radius-sm);
  border: 1px solid var(--hc-border);
  padding: 0.55rem 0.85rem;
  font-size: 0.9375rem;
}

.hc-search-panel .btn-light {
  background: var(--hc-surface) !important;
  color: var(--hc-black) !important;
  border: 1px solid var(--hc-border) !important;
  font-weight: 700;
  font-size: 0.8125rem;
}

.hc-search-panel #close_search {
  cursor: pointer;
  z-index: 2;
}

.hc-search-panel form.position-relative {
  padding-inline-end: 2.5rem;
}

[dir="ltr"] .hc-search-panel #close_search {
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  left: auto;
}

[dir="rtl"] .hc-search-panel #close_search {
  left: 0.4rem;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .hc-header .navbar-collapse {
    padding-top: 0.75rem;
    margin-top: 0.5rem !important;
    border-top: 1px solid var(--hc-border);
  }

  .hc-header .navbar-collapse .nav-item {
    padding: 0.2rem 0 !important;
  }

  .hc-main-nav {
    margin-bottom: 0.5rem;
  }

  .hc-toolbar {
    padding-top: 0.5rem;
    border-top: 1px solid var(--hc-border);
    width: 100%;
    justify-content: flex-start !important;
  }

  .hc-lang .dropdown-toggle {
    width: 100%;
    justify-content: center;
  }
}

/* ——— Hero ——— */
.hc-hero-section {
  /* background: linear-gradient(180deg, #fff 0%, var(--hc-bg) 100%); */
  padding-block: 1.75rem 2.5rem;
}

.hc-hero-section .banner-content h1 {
  font-weight: 800;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  color: var(--hc-black);
  line-height: 1.2;
}

.hc-hero-section .banner-content p {
  color: var(--hc-text-muted);
  font-size: 1rem;
}

.hc-hero-section .banner-img img {
  border-radius: var(--hc-radius);
  box-shadow: var(--hc-shadow-hover);
}

/* ——— Categories ——— */
.hc-categories-section {
  padding-block: 2rem 1rem;
  background: var(--hc-bg);
}

.hc-section-title {
  font-weight: 800;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  color: var(--hc-black);
  margin-bottom: 1.25rem;
  text-align: center;
}

.hc-cat-pill {
  display: block;
  text-align: center;
  padding: 0.65rem;
  border-radius: var(--hc-radius);
  background: var(--hc-surface);
  border: 1px solid var(--hc-border);
  box-shadow: var(--hc-shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none !important;
  color: inherit;
}

.hc-cat-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--hc-shadow-hover);
  border-color: var(--hc-red);
}

.hc-cat-pill .hc-cat-name {
  margin-top: 0.45rem;
  font-weight: 700;
  font-size: 0.8125rem;
  min-height: 3rem;
  color: var(--hc-black);
}

/* ——— Product cards ——— */
.hc-store-section {
  padding-block: 1rem 2.5rem;
}

.hc-store-section .section-title h4,
.hc-store-section .section-title h1 {
  font-weight: 800;
  color: var(--hc-black);
}

/* .out_stock {
  margin-top: 3.85rem !important;
} */

.hc-store-section .single-product {
  border-radius: var(--hc-radius) !important;
  border: 1px solid var(--hc-border) !important;
  background: var(--hc-surface);
  box-shadow: var(--hc-shadow);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  height: 100%;
}

.hc-store-section .single-product:hover {
  box-shadow: var(--hc-shadow-hover);
  transform: translateY(-2px);
}

.hc-store-section .product-image {
  background-color: #fff;
  border-bottom: 1px solid var(--hc-border);
}

.hc-store-section .product-details h6 a {
  font-weight: 700 !important;
  color: var(--hc-black) !important;
}

.hc-store-section .price h6 {
  font-weight: 700;
  color: var(--hc-red) !important;
}

.hc-qty-group .hc-qty-btn {
  border-color: var(--hc-border);
  color: var(--hc-black);
  min-width: 36px;
}

.hc-qty-input {
  max-width: 56px;
  font-weight: 600;
  border-color: var(--hc-border) !important;
  color: var(--hc-black);
}

/* Primary CTA — red */
.hc-btn-buy {
  background: var(--hc-red) !important;
  color: #fff !important;
  border: 2px solid var(--hc-red) !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}

.hc-btn-buy:hover {
  background: var(--hc-red-dark) !important;
  border-color: var(--hc-red-dark) !important;
  color: #fff !important;
  filter: none !important;
}

/* Secondary — white + black border */
.hc-btn-secondary {
  background: #fff !important;
  color: var(--hc-black) !important;
  border: 2px solid var(--hc-black) !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}

.hc-btn-secondary:hover {
  background: var(--hc-black) !important;
  color: #fff !important;
}

.hc-gray_btn {
  background: rgba(10, 10, 10, 0.08) !important;
  color: var(--hc-text-muted) !important;
  border-color: rgba(10, 10, 10, 0.2) !important;
}

/* ——— Wholesale bar ——— */
.hc-wa-bar {
  background: var(--hc-black);
  color: #fff;
  padding: 1.35rem 1.25rem;
  border-radius: var(--hc-radius);
  margin-block: 1.75rem;
  text-align: center;
  box-shadow: var(--hc-shadow-hover);
}

.hc-wa-bar a {
  color: #fff !important;
  font-weight: 800;
  text-decoration: none !important;
  border-bottom: 2px solid var(--hc-red);
}

.hc-wa-bar a:hover {
  color: #fff !important;
  border-bottom-color: #fff;
}

/* ——— Footer ——— */
.hc-footer {
  background: var(--hc-black);
  color: rgba(255, 255, 255, 0.72);
  padding-block: 3rem 1.25rem;
  margin-top: 1.5rem;
}

.hc-footer h6 {
  color: #fff;
  font-weight: 800;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.hc-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.hc-footer a:hover {
  color: #fff;
}

.hc-footer .form-control {
  border-radius: var(--hc-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.hc-footer .btn-danger {
  border-radius: var(--hc-radius-sm);
  background: var(--hc-red) !important;
  border: none !important;
}

[dir="ltr"] .hc-footer .hc-footer-newsletter-btn {
  margin-left: 0.5rem;
}

[dir="rtl"] .hc-footer .hc-footer-newsletter-btn {
  margin-right: 0.5rem;
}

@media (max-width: 575px) {

  [dir="ltr"] .hc-footer .hc-footer-newsletter-btn,
  [dir="rtl"] .hc-footer .hc-footer-newsletter-btn {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    margin-top: 0.5rem;
  }
}

.hc-footer .footer-social a {
  width: 38px;
  height: 38px;
  /* background: rgba(255, 255, 255, 0.12); */
  color: #fff;
}

.hc-footer .footer-social a:hover {
  /* background: var(--hc-red); */
  color: #fff;
}

.hc-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 1.75rem;
  padding-top: 1.25rem;
}

.hc-footer .footer-text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
}

/* ——— Inner pages ——— */
.organic-breadcrumb {
  /* background: #fff !important; */
  border-bottom: 1px solid var(--hc-border);
}

/* ——— PDP buttons (details page) ——— */
.pdp-cta-row {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-start;
  align-items: stretch;
}

.pdp-cta-row .pdp-add-btn {
  min-width: 150px;
  max-width: 280px;
  width: auto;
  flex: 0 1 auto;
  padding: 0.6rem 0.95rem !important;
  font-size: 0.725rem !important;
  border-radius: var(--hc-radius-sm) !important;
}

.pdp-cta-row .hc-btn-buy {
  order: 1;
}

.pdp-cta-row .hc-btn-secondary {
  order: 2;
}

@media (max-width: 767px) {
  .pdp-cta-row .pdp-add-btn {
    width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
  }

  .hc-products .product-image,.hc-store-section .product-image{
    height: 157px !important
  }
}

.pdp-cta-row .pdp-add-btn:disabled,
.pdp-cta-row .pdp-add-btn.is-disabled {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(10, 10, 10, 0.22) !important;
  color: rgba(10, 10, 10, 0.45) !important;
  cursor: not-allowed !important;
  opacity: 1;
}

.pdp-cta-row .hc-btn-buy:disabled,
.pdp-cta-row .hc-btn-buy.is-disabled {
  background: rgba(10, 10, 10, 0.12) !important;
  border-color: rgba(10, 10, 10, 0.18) !important;
  color: rgba(10, 10, 10, 0.45) !important;
}

.pdp-price-current {
  color: var(--hc-red) !important;
}

/* ——— Features ——— */
.hc-features {
  background: var(--hc-surface);
  border-block: 1px solid var(--hc-border);
}

.hc-features .single-features {
  padding: 1.15rem;
  border-radius: var(--hc-radius);
  border: 1px solid var(--hc-border);
  background: var(--hc-bg);
  height: 100%;
}

.hc-features .single-features h6 {
  font-weight: 800;
  color: var(--hc-black);
}

@media (max-width: 575px) {
  .section_gap {
    /* padding: 20px 0 !important; */
  }
}

/* ——— Modern button and control polish ——— */
.primary-btn,
.genric-btn,
.btn,
.hc-btn-buy,
.hc-btn-secondary,
.btn-light,
.btn-danger,
.btn-warning,
.gray_btn {
  border-radius: 999px !important;
  /* min-height: 38px; */
  /* padding: 0.85rem 1.5rem !important; */
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.primary-btn,
.hc-btn-buy,
.btn-danger,
.hc-footer .btn-danger {
  background: linear-gradient(90deg, #d11e33 0%, #ef2b29 100%) !important;
  border: 1px solid transparent !important;
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(209, 30, 58, 0.16);
}

.primary-btn:hover,
.hc-btn-buy:hover,
.btn-danger:hover,
.hc-footer .btn-danger:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(209, 30, 58, 0.22);
  background: linear-gradient(90deg, #b71b2d 0%, #d81c2f 100%) !important;
}

.hc-btn-secondary,
.btn-light,
.btn-outline-secondary,
.btn-warning,
.gray_btn {
  background: #fff !important;
  color: var(--hc-black) !important;
  border: 1px solid rgba(10, 10, 10, 0.14) !important;
  box-shadow: 0 10px 22px rgba(10, 10, 10, 0.06);
}

.hc-btn-secondary:hover,
.btn-light:hover,
.btn-outline-secondary:hover,
.btn-warning:hover,
.gray_btn:hover {
  background: rgba(10, 10, 10, 0.04) !important;
  color: var(--hc-black) !important;
  transform: translateY(-1px);
}

.gray_btn {
  text-transform: none;
  padding: 0.95rem 1.35rem !important;
  min-height: 44px;
  justify-content: center !important;
  color: var(--hc-black) !important;
}

.hc-card-actions {
  justify-content: space-evenly;
  gap: 0.1rem;
  flex-wrap: wrap;
  /* padding: 0 !important; */
}

.hc-header-mobile-actions {
  gap: 0.35rem;
}

.hc-search-form {
  gap: 0.5rem;
}

.hc-search-close {
  cursor: pointer;
  opacity: 0.85;
  font-size: 1.2rem;
}

.hc-footer-text {
  line-height: 1.7;
}

.hc-footer-input {
  min-width: 0;
}

.hc-footer-newsletter-btn {
  min-height: 48px;
  padding: 0.85rem 1rem;
}

.hc-footer-wa {
  font-size: 0.95rem;
  gap: 0.35rem;
  display: inline-flex;
  align-items: center;
}

.hc-footer-wa .fa {
  font-size: 1.35rem;
}

.hc-cart-summary {
  justify-content: space-between;
}

.text-left-important {
  text-align: left !important;
}

[dir="rtl"] .text-left-important {
  text-align: right !important;
}

.hc-card-title {
  min-height: 50px;
}

.hc-card-link {
  color: inherit !important;
  text-decoration: none !important;
}

.hc-filter-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hc-black);
  position: absolute;
  top: 8.5%;
}

.hc-listing-price-note {
  font-size: 0.85rem;
}

button:disabled,
.btn:disabled,
.primary-btn:disabled,
.genric-btn:disabled,
.hc-btn-buy:disabled,
.hc-btn-secondary:disabled,
.gray_btn:disabled {
  opacity: 0.56 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.hc-icon-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.hc-icon-btn:hover {
  background: #f9f9f9;
  border-color: rgba(10, 10, 10, 0.18);
}

.hc-header .navbar-toggler {
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 14px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hc-header .navbar-toggler .icon-bar {
  width: 20px;
  height: 2px;
  background: var(--hc-black);
  margin: 3px 0;
}

.hc-search-panel .form-control {
  min-height: 52px;
  font-size: 1rem;
}

.hc-search-panel .btn-light {
  min-height: 52px;
  padding: 0 1.5rem !important;
}

.add-btn {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--hc-black);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.add-btn:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.hc-qty-group .hc-qty-btn,
.pdp-step-btn {
  border-radius: 14px !important;
  /* width: 40px; */
  padding: 5px 8px !important;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
}

.pdp-step-btn {
  border: 1px solid rgba(10, 10, 10, 0.12);
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.pdp-step-btn:hover {
  background: rgba(10, 10, 10, 0.04);
}

.hc-qty-input {
  min-width: 60px;
  border-radius: 14px !important;
}

button,
.btn,
.input-group-text,
.primary-btn,
.genric-btn {
  font-family: 'DM Sans', 'Cairo', system-ui, sans-serif;
}



.primary-btn {
    padding: 0px 20px !important;
}

/* =========================================
       1. GENERAL & PAGE LAYOUT
       ========================================= */
.top_page {
  margin-top: 20vh;
}

.hc-categories-section {
  margin-top: 15vh;
}

#category .organic-breadcrumb {
  margin-bottom: unset;
  height: 320px;
}

/* =========================================
       2. PRODUCT IMAGES & CONTAINERS
       ========================================= */
.product-container {
  width: 88%;
  border: unset;
  transform: scale(1);
  transition: opacity .3s, transform .3s;
}

.product-image-large {
  margin: auto;
  width: 100%;
  height: 490px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: center;
}

.product-image {
  margin: auto;
  width: 100%;
  height: 269px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: center;
}
.hc-products .product-image,.hc-store-section .product-image {
  height: 243px !important;
}

.imagesubsliders {
  width: 125px;
  display: block;
  height: auto;
}

.title-slider {
  min-height: 144px;
}

.delete-price {
  text-decoration: line-through;
  color: #cccccc !important;
}

/* =========================================
       3. OWL CAROUSEL STYLES
       ========================================= */
.carousel-wrapper {
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel {
  margin-top: 10px !important;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  /* Fixes mobile swipe scrolling */
}

#carouselcat .owl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

#carouselcat .owl-nav .owl-prev {
  margin: 20px;
}

#carouselcat .owl-controls {
  order: 1;
}

#carouselcat .owl-stage-outer {
  order: 2;
}

/* Hover Overlay for Carousel Items */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  animation: fadeIn .75s ease-out;
}

.item:hover .overlay {
  display: flex;
  align-items: center;
  justify-content: center;
}

.centered-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* =========================================
       4. PDP (PRODUCT DETAILS PAGE) STYLES
       ========================================= */
.pdp-sidebar {
  position: sticky;
  top: 1rem;
}

.pdp-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #0f1111;
}

.pdp-buy-box {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(15, 17, 17, 0.06);
  padding: 1.35rem 1.5rem;
}

/* Pricing Blocks */
.pdp-price-block {
  margin-bottom: 0.25rem;
}

.pdp-price-current {
  font-size: 1.85rem;
  font-weight: 700;
  color: #b12704;
  letter-spacing: -0.02em;
}

.pdp-price-current small {
  font-size: 0.95rem;
  font-weight: 600;
  color: #565959;
}

.pdp-price-was {
  font-size: 1rem;
  color: #565959;
  margin-top: 0.15rem;
}

.pdp-price-total {
  border-top: 1px dashed #ddd;
  margin-top: 0.75rem;
  padding-top: 0.5rem;
}

.pdp-price-total .pdp-price-current {
  font-size: 1.4rem;
  color: #28a745;
}

/* Inline Pricing (Your previous fix) */
/* .product-price-inline {
  gap: 8px;
} */

.product-price-inline .price-current {
  font-size: 1.25rem;
}

.product-price-inline .price-old {
  font-size: 1rem;
  text-decoration: line-through;
  opacity: 0.8;
}

.product-price-inline small {
  font-size: 70%;
}

/* Variant Pills */
.pdp-option-row {
  margin-bottom: 0.75rem !important;
}

.pdp-option-label {
  letter-spacing: 0.04em;
  font-size: 0.72rem !important;
  margin-bottom: 0.4rem !important;
}

.pdp-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0 0.35rem 0.35rem 0;
  padding: 0.35rem 0.7rem;
  min-height: 32px;
  border: 1.5px solid #d5d9d9;
  border-radius: 6px;
  background: #fff;
  color: #0f1111;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s, background .15s;
}

.pdp-pill:hover {
  border-color: #ff9900;
  box-shadow: 0 0 0 1px rgba(255, 153, 0, 0.35);
}

.pdp-pill.is-active {
  border-color: #ff9900;
  background: #fff8e8;
  box-shadow: 0 0 0 2px rgba(255, 153, 0, 0.45);
  font-weight: 600;
}

.pdp-pill.is-unavailable {
  opacity: 0.45;
  cursor: not-allowed;
  text-decoration: line-through;
}

.pdp-pill__swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.pdp-pill--color {
  padding-left: 0.5rem;
}

/* Meta & Actions */
.pdp-meta-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.pdp-meta-list li {
  margin-bottom: 0.35rem;
}

.pdp-add-btn {
  cursor: pointer;
  transition: opacity .15s;
}

.pdp-stock .text-success {
  font-weight: 600;
}

/* Quantity Stepper (Old style fallback) */
.pdp-qty-stepper {
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  overflow: hidden;
  background: #f0f2f2;
}

.pdp-step-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: #e8e8e8;
  font-size: 1.25rem;
  line-height: 1;
  color: #0f1111;
  cursor: pointer;
  transition: background .15s;
}

.pdp-step-btn:hover {
  background: #d5d9d9;
}

.pdp-qty-input {
  width: 56px;
  height: 44px;
  border: none;
  border-left: 1px solid #d5d9d9;
  border-right: 1px solid #d5d9d9;
  text-align: center;
  font-weight: 600;
  background: #fff;
}

/* =========================================
       5. PRO QUANTITY SELECTOR
       ========================================= */
.qty-selector-pro {
  background-color: #f8f9fa;
  border: 1px solid #e2e6ea;
  border-radius: 50px;
  padding: 0.25rem;
  display: inline-flex;
  align-items: center;
  width: auto;
}

.qty-selector-pro .btn-qty {
  background: #ffffff;
  border: none;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #495057;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  user-select: none;
}

.qty-selector-pro .btn-qty:hover {
  background: #e2e6ea;
  color: #212529;
}

.qty-selector-pro .qty-input {
  width: 45px;
  border: none;
  background: transparent;
  font-weight: 600;
  color: #212529;
  box-shadow: none !important;
  outline: none !important;
  -moz-appearance: textfield;
}

.qty-selector-pro .qty-input::-webkit-outer-spin-button,
.qty-selector-pro .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* =========================================
       6. FAST PURCHASE FORM
       ========================================= */
.fast-purchase-section {
  background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
  border: 1px solid #ffd8a8;
  border-radius: 8px;
  padding: 8px 10px;
  margin-top: 8px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.fast-purchase-title {
  font-size: 11px;
  font-weight: 700;
  color: #e65100;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.fast-purchase-form {
  display: block !important;
}

.fast-purchase-form .form-row {
  display: flex !important;
  visibility: visible !important;
}

.fast-purchase-form .col-6 {
  display: block !important;
  visibility: visible !important;
}

.fast-purchase-form .form-control {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 12px;
  padding: 5px 8px;
  height: 30px;
  background: #fff;
}

.fast-purchase-form .form-control:focus {
  border-color: #ff9800;
  box-shadow: 0 0 0 0.15rem rgba(255, 152, 0, 0.15);
}

.fast-purchase-form select {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 10;
  border: 1px solid #ccc !important;
  background-color: #fff !important;
  color: #000 !important;
  width: 100% !important;
}

.fast-purchase-form select.form-control,
.fast-purchase-form .fast-select {
  height: 32px !important;
  padding: 4px 8px !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
  color: #333 !important;
  background-color: #fff !important;
  border: 1px solid #ced4da !important;
  border-radius: 4px !important;
  appearance: menulist !important;
  -webkit-appearance: menulist !important;
  -moz-appearance: menulist !important;
  cursor: pointer;
}

.fast-purchase-form select.form-control option {
  padding: 4px;
  font-size: 12px;
}

.wilaya-row {
  display: flex !important;
  visibility: visible !important;
  margin-bottom: 8px !important;
}

/* =========================================
       7. MOBILE RESPONSIVENESS (BS4 Standard)
       ========================================= */
@media (max-width: 767.98px) {

  .primary-btn {
  padding: 0 !important;
}

  .top_page {
    margin-top: 4vh;
  }

  .hc-categories-section {
    margin-top: 8vh;
  }

  #category .organic-breadcrumb {
    height: 160px;
  }

  .breadcrumb-banner {
    padding: 5px 5px 0px 0;
  }

  /* Images */
  .product-image-large,
  .product-image-large-owl {
    width: 100% !important;
    height: 35vh !important;
  }

  .product-image {
    height: 159px;
  }
  .hc-products .product-image,.hc-store-section .product-image {
  height: 159px !important;
}

  .imagesubsliders {
    width: 45px;
  }

  /* Product Cards & Typography */
  .single-product .product-details h6 {
    font-size: 12px;
  }

  .single-product .product-details .price h6 {
    font-size: 11px;
    display: inline-block;
    padding-right: 5px;
    margin: 0;
  }

  /* PDP Layout Overrides */
  .pdp-sidebar {
    position: relative;
    top: 0;
    margin-top: 1rem;
  }

  .pdp-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .pdp-buy-box {
    padding: 1rem;
    border-radius: 8px;
  }

  .pdp-price-current {
    font-size: 1.5rem;
  }

  .pdp-price-current small {
    font-size: 0.85rem;
  }

  /* PDP Variant Pills Overrides */
  .pdp-pill {
    margin: 0 0.25rem 0.25rem 0;
    padding: 0.25rem 0.5rem;
    min-height: 28px;
    font-size: 0.75rem;
  }

  .pdp-pill__swatch {
    width: 14px;
    height: 14px;
  }

  .pdp-option-label {
    font-size: 0.65rem !important;
    margin-bottom: 0.25rem !important;
  }

  .pdp-option-row {
    margin-bottom: 0.5rem !important;
  }

  /* PDP Stepper & Tabs */
  .pdp-qty-stepper {
    max-width: 120px;
  }

  .pdp-step-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .nav-tabs {
    font-size: 0.85rem;
  }

  .nav-tabs .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }

  .tab-content {
    font-size: 0.9rem;
    padding: 1rem;
  }

  /* Inline Pricing Text Overrides */
  .product-price-inline .price-current {
    font-size: 1.1rem;
  }

  .product-price-inline .price-old {
    font-size: 0.9rem;
  }

  /* Owl Carousel Item Normalization (Uniform Heights & Layout) */
  #related-products .owl-item,
  .owl-slider .owl-item {
    display: flex;
  }

  #related-products .single-product,
  .owl-slider .single-product {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
  }

  #related-products .product-details,
  .owl-slider .product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  #related-products .prd-bottom,
  .owl-slider .prd-bottom {
    margin-top: auto;
  }

  #related-products .hc-qty-group,
  .owl-slider .hc-qty-group {
    display: flex;
    align-items: stretch;
  }

  #related-products .hc-qty-group .input-group-prepend,
  #related-products .hc-qty-group .input-group-append,
  .owl-slider .hc-qty-group .input-group-prepend,
  .owl-slider .hc-qty-group .input-group-append {
    display: flex;
  }

  #related-products .hc-qty-btn,
  #related-products .hc-qty-input,
  .owl-slider .hc-qty-btn,
  .owl-slider .hc-qty-input {
    height: 28px;
    min-height: 28px;
    max-height: 28px;
    padding-top: 0;
    padding-bottom: 0;
  }
}


.single-product .product-details .prd-bottom{
      margin-top: 2px !important;
}