/* ═══════════════════════════════════════════════════════════════
   ZYLDORA — Light Theme (Bewakoof-Inspired)
   ═══════════════════════════════════════════════════════════════ */

/* ── GLOBAL CSS VARIABLES ── */
:root {
  --zd-accent:       #C9A227;
  --zd-accent-dark:  #a3841f;
  --zd-accent-light: #faf3e0;
  --zd-dark:         #1a1a1a;
  --zd-mid:          #555555;
  --zd-muted:        #999999;
  --zd-light:        #f7f7f7;
  --zd-lighter:      #fafafa;
  --zd-border:       #ebebeb;
  --zd-white:        #ffffff;
  --zd-radius:       8px;
  --zd-shadow:       0 2px 12px rgba(0,0,0,0.06);
  --zd-shadow-hover: 0 8px 28px rgba(0,0,0,0.12);
  --zd-font:         'Poppins', sans-serif;

  /* Override brand colors site-wide */
  --brand-pink: #C9A227;
  --brand-teal: #1a1a1a;
}

/* ── HEADER / NAV THEME OVERRIDES ── */
.backtop { background: var(--zd-accent) !important; }

.top-promo-bar {
  background: var(--zd-dark) !important;
  color: rgba(255,255,255,0.9) !important;
  font-family: var(--zd-font) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
  padding: 9px 0 !important;
  text-align: center;
}

.main-header {
  background: var(--zd-white) !important;
  border-bottom: 1px solid var(--zd-border) !important;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05) !important;
  padding: 10px 0 !important;
}

.search-form {
  border: 1.5px solid var(--zd-border) !important;
  border-radius: 6px !important;
  overflow: hidden;
  background: var(--zd-light) !important;
}
.search-form:focus-within { border-color: var(--zd-accent) !important; }
.search-btn { background: var(--zd-accent) !important; color: #fff !important; }

.nav-bar { background: var(--zd-white) !important; border-bottom: 2px solid var(--zd-accent) !important; }

.nav-link, .nav-list-main a {
  color: var(--zd-dark) !important;
  font-family: var(--zd-font) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.4px !important;
}
.nav-link:hover, .nav-list-main a:hover { color: var(--zd-accent) !important; }

.category-trigger {
  color: #fff !important;
  background: var(--zd-accent) !important;
  font-family: var(--zd-font) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  border-radius: 5px !important;
  padding: 8px 16px !important;
}
.category-trigger:hover { background: var(--zd-accent-dark) !important; }

.action-item {
  color: var(--zd-dark) !important;
  font-family: var(--zd-font) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}
.action-item:hover { color: var(--zd-accent) !important; }
.badge-count { background: var(--zd-accent) !important; }

.mobile-menu { background: var(--zd-white) !important; border-top: 2px solid var(--zd-accent) !important; }
.mobile-menu a, .mobile-menu button { color: var(--zd-dark) !important; }

/* ── GLOBAL BUTTON OVERRIDE ── */
.btn-outline { border-color: var(--zd-accent) !important; color: var(--zd-accent) !important; }
.btn-outline:hover { background: var(--zd-accent) !important; color: #fff !important; }

/* ═══════════════════════════════════════════════════════════════
   SHARED UTILITIES
   ═══════════════════════════════════════════════════════════════ */

.zd-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--zd-accent); color: #fff;
  font-family: var(--zd-font); font-size: 13px; font-weight: 700;
  padding: 12px 26px; border-radius: 6px;
  text-transform: uppercase; letter-spacing: 0.5px;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}
.zd-btn-primary:hover {
  background: var(--zd-accent-dark); color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255,102,0,0.3);
  text-decoration: none;
}

.zd-btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  font-family: var(--zd-font); font-size: 13px; font-weight: 600;
  padding: 11px 26px; border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.65);
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: all 0.2s; text-decoration: none;
}
.zd-btn-outline-white:hover {
  background: rgba(255,255,255,0.18); color: #fff;
  border-color: #fff; text-decoration: none;
}

.zd-section-head {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 24px;
}
.zd-section-head.center { flex-direction: column; text-align: center; gap: 6px; align-items: center; }
.zd-section-head h2 {
  font-family: var(--zd-font); font-size: clamp(20px,3vw,28px);
  font-weight: 800; color: var(--zd-dark); margin: 0; letter-spacing: -0.3px;
}
.zd-section-head h2 span { color: var(--zd-accent); }
.zd-section-head p { color: var(--zd-muted); font-size: 14px; margin: 0; font-family: var(--zd-font); }

.zd-viewall {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--zd-font); font-size: 11px; font-weight: 700;
  color: var(--zd-accent); text-transform: uppercase;
  letter-spacing: 0.5px; white-space: nowrap;
  transition: gap 0.2s; text-decoration: none;
}
.zd-viewall:hover { color: var(--zd-accent-dark); gap: 10px; text-decoration: none; }

/* ═══════════════════════════════════════════════════════════════
   HERO BANNER
   ═══════════════════════════════════════════════════════════════ */
.zd-hero {
  position: relative; overflow: hidden;
  height: auto; min-height: 0; max-height: none;
  background: #f6f6f6;
}
.zd-hero-slider {
  width: 100%;
  height: auto;
  position: relative;
  display: grid;
}
.zd-hero-slide {
  position: relative;
  grid-area: 1 / 1;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  opacity: 0; transition: opacity 0.9s ease; pointer-events: none;
  overflow: hidden;
}
.zd-hero-slide.active { opacity: 1; pointer-events: auto; }
.zd-hero-slide.has-image {
  min-height: 0;
  background-image: none !important;
}
.zd-hero-img {
  display: block;
  width: 100%;
  height: auto;
}
.zd-hero-fallback {
  background: linear-gradient(135deg, #1a1a1a 0%, #C9A227 60%, #e8cf7a 100%);
  min-height: 520px;
}
.zd-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.10) 50%, rgba(0,0,0,0.04) 100%);
}
.zd-hero-content {
  position: absolute; top: 50%; left: 0;
  transform: translateY(-50%); padding: 0 80px;
  max-width: 660px; z-index: 2;
}
.zd-hero-tag {
  display: inline-block; background: var(--zd-accent); color: #fff;
  font-family: var(--zd-font); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 5px 14px; border-radius: 4px; margin-bottom: 16px;
}
.zd-hero-content h1,
.zd-hero-content h2 {
  font-family: var(--zd-font); font-size: clamp(28px,5vw,58px);
  font-weight: 800; color: #fff; line-height: 1.1;
  margin-bottom: 14px; letter-spacing: -0.5px;
}
.zd-hero-content p {
  font-family: var(--zd-font); font-size: 15px;
  color: rgba(255,255,255,0.8); margin-bottom: 28px; line-height: 1.65; max-width: 460px;
}
.zd-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.zd-hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.14); backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,0.28); border-radius: 50%;
  color: #fff; font-size: 14px; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.zd-hero-arrow:hover { background: rgba(255,255,255,0.28); }
.zd-prev { left: 20px; } .zd-next { right: 20px; }

.zd-hero-dots {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 7px; z-index: 10;
}
.zd-hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none;
  cursor: pointer; transition: all 0.3s; padding: 0;
}
.zd-hero-dot.active { background: var(--zd-accent); width: 24px; border-radius: 4px; }

/* ═══════════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════════ */
.zd-trust-bar {
  padding: 16px 0; background: var(--zd-white);
  border-bottom: 1px solid var(--zd-border);
}
.zd-trust-row {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap;
}
.zd-trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 18px; flex: 1; min-width: 160px;
  border-right: 1px solid var(--zd-border);
}
.zd-trust-item:last-child { border-right: none; }
.zd-trust-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--zd-accent-light); display: flex;
  align-items: center; justify-content: center;
  font-size: 16px; color: var(--zd-accent); flex-shrink: 0;
}
.zd-trust-item strong {
  display: block; font-family: var(--zd-font); font-size: 12px;
  font-weight: 700; color: var(--zd-dark);
}
.zd-trust-item span { font-family: var(--zd-font); font-size: 11px; color: var(--zd-muted); }

/* ═══════════════════════════════════════════════════════════════
   CATEGORY QUICK NAV
   ═══════════════════════════════════════════════════════════════ */
.zd-cat-nav {
  background: var(--zd-white); border-bottom: 1px solid var(--zd-border);
  padding: 12px 0; position: sticky; top: 0; z-index: 50;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.zd-cat-nav-scroll {
  display: flex; gap: 10px; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none; padding: 2px 0;
}
.zd-cat-nav-scroll::-webkit-scrollbar { display: none; }
.zd-cat-chip {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  min-width: 68px; padding: 8px 10px; border-radius: 10px;
  background: var(--zd-light); border: 1.5px solid var(--zd-border);
  transition: all 0.2s; text-decoration: none; flex-shrink: 0;
}
.zd-cat-chip:hover {
  background: var(--zd-accent-light); border-color: var(--zd-accent);
  text-decoration: none; transform: translateY(-2px);
}
.zd-cat-chip img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.zd-cat-chip span {
  font-family: var(--zd-font); font-size: 10px; font-weight: 700;
  color: var(--zd-dark); text-align: center; text-transform: uppercase; letter-spacing: 0.3px;
}
.zd-cat-chip:hover span { color: var(--zd-accent); }

/* ═══════════════════════════════════════════════════════════════
   OFFER BANNER TILES
   ═══════════════════════════════════════════════════════════════ */
.zd-offers { padding: 32px 0; background: var(--zd-light); }
.zd-offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.zd-offer-tile {
  position: relative; border-radius: 10px; overflow: hidden;
  background-size: cover; background-position: center;
  min-height: 270px; display: flex; align-items: flex-end;
  transition: transform 0.3s ease;
}
.zd-offer-tile:hover { transform: scale(1.012); }
.zd-offer-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.2) 55%, transparent 100%);
}
.zd-offer-body { position: relative; z-index: 2; padding: 24px; width: 100%; }
.zd-offer-badge {
  display: inline-block; background: var(--zd-accent); color: #fff;
  font-family: var(--zd-font); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 4px; margin-bottom: 8px;
}
.zd-badge-new  { background: #16a34a; }
.zd-badge-sale { background: #dc2626; }
.zd-offer-body h3 {
  font-family: var(--zd-font); font-size: 22px; font-weight: 800;
  color: #fff; margin-bottom: 5px; line-height: 1.2;
}
.zd-offer-price {
  display: block; color: rgba(255,255,255,0.75);
  font-family: var(--zd-font); font-size: 13px; margin-bottom: 14px;
}
.zd-offer-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; color: var(--zd-dark);
  font-family: var(--zd-font); font-size: 12px; font-weight: 800;
  padding: 9px 18px; border-radius: 6px;
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: all 0.2s; text-decoration: none;
}
.zd-offer-cta:hover { background: var(--zd-accent); color: #fff; text-decoration: none; }

/* ═══════════════════════════════════════════════════════════════
   DYNAMIC HOME SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.zd-home-section { padding: 44px 0; }
.zd-home-section:nth-child(even) { background: var(--zd-lighter); }
.zd-home-section:nth-child(odd)  { background: var(--zd-white); }

/* ── Single banner in a section ── */
.zd-section-banner {
  border-radius: 10px; overflow: hidden;
  position: relative; background-size: cover; background-position: center;
  min-height: 80px; display: block;
  text-decoration: none; margin-bottom: 24px;
}
.zd-section-banner-img {
  display: block; width: 100%; height: auto;
}
.zd-section-banner-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.zd-section-banner-body {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(16px, 4vw, 36px) clamp(18px, 5vw, 40px);
  overflow: hidden;
}
.zd-section-banner-body h3 {
  font-family: var(--zd-font); font-size: clamp(16px, 3.2vw, 26px); font-weight: 800;
  color: #fff; margin-bottom: 6px; line-height: 1.2;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.zd-section-banner-body p {
  font-family: var(--zd-font); font-size: clamp(11px, 1.8vw, 14px); color: rgba(255,255,255,0.8); margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* ── Category grid inside section ── */
.zd-cat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.zd-cat-card {
  border-radius: 10px; overflow: hidden; text-decoration: none;
  background: var(--zd-white); border: 1px solid var(--zd-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0; transform: translateY(20px);
}
.zd-cat-card.zd-in { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s; }
.zd-cat-card:hover { transform: translateY(-5px) !important; box-shadow: var(--zd-shadow-hover); text-decoration: none; }
.zd-cat-img { position: relative; padding-top: 100%; overflow: hidden; }
.zd-cat-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.42s ease; }
.zd-cat-card:hover .zd-cat-img img { transform: scale(1.07); }
.zd-cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 55%);
}
.zd-cat-info { padding: 12px 14px 14px; border-top: 1px solid var(--zd-border); }
.zd-cat-info h5 {
  font-family: var(--zd-font); font-size: 13px; font-weight: 700;
  color: var(--zd-dark); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.4px;
}
.zd-cat-info span { font-family: var(--zd-font); font-size: 11px; color: var(--zd-muted); }

/* ── Product grid ── */
.zd-product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.zd-pcard {
  background: var(--zd-white); border-radius: 10px; overflow: hidden;
  border: 1px solid var(--zd-border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  opacity: 0; transform: translateY(20px);
  display: flex; flex-direction: column;
}
.zd-pcard.zd-in { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s; }
.zd-pcard:hover { box-shadow: var(--zd-shadow-hover); transform: translateY(-4px) !important; }
.zd-pcard-img-wrap {
  display: block; position: relative; padding-top: 100%;
  overflow: hidden; background: var(--zd-light); text-decoration: none;
}
.zd-pcard-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.42s ease; }
.zd-pcard:hover .zd-pcard-img-wrap img { transform: scale(1.07); }
.zd-pcard-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--zd-accent); color: #fff;
  font-family: var(--zd-font); font-size: 10px; font-weight: 700;
  padding: 4px 8px; border-radius: 4px; text-transform: uppercase; z-index: 2;
}
.zd-pcard-badge.best { background: var(--zd-dark); }
.zd-pcard-actions {
  position: absolute; bottom: 10px; right: 10px;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0; transform: translateX(8px);
  transition: all 0.25s ease; z-index: 2;
}
.zd-pcard:hover .zd-pcard-actions { opacity: 1; transform: translateX(0); }
.zd-pcard-action-btn {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--zd-white); border: 1px solid var(--zd-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--zd-dark); cursor: pointer;
  transition: all 0.2s; text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.zd-pcard-action-btn:hover { background: var(--zd-accent); color: #fff; border-color: var(--zd-accent); text-decoration: none; }
.zd-pcard-body { padding: 12px 14px 14px; display: flex; flex-direction: column; flex: 1; }
.zd-pcard-cat { font-family: var(--zd-font); font-size: 10px; color: var(--zd-muted); text-transform: uppercase; letter-spacing: 0.6px; font-weight: 600; }
.zd-pcard-name { font-family: var(--zd-font); font-size: 13px; font-weight: 600; margin: 4px 0 8px; line-height: 1.35; flex: 1; }
.zd-pcard-name a { color: var(--zd-dark); text-decoration: none; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.zd-pcard-name a:hover { color: var(--zd-accent); }
.zd-pcard-price-row { display: flex; align-items: center; gap: 7px; margin-bottom: 10px; }
.zd-pcard-price { font-family: var(--zd-font); font-size: 15px; font-weight: 800; color: var(--zd-dark); }
.zd-pcard-mrp { font-family: var(--zd-font); font-size: 12px; color: #bbb; text-decoration: line-through; }
.zd-pcard-save { font-family: var(--zd-font); font-size: 11px; color: #16a34a; font-weight: 700; }
.zd-pcard-addcart {
  display: block; width: 100%; background: var(--zd-dark); color: #fff;
  font-family: var(--zd-font); font-size: 11px; font-weight: 700;
  text-align: center; padding: 10px; border-radius: 6px;
  border: none; cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px;
  transition: background 0.2s; text-decoration: none;
}
.zd-pcard-addcart:hover { background: var(--zd-accent); color: #fff; text-decoration: none; }

.zd-explore-btn-wrap { text-align: center; margin-top: 28px; }
.zd-empty-state { grid-column: 1 / -1; text-align: center; padding: 48px 20px; color: var(--zd-muted); font-family: var(--zd-font); }

/* ═══════════════════════════════════════════════════════════════
   USP STRIP — light version
   ═══════════════════════════════════════════════════════════════ */
.zd-usp-strip {
  padding: 48px 0;
  background: var(--zd-accent-light);
  border-top: 1px solid #ffd5b3;
  border-bottom: 1px solid #ffd5b3;
}
.zd-usp-strip-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.zd-usp-text-tag {
  display: inline-block; background: var(--zd-accent); color: #fff;
  font-family: var(--zd-font); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 4px 12px; border-radius: 4px; margin-bottom: 14px;
}
.zd-usp-text h2 {
  font-family: var(--zd-font); font-size: clamp(22px,3vw,34px);
  font-weight: 800; color: var(--zd-dark); margin-bottom: 12px; line-height: 1.2; letter-spacing: -0.3px;
}
.zd-usp-text p { font-family: var(--zd-font); color: var(--zd-mid); font-size: 14px; line-height: 1.7; margin-bottom: 22px; }
.zd-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.zd-feature-item { display: flex; align-items: flex-start; gap: 12px; }
.zd-feat-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--zd-white); border: 1px solid #ffd5b3;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--zd-accent); flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(255,102,0,0.1);
}
.zd-feature-item strong { display: block; font-family: var(--zd-font); font-size: 13px; font-weight: 700; color: var(--zd-dark); margin-bottom: 2px; }
.zd-feature-item span { font-family: var(--zd-font); font-size: 12px; color: var(--zd-muted); }

/* ═══════════════════════════════════════════════════════════════
   OCCASIONS
   ═══════════════════════════════════════════════════════════════ */
.zd-occasions { padding: 44px 0; background: var(--zd-white); }
.zd-occ-row {
  display: flex; gap: 16px; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 6px;
}
.zd-occ-row::-webkit-scrollbar { display: none; }
.zd-occ-item {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  min-width: 100px; text-decoration: none; flex-shrink: 0;
  opacity: 0; transform: scale(0.88);
}
.zd-occ-item.zd-in { opacity: 1; transform: scale(1); transition: opacity 0.5s ease, transform 0.5s ease; }
.zd-occ-item:hover { transform: translateY(-5px) scale(1) !important; }
.zd-occ-img {
  width: 88px; height: 88px; border-radius: 50%;
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
  border: 3px solid var(--zd-border); transition: border-color 0.2s, box-shadow 0.2s;
}
.zd-occ-item:hover .zd-occ-img { border-color: var(--zd-accent); box-shadow: 0 0 0 4px rgba(255,102,0,0.15); }
.zd-occ-veil { position: absolute; inset: 0; background: rgba(0,0,0,0.18); transition: background 0.2s; }
.zd-occ-item:hover .zd-occ-veil { background: rgba(255,102,0,0.28); }
.zd-occ-emoji { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 28px; z-index: 2; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); }
.zd-occ-item span { font-family: var(--zd-font); font-size: 11px; font-weight: 700; color: var(--zd-dark); text-align: center; text-transform: uppercase; letter-spacing: 0.4px; }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.zd-reviews { padding: 52px 0; background: var(--zd-light); }
.zd-review-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.zd-rcard {
  background: var(--zd-white); border-radius: 10px; padding: 22px;
  border: 1px solid var(--zd-border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  opacity: 0; transform: translateY(16px);
  display: flex; flex-direction: column;
}
.zd-rcard.zd-in { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s; }
.zd-rcard:hover { box-shadow: var(--zd-shadow-hover); transform: translateY(-4px) !important; }
.zd-rcard-stars { color: #f59e0b; font-size: 14px; margin-bottom: 10px; letter-spacing: 1px; }
.zd-rcard p { font-family: var(--zd-font); font-size: 13px; color: var(--zd-mid); line-height: 1.75; margin-bottom: 16px; font-style: italic; flex: 1; }
.zd-rcard-author { display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--zd-border); padding-top: 14px; margin-top: auto; }
.zd-rcard-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.zd-rcard-initials { width: 40px; height: 40px; border-radius: 50%; background: #1a1a1a; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; flex-shrink: 0; }
.zd-rcard-author strong { display: block; font-family: var(--zd-font); font-size: 13px; font-weight: 700; color: var(--zd-dark); }
.zd-rcard-author span { font-family: var(--zd-font); font-size: 11px; color: var(--zd-muted); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .zd-cat-grid, .zd-product-grid { grid-template-columns: repeat(3,1fr); }
  .zd-review-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 991px) {
  .zd-hero-fallback { height: 60vw; min-height: 300px; max-height: 540px; }
  .zd-hero-content { padding: 0 36px; }
  .zd-usp-strip-inner { grid-template-columns: 1fr; gap: 32px; }
  .zd-offer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .zd-hero-fallback { height: 54vw; min-height: 260px; }
  .zd-hero-content { padding: 0 22px; max-width: 88%; }
  .zd-hero-content h1,
  .zd-hero-content h2 { font-size: 24px; }
  .zd-hero-content p { display: none; }
  .zd-cat-grid { grid-template-columns: repeat(2,1fr); }
  .zd-product-grid { grid-template-columns: repeat(2,1fr); }
  .zd-review-grid { grid-template-columns: repeat(2,1fr); }
  .zd-features-grid { grid-template-columns: 1fr; }
  .zd-trust-item { min-width: 130px; padding: 6px 10px; }
}
@media (max-width: 576px) {
  .zd-hero-fallback { height: 50vw; min-height: 230px; }
  .zd-hero-content { padding: 0 14px; }
  .zd-hero-btns { flex-direction: column; align-items: flex-start; gap: 9px; }
  .zd-cat-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .zd-product-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .zd-review-grid { grid-template-columns: 1fr; }
  .zd-trust-bar { display: none; }
  .zd-offer-tile { min-height: 200px; }
}
