/* ============================================================
   ROMOX — Client Website CSS
   Design: Apple/Anker minimal-futuristic
   Fonts: Montserrat + Inter + Noto Sans Arabic
   Colors: Tech Turquoise #27C2C7 | Graphite #2B2B2B
   Mobile-first | Bilingual RTL/LTR
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&family=Noto+Sans+Arabic:wght@300;400;500;600;700;800&display=swap');

/* ── Variables ───────────────────────────────────────────────── */
:root {
  /* ── Exact brand colors from ROMOX logo ── */
  --teal:        #1CA2D1;   /* Blue from R circuit board */
  --teal-dark:   #1588B0;
  --teal-light:  #E3F5FB;
  --teal-glow:   rgba(28,162,209,.15);
  --orange:      #DE7C28;   /* Orange from X */
  --orange-light:#FEF0E3;
  --cyan:        #00C6E9;
  --graphite:    #1E1E1E;
  --graphite-2:  #2D2D2D;
  --grey-bg:     #F4F6F8;
  --grey-border: #E4E8EC;
  --grey-text:   #64748B;
  --white:       #FFFFFF;
  --black:       #0D0D0D;

  --success:     #22C55E;
  --warning:     #F59E0B;
  --danger:      #EF4444;

  --font:        'Inter', 'Noto Sans Arabic', sans-serif;
  --font-head:   'Montserrat', 'Noto Sans Arabic', sans-serif;
  --font-ar:     'Noto Sans Arabic', sans-serif;

  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --shadow:      0 2px 16px rgba(0,0,0,.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.12);
  --shadow-teal: 0 8px 24px rgba(28,162,209,.28);

  --header-h:    68px;
  --container:   1200px;
  --tr:          .2s ease;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--graphite); background: var(--white); line-height: 1.6; overflow-x: hidden; }
body.rtl { font-family: var(--font-ar); direction: rtl; text-align: right; }
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Container ───────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ── Section spacing ─────────────────────────────────────────── */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--graphite);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1rem;
  color: var(--grey-text);
  max-width: 560px;
  margin: 0 auto 48px;
}
.section-header { text-align: center; margin-bottom: 48px; }
body.rtl .section-sub { text-align: center; }

/* ── Header ──────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-border);
  z-index: 1000;
  transition: box-shadow var(--tr);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 32px;
}

.site-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--graphite);
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.logo-accent { color: var(--teal); }
.logo-dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  margin-bottom: 10px;
  animation: dotPulse 2s infinite;
}
@keyframes dotPulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:.7} }

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.nav-link {
  padding: 6px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--grey-text);
  border-radius: var(--radius-sm);
  transition: all var(--tr);
}
.nav-link:hover, .nav-link.active { color: var(--teal); background: var(--teal-light); }

.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
body.rtl .header-actions { margin-left: 0; margin-right: auto; }

.header-whatsapp {
  display: flex; align-items: center; gap: 6px;
  background: #25D366; color: #fff;
  padding: 7px 14px; border-radius: 30px;
  font-size: .82rem; font-weight: 600;
  transition: all var(--tr);
}
.header-whatsapp:hover { background: #1ebe5d; color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,.35); }
.wa-number { display: none; }

.lang-btn {
  padding: 6px 14px;
  border: 1.5px solid var(--grey-border);
  border-radius: 30px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--grey-text);
  transition: all var(--tr);
  white-space: nowrap;
}
.lang-btn:hover { border-color: var(--teal); color: var(--teal); }

.cart-btn {
  position: relative;
  background: none; border: none;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--graphite);
  border-radius: var(--radius-sm);
  transition: all var(--tr);
}
.cart-btn:hover { background: var(--grey-bg); color: var(--teal); }
.cart-count {
  position: absolute; top: 2px; right: 2px;
  width: 18px; height: 18px;
  background: var(--teal); color: #fff;
  border-radius: 50%; font-size: .65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}
body.rtl .cart-count { right: auto; left: 2px; }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--graphite); border-radius: 2px;
  transition: all var(--tr);
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--grey-border);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: block; }
.mobile-nav-link {
  display: block; padding: 12px 24px;
  font-size: .95rem; font-weight: 500;
  color: var(--graphite);
  transition: all var(--tr);
}
.mobile-nav-link:hover { color: var(--teal); background: var(--teal-light); }
.lang-mobile { color: var(--teal); font-weight: 600; }

/* ── Cart Drawer ─────────────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5); backdrop-filter: blur(3px);
  z-index: 1100; opacity: 0; pointer-events: none; transition: opacity var(--tr);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(400px, 100vw);
  height: 100vh;
  background: var(--white);
  z-index: 1200;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
  box-shadow: var(--shadow-lg);
}
body.rtl .cart-drawer { right: auto; left: 0; transform: translateX(-100%); }
.cart-drawer.open { transform: translateX(0) !important; }

.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--grey-border);
  flex-shrink: 0;
}
.cart-drawer-header h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; }
.cart-close { background: none; border: none; font-size: 1.2rem; color: var(--grey-text); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all var(--tr); }
.cart-close:hover { background: var(--grey-bg); color: var(--graphite); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty-state { text-align: center; padding: 48px 20px; color: var(--grey-text); }
.cart-empty-state svg { margin: 0 auto 16px; opacity: .3; }
.cart-empty-state p { margin-bottom: 20px; }

.cart-item {
  display: flex; gap: 12px; padding: 14px 0;
  border-bottom: 1px solid var(--grey-border);
  align-items: flex-start;
}
.cart-item-img { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; border: 1px solid var(--grey-border); flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: .9rem; font-weight: 600; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: .85rem; color: var(--teal); font-weight: 700; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn { width: 26px; height: 26px; border: 1.5px solid var(--grey-border); background: none; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: all var(--tr); }
.qty-btn:hover { border-color: var(--teal); color: var(--teal); }
.qty-val { font-size: .9rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-remove { background: none; border: none; color: var(--grey-text); font-size: .8rem; padding: 4px 8px; border-radius: 4px; transition: all var(--tr); }
.cart-item-remove:hover { color: var(--danger); background: #FEE2E2; }

.cart-drawer-footer { padding: 20px 24px; border-top: 1px solid var(--grey-border); flex-shrink: 0; }
.cart-summary { margin-bottom: 16px; }
.cart-row { display: flex; justify-content: space-between; padding: 5px 0; font-size: .9rem; color: var(--grey-text); }
.cart-total { font-weight: 700; font-size: 1.05rem; color: var(--graphite); border-top: 1px solid var(--grey-border); margin-top: 8px; padding-top: 12px; }
.btn-checkout { width: 100%; padding: 14px; background: var(--teal); color: #fff; border: none; border-radius: var(--radius); font-size: 1rem; font-weight: 700; font-family: var(--font-head); transition: all var(--tr); }
.btn-checkout:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: var(--shadow-teal); }
.cart-cod-note { text-align: center; font-size: .75rem; color: var(--grey-text); margin-top: 10px; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px;
  background: var(--teal); color: #fff;
  border: none; border-radius: var(--radius);
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all var(--tr);
  text-decoration: none; white-space: nowrap;
}
.btn-primary:hover { background: var(--teal-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-teal); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 30px;
  background: transparent; color: var(--orange);
  border: 2px solid var(--orange); border-radius: var(--radius);
  font-family: var(--font-head); font-size: .95rem; font-weight: 700;
  cursor: pointer; transition: all var(--tr);
  text-decoration: none; white-space: nowrap;
}
.btn-secondary:hover { background: var(--orange); color: #fff; }

.btn-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px;
  background: var(--graphite); color: #fff;
  border: none; border-radius: var(--radius);
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all var(--tr);
  text-decoration: none;
}
.btn-dark:hover { background: var(--graphite-2); color: #fff; transform: translateY(-2px); }

.btn-whatsapp {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  background: #25D366; color: #fff;
  border: none; border-radius: var(--radius);
  font-family: var(--font-head); font-size: .95rem; font-weight: 700;
  cursor: pointer; transition: all var(--tr);
  text-decoration: none;
}
.btn-whatsapp:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.3); }

.btn-outline-sm {
  padding: 8px 20px;
  border: 1.5px solid var(--teal); border-radius: var(--radius-sm);
  font-size: .85rem; font-weight: 600; color: var(--teal);
  display: inline-flex; align-items: center;
  transition: all var(--tr); text-decoration: none;
}
.btn-outline-sm:hover { background: var(--teal); color: #fff; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--header-h);
  background: linear-gradient(135deg, var(--white) 0%, var(--teal-light) 50%, #E0F7F8 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(39,194,199,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,229,255,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 1;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange-light);
  color: var(--orange);
  padding: 6px 16px; border-radius: 30px;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--graphite);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title span { color: var(--teal); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--grey-text);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; flex-direction: row; }

.hero-stats {
  display: flex; gap: 32px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--grey-border);
  flex-wrap: wrap;
}
.hero-stat-val {
  font-family: var(--font-head);
  font-size: 1.8rem; font-weight: 800; color: var(--graphite);
  line-height: 1;
}
.hero-stat-val span { color: var(--teal); }
.hero-stat-label { font-size: .8rem; color: var(--grey-text); margin-top: 4px; }

.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}

.hero-img-wrap {
  position: relative;
  width: 100%; max-width: 480px;
}

.hero-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.hero-img-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  min-width: 140px;
}
.hero-img-badge.badge-1 { bottom: 40px; left: -20px; animation: badgeFloat 3s ease-in-out infinite; }
.hero-img-badge.badge-2 { top: 40px; right: -20px; animation: badgeFloat 3s ease-in-out infinite 1s; }
body.rtl .hero-img-badge.badge-1 { left: auto; right: -20px; }
body.rtl .hero-img-badge.badge-2 { right: auto; left: -20px; }
@keyframes badgeFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.badge-icon { width: 36px; height: 36px; background: var(--teal-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0; }
.badge-val { font-family: var(--font-head); font-size: .85rem; font-weight: 700; color: var(--graphite); }
.badge-lbl { font-size: .7rem; color: var(--grey-text); }

/* ── Product Cards ───────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-border);
  overflow: hidden;
  transition: all var(--tr);
  position: relative;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal); }

.product-card-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--grey-bg);
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-badge {
  position: absolute; top: 12px;
  background: var(--teal); color: #fff;
  font-size: .7rem; font-weight: 700; padding: 4px 10px; border-radius: 30px;
}
body.ltr .product-badge { left: 12px; }
body.rtl .product-badge { right: 12px; }
.product-badge.sale { background: var(--danger); }

.product-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-card-cat { font-size: .72rem; text-transform: uppercase; letter-spacing: .8px; color: var(--teal); font-weight: 600; margin-bottom: 6px; }
.product-card-name { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--graphite); margin-bottom: 8px; line-height: 1.3; }
.product-card-desc { font-size: .84rem; color: var(--grey-text); line-height: 1.5; margin-bottom: 14px; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.product-card-footer { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.product-price-row { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.product-price { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; color: var(--graphite); white-space: nowrap; }
.product-compare { font-size: .82rem; color: var(--grey-text); text-decoration: line-through; white-space: nowrap; }
.product-card-actions { display: flex; gap: 8px; align-items: center; }

.btn-add-cart {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--teal); color: #fff;
  border: none; border-radius: var(--radius-sm);
  transition: all var(--tr); flex-shrink: 0;
}
.btn-add-cart:hover { background: var(--teal-dark); transform: scale(1.05); box-shadow: var(--shadow-teal); }

.btn-order-now {
  flex: 1;
  padding: 10px 16px;
  background: var(--graphite); color: #fff;
  border: none; border-radius: var(--radius-sm);
  font-size: .85rem; font-weight: 700;
  font-family: var(--font-head);
  transition: all var(--tr);
  text-align: center; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-order-now:hover { background: var(--teal); color: #fff; }

.product-stock {
  font-size: .72rem; font-weight: 600; padding: 3px 10px;
  border-radius: 30px; display: inline-flex; align-items: center; gap: 4px;
}
.product-stock.in  { background: #DCFCE7; color: #15803D; }
.product-stock.out { background: #FEE2E2; color: #B91C1C; }
.product-stock.low { background: #FEF3C7; color: #B45309; }
.product-stock::before { content:''; width:5px; height:5px; border-radius:50%; background:currentColor; }

/* ── Category cards ──────────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--tr);
  text-decoration: none;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.category-card:nth-child(even):hover { border-color: var(--orange); background: var(--orange-light); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.category-card:nth-child(odd):hover  { border-color: var(--teal);   background: var(--teal-light);   transform: translateY(-4px); box-shadow: var(--shadow-md); }
.category-icon {
  width: 68px; height: 68px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  transition: all var(--tr);
}
.category-icon svg { width: 30px; height: 30px; }
.category-card:hover .category-icon { background: var(--teal); color: #fff; }
.category-name { font-family: var(--font-head); font-size: .95rem; font-weight: 700; color: var(--graphite); }
.category-count { font-size: .78rem; color: var(--grey-text); }

/* ── COD Order Form ──────────────────────────────────────────── */
.order-form-section {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  border: 1px solid var(--grey-border);
  box-shadow: var(--shadow-md);
  position: relative;
}

.order-form-title { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--graphite); margin-bottom: 4px; }
.order-form-sub { font-size: .88rem; color: var(--grey-text); margin-bottom: 20px; }

.cod-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-light); border: 1px solid rgba(247,148,29,.2);
  color: var(--orange); padding: 7px 14px; border-radius: var(--radius-sm);
  font-size: .8rem; font-weight: 600; margin-bottom: 20px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--graphite); margin-bottom: 5px; }
.form-label.dark { color: var(--graphite); }

.form-control {
  width: 100%; padding: 11px 14px;
  background: var(--white); color: var(--graphite);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius-sm); font-family: inherit; font-size: .9rem;
  transition: border-color var(--tr), box-shadow var(--tr);
  outline: none;
}
.form-control::placeholder { color: var(--grey-text); }
.form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(28,162,209,.12); background: #fff; }
.form-control.light {
  background: var(--grey-bg); color: var(--graphite);
  border-color: var(--grey-border);
}
.form-control.light::placeholder { color: var(--grey-text); }
.form-control.light:focus { border-color: var(--teal); background: #fff; }
select.form-control {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-color: var(--white);
  padding-right: 38px;
}
body.rtl select.form-control { background-position: left 14px center; padding-right: 11px; padding-left: 38px; }

.qty-selector {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--grey-border); border-radius: var(--radius-sm);
  overflow: hidden; background: var(--white);
}
.qty-selector button {
  width: 40px; height: 42px; background: var(--grey-bg);
  border: none; color: var(--graphite); font-size: 1.1rem; font-weight: 700;
  transition: all var(--tr);
}
.qty-selector button:hover { background: var(--teal); color: #fff; }
.qty-selector input {
  width: 52px; height: 42px; background: var(--white);
  border: none; border-left: 1px solid var(--grey-border); border-right: 1px solid var(--grey-border);
  text-align: center; color: var(--graphite); font-size: 1rem; font-weight: 700;
  font-family: inherit; outline: none;
}

/* Coupon field */
.coupon-row { display: flex; gap: 8px; align-items: flex-end; }
.coupon-row .form-control { text-transform: uppercase; letter-spacing: 1px; }
.btn-apply-coupon {
  padding: 11px 18px; background: var(--graphite); color: #fff;
  border: none; border-radius: var(--radius-sm); font-size: .82rem;
  font-weight: 700; font-family: inherit; cursor: pointer;
  transition: all var(--tr); white-space: nowrap; flex-shrink: 0;
}
.btn-apply-coupon:hover { background: var(--teal); }
.coupon-success { font-size: .78rem; color: var(--success); font-weight: 600; margin-top: 5px; display: none; }
.coupon-error   { font-size: .78rem; color: var(--danger);  font-weight: 600; margin-top: 5px; display: none; }

/* Order summary box */
.order-summary-box {
  background: var(--grey-bg); border-radius: var(--radius); padding: 14px 16px;
  margin: 16px 0; border: 1px solid var(--grey-border);
}
.order-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .87rem; color: var(--grey-text); padding: 4px 0;
}
.order-summary-row.total {
  font-size: 1.1rem; font-weight: 800; color: var(--teal);
  border-top: 1px solid var(--grey-border); margin-top: 6px; padding-top: 10px;
}
.order-summary-row.discount { color: var(--success); font-weight: 600; }

.form-total { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--teal); margin: 12px 0 4px; }
.form-delivery { font-size: .82rem; color: var(--grey-text); }

.form-submit-wrap { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.btn-submit {
  flex: 1; min-width: 180px; padding: 15px 20px;
  background: var(--teal); color: #fff; border: none; border-radius: var(--radius);
  font-family: var(--font-head); font-size: .95rem; font-weight: 800; cursor: pointer;
  transition: all var(--tr);
}
.btn-submit:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-teal); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.form-success {
  background: #DCFCE7; border: 1px solid #BBF7D0; color: #15803D;
  padding: 14px 18px; border-radius: var(--radius-sm);
  font-weight: 600; margin-top: 14px; display: none;
}
.form-error-msg {
  background: #FEE2E2; border: 1px solid #FECACA; color: #B91C1C;
  padding: 14px 18px; border-radius: var(--radius-sm);
  font-weight: 600; margin-top: 14px; display: none;
}

/* ── Product Detail Page ─────────────────────────────────────── */
.product-detail { padding-top: calc(var(--header-h) + 40px); padding-bottom: 80px; }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.product-gallery-main {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grey-bg);
  margin-bottom: 12px;
  cursor: zoom-in;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-gallery-main:hover img { transform: scale(1.04); }

.product-gallery-thumbs { display: flex; gap: 10px; }
.gallery-thumb {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden; border: 2px solid var(--grey-border);
  cursor: pointer; transition: all var(--tr); flex-shrink: 0;
  background: var(--grey-bg);
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--teal); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info-sku { font-size: .8rem; color: var(--grey-text); margin-bottom: 8px; }
.product-info-title { font-family: var(--font-head); font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; color: var(--graphite); line-height: 1.2; margin-bottom: 16px; }

.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.stars { color: #F59E0B; font-size: 1rem; letter-spacing: 2px; }
.rating-count { font-size: .82rem; color: var(--grey-text); }

.product-price-wrap { display: flex; align-items: baseline; gap: 12px; margin-bottom: 12px; }
.product-info-price { font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: var(--teal); }
.product-info-compare { font-size: 1.1rem; color: var(--grey-text); text-decoration: line-through; }
.product-save-badge { background: var(--orange); color: #fff; font-size: .75rem; font-weight: 700; padding: 3px 10px; border-radius: 30px; }

.product-delivery-info { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.delivery-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal-light); color: var(--teal);
  padding: 6px 14px; border-radius: 30px;
  font-size: .8rem; font-weight: 600;
}
.delivery-badge.orange {
  background: var(--orange-light); color: var(--orange);
}

.product-benefits { margin-bottom: 24px; }
.benefit-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--grey-border); font-size: .92rem; color: var(--graphite); }
.benefit-icon { width: 28px; height: 28px; background: var(--teal-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0; }

.product-cta-wrap { display: flex; flex-direction: column; gap: 12px; }
.btn-order-big { padding: 16px 32px; font-size: 1.05rem; text-align: center; }

.product-tabs { margin-top: 48px; }
.tab-nav { display: flex; border-bottom: 2px solid var(--grey-border); gap: 0; flex-wrap: wrap; }
.tab-nav-btn { padding: 12px 24px; font-size: .92rem; font-weight: 600; color: var(--grey-text); background: none; border: none; position: relative; transition: color var(--tr); white-space: nowrap; }
.tab-nav-btn::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--teal); transform: scaleX(0); transition: transform var(--tr); }
.tab-nav-btn.active { color: var(--teal); }
.tab-nav-btn.active::after { transform: scaleX(1); }
.tab-panel { display: none; padding: 28px 0; }
.tab-panel.active { display: block; }

.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--grey-border); }
.specs-table td { padding: 12px 16px; font-size: .9rem; }
.specs-table td:first-child { color: var(--grey-text); font-weight: 600; width: 40%; }

/* ── Trust Bar ───────────────────────────────────────────────── */
.trust-bar { background: var(--grey-bg); border-top: 1px solid var(--grey-border); border-bottom: 1px solid var(--grey-border); padding: 28px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon { width: 52px; height: 52px; background: var(--teal-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0; }
.trust-label { font-family: var(--font-head); font-size: .92rem; font-weight: 700; color: var(--graphite); }
.trust-sub { font-size: .75rem; color: var(--grey-text); margin-top: 2px; }

/* ── Reviews / Social Proof ──────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review-card {
  background: var(--white); border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg); padding: 24px;
  transition: box-shadow var(--tr);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-stars { color: #F59E0B; font-size: .95rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: .9rem; color: var(--graphite); line-height: 1.6; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--teal-light); display: flex; align-items: center; justify-content: center; color: var(--teal); font-weight: 700; font-size: .85rem; flex-shrink: 0; }
.review-name { font-size: .85rem; font-weight: 600; color: var(--graphite); }
.review-date { font-size: .72rem; color: var(--grey-text); }

/* ── About page ──────────────────────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, var(--graphite) 0%, #1A1A1A 100%);
  color: #fff; padding: 120px 0 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.about-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(circle at 50% 50%, rgba(39,194,199,.1) 0%, transparent 70%); pointer-events:none; }
.about-hero-title { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; margin-bottom: 16px; }
.about-hero-title span { color: var(--teal); }
.about-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.value-card { text-align: center; padding: 32px 24px; border: 1px solid var(--grey-border); border-radius: var(--radius-lg); transition: all var(--tr); }
.value-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.value-icon { width: 72px; height: 72px; background: var(--teal-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--teal); margin: 0 auto 20px; font-size: 1.8rem; transition: all var(--tr); }
.value-card:hover .value-icon { background: var(--teal); color: #fff; }
.value-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.value-desc { font-size: .88rem; color: var(--grey-text); line-height: 1.6; }

/* ── Contact page ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-info-icon { width: 48px; height: 48px; background: var(--teal-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0; }
.contact-info-label { font-size: .8rem; color: var(--grey-text); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.contact-info-value { font-size: .95rem; color: var(--graphite); font-weight: 500; }

/* ── Page header (catalog etc.) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--grey-bg) 0%, var(--teal-light) 100%);
  padding: calc(var(--header-h) + 48px) 0 48px;
  text-align: center;
}
.page-hero-title { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--graphite); margin-bottom: 12px; }
.page-hero-sub { font-size: 1rem; color: var(--grey-text); max-width: 500px; margin: 0 auto; }

/* ── Filters ─────────────────────────────────────────────────── */
.filters-bar {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 16px 0; margin-bottom: 32px;
}
.filter-btn {
  padding: 7px 18px; border: 1.5px solid var(--grey-border);
  border-radius: 30px; font-size: .85rem; font-weight: 600;
  color: var(--grey-text); background: var(--white);
  cursor: pointer; transition: all var(--tr);
}
.filter-btn:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.filter-btn.active { border-color: var(--orange); color: var(--orange); background: var(--orange-light); }

/* ── Pagination ──────────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; gap: 8px; padding: 40px 0; flex-wrap: wrap; }
.page-btn { width: 40px; height: 40px; border: 1.5px solid var(--grey-border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: .9rem; font-weight: 600; color: var(--grey-text); background: var(--white); cursor: pointer; transition: all var(--tr); text-decoration: none; }
.page-btn:hover, .page-btn.active { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--graphite);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { font-family: var(--font-head); font-size: 1.4rem; font-weight: 900; color: #fff; letter-spacing: 1.5px; display: inline-block; margin-bottom: 12px; }
.footer-logo span { color: var(--teal); }
.logo-dot-footer { display: inline-block; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; margin-bottom: 8px; margin-left: 2px; }
.footer-tagline { font-size: .82rem; color: var(--teal); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.footer-desc { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); transition: all var(--tr); }
.footer-social a:hover { background: var(--teal); color: #fff; }

.footer-col h4 { font-family: var(--font-head); font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color var(--tr); }
.footer-col ul a:hover { color: var(--teal); }

.footer-contact-list li { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 12px; }
.footer-contact-list svg { flex-shrink: 0; color: var(--teal); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-cod-note { color: rgba(39,194,199,.7) !important; }

/* ── WhatsApp Float ──────────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  z-index: 500;
  transition: all var(--tr);
}
body.rtl .whatsapp-float { right: auto; left: 28px; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.55); color: #fff; }
.wa-pulse {
  position: absolute; top: 0; right: 0;
  width: 14px; height: 14px;
  background: var(--danger); border-radius: 50%;
  border: 2px solid #fff;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot { 0%,100%{transform:scale(1)} 50%{transform:scale(1.3)} }

/* ── Breadcrumb ──────────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--grey-text); padding: 16px 0; flex-wrap: wrap; }
.breadcrumb a { color: var(--grey-text); transition: color var(--tr); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb-sep { color: var(--grey-border); }

/* ── Toast notification ──────────────────────────────────────── */
.toast {
  position: fixed; bottom: 96px; right: 28px;
  background: var(--graphite); color: #fff;
  padding: 14px 20px; border-radius: var(--radius);
  font-size: .9rem; font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  transform: translateY(20px); opacity: 0;
  transition: all .3s ease;
  max-width: 300px;
  display: flex; align-items: center; gap: 10px;
}
body.rtl .toast { right: auto; left: 28px; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid var(--success); }
.toast.error   { border-left: 4px solid var(--danger); }

/* ── Utilities ───────────────────────────────────────────────── */
.text-teal  { color: var(--teal); }
.text-muted { color: var(--grey-text); }
.fw-700     { font-weight: 700; }
.fw-800     { font-weight: 800; }
.mt-0  { margin-top: 0; }
.mb-0  { margin-bottom: 0; }

/* ── Scrollbar ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--grey-border); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */

@media (min-width: 768px) {
  .wa-number { display: inline; }
  .header-whatsapp { gap: 8px; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  body.rtl .hero-inner { text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .site-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-whatsapp .wa-number { display: none; }
  .header-whatsapp span:not(svg) { display: none; }

  .hero { min-height: auto; padding-top: calc(var(--header-h) + 20px); }
  .hero-inner { padding: 40px 0 20px; }
  .hero-title { font-size: 1.8rem; }

  .section { padding: 48px 0; }
  .section-header { margin-bottom: 32px; }

  .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .order-form-section { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit-wrap { flex-direction: column; }
  .btn-submit { min-width: unset; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}


/* ── Logo image ──────────────────────────────────────────────── */
.site-logo { display: flex; align-items: center; padding: 0; }
.site-logo img { height: 46px; width: auto; display: block; }
.footer-logo { display: inline-flex; align-items: center; margin-bottom: 12px; }
.footer-logo img { height: 52px; width: auto; display: block; }

/* ── Orange accent (X color) used for CTAs + highlights ──────── */
.btn-orange {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px;
  background: var(--orange); color: #fff;
  border: none; border-radius: var(--radius);
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all var(--tr); text-decoration: none;
}
.btn-orange:hover { background: #C46A1F; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(222,124,40,.3); }

/* ── Hero: fix buttons side by side on all screens ───────────── */
@media (min-width: 481px) {
  .hero-actions { flex-direction: row !important; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: auto !important; }
}

/* ── Page hero gradient uses brand blue ──────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #EBF6FB 0%, var(--teal-light) 100%);
}

/* ── Category icons use brand colors ─────────────────────────── */
.category-card:hover .category-icon { background: var(--teal); color: #fff; }

/* ── Active nav underline uses brand blue ────────────────────── */
.nav-link.active::after,
.tab-nav-btn.active::after { background: var(--teal); }

/* ── Trust bar icons ─────────────────────────────────────────── */
.trust-icon { background: var(--teal-light); color: var(--teal); }
/* trust bar colors handled via inline styles in footer.php */

/* ── Scrollbar brand color ───────────────────────────────────── */
::-webkit-scrollbar-thumb:hover { background: var(--teal); }


/* ── Offers section ──────────────────────────────────────────── */
.offers-section { background: linear-gradient(180deg, #fff 0%, #FFF8F3 100%); }

.offers-label, .new-label {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 16px; border-radius: 30px;
  font-size: .75rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 14px;
}
.offers-label {
  background: #FEF0E3;
  color: var(--orange);
  border: 1px solid rgba(222,124,40,.2);
}
.offers-label svg { color: var(--orange); }

.new-label {
  background: var(--teal-light);
  color: var(--teal);
  border: 1px solid rgba(28,162,209,.2);
}
.new-label svg { color: var(--teal); }

.offers-urgency {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--graphite) 0%, #2D2D2D 100%);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: .9rem; font-weight: 600;
  margin-bottom: 32px;
  border-left: 4px solid var(--orange);
}
body.rtl .offers-urgency { border-left: none; border-right: 4px solid var(--orange); }
.offers-urgency svg { color: var(--orange); flex-shrink: 0; }

/* Sale product card special styling */
.product-card.on-sale {
  border-color: rgba(222,124,40,.3);
}
.product-card.on-sale::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #F59E0B);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Discount percentage badge style */
.product-badge.sale {
  background: var(--orange);
  font-weight: 800;
}

/* New product card top border */
.product-card.is-new::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary, .btn-dark { width: 100%; justify-content: center; }
  .product-gallery-thumbs { gap: 8px; }
  .gallery-thumb { width: 60px; height: 60px; }
}

/* Card footer fix */
.product-card-footer{display:flex;flex-direction:column;gap:10px;margin-top:auto}.product-price-row{display:flex;align-items:baseline;gap:6px;flex-wrap:wrap}.product-price{font-family:var(--font-head);font-size:1.1rem;font-weight:800;color:var(--graphite);white-space:nowrap}.product-compare{font-size:.8rem;color:var(--grey-text);text-decoration:line-through;white-space:nowrap}.product-card-actions{display:flex;gap:8px;align-items:center}