/*
Theme Name:  H-Furniture
Theme URI:   https://h-furniture.com
Description: ثيم H-Furniture — متوافق مع Elementor و WooCommerce، RTL، عربي.
Version:     2.0.0
Author:      H-Furniture
Text Domain: h-furniture
Tags:        rtl-language, woocommerce, elementor, furniture, arabic, responsive
*/

/* ================================================================
   DESIGN TOKENS  —  H-Furniture Brand System
   ================================================================ */
:root {
  /* ── Brand Colors ── */
  --hf-gold:          #B8924A;
  --hf-gold-dark:     #9A7838;
  --hf-gold-light:    #DEC99A;
  --hf-gold-pale:     #FBF7F1;

  --hf-charcoal:      #1A1A1A;
  --hf-charcoal-75:   #555555;
  --hf-charcoal-50:   #888888;
  --hf-charcoal-20:   #DDDDDD;

  --hf-white:         #FFFFFF;
  --hf-off-white:     #F8F9FA;
  --hf-warm-bg:       #F3F4F6;

  --hf-wood:          #7A5230;
  --hf-steel:         #8C9196;

  /* ── Semantic ── */
  --hf-sale:          #D63031;
  --hf-new:           #00B894;
  --hf-featured:      #0984E3;
  --hf-border:        #E8E8E8;
  --hf-border-light:  #F0F0F0;

  /* ── Text ── */
  --hf-text:          #1A1A1A;
  --hf-text-secondary:#555555;
  --hf-text-muted:    #888888;
  --hf-text-on-dark:  #FFFFFF;

  /* ── Typography ── */
  --hf-font-arabic:   'Cairo', 'Tajawal', 'Noto Sans Arabic', Arial, sans-serif;
  --hf-font-numbers:  'Montserrat', 'Cairo', sans-serif;

  --hf-fs-xs:   0.75rem;   /* 12px */
  --hf-fs-sm:   0.875rem;  /* 14px */
  --hf-fs-base: 1rem;      /* 16px */
  --hf-fs-md:   1.125rem;  /* 18px */
  --hf-fs-lg:   1.375rem;  /* 22px */
  --hf-fs-xl:   1.75rem;   /* 28px */
  --hf-fs-2xl:  2.25rem;   /* 36px */
  --hf-fs-3xl:  3rem;      /* 48px */

  --hf-fw-regular:  400;
  --hf-fw-medium:   500;
  --hf-fw-semibold: 600;
  --hf-fw-bold:     700;

  /* ── Spacing ── */
  --hf-space-xs:  4px;
  --hf-space-sm:  8px;
  --hf-space-md:  16px;
  --hf-space-lg:  24px;
  --hf-space-xl:  40px;
  --hf-space-2xl: 64px;
  --hf-space-3xl: 96px;

  /* ── Layout ── */
  --hf-container:     1400px;
  --hf-container-sm:  960px;
  --hf-sidebar-w:     270px;
  --hf-radius-sm:     4px;
  --hf-radius-md:     8px;
  --hf-radius-lg:     12px;
  --hf-radius-full:   9999px;

  /* ── Shadow ── */
  --hf-shadow-sm:  0 1px 4px rgba(44,44,44,0.08);
  --hf-shadow-md:  0 4px 16px rgba(44,44,44,0.12);
  --hf-shadow-lg:  0 8px 32px rgba(44,44,44,0.16);
  --hf-shadow-gold:0 4px 20px rgba(201,169,110,0.25);

  /* ── Transitions ── */
  --hf-transition: 0.25s ease;
  --hf-transition-slow: 0.4s ease;

  /* ── Header ── */
  --hf-header-h:      72px;
  --hf-topbar-h:      36px;

  /* ── Surface ── */
  --hf-bg:            #FFFFFF;
  --hf-bg-secondary:  #F8F9FA;
  --hf-bg-card:       #FFFFFF;
  --hf-bg-overlay:    rgba(26,26,26,0.04);
  --hf-header-bg:     #FFFFFF;
  --hf-nav-bg:        #2C2C2C;
  --hf-footer-bg:     #1A1A1A;
  --hf-input-bg:      #FFFFFF;
  --hf-input-border:  #E8E8E8;
}







/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--hf-font-arabic);
  font-size: var(--hf-fs-base);
  font-weight: var(--hf-fw-regular);
  color: var(--hf-text);
  background-color: var(--hf-white);
  direction: rtl;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: color var(--hf-transition); }
a:hover { color: var(--hf-gold); }
button { cursor: pointer; font-family: var(--hf-font-arabic); }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--hf-space-md);
  font-weight: var(--hf-fw-bold);
  line-height: 1.3;
  color: var(--hf-charcoal);
}
p { margin: 0 0 var(--hf-space-md); }
ul, ol { padding: 0; margin: 0; list-style: none; }

/* ================================================================
   LAYOUT UTILITIES
   ================================================================ */
.hf-container {
  max-width: var(--hf-container);
  margin-inline: auto;
  padding-inline: var(--hf-space-xl);
}
@media (max-width: 1200px) { .hf-container { padding-inline: var(--hf-space-lg); } }
@media (max-width: 768px)  { .hf-container { padding-inline: var(--hf-space-md); } }

.hf-flex   { display: flex; }
.hf-center { justify-content: center; align-items: center; }
.hf-gap-sm { gap: var(--hf-space-sm); }
.hf-gap-md { gap: var(--hf-space-md); }

/* Screen reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.hf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--hf-space-sm);
  padding: 12px 28px;
  font-family: var(--hf-font-arabic);
  font-size: var(--hf-fs-sm);
  font-weight: var(--hf-fw-semibold);
  border: 2px solid transparent;
  border-radius: var(--hf-radius-sm);
  transition: all var(--hf-transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

/* Primary */
.hf-btn-primary {
  background: var(--hf-gold);
  color: var(--hf-charcoal);
  border-color: var(--hf-gold);
}
.hf-btn-primary:hover {
  background: var(--hf-gold-dark);
  border-color: var(--hf-gold-dark);
  color: var(--hf-white);
  box-shadow: var(--hf-shadow-gold);
  transform: translateY(-1px);
}

/* Outline */
.hf-btn-outline {
  background: transparent;
  color: var(--hf-charcoal);
  border-color: var(--hf-charcoal-20);
}
.hf-btn-outline:hover {
  border-color: var(--hf-gold);
  color: var(--hf-gold);
}

/* Ghost on dark */
.hf-btn-ghost-white {
  background: rgba(255,255,255,0.15);
  color: var(--hf-white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.hf-btn-ghost-white:hover {
  background: var(--hf-white);
  color: var(--hf-charcoal);
  border-color: var(--hf-white);
}

/* ================================================================
   BADGES
   ================================================================ */
.hf-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: var(--hf-fs-xs);
  font-weight: var(--hf-fw-semibold);
  border-radius: var(--hf-radius-sm);
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.hf-badge-sale    { background: var(--hf-sale);     color: #fff; }
.hf-badge-new     { background: var(--hf-new);      color: #fff; }
.hf-badge-hot     { background: var(--hf-gold);     color: var(--hf-charcoal); }
.hf-badge-featured{ background: var(--hf-featured); color: #fff; }
.hf-badge-last    { background: var(--hf-charcoal); color: #fff; }

/* ================================================================
   TOP BAR
   ================================================================ */
.hf-topbar {
  background: var(--hf-charcoal);
  color: var(--hf-charcoal-20);
  font-size: var(--hf-fs-xs);
  height: var(--hf-topbar-h);
  display: flex;
  align-items: center;
}
.hf-topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--hf-container);
  margin-inline: auto;
  padding-inline: var(--hf-space-xl);
}
.hf-topbar__promo { color: var(--hf-gold); font-weight: var(--hf-fw-semibold); }
.hf-topbar__links { display: flex; gap: var(--hf-space-md); }
.hf-topbar__links a { color: var(--hf-charcoal-20); }
.hf-topbar__links a:hover { color: var(--hf-gold); }

/* ================================================================
   HEADER
   ================================================================ */
.hf-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--hf-white);
  border-bottom: 1px solid var(--hf-border);
  box-shadow: var(--hf-shadow-sm);
}
.hf-header__inner {
  height: var(--hf-header-h);
  display: flex;
  align-items: center;
  gap: var(--hf-space-xl);
}

/* Logo */
.hf-logo { flex-shrink: 0; }
.hf-logo img { height: 52px; width: auto; }

/* Search bar */
.hf-header-search {
  flex: 1;
  max-width: 520px;
  position: relative;
}
.hf-header-search input {
  width: 100%;
  padding: 10px 16px 10px 48px;
  border: 1.5px solid var(--hf-border);
  border-radius: var(--hf-radius-full);
  font-family: var(--hf-font-arabic);
  font-size: var(--hf-fs-sm);
  color: var(--hf-text);
  background: var(--hf-off-white);
  transition: border-color var(--hf-transition);
  direction: rtl;
}
.hf-header-search input:focus {
  outline: none;
  border-color: var(--hf-gold);
  background: var(--hf-white);
}
.hf-header-search__btn {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--hf-charcoal-50);
  padding: 0;
  display: flex;
  align-items: center;
}
.hf-header-search__btn:hover { color: var(--hf-gold); }

/* Header actions */
.hf-header-actions {
  display: flex;
  align-items: center;
  gap: var(--hf-space-md);
  margin-inline-start: auto;
}
.hf-header-actions__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: none;
  border: none;
  color: var(--hf-charcoal-75);
  font-size: 10px;
  font-family: var(--hf-font-arabic);
  padding: 6px;
  border-radius: var(--hf-radius-sm);
  transition: all var(--hf-transition);
  position: relative;
  cursor: pointer;
}
.hf-header-actions__btn:hover { color: var(--hf-gold); }
.hf-header-actions__btn svg { width: 22px; height: 22px; }

.hf-cart-count {
  position: absolute;
  top: 0; left: 0;
  background: var(--hf-sale);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* ================================================================
   NAV — Mega Menu
   ================================================================ */
.hf-nav {
  background: var(--hf-charcoal);
  border-bottom: 2px solid var(--hf-gold);
  position: relative;
  z-index: 900;
}
.hf-nav__inner {
  display: flex;
  align-items: center;
  height: 50px;
  max-width: var(--hf-container);
  margin-inline: auto;
  padding-inline: var(--hf-space-xl);
}
.hf-nav__list {
  display: flex;
  gap: 0;
  height: 100%;
}
.hf-nav__item {
  position: relative;
  height: 100%;
}
.hf-nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding-inline: var(--hf-space-md);
  color: rgba(255,255,255,0.85);
  font-size: var(--hf-fs-sm);
  font-weight: var(--hf-fw-medium);
  white-space: nowrap;
  transition: all var(--hf-transition);
  border-bottom: 2px solid transparent;
}
.hf-nav__link:hover,
.hf-nav__item.is-active > .hf-nav__link {
  color: var(--hf-gold);
  border-bottom-color: var(--hf-gold);
}
.hf-nav__link .hf-chevron { width: 14px; height: 14px; transition: transform var(--hf-transition); }
.hf-nav__item:hover .hf-chevron { transform: rotate(180deg); }

/* Mega dropdown */
.hf-megamenu {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  right: 0;
  min-width: 600px;
  background: var(--hf-white);
  border: 1px solid var(--hf-border);
  border-top: 3px solid var(--hf-gold);
  box-shadow: var(--hf-shadow-lg);
  border-radius: 0 0 var(--hf-radius-md) var(--hf-radius-md);
  z-index: 901;
  padding: var(--hf-space-lg);
}
.hf-nav__item:hover .hf-megamenu { display: flex; }

.hf-megamenu__col { min-width: 180px; }
.hf-megamenu__title {
  font-size: var(--hf-fs-xs);
  font-weight: var(--hf-fw-bold);
  color: var(--hf-charcoal-50);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--hf-space-sm);
  padding-bottom: var(--hf-space-sm);
  border-bottom: 1px solid var(--hf-border);
}
.hf-megamenu__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: var(--hf-fs-sm);
  color: var(--hf-text-secondary);
  transition: color var(--hf-transition);
}
.hf-megamenu__link:hover { color: var(--hf-gold); padding-right: 4px; }
.hf-megamenu__link::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--hf-gold);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity var(--hf-transition);
}
.hf-megamenu__link:hover::before { opacity: 1; }

/* Sale item in nav */
.hf-nav__link--sale { color: var(--hf-sale) !important; }
.hf-nav__link--new  { color: var(--hf-gold); font-weight: var(--hf-fw-bold); }

/* Mobile hamburger */
.hf-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--hf-charcoal);
  padding: 8px;
}

/* ================================================================
   HERO / SLIDER SECTION
   ================================================================ */
.hf-hero {
  position: relative;
  overflow: hidden;
  background: var(--hf-charcoal);
}
/* All slides hidden by default — JS adds .is-active */
.hf-hero__slide {
  position: relative;
  min-height: 560px;
  display: none;          /* hidden until JS activates */
  align-items: center;
}
.hf-hero__slide.is-active {
  display: flex;
}
/* Fallback: show first slide if JS hasn't run yet */
.hf-hero__slide:first-child {
  display: flex;
}
.hf-hero__slide.is-active ~ .hf-hero__slide:first-child:not(.is-active) {
  display: none;
}
@media (max-width: 768px) { .hf-hero__slide { min-height: 380px; } }
@media (max-width: 480px) { .hf-hero__slide { min-height: 300px; } }

.hf-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hf-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(44,44,44,0.75) 0%, rgba(44,44,44,0.3) 60%, transparent 100%);
}
.hf-hero__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: var(--hf-space-3xl) var(--hf-space-xl);
}
.hf-hero__eyebrow {
  display: inline-block;
  font-size: var(--hf-fs-xs);
  font-weight: var(--hf-fw-bold);
  color: var(--hf-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--hf-space-sm);
}
.hf-hero__title {
  font-size: var(--hf-fs-3xl);
  color: var(--hf-white);
  line-height: 1.2;
  margin-bottom: var(--hf-space-md);
}
.hf-hero__subtitle {
  font-size: var(--hf-fs-md);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--hf-space-xl);
}
.hf-hero__actions { display: flex; gap: var(--hf-space-md); flex-wrap: wrap; }

/* Slider controls */
.hf-hero__controls {
  position: absolute;
  bottom: var(--hf-space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hf-hero__dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--hf-transition);
  border: none;
  padding: 0;
}
.hf-hero__dot.is-active { background: var(--hf-gold); width: 24px; border-radius: 4px; }

.hf-hero__prev,
.hf-hero__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--hf-white);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--hf-transition);
  backdrop-filter: blur(4px);
}
.hf-hero__prev { right: var(--hf-space-md); }
.hf-hero__next { left:  var(--hf-space-md); }
.hf-hero__prev:hover,
.hf-hero__next:hover {
  background: var(--hf-gold);
  border-color: var(--hf-gold);
}

/* ================================================================
   SECTION HEADER (shared)
   ================================================================ */
.hf-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--hf-space-xl);
  flex-wrap: wrap;
  gap: var(--hf-space-md);
}
.hf-section-title {
  font-size: var(--hf-fs-xl);
  font-weight: var(--hf-fw-bold);
  color: var(--hf-charcoal);
  position: relative;
  padding-right: var(--hf-space-md);
}
.hf-section-title::before {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 70%;
  background: var(--hf-gold);
  border-radius: 2px;
}
.hf-section-subtitle { font-size: var(--hf-fs-sm); color: var(--hf-text-muted); margin-top: 4px; }
.hf-section-link {
  font-size: var(--hf-fs-sm);
  font-weight: var(--hf-fw-semibold);
  color: var(--hf-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: border-color var(--hf-transition);
}
.hf-section-link:hover { color: var(--hf-gold-dark); border-bottom-color: var(--hf-gold-dark); }

/* ================================================================
   CATEGORY GRID
   ================================================================ */
.hf-section-categories { padding: var(--hf-space-2xl) 0; }
.hf-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--hf-space-md);
}
@media (max-width: 1024px) { .hf-cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .hf-cat-grid { grid-template-columns: repeat(2, 1fr); gap: var(--hf-space-sm); } }

.hf-cat-card {
  position: relative;
  display: block;
  border-radius: var(--hf-radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--hf-off-white);
  box-shadow: var(--hf-shadow-sm);
  transition: box-shadow var(--hf-transition), transform var(--hf-transition);
}
.hf-cat-card:hover {
  box-shadow: var(--hf-shadow-md);
  transform: translateY(-3px);
}
.hf-cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--hf-transition-slow);
}
.hf-cat-card:hover img { transform: scale(1.06); }

.hf-cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,44,44,0.8) 0%, rgba(44,44,44,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--hf-space-lg);
}
.hf-cat-card__name {
  font-size: var(--hf-fs-md);
  font-weight: var(--hf-fw-bold);
  color: var(--hf-white);
  margin-bottom: 4px;
}
.hf-cat-card__count {
  font-size: var(--hf-fs-xs);
  color: rgba(255,255,255,0.7);
}
.hf-cat-card__arrow {
  position: absolute;
  top: var(--hf-space-md);
  left: var(--hf-space-md);
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--hf-transition);
}
.hf-cat-card:hover .hf-cat-card__arrow { opacity: 1; transform: translateX(0); }

/* Large featured category */
.hf-cat-card--large { grid-column: span 2; aspect-ratio: 8/3; }

/* ================================================================
   TRUST BAR (شحن، ضمان...)
   ================================================================ */
.hf-trust-bar {
  background: var(--hf-off-white);
  border-top: 1px solid var(--hf-border);
  border-bottom: 1px solid var(--hf-border);
  padding: var(--hf-space-lg) 0;
}
.hf-trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--hf-space-md);
  text-align: center;
}
@media (max-width: 640px) { .hf-trust-bar__grid { grid-template-columns: repeat(2, 1fr); } }

.hf-trust-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.hf-trust-item__icon { width: 36px; height: 36px; color: var(--hf-gold); }
.hf-trust-item__title { font-size: var(--hf-fs-sm); font-weight: var(--hf-fw-bold); color: var(--hf-charcoal); }
.hf-trust-item__text  { font-size: var(--hf-fs-xs); color: var(--hf-text-muted); }

/* ================================================================
   PRODUCT CARD
   ================================================================ */
.hf-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--hf-space-md);
}
@media (max-width: 1200px) { .hf-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .hf-product-grid { grid-template-columns: repeat(2, 1fr); gap: var(--hf-space-sm); } }
@media (max-width: 400px)  { .hf-product-grid { grid-template-columns: 1fr; } }

.hf-product-card {
  background: var(--hf-white);
  border: 1px solid var(--hf-border);
  border-radius: var(--hf-radius-md);
  overflow: hidden;
  transition: box-shadow var(--hf-transition), transform var(--hf-transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.hf-product-card:hover {
  box-shadow: var(--hf-shadow-md);
  transform: translateY(-4px);
  border-color: var(--hf-gold-light);
}

/* Image area */
.hf-product-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--hf-off-white);
}
.hf-product-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--hf-transition-slow);
}
.hf-product-card:hover .hf-product-card__img-wrap img { transform: scale(1.05); }

/* Badges */
.hf-product-card__badges {
  position: absolute;
  top: var(--hf-space-sm);
  right: var(--hf-space-sm);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

/* Quick actions */
.hf-product-card__actions {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  display: flex;
  gap: 0;
  transform: translateY(100%);
  transition: transform var(--hf-transition);
  z-index: 3;
}
.hf-product-card:hover .hf-product-card__actions { transform: translateY(0); }

.hf-quick-btn {
  flex: 1;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: var(--hf-fs-xs);
  font-weight: var(--hf-fw-semibold);
  font-family: var(--hf-font-arabic);
  cursor: pointer;
  border: none;
  transition: background var(--hf-transition);
}
.hf-quick-btn--cart {
  background: var(--hf-charcoal);
  color: var(--hf-white);
}
.hf-quick-btn--cart:hover { background: var(--hf-gold); color: var(--hf-charcoal); }
.hf-quick-btn--wishlist {
  background: var(--hf-off-white);
  color: var(--hf-charcoal);
  flex: 0 0 44px;
  border-right: 1px solid var(--hf-border);
}
.hf-quick-btn--wishlist:hover { background: var(--hf-sale); color: var(--hf-white); }
.hf-quick-btn--view {
  background: rgba(255,255,255,0.95);
  color: var(--hf-charcoal);
  flex: 0 0 44px;
}
.hf-quick-btn--view:hover { background: var(--hf-gold); color: var(--hf-charcoal); }

/* Product info */
.hf-product-card__body {
  padding: var(--hf-space-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.hf-product-card__cat {
  font-size: var(--hf-fs-xs);
  color: var(--hf-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hf-product-card__name {
  font-size: var(--hf-fs-sm);
  font-weight: var(--hf-fw-semibold);
  color: var(--hf-charcoal);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hf-product-card__name a:hover { color: var(--hf-gold); }

/* Rating */
.hf-rating { display: flex; align-items: center; gap: 6px; }
.hf-stars { display: flex; gap: 2px; color: #F5A623; }
.hf-stars svg { width: 12px; height: 12px; }
.hf-rating__count { font-size: var(--hf-fs-xs); color: var(--hf-text-muted); }

/* Price */
.hf-product-card__price { margin-top: auto; }
.hf-price { display: flex; align-items: baseline; gap: var(--hf-space-sm); flex-wrap: wrap; }
.hf-price__current {
  font-size: var(--hf-fs-md);
  font-weight: var(--hf-fw-bold);
  color: var(--hf-charcoal);
  font-family: var(--hf-font-numbers);
}
.hf-price__old {
  font-size: var(--hf-fs-sm);
  color: var(--hf-text-muted);
  text-decoration: line-through;
  font-family: var(--hf-font-numbers);
}
.hf-price__discount {
  font-size: var(--hf-fs-xs);
  font-weight: var(--hf-fw-bold);
  color: var(--hf-sale);
}
.hf-price__currency {
  font-size: var(--hf-fs-xs);
  color: var(--hf-text-muted);
}

/* Swatches */
.hf-product-card__swatches {
  display: flex;
  gap: 4px;
}
.hf-swatch {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--hf-border);
  cursor: pointer;
  transition: transform var(--hf-transition), border-color var(--hf-transition);
}
.hf-swatch:hover, .hf-swatch.is-active {
  transform: scale(1.2);
  border-color: var(--hf-gold);
}

/* ================================================================
   SHOP / ARCHIVE PAGE — Sidebar + Grid
   ================================================================ */
.hf-shop-layout {
  display: grid;
  grid-template-columns: var(--hf-sidebar-w) 1fr;
  gap: var(--hf-space-xl);
  padding: var(--hf-space-xl) 0 var(--hf-space-2xl);
  align-items: start;
}
@media (max-width: 1024px) {
  .hf-shop-layout { grid-template-columns: 1fr; }
  .hf-sidebar { display: none; }
  .hf-sidebar.is-open { display: block; }
}

/* Sidebar */
.hf-sidebar { position: sticky; top: calc(var(--hf-header-h) + var(--hf-topbar-h) + 60px); }
.hf-sidebar-widget {
  border: 1px solid var(--hf-border);
  border-radius: var(--hf-radius-md);
  overflow: hidden;
  margin-bottom: var(--hf-space-md);
}
.hf-sidebar-widget__title {
  font-size: var(--hf-fs-sm);
  font-weight: var(--hf-fw-bold);
  color: var(--hf-charcoal);
  padding: 12px var(--hf-space-md);
  background: var(--hf-off-white);
  border-bottom: 1px solid var(--hf-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.hf-sidebar-widget__body { padding: var(--hf-space-md); }

/* Filter items */
.hf-filter-list { display: flex; flex-direction: column; gap: 8px; }
.hf-filter-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--hf-fs-sm);
  color: var(--hf-text-secondary);
  cursor: pointer;
  padding: 4px 0;
  transition: color var(--hf-transition);
}
.hf-filter-item:hover { color: var(--hf-gold); }
.hf-filter-item input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--hf-gold);
  cursor: pointer;
}
.hf-filter-item__count {
  margin-inline-start: auto;
  font-size: var(--hf-fs-xs);
  color: var(--hf-text-muted);
  background: var(--hf-off-white);
  padding: 1px 6px;
  border-radius: var(--hf-radius-sm);
}

/* Color swatches filter */
.hf-color-filter { display: flex; flex-wrap: wrap; gap: 6px; }
.hf-color-swatch-filter {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--hf-border);
  cursor: pointer;
  transition: all var(--hf-transition);
  position: relative;
}
.hf-color-swatch-filter:hover { border-color: var(--hf-gold); transform: scale(1.1); }
.hf-color-swatch-filter.is-active { border-color: var(--hf-charcoal); }
.hf-color-swatch-filter.is-active::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
  text-shadow: 0 0 2px rgba(0,0,0,0.5);
}

/* Price range slider */
.hf-price-range { padding: var(--hf-space-sm) 0; }
.hf-price-range input[type="range"] {
  width: 100%;
  accent-color: var(--hf-gold);
}
.hf-price-range__values {
  display: flex;
  justify-content: space-between;
  font-size: var(--hf-fs-xs);
  color: var(--hf-text-secondary);
  margin-top: 6px;
  font-family: var(--hf-font-numbers);
}

/* Shop toolbar */
.hf-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--hf-space-lg);
  padding-bottom: var(--hf-space-md);
  border-bottom: 1px solid var(--hf-border);
  flex-wrap: wrap;
  gap: var(--hf-space-sm);
}
.hf-shop-toolbar__left { display: flex; align-items: center; gap: var(--hf-space-md); }
.hf-shop-toolbar__count { font-size: var(--hf-fs-sm); color: var(--hf-text-muted); }
.hf-mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--hf-off-white);
  border: 1px solid var(--hf-border);
  border-radius: var(--hf-radius-sm);
  font-size: var(--hf-fs-sm);
  font-family: var(--hf-font-arabic);
  cursor: pointer;
}
@media (max-width: 1024px) { .hf-mobile-filter-btn { display: flex; } }

.hf-sort-select {
  padding: 8px 14px;
  border: 1px solid var(--hf-border);
  border-radius: var(--hf-radius-sm);
  font-family: var(--hf-font-arabic);
  font-size: var(--hf-fs-sm);
  color: var(--hf-text);
  background: var(--hf-white);
  cursor: pointer;
  direction: rtl;
}
.hf-sort-select:focus { outline: none; border-color: var(--hf-gold); }

.hf-view-toggle { display: flex; gap: 4px; }
.hf-view-btn {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--hf-border);
  border-radius: var(--hf-radius-sm);
  color: var(--hf-charcoal-50);
  background: var(--hf-white);
  cursor: pointer;
  transition: all var(--hf-transition);
}
.hf-view-btn.is-active,
.hf-view-btn:hover { background: var(--hf-charcoal); color: var(--hf-white); border-color: var(--hf-charcoal); }

/* Active filters */
.hf-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--hf-space-md);
}
.hf-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: var(--hf-gold-pale);
  border: 1px solid var(--hf-gold-light);
  color: var(--hf-charcoal);
  border-radius: var(--hf-radius-full);
  font-size: var(--hf-fs-xs);
  font-weight: var(--hf-fw-medium);
}
.hf-filter-tag__remove {
  width: 14px; height: 14px;
  background: var(--hf-gold);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  cursor: pointer;
  border: none;
  line-height: 1;
}

/* ================================================================
   SINGLE PRODUCT PAGE
   ================================================================ */
.hf-single-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hf-space-3xl);
  padding: var(--hf-space-xl) 0;
  align-items: start;
}
@media (max-width: 900px) {
  .hf-single-product { grid-template-columns: 1fr; gap: var(--hf-space-xl); }
}

/* Gallery */
.hf-product-gallery { position: sticky; top: calc(var(--hf-header-h) + var(--hf-topbar-h) + 60px); }
.hf-gallery-main {
  aspect-ratio: 1;
  border: 1px solid var(--hf-border);
  border-radius: var(--hf-radius-md);
  overflow: hidden;
  background: var(--hf-off-white);
  margin-bottom: var(--hf-space-sm);
  cursor: zoom-in;
}
.hf-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.hf-gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.hf-gallery-thumbs::-webkit-scrollbar { height: 4px; }
.hf-gallery-thumbs::-webkit-scrollbar-track { background: var(--hf-off-white); }
.hf-gallery-thumbs::-webkit-scrollbar-thumb { background: var(--hf-gold-light); border-radius: 2px; }
.hf-gallery-thumb {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border: 2px solid var(--hf-border);
  border-radius: var(--hf-radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--hf-transition);
}
.hf-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hf-gallery-thumb.is-active, .hf-gallery-thumb:hover { border-color: var(--hf-gold); }

/* Product info */
.hf-product-info__breadcrumb { margin-bottom: var(--hf-space-md); }
.hf-product-info__badges { display: flex; gap: 6px; margin-bottom: var(--hf-space-sm); }
.hf-product-info__title {
  font-size: var(--hf-fs-2xl);
  font-weight: var(--hf-fw-bold);
  margin-bottom: var(--hf-space-md);
  line-height: 1.2;
}
.hf-product-info__sku { font-size: var(--hf-fs-xs); color: var(--hf-text-muted); margin-bottom: var(--hf-space-md); }
.hf-product-info__price { margin-bottom: var(--hf-space-lg); }
.hf-product-info__price .hf-price__current { font-size: var(--hf-fs-xl); }
.hf-product-info__price .hf-price__old     { font-size: var(--hf-fs-base); }

/* Attributes / Variations */
.hf-product-attrs { margin-bottom: var(--hf-space-lg); }
.hf-attr-group { margin-bottom: var(--hf-space-md); }
.hf-attr-label {
  font-size: var(--hf-fs-sm);
  font-weight: var(--hf-fw-semibold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hf-attr-label span { font-weight: 400; color: var(--hf-text-muted); }
.hf-attr-options { display: flex; flex-wrap: wrap; gap: 8px; }
.hf-attr-btn {
  padding: 6px 16px;
  border: 1.5px solid var(--hf-border);
  border-radius: var(--hf-radius-sm);
  font-size: var(--hf-fs-sm);
  font-family: var(--hf-font-arabic);
  background: var(--hf-white);
  color: var(--hf-text);
  cursor: pointer;
  transition: all var(--hf-transition);
}
.hf-attr-btn:hover { border-color: var(--hf-gold); color: var(--hf-gold); }
.hf-attr-btn.is-active { border-color: var(--hf-gold); background: var(--hf-gold); color: var(--hf-charcoal); font-weight: 600; }
.hf-attr-btn.is-disabled { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }

/* Quantity */
.hf-quantity-add {
  display: flex;
  align-items: center;
  gap: var(--hf-space-md);
  margin-bottom: var(--hf-space-lg);
  flex-wrap: wrap;
}
.hf-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--hf-border);
  border-radius: var(--hf-radius-sm);
  overflow: hidden;
}
.hf-qty__btn {
  width: 40px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--hf-off-white);
  border: none;
  font-size: var(--hf-fs-md);
  color: var(--hf-charcoal);
  cursor: pointer;
  transition: background var(--hf-transition);
}
.hf-qty__btn:hover { background: var(--hf-gold); color: white; }
.hf-qty__input {
  width: 52px; height: 44px;
  border: none;
  border-left: 1px solid var(--hf-border);
  border-right: 1px solid var(--hf-border);
  text-align: center;
  font-size: var(--hf-fs-base);
  font-family: var(--hf-font-numbers);
  font-weight: 600;
  color: var(--hf-charcoal);
}
.hf-qty__input:focus { outline: none; }

.hf-btn-add-cart {
  flex: 1;
  padding: 13px 24px;
  background: var(--hf-charcoal);
  color: var(--hf-white);
  border: none;
  border-radius: var(--hf-radius-sm);
  font-size: var(--hf-fs-base);
  font-weight: var(--hf-fw-bold);
  font-family: var(--hf-font-arabic);
  cursor: pointer;
  transition: all var(--hf-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hf-btn-add-cart:hover {
  background: var(--hf-gold);
  color: var(--hf-charcoal);
  box-shadow: var(--hf-shadow-gold);
}
.hf-btn-wishlist {
  width: 48px; height: 48px;
  border: 1.5px solid var(--hf-border);
  border-radius: var(--hf-radius-sm);
  display: flex; align-items: center; justify-content: center;
  background: var(--hf-white);
  color: var(--hf-charcoal-50);
  cursor: pointer;
  transition: all var(--hf-transition);
}
.hf-btn-wishlist:hover { border-color: var(--hf-sale); color: var(--hf-sale); }
.hf-btn-wishlist.is-active { background: var(--hf-sale); color: white; border-color: var(--hf-sale); }

/* Product meta */
.hf-product-meta { padding: var(--hf-space-md) 0; border-top: 1px solid var(--hf-border); }
.hf-meta-row {
  display: flex;
  gap: 8px;
  font-size: var(--hf-fs-xs);
  padding: 4px 0;
  color: var(--hf-text-secondary);
}
.hf-meta-row strong { color: var(--hf-charcoal); min-width: 80px; }

/* Tabs */
.hf-product-tabs { margin-top: var(--hf-space-2xl); border-top: 1px solid var(--hf-border); }
.hf-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--hf-border);
  overflow-x: auto;
}
.hf-tab-btn {
  padding: 14px 24px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-size: var(--hf-fs-sm);
  font-weight: var(--hf-fw-semibold);
  font-family: var(--hf-font-arabic);
  color: var(--hf-text-muted);
  cursor: pointer;
  transition: all var(--hf-transition);
  white-space: nowrap;
}
.hf-tab-btn:hover { color: var(--hf-gold); }
.hf-tab-btn.is-active { color: var(--hf-charcoal); border-bottom-color: var(--hf-gold); }
.hf-tab-panel { padding: var(--hf-space-xl) 0; display: none; }
.hf-tab-panel.is-active { display: block; }
.hf-tab-panel p, .hf-tab-panel li { font-size: var(--hf-fs-sm); color: var(--hf-text-secondary); line-height: 1.8; }

/* Specs table */
.hf-specs-table { width: 100%; border-collapse: collapse; }
.hf-specs-table tr:nth-child(even) td { background: var(--hf-off-white); }
.hf-specs-table td {
  padding: 10px 14px;
  font-size: var(--hf-fs-sm);
  border-bottom: 1px solid var(--hf-border);
  color: var(--hf-text-secondary);
}
.hf-specs-table td:first-child {
  font-weight: var(--hf-fw-semibold);
  color: var(--hf-charcoal);
  width: 40%;
}

/* ================================================================
   BREADCRUMB
   ================================================================ */
.hf-breadcrumb {
  padding: var(--hf-space-md) 0;
  border-bottom: 1px solid var(--hf-border);
  margin-bottom: var(--hf-space-lg);
}
.hf-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.hf-breadcrumb__item { font-size: var(--hf-fs-xs); color: var(--hf-text-muted); }
.hf-breadcrumb__item a { color: var(--hf-text-muted); }
.hf-breadcrumb__item a:hover { color: var(--hf-gold); }
.hf-breadcrumb__item:not(:last-child)::after {
  content: '›';
  margin-inline-start: 6px;
  color: var(--hf-charcoal-20);
}
.hf-breadcrumb__item:last-child { color: var(--hf-charcoal); font-weight: var(--hf-fw-medium); }

/* ================================================================
   PAGINATION
   ================================================================ */
.hf-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: var(--hf-space-xl) 0;
}
.hf-page-btn {
  min-width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--hf-border);
  border-radius: var(--hf-radius-sm);
  font-size: var(--hf-fs-sm);
  color: var(--hf-text);
  background: var(--hf-white);
  cursor: pointer;
  transition: all var(--hf-transition);
  font-family: var(--hf-font-numbers);
  font-weight: 500;
  text-decoration: none;
}
.hf-page-btn:hover { border-color: var(--hf-gold); color: var(--hf-gold); }
.hf-page-btn.is-active { background: var(--hf-gold); border-color: var(--hf-gold); color: var(--hf-charcoal); font-weight: 700; }

/* ================================================================
   PROMO / OFFER SECTIONS
   ================================================================ */
.hf-promo-banner {
  background: linear-gradient(135deg, var(--hf-charcoal) 0%, #3D3D3D 100%);
  padding: var(--hf-space-xl) 0;
  overflow: hidden;
  position: relative;
}
.hf-promo-banner::before {
  content: '';
  position: absolute;
  top: -40px; left: 10%;
  width: 200px; height: 200px;
  background: var(--hf-gold);
  opacity: 0.05;
  border-radius: 50%;
}
.hf-promo-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hf-space-xl);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.hf-promo-banner__text h2 {
  color: var(--hf-white);
  font-size: var(--hf-fs-xl);
  margin-bottom: 6px;
}
.hf-promo-banner__text p { color: rgba(255,255,255,0.7); margin: 0; font-size: var(--hf-fs-sm); }
.hf-promo-banner__tag {
  font-size: var(--hf-fs-3xl);
  font-weight: 900;
  color: var(--hf-gold);
  font-family: var(--hf-font-numbers);
  line-height: 1;
}

/* Countdown timer */
.hf-countdown {
  display: flex;
  gap: var(--hf-space-sm);
  align-items: center;
  margin-top: var(--hf-space-md);
}
.hf-countdown-unit {
  text-align: center;
  min-width: 56px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--hf-radius-sm);
  padding: 8px;
}
.hf-countdown-unit__num {
  display: block;
  font-size: var(--hf-fs-lg);
  font-weight: 900;
  color: var(--hf-gold);
  font-family: var(--hf-font-numbers);
  line-height: 1;
}
.hf-countdown-unit__label { font-size: 10px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.hf-countdown__sep { color: var(--hf-gold); font-size: var(--hf-fs-md); font-weight: 700; }

/* ================================================================
   FOOTER
   ================================================================ */
.hf-footer {
  background: var(--hf-charcoal);
  color: rgba(255,255,255,0.7);
  padding-top: var(--hf-space-3xl);
}
.hf-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--hf-space-2xl);
  padding-bottom: var(--hf-space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) {
  .hf-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--hf-space-xl); }
}
@media (max-width: 480px) {
  .hf-footer__grid { grid-template-columns: 1fr; }
}

.hf-footer-logo img { height: 52px; filter: brightness(10); margin-bottom: var(--hf-space-md); }
.hf-footer-about { font-size: var(--hf-fs-sm); line-height: 1.8; max-width: 300px; }
.hf-footer-social { display: flex; gap: var(--hf-space-sm); margin-top: var(--hf-space-md); }
.hf-social-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--hf-radius-sm);
  color: rgba(255,255,255,0.7);
  transition: all var(--hf-transition);
}
.hf-social-btn:hover { background: var(--hf-gold); border-color: var(--hf-gold); color: var(--hf-charcoal); }

.hf-footer-col__title {
  font-size: var(--hf-fs-sm);
  font-weight: var(--hf-fw-bold);
  color: var(--hf-white);
  margin-bottom: var(--hf-space-md);
  padding-bottom: var(--hf-space-sm);
  border-bottom: 1px solid var(--hf-gold);
  display: inline-block;
}
.hf-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.hf-footer-col ul li a {
  font-size: var(--hf-fs-sm);
  color: rgba(255,255,255,0.65);
  transition: color var(--hf-transition), padding-right var(--hf-transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hf-footer-col ul li a::before {
  content: '';
  width: 3px; height: 3px;
  background: var(--hf-gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.hf-footer-col ul li a:hover { color: var(--hf-gold); padding-right: 4px; }

.hf-footer-contact { display: flex; flex-direction: column; gap: 10px; }
.hf-footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--hf-fs-sm);
  color: rgba(255,255,255,0.65);
}
.hf-footer-contact__item svg { width: 16px; height: 16px; color: var(--hf-gold); flex-shrink: 0; margin-top: 2px; }

/* Footer bottom bar */
.hf-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--hf-space-lg) 0;
  flex-wrap: wrap;
  gap: var(--hf-space-md);
}
.hf-footer__copy { font-size: var(--hf-fs-xs); color: rgba(255,255,255,0.4); }
.hf-footer__payment { display: flex; align-items: center; gap: var(--hf-space-sm); }
.hf-payment-icon {
  height: 24px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center;
}

/* ================================================================
   WOOCOMMERCE OVERRIDES
   ================================================================ */
.woocommerce-notices-wrapper { max-width: var(--hf-container); margin-inline: auto; padding-inline: var(--hf-space-xl); }
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  border: none !important;
  border-radius: var(--hf-radius-md) !important;
  padding: 14px 20px !important;
  margin-bottom: var(--hf-space-md) !important;
  font-family: var(--hf-font-arabic) !important;
}
.woocommerce-message { background: #f0fdf4 !important; color: #15803d !important; border-right: 4px solid var(--hf-new) !important; }
.woocommerce-error  { background: #fef2f2 !important; color: #dc2626 !important; border-right: 4px solid var(--hf-sale) !important; }
.woocommerce-info   { background: var(--hf-gold-pale) !important; color: var(--hf-charcoal) !important; border-right: 4px solid var(--hf-gold) !important; }

/* Cart button */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  font-family: var(--hf-font-arabic) !important;
  background-color: var(--hf-charcoal) !important;
  color: var(--hf-white) !important;
  border-radius: var(--hf-radius-sm) !important;
  font-weight: var(--hf-fw-semibold) !important;
  transition: all var(--hf-transition) !important;
  border: none !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background-color: var(--hf-gold) !important;
  color: var(--hf-charcoal) !important;
}
.woocommerce a.button.alt,
.woocommerce button.button.alt {
  background-color: var(--hf-gold) !important;
  color: var(--hf-charcoal) !important;
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
  background-color: var(--hf-gold-dark) !important;
}

/* Sale flash */
.woocommerce span.onsale {
  background: var(--hf-sale) !important;
  border-radius: var(--hf-radius-sm) !important;
  font-family: var(--hf-font-arabic) !important;
  font-size: var(--hf-fs-xs) !important;
  min-height: auto !important;
  line-height: 1.8 !important;
  padding: 2px 8px !important;
  min-width: auto !important;
  top: var(--hf-space-sm) !important;
  right: var(--hf-space-sm) !important;
  left: auto !important;
}

/* Price */
.woocommerce .price {
  color: var(--hf-charcoal) !important;
  font-family: var(--hf-font-numbers) !important;
  font-weight: var(--hf-fw-bold) !important;
}
.woocommerce .price del { color: var(--hf-text-muted) !important; opacity: 1 !important; }
.woocommerce .price ins { text-decoration: none !important; font-weight: 700 !important; }

/* Star rating */
.woocommerce .star-rating span { color: #F5A623 !important; }
.woocommerce .star-rating::before { color: var(--hf-charcoal-20) !important; }

/* Checkout form */
.woocommerce-checkout .form-row label { font-size: var(--hf-fs-sm) !important; color: var(--hf-text-secondary) !important; }
.woocommerce form .input-text,
.woocommerce form select {
  border: 1.5px solid var(--hf-border) !important;
  border-radius: var(--hf-radius-sm) !important;
  padding: 10px 14px !important;
  font-family: var(--hf-font-arabic) !important;
  font-size: var(--hf-fs-sm) !important;
  transition: border-color var(--hf-transition) !important;
}
.woocommerce form .input-text:focus,
.woocommerce form select:focus {
  border-color: var(--hf-gold) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15) !important;
}

/* ================================================================
   ELEMENTOR COMPATIBILITY
   ================================================================ */
.elementor-section,
.elementor-container { max-width: 100% !important; }
.elementor-widget-text-editor,
.elementor-widget-heading { font-family: var(--hf-font-arabic) !important; }

/* ================================================================
   RESPONSIVE — MOBILE
   ================================================================ */
@media (max-width: 768px) {
  :root {
    --hf-header-h: 60px;
    --hf-topbar-h: 0px;
  }
  .hf-topbar { display: none; }
  .hf-header-search { max-width: none; }
  .hf-nav-toggle { display: flex; }
  .hf-nav__list { display: none; }
  .hf-nav__list.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; right: 0; left: 0;
    background: var(--hf-charcoal);
    z-index: 999;
    padding: var(--hf-space-md);
    gap: 0;
    height: auto;
  }
  .hf-nav__link { height: 44px; }
  .hf-megamenu { position: static; min-width: auto; display: none; }
  .hf-nav__item.is-open .hf-megamenu { display: flex; flex-direction: column; }
  .hf-hero__title { font-size: var(--hf-fs-xl); }
  .hf-hero__content { padding: var(--hf-space-xl) var(--hf-space-md); }
  .hf-product-grid { grid-template-columns: repeat(2, 1fr); }
  .hf-single-product { grid-template-columns: 1fr; }
  .hf-product-gallery { position: static; }
  .hf-section-title { font-size: var(--hf-fs-lg); }
  .hf-footer__grid { grid-template-columns: 1fr; }
  .hf-footer__bottom { flex-direction: column; text-align: center; }
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes hf-fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hf-shimmer {
  from { background-position: -200% 0; }
  to   { background-position: 200% 0; }
}

/* Skeleton loading */
.hf-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: hf-shimmer 1.5s infinite;
  border-radius: var(--hf-radius-sm);
}

/* ================================================================
   ACCESSIBILITY
   ================================================================ */
:focus-visible {
  outline: 2px solid var(--hf-gold);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
  display: flex;
  align-items: center;
  gap: 6px;
}
.hf-footer-col ul li a::before {
  content: '';
  width: 3px; height: 3px;
  background: var(--hf-gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.hf-footer-col ul li a:hover { color: var(--hf-gold); padding-right: 4px; }
[dir="ltr"] .hf-footer-col ul li a:hover { padding-left: 4px; padding-right: 0; }

.hf-footer-contact { display: flex; flex-direction: column; gap: var(--hf-space-md); }
.hf-footer-contact__item { display: flex; align-items: flex-start; gap: 12px; font-size: var(--hf-fs-sm); color: rgba(255,255,255,0.65); }
.hf-footer-contact__item svg { flex-shrink: 0; color: var(--hf-gold); margin-top: 2px; }

.hf-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--hf-space-lg) 0;
  flex-wrap: wrap;
  gap: var(--hf-space-md);
}
.hf-footer__copy { font-size: var(--hf-fs-xs); color: rgba(255,255,255,0.4); }
.hf-footer__payment { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hf-payment-icon {
  padding: 3px 10px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--hf-radius-sm);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  font-family: var(--hf-font-numbers);
}

/* ================================================================
   SHOP TOOLBAR
   ================================================================ */
.hf-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hf-space-md);
  padding: var(--hf-space-md) 0;
  border-bottom: 1px solid var(--hf-border);
  margin-bottom: var(--hf-space-lg);
  flex-wrap: wrap;
}
.hf-shop-toolbar__results { font-size: var(--hf-fs-sm); color: var(--hf-text-secondary); }
.hf-shop-toolbar__controls { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
@media (max-width: 640px) {
  .hf-shop-toolbar { flex-direction: column; align-items: flex-start; }
  .hf-filter-toggle { display: flex !important; }
}

/* Mobile filter toggle */
.hf-filter-toggle { display: none; align-items: center; gap: 6px; }
@media (max-width: 1024px) {
  .hf-filter-toggle { display: flex !important; }
  .hf-sidebar {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    overflow-y: auto;
    background: var(--hf-bg, #fff);
    z-index: 9000;
    padding: var(--hf-space-xl) var(--hf-space-lg) var(--hf-space-lg);
    transition: right 0.3s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  }
  [dir="ltr"] .hf-sidebar { right: auto; left: -100%; transition: left 0.3s ease; }
  .hf-sidebar.is-open { right: 0; }
  [dir="ltr"] .hf-sidebar.is-open { left: 0; right: auto; }
  .hf-sidebar__close { display: flex !important; }
  .hf-shop-layout { grid-template-columns: 1fr; padding-top: 0; }
}

/* ================================================================
   PAGINATION
   ================================================================ */
.hf-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hf-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1.5px solid var(--hf-border);
  border-radius: var(--hf-radius-sm);
  font-size: var(--hf-fs-sm);
  font-weight: 600;
  color: var(--hf-charcoal);
  text-decoration: none;
  transition: all var(--hf-transition);
  background: #fff;
}
.hf-pagination .page-numbers.current,
.hf-pagination .page-numbers:hover {
  background: var(--hf-gold);
  border-color: var(--hf-gold);
  color: #fff;
}
.hf-pagination .page-numbers.dots { border: none; background: none; cursor: default; }

/* ================================================================
   BREADCRUMB
   ================================================================ */
.hf-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hf-breadcrumb__link {
  font-size: var(--hf-fs-xs);
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color var(--hf-transition);
}
.hf-breadcrumb__link:hover { color: var(--hf-gold); }
.hf-breadcrumb__sep { color: rgba(255,255,255,0.4); font-size: var(--hf-fs-xs); }
.hf-breadcrumb__current { font-size: var(--hf-fs-xs); color: rgba(255,255,255,0.5); }

/* Shop page breadcrumb — on white bg */
.hf-shop-main .hf-breadcrumb .hf-breadcrumb__link { color: var(--hf-text-secondary); }
.hf-shop-main .hf-breadcrumb .hf-breadcrumb__sep  { color: var(--hf-text-muted); }

/* ================================================================
   PRODUCT SINGLE PAGE LAYOUT
   ================================================================ */
.hf-single-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hf-space-2xl);
  align-items: start;
  margin-bottom: var(--hf-space-2xl);
}
@media (max-width: 900px) {
  .hf-single-product { grid-template-columns: 1fr; gap: var(--hf-space-xl); }
}

.hf-product-gallery { position: sticky; top: calc(var(--hf-header-h) + var(--hf-topbar-h) + 16px); }
@media (max-width: 900px) { .hf-product-gallery { position: static; } }

.hf-gallery-main {
  position: relative;
  aspect-ratio: 1;
  background: var(--hf-off-white);
  border-radius: var(--hf-radius-lg);
  overflow: hidden;
  margin-bottom: var(--hf-space-sm);
  display: flex; align-items: center; justify-content: center;
}
.hf-gallery-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hf-gallery-thumb {
  width: 72px; height: 72px;
  border: 2px solid var(--hf-border);
  border-radius: var(--hf-radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--hf-transition);
  background: var(--hf-off-white);
  flex-shrink: 0;
}
.hf-gallery-thumb:hover,
.hf-gallery-thumb.is-active { border-color: var(--hf-gold); }

.hf-product-summary__cat { font-size: var(--hf-fs-xs); color: var(--hf-text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.hf-product-summary__cat a { color: inherit; text-decoration: none; }
.hf-product-summary__cat a:hover { color: var(--hf-gold); }
.hf-product-summary__title { font-size: var(--hf-fs-2xl); font-weight: 900; line-height: 1.3; margin-bottom: var(--hf-space-md); }
@media (max-width: 640px) { .hf-product-summary__title { font-size: var(--hf-fs-xl); } }

.hf-product-summary__rating { display: flex; align-items: center; gap: 8px; margin-bottom: var(--hf-space-md); }
.hf-product-summary__price { margin-bottom: var(--hf-space-md); display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.hf-product-summary__short-desc { font-size: var(--hf-fs-sm); color: var(--hf-text-secondary); line-height: 1.8; margin-bottom: var(--hf-space-lg); }

.hf-product-tabs { margin-bottom: var(--hf-space-2xl); }
.hf-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--hf-border);
  margin-bottom: var(--hf-space-lg);
  overflow-x: auto;
}
.hf-tab-btn {
  padding: 12px 24px;
  font-family: var(--hf-font-arabic);
  font-size: var(--hf-fs-sm);
  font-weight: 600;
  border: none;
  background: none;
  color: var(--hf-text-secondary);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all var(--hf-transition);
}
.hf-tab-btn.is-active { color: var(--hf-gold); border-bottom-color: var(--hf-gold); }
.hf-tab-btn:hover { color: var(--hf-charcoal); }

.hf-tab-panel {
  display: none;
  background: #fff;
  border: 1px solid var(--hf-border);
  border-radius: var(--hf-radius-md);
  padding: var(--hf-space-lg);
}
.hf-tab-panel.is-active { display: block; }

.hf-product-description { line-height: 1.9; font-size: var(--hf-fs-sm); color: var(--hf-text-secondary); }
.hf-product-description h2,
.hf-product-description h3,
.hf-product-description h4 { color: var(--hf-charcoal); margin-top: var(--hf-space-lg); }
.hf-product-description ul,
.hf-product-description ol { list-style: disc; padding-right: var(--hf-space-lg); }
[dir="ltr"] .hf-product-description ul,
[dir="ltr"] .hf-product-description ol { padding-left: var(--hf-space-lg); padding-right: 0; }

/* ================================================================
   SECTION HEADERS
   ================================================================ */
.hf-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--hf-space-xl);
  gap: var(--hf-space-md);
  flex-wrap: wrap;
}
.hf-section-title {
  font-size: var(--hf-fs-xl);
  font-weight: 900;
  color: var(--hf-charcoal);
  position: relative;
  padding-bottom: 12px;
  margin: 0;
}
.hf-section-title::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 48px; height: 3px;
  background: var(--hf-gold);
  border-radius: 2px;
}
[dir="ltr"] .hf-section-title::after { right: auto; left: 0; }
.hf-section-subtitle { font-size: var(--hf-fs-sm); color: var(--hf-text-secondary); margin-top: 6px; }
.hf-section-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--hf-fs-sm); font-weight: 700;
  color: var(--hf-gold); white-space: nowrap;
  text-decoration: none;
  transition: gap var(--hf-transition);
}
.hf-section-link:hover { gap: 10px; color: var(--hf-gold-dark); }

/* ================================================================
   GLOBAL RESPONSIVE PATCHES — v2.1
   ================================================================ */

/* Mobile: header compress */
@media (max-width: 768px) {
  .hf-header-search { display: none; }  /* hidden on mobile, use dedicated search page */
  .hf-header-actions__btn span { display: none; }  /* hide labels, show icons only */
  .hf-header__inner { gap: var(--hf-space-sm); }
  .hf-topbar__links { display: none; }  /* simplify topbar on mobile */
}
@media (max-width: 480px) {
  .hf-theme-toggle, .hf-lang-toggle { width: 32px; height: 32px; font-size: 13px; }
  .hf-header-actions { gap: 6px; }
}

/* Nav mobile */
.hf-nav__list.is-open { display: flex !important; }

/* Category grid responsive */
.hf-cat-card--large {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 640px) {
  .hf-cat-card--large { grid-column: span 1; grid-row: span 1; }
}

/* Product card list view */
.hf-product-grid.hf-product-list {
  grid-template-columns: 1fr !important;
}
.hf-product-grid.hf-product-list .hf-product-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
}
.hf-product-grid.hf-product-list .hf-product-card__img-wrap {
  aspect-ratio: 1;
  height: auto;
}
@media (max-width: 640px) {
  .hf-product-grid.hf-product-list .hf-product-card { grid-template-columns: 1fr; }
}

/* Fix: WC price on product cards */
.hf-product-card .price {
  font-size: var(--hf-fs-md);
  font-weight: 800;
  color: var(--hf-charcoal);
}
.hf-product-card .price del {
  font-size: var(--hf-fs-sm);
  font-weight: 400;
  color: var(--hf-text-muted);
}
.hf-product-card .price ins {
  text-decoration: none;
  color: var(--hf-sale);
}

/* Filter list links */
.hf-filter-list__link {
  display: flex; align-items: center; justify-content: space-between;
  font-size: var(--hf-fs-sm);
  color: var(--hf-text-secondary);
  text-decoration: none;
  padding: 4px 0;
  transition: color var(--hf-transition);
}
.hf-filter-list__link:hover { color: var(--hf-gold); }
.hf-filter-list__link.is-active { color: var(--hf-gold); font-weight: 700; }
.hf-filter-list__count { font-size: var(--hf-fs-xs); color: var(--hf-text-muted); }
.hf-filter-sub { padding-right: var(--hf-space-md); margin-top: 4px; }
[dir="ltr"] .hf-filter-sub { padding-left: var(--hf-space-md); padding-right: 0; }
.hf-filter-sub__link { display: flex; align-items: center; justify-content: space-between; font-size: var(--hf-fs-xs); color: var(--hf-text-secondary); text-decoration: none; padding: 3px 0; }
.hf-filter-sub__link:hover { color: var(--hf-gold); }
.hf-filter-sub__link.is-active { color: var(--hf-gold); font-weight: 700; }

/* Stars */
.hf-stars { display: inline-flex; align-items: center; gap: 2px; color: var(--hf-gold); }
YOUT
   ================================================================ */
.hf-single-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hf-space-2xl);
  align-items: start;
}
@media (max-width: 900px) {
  .hf-single-product { grid-template-columns: 1fr; }
}

/* Gallery */
.hf-product-gallery { position: sticky; top: 100px; }
.hf-gallery-main {
  position: relative;
  border-radius: var(--hf-radius-lg);
  overflow: hidden;
  background: var(--hf-off-white);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--hf-space-md);
  border: 1px solid var(--hf-border);
}
.hf-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.hf-gallery-main:hover img { transform: scale(1.04); }

.hf-gallery-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hf-gallery-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--hf-radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--hf-border);
  transition: border-color var(--hf-transition);
  flex-shrink: 0;
}
.hf-gallery-thumb.is-active,
.hf-gallery-thumb:hover { border-color: var(--hf-gold); }

/* Product Summary */
.hf-product-summary__cat {
  font-size: var(--hf-fs-xs);
  font-weight: 600;
  color: var(--hf-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--hf-space-sm);
}
.hf-product-summary__cat a {
  color: inherit;
  text-decoration: none;
}
.hf-product-summary__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--hf-charcoal);
  line-height: 1.25;
  margin: 0 0 var(--hf-space-md);
}
.hf-product-summary__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--hf-space-md);
}
.hf-product-summary__price {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: var(--hf-space-lg);
  padding: var(--hf-space-md) var(--hf-space-lg);
  background: var(--hf-off-white);
  border-radius: var(--hf-radius-md);
  border: 1px solid var(--hf-border);
}
.hf-product-summary__price .woocommerce-Price-amount {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--hf-charcoal);
  font-family: var(--hf-font-numbers);
}
.hf-product-summary__price del .woocommerce-Price-amount {
  font-size: 1rem;
  font-weight: 400;
  color: var(--hf-text-muted);
}
.hf-product-summary__price ins {
  text-decoration: none;
}
.hf-product-summary__short-desc {
  font-size: var(--hf-fs-sm);
  color: var(--hf-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--hf-space-lg);
}
.hf-product-summary__short-desc p { margin: 0 0 8px; }

/* Cart form */
.hf-cart-form { margin-bottom: var(--hf-space-lg); }
.hf-qty__btn {
  transition: background var(--hf-transition);
}
.hf-qty__btn:hover { background: var(--hf-gold-pale) !important; color: var(--hf-gold-dark); }
.hf-qty__input { background: var(--hf-white); color: var(--hf-charcoal); }

/* Attribute options */
.hf-attr-option {
  transition: all 0.2s ease;
}
.hf-attr-option:hover {
  border-color: var(--hf-gold) !important;
  color: var(--hf-gold-dark);
}

/* ================================================================
   PRODUCT TABS
   ================================================================ */
.hf-product-tabs {
  background: var(--hf-white);
  border: 1px solid var(--hf-border);
  border-radius: var(--hf-radius-lg);
  overflow: hidden;
}
.hf-tabs-nav {
  display: flex;
  border-bottom: 2px solid var(--hf-border);
  background: var(--hf-off-white);
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.hf-tab-btn {
  padding: 16px 28px;
  font-size: var(--hf-fs-sm);
  font-weight: 700;
  color: var(--hf-text-secondary);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all var(--hf-transition);
  white-space: nowrap;
  font-family: var(--hf-font-arabic);
}
.hf-tab-btn:hover { color: var(--hf-charcoal); }
.hf-tab-btn.is-active {
  color: var(--hf-gold-dark);
  border-bottom-color: var(--hf-gold);
  background: var(--hf-white);
}
.hf-tab-panel {
  display: none;
  padding: var(--hf-space-xl);
}
.hf-tab-panel.is-active { display: block; }

.hf-product-description {
  font-size: var(--hf-fs-sm);
  color: var(--hf-text-secondary);
  line-height: 1.8;
}
.hf-product-description p { margin: 0 0 var(--hf-space-md); }
.hf-product-description h2,
.hf-product-description h3,
.hf-product-description h4 {
  color: var(--hf-charcoal);
  font-weight: 700;
  margin: var(--hf-space-lg) 0 var(--hf-space-sm);
}
.hf-product-description ul,
.hf-product-description ol {
  padding-right: var(--hf-space-lg);
  margin-bottom: var(--hf-space-md);
}
[dir="ltr"] .hf-product-description ul,
[dir="ltr"] .hf-product-description ol {
  padding-left: var(--hf-space-lg);
  padding-right: 0;
}

/* ================================================================
   PRODUCT CARD — SHARED STYLES
   ================================================================ */
.hf-product-card {
  background: var(--hf-white);
  border-radius: var(--hf-radius-lg);
  overflow: hidden;
  transition: transform var(--hf-transition), box-shadow var(--hf-transition);
  position: relative;
  border: 1px solid var(--hf-border);
}
.hf-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44,44,44,0.12);
}
.hf-product-card__img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--hf-off-white);
  position: relative;
}
.hf-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hf-product-card:hover .hf-product-card__img { transform: scale(1.06); }

.hf-product-card__badges {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
[dir="ltr"] .hf-product-card__badges { right: auto; left: 12px; }

.hf-product-card__actions {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  display: flex;
  gap: 6px;
  padding: 12px;
  background: linear-gradient(transparent, rgba(44,44,44,0.5));
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.25s ease;
  justify-content: center;
  align-items: center;
}
.hf-product-card:hover .hf-product-card__actions {
  opacity: 1;
  transform: translateY(0);
}

.hf-product-card__info,
.hf-product-card__body {
  padding: var(--hf-space-md);
}
.hf-product-card__cat {
  font-size: var(--hf-fs-xs);
  color: var(--hf-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  display: block;
}
.hf-product-card__name {
  font-size: var(--hf-fs-base);
  font-weight: 700;
  color: var(--hf-charcoal);
  margin: 0 0 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hf-product-card__name a {
  color: inherit;
  text-decoration: none;
  transition: color var(--hf-transition);
}
.hf-product-card__name a:hover { color: var(--hf-gold-dark); }

.hf-product-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--hf-fs-xs);
  color: var(--hf-text-muted);
  margin-bottom: 8px;
}
.hf-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hf-product-card__price .woocommerce-Price-amount {
  font-weight: 900;
  color: var(--hf-charcoal);
  font-family: var(--hf-font-numbers);
  font-size: var(--hf-fs-base);
}
.hf-product-card__price del .woocommerce-Price-amount {
  color: var(--hf-text-muted);
  font-weight: 400;
  font-size: var(--hf-fs-xs);
}
.hf-product-card__price ins { text-decoration: none; }

/* Quick action buttons */
.hf-quick-btn,
.hf-quick-action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  color: var(--hf-charcoal);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}
.hf-quick-btn:hover,
.hf-quick-action-btn:hover {
  background: var(--hf-gold);
  color: #fff;
  transform: scale(1.1);
}
.hf-quick-btn--cart {
  width: auto;
  border-radius: var(--hf-radius-sm);
  padding: 0 14px;
  gap: 6px;
  font-size: var(--hf-fs-xs);
  font-weight: 700;
  font-family: var(--hf-font-arabic);
}

/* List view */
.hf-product-grid.hf-product-list {
  grid-template-columns: 1fr !important;
}
.hf-product-grid.hf-product-list .hf-product-card {
  display: grid;
  grid-template-columns: 200px 1fr;
}
.hf-product-grid.hf-product-list .hf-product-card__img-wrap {
  aspect-ratio: auto;
  height: 100%;
}
@media (max-width: 480px) {
  .hf-product-grid.hf-product-list .hf-product-card {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   BADGES
   ================================================================ */
.hf-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
  white-space: nowrap;
}
.hf-badge-new,  .hf-badge--new  { background: var(--hf-new);  color: #fff; }
.hf-badge-sale, .hf-badge--sale { background: var(--hf-sale); color: #fff; }
.hf-badge-hot                   { background: #e67e22; color: #fff; }

/* ================================================================
   PRICE DISPLAY
   ================================================================ */
.hf-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hf-price__current {
  font-weight: 900;
  font-size: var(--hf-fs-base);
  color: var(--hf-charcoal);
  font-family: var(--hf-font-numbers);
}
.hf-price__old {
  font-size: var(--hf-fs-sm);
  color: var(--hf-text-muted);
  text-decoration: line-through;
  font-family: var(--hf-font-numbers);
}
.hf-price__discount {
  font-size: var(--hf-fs-xs);
  font-weight: 700;
  color: var(--hf-sale);
  background: rgba(192,57,43,0.08);
  padding: 2px 8px;
  border-radius: 999px;
}

/* ================================================================
   STAR RATINGS
   ================================================================ */
.hf-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--hf-gold);
  align-items: center;
}
.hf-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--hf-fs-xs);
  color: var(--hf-text-secondary);
  margin-bottom: 8px;
}
.hf-rating__count { color: var(--hf-text-muted); }

/* ====================================================