/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', sans-serif;
  background: #fffbf7;
  color: #2d2d2d;
  overflow-x: hidden;
  direction: rtl;
}
body.fr { direction: ltr; }
a { text-decoration: none; color: inherit; }

/* ===================== COLORS ===================== */
:root {
  --rose:         #c8536e;
  --rose-light:   #f5e0e5;
  --gold:         #c9a84c;
  --gold-light:   #fef6e0;
  --green:        #4a7c59;
  --orange:       #e8722a;
  --orange-light: #fef0e8;
  --dark:         #1a1a2e;
  --gray:         #6b7280;
  --white:        #ffffff;
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --radius:       16px;
}

/* ===================== TOP BAR ===================== */
.top-bar {
  background: linear-gradient(90deg, #1c0b14 0%, #2e1422 50%, #1c0b14 100%);
  position: sticky; top: 0; z-index: 101;
  border-bottom: 1px solid rgba(201,168,76,0.22);
}
.top-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 40px;
}
.top-bar-start, .top-bar-end { display: flex; align-items: center; gap: 14px; }
.top-bar-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.77rem; font-weight: 600; color: rgba(255,255,255,0.78);
  transition: color .2s; white-space: nowrap;
}
.top-bar-link:hover { color: var(--gold); }
.top-bar-wa { color: #6ee07b !important; }
.top-bar-wa:hover { color: #a7f3b0 !important; }
.top-bar-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.14); }
.top-bar-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.73rem; font-weight: 700; color: var(--gold);
  background: rgba(201,168,76,0.13); padding: 2px 9px;
  border-radius: 20px; border: 1px solid rgba(201,168,76,0.28);
}
.top-bar .lang-switcher { display: flex; gap: 3px; }
.top-bar .lang-btn {
  padding: 3px 9px; font-size: 0.72rem;
  border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.62);
  background: transparent;
}
.top-bar .lang-btn.active,
.top-bar .lang-btn:hover {
  background: var(--gold); color: #1c0b14; border-color: var(--gold);
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: sticky; top: 40px; z-index: 100;
  background: #519A66;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.navbar::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--orange), var(--rose));
  background-size: 200% 100%;
  animation: navbar-shimmer 4s linear infinite;
}
@keyframes navbar-shimmer { to { background-position: -200% 0; } }

.nav-inner {
  display: flex; align-items: center; gap: 12px;
  padding: 0 24px; height: 68px;
  max-width: 1200px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { height: 70px; width: auto; object-fit: contain; }

.nav-links { display: flex; gap: 4px; margin: 0 auto; }
.nav-links a {
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600; color: var(--dark);
  transition: all .2s;
}
.nav-links a:hover { color: var(--rose); background: var(--rose-light); }

.lang-switcher { display: flex; gap: 4px; }
.lang-btn {
  padding: 6px 12px; border-radius: 50px;
  border: 1.5px solid #e5e7eb;
  font-family: 'Cairo', sans-serif; font-size: 0.78rem; font-weight: 700;
  cursor: pointer; background: transparent; color: var(--gray);
  transition: all .2s;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--rose); color: #fff; border-color: var(--rose);
}

.cart-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; color: #111;
  padding: 8px; border-radius: 8px;
  cursor: pointer; transition: color .2s;
}
.cart-btn:hover { color: #555; }
.cart-count {
  position: absolute;
  top: -4px; inset-inline-start: -4px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: #111; color: #fff;
  border-radius: 50px;
  font-size: 0.68rem; font-weight: 800; line-height: 18px;
  text-align: center;
  border: 2px solid #fff;
}

.hamburger {
  display: none; background: none; border: none;
  font-size: 1.5rem; cursor: pointer; color: var(--dark);
  padding: 4px 8px;
}
.mobile-menu {
  display: none; flex-direction: column;
  padding: 8px 24px 16px;
  border-top: 1px solid var(--rose-light);
  background: rgba(255,251,247,.98);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 8px; font-size: 0.95rem; font-weight: 600; color: var(--dark);
  border-bottom: 1px solid var(--rose-light);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-lang {
  display: flex; gap: 8px; padding: 12px 8px 4px;
  border-top: 1px solid var(--rose-light);
}

/* ===================== SEARCH BAR ===================== */
.search-bar {
  background: #519A66;
  border-top: none;
  padding: 10px 24px;
}
.search-bar-inner {
  display: flex; align-items: center; gap: 8px;
  max-width: 600px; margin: 0 auto;
  background: #fff; border-radius: 50px;
  border: 1.5px solid #e5e7eb;
  padding: 5px 5px 5px 14px;
  box-shadow: var(--shadow);
}
.search-cat-select {
  border: none; background: transparent; outline: none;
  font-family: 'Cairo', sans-serif; font-size: 0.83rem; font-weight: 600;
  color: var(--dark); cursor: pointer; flex-shrink: 0; padding: 4px 6px;
}
.search-divider {
  width: 1px; height: 20px; background: #e5e7eb; flex-shrink: 0;
}
.search-input-group { display: flex; flex: 1; align-items: center; gap: 6px; }
.search-input {
  flex: 1; border: none; outline: none;
  font-family: 'Cairo', sans-serif; font-size: 0.9rem; color: var(--dark);
  background: transparent; direction: inherit;
}
.search-input::placeholder { color: var(--gray); }
.search-submit {
  background: linear-gradient(135deg, var(--rose), var(--orange));
  color: #fff; border: none;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: opacity .2s; flex-shrink: 0;
}
.search-submit:hover { opacity: .85; }

/* ===================== HERO SECTION ===================== */
.hero-section {
  padding: 0;
  overflow: hidden;
  position: relative;
  background: #000;
  height: 72vh;
  max-height: 580px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-inner {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  max-width: 1100px; margin: 0 auto; width: 100%;
  position: relative; z-index: 2;
  padding: 24px 24px 32px;
}
.hero-left {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; flex-shrink: 0; max-width: 700px; width: 100%;
}
@keyframes heroShine {
  0%   { transform: translateX(-150%) skewX(-20deg); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateX(250%) skewX(-20deg); opacity: 0; }
}
@keyframes heroPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.88; }
}
.hero-section {
  animation: heroPulse 4s ease-in-out infinite;
}
.hero-section::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.18) 50%,
    transparent 70%
  );
  animation: heroShine 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes heroTextLoop {
  0%        { opacity: 0; transform: translateY(20px); }
  15%       { opacity: 1; transform: translateY(0); }
  75%       { opacity: 1; transform: translateY(0); }
  90%, 100% { opacity: 0; transform: translateY(-10px); }
}
.hero-text { text-align: center; }
.hero-heading {
  animation: heroTextLoop 5s ease-in-out infinite;
}
.hero-sub {
  animation: heroTextLoop 5s ease-in-out 0.5s infinite;
  opacity: 0;
}
.hero-heading {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 900;
  color: #69f0ae;
  line-height: 1.2;
  margin-bottom: 2px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.hero-sub {
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  color: #ccffdd;
  font-weight: 700;
  margin-top: 8px;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* Hero product showcase */
.hero-showcase {
  flex: 1.4; max-width: 600px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.hero-showcase-track {
  position: relative;
  width: 100%; height: 220px;
}
.hero-showcase-track img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.7s ease;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
}
.hero-showcase-track img.active { opacity: 1; }
.hero-showcase-dots {
  display: flex; gap: 8px;
}
.hero-showcase-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer; transition: background .3s, transform .3s;
}
.hero-showcase-dots span.active {
  background: #69f0ae;
  transform: scale(1.3);
}
.hero-content { flex: 1; }
.hero-pill {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, rgba(200,83,110,.1), rgba(232,114,42,.1));
  color: var(--rose); border: 1px solid rgba(200,83,110,.2);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; margin-bottom: 20px;
}
.hero-heading {
  font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 900;
  color: #ffffff; line-height: 1.2; margin-bottom: 20px;
}
.hero-gradient-text {
  background: linear-gradient(135deg, var(--rose), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem; color: var(--gray); line-height: 1.8;
  margin-bottom: 36px; max-width: 500px; font-weight: 500;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  color: #fff; padding: 16px 36px; border-radius: 50px;
  font-family: 'Cairo', sans-serif; font-weight: 800; font-size: 1rem;
  border: none; cursor: pointer;
  box-shadow: 0 8px 24px rgba(200,83,110,.35);
  transition: all .25s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(200,83,110,.5); }
.btn-whatsapp-hero {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff; padding: 16px 30px; border-radius: 50px;
  font-family: 'Cairo', sans-serif; font-weight: 800; font-size: 1rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
  transition: all .25s;
}
.btn-whatsapp-hero:hover { background: #1ebe5d; transform: translateY(-3px); box-shadow: 0 14px 32px rgba(37,211,102,.45); }
.hero-stats {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.5rem; font-weight: 900; color: var(--dark); }
.hero-stat span { font-size: 0.78rem; color: var(--gray); font-weight: 600; }
.hero-stat-sep { width: 1px; height: 36px; background: #e5e7eb; }

/* ===================== TRUST SECTION ===================== */
.trust-section {
  background: #fff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 0 24px;
}
.trust-inner {
  display: flex; align-items: stretch;
  max-width: 1200px; margin: 0 auto;
}
.trust-card {
  flex: 1; display: flex; align-items: center; gap: 14px;
  padding: 22px 20px;
  transition: background .2s;
}
.trust-card:hover { background: #fdf9ff; }
.trust-icon-wrap { font-size: 1.8rem; flex-shrink: 0; }
.trust-text { display: flex; flex-direction: column; gap: 2px; }
.trust-text strong { font-size: 0.88rem; font-weight: 800; color: var(--dark); }
.trust-text span { font-size: 0.75rem; color: var(--gray); }
.trust-sep { width: 1px; background: #f0f0f0; margin: 12px 0; flex-shrink: 0; }

/* ===================== CATEGORIES SECTION ===================== */
.cats-section {
  padding: 56px 24px 48px;
  background: #fffbf7;
}
.cats-inner { max-width: 1200px; margin: 0 auto; }
.cats-header { text-align: center; margin-bottom: 32px; }
.cats-header h2 { font-size: 1.8rem; font-weight: 900; color: var(--dark); margin-top: 6px; }
.cats-grid {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.cat-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: #fff; border: 2px solid #f0f0f0;
  padding: 22px 28px; border-radius: 18px;
  cursor: pointer; transition: all .22s;
  font-family: 'Cairo', sans-serif;
  min-width: 110px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.cat-card:hover, .cat-card.active {
  border-color: var(--rose);
  background: var(--rose-light);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(200,83,110,.18);
}
.cat-icon { font-size: 2rem; }
.cat-name { font-size: 0.82rem; font-weight: 700; color: var(--dark); white-space: nowrap; }

/* ===================== REVIEWS SECTION ===================== */
.reviews-section {
  padding: 72px 24px 80px;
  background: linear-gradient(135deg, #fff5f7 0%, #fffbf7 100%);
}
.reviews-inner { max-width: 1100px; margin: 0 auto; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 40px;
}
.review-card {
  background: #fff; border-radius: 18px;
  padding: 28px 24px;
  border: 1.5px solid rgba(200,83,110,.08);
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
  transition: transform .25s, box-shadow .25s;
}
.review-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.review-stars { font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text {
  font-size: 0.93rem; color: #374151; line-height: 1.75;
  margin-bottom: 20px; font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  color: #fff; font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-info { display: flex; flex-direction: column; gap: 2px; }
.review-info strong { font-size: 0.88rem; font-weight: 800; color: var(--dark); }
.review-info span { font-size: 0.75rem; color: var(--gray); }

/* ===================== PRODUCTS SECTION ===================== */
.products-section {
  padding: 48px 24px 80px;
  max-width: 1200px; margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 28px; }
.section-tag {
  display: block; font-size: 0.78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--rose); margin-bottom: 6px;
}
.section-header h2 { font-size: 2rem; font-weight: 900; color: var(--dark); margin-bottom: 8px; }
.section-sub { color: var(--gray); font-size: 0.92rem; }

.filter-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 36px; padding: 0 8px;
}
.tab {
  padding: 9px 20px; border-radius: 50px;
  border: 1.5px solid #e5e7eb;
  background: #fff; color: var(--gray);
  font-family: 'Cairo', sans-serif; font-size: 0.83rem; font-weight: 600;
  cursor: pointer; transition: all .2s; white-space: nowrap;
}
.tab:hover { border-color: var(--rose); color: var(--rose); }
.tab.active {
  background: linear-gradient(135deg, var(--rose), var(--orange));
  color: #fff; border-color: transparent;
  box-shadow: 0 4px 14px rgba(200,83,110,.3);
}

.products-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; margin-bottom: 24px;
  background: #fff; border-radius: 14px;
  border: 1.5px solid rgba(0,0,0,.07);
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.products-count {
  font-size: 0.95rem; font-weight: 700; color: var(--gray);
  display: none;
}
.products-count strong { color: var(--rose); font-size: 1.05rem; }
.products-sort {
  border: 1.5px solid #e5e7eb; border-radius: 10px;
  padding: 8px 16px; font-family: 'Cairo', sans-serif;
  font-size: 0.9rem; font-weight: 600; color: var(--dark);
  background: #f9fafb; cursor: pointer; outline: none;
  transition: border-color .2s;
}
.products-sort:focus { border-color: var(--rose); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.search-no-results {
  grid-column: 1/-1; text-align: center;
  padding: 60px 20px; color: var(--gray); font-size: 1.05rem;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.search-no-results span { font-size: 2.5rem; }

/* Product cards (rendered by JS) */
.product-card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  border: 1.5px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.product-img {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; padding: 0; transition: opacity 0.25s ease; }
.product-emoji { font-size: 4rem; }
.product-badge {
  position: absolute; top: 12px; right: 12px;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  color: #fff; padding: 4px 12px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700;
}
body.fr .product-badge { right: auto; left: 12px; }
.product-info { padding: 16px; }
.product-info h3 { font-size: 0.93rem; font-weight: 800; color: var(--dark); margin-bottom: 5px; }
.product-info p  { font-size: 0.79rem; color: var(--gray); line-height: 1.6; margin-bottom: 12px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-size: 1rem; font-weight: 900; color: var(--rose); }
.add-btn {
  background: linear-gradient(135deg, var(--rose), var(--orange));
  color: #fff; border: none;
  padding: 7px 16px; border-radius: 50px;
  font-family: 'Cairo', sans-serif; font-size: 0.8rem; font-weight: 700;
  cursor: pointer; transition: all .2s;
  box-shadow: 0 3px 10px rgba(200,83,110,.3);
}
.add-btn:hover { transform: translateY(-1px); opacity: .9; }

/* ===================== ABOUT MINI ===================== */
.about-mini { background: var(--rose-light); padding: 56px 24px; }
.about-mini-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.about-mini-inner > p { color: var(--gray); margin-bottom: 20px; line-height: 1.85; }
.about-mini-tags {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 20px;
}
.about-mini-tags span {
  background: #fff; border: 1.5px solid rgba(200,83,110,.2);
  color: var(--rose); padding: 7px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700;
}

/* ===================== CONTACT SECTION ===================== */
.section-divider-bar {
  height: 5px;
  background: linear-gradient(90deg, var(--rose), var(--orange));
}
.contact-section { padding: 80px 24px; background: #fffbf7; }
.contact-section .section-header { text-align: center; margin-bottom: 40px; }
.contact-section .section-header h2 { font-size: 2rem; font-weight: 900; color: var(--dark); margin-bottom: 8px; }
.contact-cards {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  max-width: 800px; margin: 0 auto;
}
.contact-card {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  flex: 1; min-width: 200px; padding: 28px 20px;
  border-radius: var(--radius); border: 1.5px solid #e5e7eb;
  background: #fff; box-shadow: var(--shadow);
  text-align: center; transition: transform .25s, box-shadow .25s;
}
.contact-card:hover { transform: translateY(-4px); }
.contact-card.whatsapp:hover { border-color: #25d366; box-shadow: 0 8px 24px rgba(37,211,102,.2); }
.contact-card.phone:hover    { border-color: var(--rose); }
.contact-card.email:hover    { border-color: var(--gold); }
.contact-icon { font-size: 2.2rem; }
.contact-card strong { font-size: 1.05rem; color: var(--dark); font-weight: 700; }
.contact-card span   { font-size: 0.85rem; color: var(--gray); }

/* ===================== FOOTER ===================== */
.footer { background: var(--dark); color: #fff; padding: 60px 24px 24px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.footer-logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.logo-icon-wrap {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; color: #fff;
}
.logo-icon-wrap.small { width: 52px; height: 52px; font-size: 1.3rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-size: 1.2rem; font-weight: 900; color: #fff; }
.logo-sub  { font-size: 0.72rem; color: var(--rose); font-weight: 600; }
.footer-brand p { color: #9ca3af; font-size: 0.9rem; line-height: 1.8; margin-top: 10px; }
.footer-links h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; color: var(--gold); }
.footer-links a  { display: block; color: #9ca3af; font-size: 0.9rem; margin-bottom: 10px; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-copy {
  max-width: 1200px; margin: 0 auto; text-align: center;
  color: #6b7280; font-size: 0.82rem; padding-top: 24px;
  border-top: 1px solid #374151;
}

/* ===================== CART SIDEBAR ===================== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.45);
  z-index: 200; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed; top: 0; right: -420px; width: 400px; max-width: 95vw;
  height: 100vh; background: #fff; z-index: 201;
  display: flex; flex-direction: column;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
}
.cart-sidebar.open { right: 0; }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid #f0f0f0; flex-shrink: 0;
}
.cart-header h3 { font-size: 1.15rem; font-weight: 700; }
.cart-header button { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--gray); }

.cart-scroll-area { flex: 1; overflow-y: auto; display: flex; flex-direction: column; }
.cart-items { padding: 16px 24px; }
.cart-empty { color: var(--gray); text-align: center; padding: 40px 0; font-size: 0.95rem; }
.cart-item { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid #f5f5f5; }
.cart-item-img { font-size: 2rem; width: 50px; text-align: center; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-info strong { display: block; font-size: 0.9rem; margin-bottom: 4px; font-weight: 700; }
.cart-item-info span  { font-size: 0.8rem; color: var(--gray); }
.cart-item-price { font-weight: 800; color: var(--rose); font-size: 0.9rem; white-space: nowrap; }
.cart-item-remove { background: none; border: none; color: #ccc; cursor: pointer; font-size: 1.1rem; transition: color .2s; padding: 4px; }
.cart-item-remove:hover { color: var(--rose); }

.cart-footer { padding: 16px 24px 24px; border-top: 1px solid #f0f0f0; margin-top: auto; }
.cart-total { font-size: 1.05rem; margin-bottom: 14px; text-align: center; font-weight: 600; }
.cart-total strong { color: var(--rose); font-size: 1.25rem; font-weight: 900; }

.cart-order-form {
  background: #fafafa; border-radius: 14px;
  padding: 14px; margin-bottom: 14px;
  border: 1.5px solid #f0f0f0;
}
.cart-form-title {
  font-size: 0.82rem; font-weight: 800; color: var(--rose);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px;
}
.cart-field {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid #e5e7eb; border-radius: 10px;
  font-family: 'Cairo', sans-serif; font-size: 0.87rem;
  color: var(--dark); background: #fff; outline: none;
  margin-bottom: 8px; display: block;
  transition: border-color .2s, box-shadow .2s;
  direction: inherit;
}
.cart-field:last-child { margin-bottom: 0; }
.cart-field:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(200,83,110,.1); }
.cart-textarea { resize: none; min-height: 58px; }

/* اطلب الآن button in cart */
.btn-cart-order-now {
  width: 100%; background: #1a1a2e; color: #fff; border: none;
  padding: 17px 20px; border-radius: 50px; font-family: 'Cairo', sans-serif;
  font-size: 1.05rem; font-weight: 800; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  transition: all .25s; box-shadow: 0 6px 20px rgba(0,0,0,.25);
  margin-bottom: 12px;
}
.btn-cart-order-now:hover { background: #16213e; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.35); }
.btn-cart-order-total {
  background: rgba(255,255,255,.15); padding: 2px 12px; border-radius: 50px;
  font-size: .95rem; font-weight: 700;
}

/* WhatsApp order button in cart */
.btn-cart-wa {
  width: 100%; background: #25d366; color: #fff; border: none;
  padding: 17px; border-radius: 50px; font-family: 'Cairo', sans-serif;
  font-size: 1rem; font-weight: 800; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all .25s; box-shadow: 0 6px 20px rgba(37,211,102,.35);
}
.btn-cart-wa:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,.45); }

.btn-whatsapp {
  width: 100%; background: #25d366; color: #fff; border: none;
  padding: 16px; border-radius: 50px; font-family: 'Cairo', sans-serif;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .2s;
}
.btn-whatsapp:hover { background: #1ebe5d; }

/* ===================== PRODUCT MODAL ===================== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  z-index: 300; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.product-modal {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  background: #fff; border-radius: var(--radius); padding: 40px;
  max-width: 540px; width: 92%; z-index: 301;
  opacity: 0; pointer-events: none; transition: all .3s;
  overflow-y: auto; max-height: 90vh;
}
.product-modal.open { opacity: 1; pointer-events: all; transform: translate(-50%, -50%); }
.modal-close {
  position: absolute; top: 16px; left: 16px;
  background: var(--rose-light); border: none; border-radius: 50%;
  width: 36px; height: 36px; font-size: 1rem; cursor: pointer;
  color: var(--rose); display: flex; align-items: center; justify-content: center;
}
.modal-emoji {
  font-size: 4.5rem; text-align: center; margin-bottom: 20px;
  border-radius: 16px; padding: 20px;
  display: flex; align-items: center; justify-content: center; min-height: 180px;
}
.modal-content h2 { font-size: 1.5rem; margin-bottom: 10px; font-weight: 900; }
.modal-content .price { font-size: 1.3rem; margin-bottom: 14px; display: block; }
.modal-content p { color: var(--gray); line-height: 1.9; margin-bottom: 20px; }
.modal-benefits { list-style: none; margin-bottom: 24px; }
.modal-benefits li { padding: 5px 0; color: var(--green); font-size: 0.9rem; font-weight: 600; }
.modal-actions { display: flex; gap: 12px; }
.modal-actions .btn-primary { flex: 1; }
.btn-wa-modal {
  flex: 1; background: #25d366; color: #fff; border: none;
  padding: 14px; border-radius: 50px; font-family: 'Cairo', sans-serif;
  font-size: 0.9rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s;
}
.btn-wa-modal:hover { background: #1ebe5d; }

/* ===================== QTY CONTROLS ===================== */
.cart-qty-controls {
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
}
.qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid #e5e7eb; background: #f9fafb;
  color: var(--dark); font-size: 1rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .2s; line-height: 1;
}
.qty-btn:hover { border-color: var(--rose); color: var(--rose); background: var(--rose-light); }
.qty-num { font-size: 0.9rem; font-weight: 800; min-width: 22px; text-align: center; color: var(--dark); }

.modal-qty-row {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 20px; padding: 12px;
  background: #f9fafb; border-radius: 12px; border: 1.5px solid #e5e7eb;
}
.modal-qty-row .qty-btn { width: 36px; height: 36px; font-size: 1.2rem; }
.modal-qty-input {
  width: 56px; text-align: center;
  border: 1.5px solid #e5e7eb; border-radius: 10px;
  font-family: 'Cairo', sans-serif; font-size: 1.05rem; font-weight: 800;
  color: var(--dark); padding: 6px 4px; outline: none;
  -moz-appearance: textfield;
}
.modal-qty-input::-webkit-outer-spin-button,
.modal-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.modal-qty-input:focus { border-color: var(--rose); }

/* ===================== MODAL IMAGE SLIDER ===================== */
.modal-slider {
  position: relative; border-radius: 16px; overflow: hidden;
  margin-bottom: 20px; min-height: 200px;
  display: flex; align-items: center; justify-content: center;
}
.modal-slider img {
  width: 100%; max-height: 220px; object-fit: contain; border-radius: 16px;
  display: block; padding: 12px;
}
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.85); border: none; cursor: pointer;
  font-size: 2rem; line-height: 1; width: 38px; height: 38px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--rose); box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: background .2s; z-index: 2;
}
.slider-arrow:hover { background: #fff; }
.slider-prev { left: 8px; }
.slider-next { right: 8px; }
.slider-dots {
  position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 2;
}
.sdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,0,0,.2); cursor: pointer; transition: background .2s;
}
.sdot.active { background: var(--rose); }

/* ===================== TOAST ===================== */
.toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark); color: #fff;
  padding: 14px 28px; border-radius: 50px;
  font-size: 0.9rem; z-index: 400;
  opacity: 0; transition: all .3s; pointer-events: none; font-weight: 600;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===================== ORDER FORM MODAL ===================== */
.order-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  z-index: 3000; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.order-overlay.open { opacity: 1; pointer-events: all; }
.order-modal {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -58%);
  background: #fff; border-radius: 14px;
  padding: 0; max-width: 560px; width: 94%;
  z-index: 3001; opacity: 0; pointer-events: none;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; max-height: 92vh;
  box-shadow: 0 4px 24px rgba(0,0,0,.15);
  border: 1px solid #e5e7eb;
}
.order-modal.open { opacity: 1; pointer-events: all; transform: translate(-50%, -50%); }

/* Header */
.om-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid #f0f0f0;
}
.om-header-title {
  font-size: 0.82rem; font-weight: 800; color: #111;
  letter-spacing: 0.03em; text-transform: uppercase;
}
.om-close {
  background: none; border: none; cursor: pointer;
  font-size: 1rem; color: #666; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.2s;
}
.om-close:hover { background: #f5f5f5; color: #111; }

/* Totals box */
.popup-totals-box {
  margin: 0 16px 4px; padding: 12px 16px;
  background: #f3f4f6; border-radius: 10px;
  border: 1px solid #e5e7eb;
}

/* Form */
.om-form { padding: 0 16px 20px; }
.om-field-group { margin-bottom: 14px; }
.om-label {
  display: block; font-size: 0.82rem; font-weight: 700;
  color: #374151; margin-bottom: 6px;
}
.om-req { color: #ef4444; margin-inline-start: 2px; }
.om-input-wrap {
  display: flex; align-items: center;
  border: 1.5px solid #d1d5db; border-radius: 10px;
  background: #fff; overflow: hidden;
  transition: border-color 0.2s;
}
.om-input-wrap:focus-within { border-color: #374151; }
.om-input-icon {
  padding: 0 12px; font-size: 1rem; flex-shrink: 0;
  color: #9ca3af;
}
.om-input-wrap input, .om-input-wrap select {
  flex: 1; border: none; outline: none; background: transparent;
  padding: 12px 10px 12px 0; font-family: 'Cairo', sans-serif;
  font-size: 0.9rem; color: #111;
}
.om-select-wrap select {
  width: 100%; padding: 12px 14px;
  font-family: 'Cairo', sans-serif; font-size: 0.9rem;
  color: #111; cursor: pointer;
}
.field-error { display: none; font-size: 0.75rem; color: #ef4444; font-weight: 600; margin-top: 4px; }
.field-error.show { display: block; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; position: relative; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 700; color: var(--dark); margin-bottom: 7px; }
.required { color: var(--rose); }
.form-group input, .form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 2px solid #e5e7eb; border-radius: 12px;
  font-family: 'Cairo', sans-serif; font-size: 0.9rem;
  color: var(--dark); background: #fafafa;
  transition: border-color .2s, box-shadow .2s; outline: none;
  direction: inherit;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--rose); box-shadow: 0 0 0 4px rgba(200,83,110,.1); background: #fff;
}
.form-group input.invalid, .form-group textarea.invalid { border-color: #ef4444; }
.form-group textarea { resize: vertical; min-height: 80px; }

.order-form-actions {
  display: flex; flex-direction: column; gap: 10px; margin-top: 4px;
}
.btn-submit-order {
  width: 100%; background: #c8536e; color: #fff; border: none;
  padding: 16px; border-radius: 50px; font-family: 'Cairo', sans-serif;
  font-size: 1.05rem; font-weight: 800; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all .25s;
  box-shadow: 0 6px 20px rgba(200,83,110,.35);
}
.btn-submit-order:hover  { background: #b0425c; transform: translateY(-2px); }
.btn-submit-order:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.btn-submit-wa {
  width: 100%; background: #25d366; color: #fff; border: none;
  padding: 14px; border-radius: 50px; font-family: 'Cairo', sans-serif;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all .25s;
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.btn-submit-wa:hover { background: #1ebe5d; transform: translateY(-2px); }

.back-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: #f3f4f6; border: none; border-radius: 50px;
  padding: 8px 16px; font-family: 'Cairo', sans-serif;
  font-size: 0.85rem; font-weight: 700; color: var(--gray);
  cursor: pointer; margin-bottom: 20px; transition: all .2s;
}
.back-btn:hover { background: var(--rose-light); color: var(--rose); }

.choice-buttons { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.choice-btn {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px; border-radius: 16px; border: 2px solid #e5e7eb;
  background: #fff; cursor: pointer; transition: all .25s;
  font-family: 'Cairo', sans-serif; text-align: start; width: 100%;
}
.choice-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.choice-btn.online:hover   { border-color: var(--rose); background: var(--rose-light); }
.choice-btn.whatsapp:hover { border-color: #25d366; background: #f0fdf4; }
.choice-btn-icon { font-size: 2.2rem; flex-shrink: 0; }
.choice-btn-text { flex: 1; }
.choice-btn-text strong { display: block; font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 3px; }
.choice-btn-text span   { font-size: 0.82rem; color: var(--gray); }
.choice-arrow { font-size: 1.2rem; color: #d1d5db; transform: rotate(180deg); }
body.fr .choice-arrow { transform: rotate(0deg); }
.choice-btn.online:hover   .choice-arrow { color: var(--rose); }
.choice-btn.whatsapp:hover .choice-arrow { color: #25d366; }

.success-body { text-align: center; padding: 10px 0; }
.success-icon { font-size: 4rem; margin-bottom: 16px; animation: bounceIn .5s ease; }
@keyframes bounceIn {
  0%   { transform: scale(0.3); opacity: 0; }
  60%  { transform: scale(1.1); }
  100% { transform: scale(1);   opacity: 1; }
}
.success-body h3 { font-size: 1.5rem; font-weight: 900; color: var(--dark); margin-bottom: 10px; }
.success-body p  { color: var(--gray); line-height: 1.8; margin-bottom: 20px; }
.success-order-ref {
  display: inline-block; background: var(--gold-light);
  border: 2px dashed var(--gold); border-radius: 12px;
  padding: 10px 24px; margin-bottom: 20px;
  font-size: 1rem; font-weight: 800; color: var(--gold); letter-spacing: 2px;
}
.success-details { background: #f9fafb; border-radius: 12px; padding: 16px; margin-bottom: 24px; text-align: start; }
.success-detail-row { display: flex; gap: 10px; padding: 6px 0; border-bottom: 1px solid #f3f4f6; font-size: 0.88rem; }
.success-detail-row:last-child { border-bottom: none; }
.success-detail-row .detail-label { color: var(--gray); font-weight: 600; min-width: 80px; }
.success-detail-row .detail-val   { color: var(--dark); font-weight: 700; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
  .hero-inner { flex-direction: column; text-align: center; gap: 24px; }
  .hero-logo-big { width: 160px; height: 160px; }
  .hero-sub { margin: 0 auto 24px; }
  .hero-actions { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .nav-links { display: none; }
  .hamburger { display: block; margin-inline-start: auto; }
  .cart-btn span:not(.cart-count) { display: none; }
  .top-bar { display: none; }
  .navbar { top: 0; }
}

@media (max-width: 768px) {
  /* Hero */
  .hero-section {
    min-height: 56.25vw;
    justify-content: flex-end;
  }
  .hero-inner {
    padding: 16px 16px 24px;
  }
  .hero-inner { flex-direction: column; align-items: center; gap: 24px; }
  .hero-left { gap: 14px; }
  .hero-logo-big { width: 100px; height: 100px; }
  .hero-heading { font-size: 1.4rem; }
  .hero-sub { font-size: 0.88rem; }
  .hero-showcase { max-width: 100%; width: 100%; }
  .hero-showcase-track { height: 300px; }
  .hero-pill { font-size: 0.72rem; padding: 5px 12px; margin-bottom: 14px; }
  .hero-heading { font-size: clamp(1.6rem, 6vw, 2.4rem); margin-bottom: 14px; }
  .hero-sub { font-size: 0.9rem; margin-bottom: 24px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { flex-direction: column; align-items: center; gap: 10px; margin-bottom: 24px; }
  .btn-primary, .btn-whatsapp-hero { width: 100%; max-width: 300px; justify-content: center; padding: 14px 24px; font-size: 0.93rem; }
  .hero-stats { gap: 14px; justify-content: center; }
  .hero-stat strong { font-size: 1.2rem; }
  .hero-stat-sep { height: 28px; }

  /* Trust */
  .trust-inner { flex-wrap: wrap; }
  .trust-card { flex: 0 0 calc(50% - 1px); padding: 16px 14px; }
  .trust-sep { display: none; }
  .trust-icon-wrap { font-size: 1.5rem; }
  .trust-text strong { font-size: 0.8rem; }
  .trust-text span { font-size: 0.7rem; }

  /* Categories */
  .cats-section { padding: 36px 16px 32px; }
  .cats-header h2 { font-size: 1.3rem; }
  .cats-grid { gap: 10px; }
  .cat-card { padding: 16px 18px; min-width: 90px; border-radius: 14px; }
  .cat-icon { font-size: 1.6rem; }
  .cat-name { font-size: 0.73rem; }

  /* Reviews */
  .reviews-section { padding: 44px 16px 52px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
  .review-card { padding: 22px 18px; }

  /* Navbar — centered logo like Shopify stores */
  .nav-inner { padding: 0 12px; height: 58px; position: relative; justify-content: space-between; }
  .logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .logo-img { height: 46px; }
  .navbar { background: #519A66; box-shadow: 0 1px 0 rgba(0,0,0,0.1); }
  .search-bar { padding: 8px 16px; }
  .search-bar-inner { padding: 4px 4px 4px 12px; }
  .search-input { font-size: 0.85rem; }

  /* Products */
  .products-section { padding: 20px 12px 80px; background: #fff; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .products-toolbar { padding: 10px 14px; }
  .section-header { margin-bottom: 16px; }
  .section-header h2 { font-size: 1.3rem; }
  .section-tag { font-size: 0.72rem; }

  /* Product cards */
  .product-img-wrap { height: 150px; }
  .product-card-body { padding: 12px; }
  .product-name { font-size: 0.82rem; }
  .product-price { font-size: 1rem; }
  .btn-add { padding: 8px 10px; font-size: 0.78rem; }

  /* Cart sidebar */
  .cart-sidebar { width: 100% !important; max-width: 100%; }

  /* Modal */
  .product-modal { width: 96%; margin: 0 2%; max-height: 90vh; border-radius: 16px; }

  /* Sections */
  .about-mini { padding: 40px 16px; }
  .about-mini-tags { gap: 8px; }
  .about-mini-tags span { font-size: 0.78rem; padding: 6px 12px; }

  /* Contact */
  .contact-section { padding: 40px 16px 56px; }
  .contact-cards { flex-direction: column; gap: 12px; }
  .contact-card { padding: 20px; }

  /* Logo portfolio */
  .logo-section { padding: 40px 16px 56px; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .logo-preview { height: 150px; }
  .logo-letters { font-size: 2.8rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 24px; padding: 0 16px; }
  .footer-brand { grid-column: span 1; }
  .footer { padding: 40px 0 24px; }

  /* WhatsApp float */
  .wa-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  /* Hero */
  .hero-section {
    padding: 10px 14px 20px;
    min-height: 240px;
  }
  .hero-inner {
    padding-top: 16px;
    padding-bottom: 20px;
    padding-left: 14px;
    padding-right: 14px;
  }
  .hero-logo-big { display: none; }
  .hero-text { text-align: center; }
  .hero-logo-aura { inset: -24px; }
  .hero-heading { font-size: 1.5rem; }

  /* Products - 2 tight columns */
  .products-section { padding: 24px 10px 48px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-img-wrap { height: 130px; }
  .product-card-body { padding: 10px; }
  .product-name { font-size: 0.78rem; line-height: 1.3; }
  .product-price { font-size: 0.95rem; }
  .btn-add { font-size: 0.73rem; padding: 7px 8px; }

  /* Section headers */
  .section-header h2 { font-size: 1.4rem; }
  .section-tag { font-size: 0.72rem; }

  /* Search */
  .search-bar-inner { flex-wrap: wrap; border-radius: 14px; padding: 6px 10px; }
  .search-cat-select { width: auto; flex: 1; border-bottom: none; padding-bottom: 4px; margin-bottom: 0; }
  .search-divider { display: none; }
  .search-input-group { width: 100%; order: 3; border-top: 1px solid #e5e7eb; padding-top: 6px; margin-top: 2px; }

  /* Logo portfolio */
  .logo-section { padding: 32px 12px 48px; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .logo-preview { height: 120px; }
  .logo-letters { font-size: 2.2rem; }
  .logo-card-body { padding: 12px; }
  .logo-name { font-size: 0.85rem; }
  .logo-filters { gap: 6px; }
  .logo-filter { padding: 7px 14px; font-size: 0.78rem; }

  /* Contact */
  .contact-cards { gap: 10px; }

  /* Footer */
  .footer-inner { padding: 0 14px; }
  .footer-copy { font-size: 0.72rem; padding: 0 14px; }

  /* Modals */
  .order-modal { padding: 24px 16px; width: 98%; border-radius: 14px; }

  /* Products toolbar */
  .products-toolbar { flex-direction: column; gap: 8px; align-items: stretch; }
  .products-sort { width: 100%; }
}

@media (max-width: 360px) {
  .hero-heading { font-size: 1.3rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-img-wrap { height: 110px; }
  .product-name { font-size: 0.73rem; }
  .nav-inner { padding: 0 12px; height: 56px; }
  .logo-img { height: 46px; }
}

@media (max-width: 600px) {
  .section-header h2 { font-size: 1.6rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .contact-cards { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .order-modal { padding: 28px 20px; }
}
@media (max-width: 400px) {
  .modal-actions { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════
   NEW DESIGN OVERRIDES
═══════════════════════════════════════════════════ */

/* ── Product grid — more columns ─────────────────── */
.products-grid {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

/* ── Product cards — Shopify-style clean design ─── */
.product-card {
  border: none;
  box-shadow: none;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  transition: none;
}
.product-card:hover { transform: none; box-shadow: none; }

.product-img {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #f5f5f0 !important;
  aspect-ratio: 1 / 1;
}
.product-img img {
  object-fit: contain !important;
  padding: 12px !important;
  transition: transform 0.3s ease;
}
.product-card:hover .product-img img { transform: scale(1.04); }

.product-badge {
  position: absolute; top: 10px; inset-inline-end: 10px;
  background: #111; color: #fff;
  padding: 3px 10px; border-radius: 50px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.02em;
}

.card-hover-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 14px;
  opacity: 0; transition: opacity .22s;
}
.product-card:hover .card-hover-overlay { opacity: 1; }

.card-add-btn {
  background: #111; color: #fff;
  border: none; border-radius: 50px;
  padding: 9px 20px; font-size: 0.8rem; font-weight: 700;
  cursor: pointer; font-family: 'Cairo', sans-serif;
  transition: background .15s;
}
.card-add-btn:hover { background: #333; }

.product-card-bottom {
  padding: 10px 2px 4px;
}
.product-card-bottom h3 {
  font-size: 0.85rem; font-weight: 700; color: #111;
  margin-bottom: 4px; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.card-price-wrap { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.card-price {
  font-size: 1rem; font-weight: 700; color: #558b6a;
}
.card-old-price { font-size: 0.82rem; color: #999; text-decoration: line-through; }
.card-discount { font-size: 0.75rem; font-weight: 700; color: #fff; background: #e53935; border-radius: 4px; padding: 1px 5px; }

.promo-countdown {
  background: linear-gradient(90deg, #c62828, #e53935);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.promo-countdown .timer { font-size: 1.1rem; letter-spacing: 2px; font-variant-numeric: tabular-nums; background: rgba(0,0,0,0.2); padding: 2px 10px; border-radius: 6px; }

/* hide old product-info if any leftover */
.product-info p, .product-footer { display: none; }

/* ── Mobile product grid overrides ───────────────── */
@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 2px; }
  .product-img { border-radius: 10px; }
  .product-card-bottom h3 { font-size: 0.8rem; }
  .card-price { font-size: 0.92rem; }
}

/* ── Product modal — two column ──────────────────── */
.product-modal {
  max-width: 900px;
  width: 95%;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
}
.modal-content { padding: 0; }

.modal-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
@media (max-width: 680px) {
  .modal-two-col { grid-template-columns: 1fr; }
}

.modal-images-col {
  background: #fff;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 24px 16px;
  gap: 12px;
}
.modal-images-col .modal-slider {
  margin-bottom: 0; width: 100%;
  border-radius: 10px;
  background: #fff !important;
}
.modal-images-col .modal-slider img {
  max-height: 360px;
  object-fit: contain !important;
  background: #fff;
  padding: 12px !important;
}

.modal-thumbs-row {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
}
.modal-thumb-img {
  width: 56px; height: 56px; object-fit: cover;
  border-radius: 6px; cursor: pointer; border: 2px solid transparent;
  transition: border-color .15s;
}
.modal-thumb-img.active,
.modal-thumb-img:hover { border-color: #c8536e; }

.modal-info-col {
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 10px;
  overflow-y: auto;
}
.modal-info-col h2 { font-size: 1.35rem; font-weight: 800; color: #111; }
.modal-col-price { font-size: 1.2rem; font-weight: 700; color: #222; }
.modal-col-desc  { font-size: 0.85rem; color: #666; line-height: 1.7; }

.btn-modal-add-cart {
  width: 100%; padding: 14px;
  background: #111; color: #fff; border: none; border-radius: 8px;
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  transition: background .2s;
}
.btn-modal-add-cart:hover { background: #333; }

.btn-modal-commander {
  width: 100%; padding: 14px;
  background: #c9a84c; color: #fff; border: none; border-radius: 8px;
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s;
}
.btn-modal-commander:hover { background: #b8932f; }

.modal-shipping-info {
  font-size: 0.82rem; color: #25a244; font-weight: 600;
  background: #f0fdf4; border-radius: 8px; padding: 10px 14px;
  text-align: center;
}

/* ── Order popup — items + form ──────────────────── */
.order-modal {
  max-width: 560px;
  width: 94%;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  max-height: 92vh;
}
.order-panel#panelForm {
  padding: 0;
  overflow-y: auto;
  max-height: 92vh;
}

.popup-cart-items {
  padding: 16px 16px 12px;
  display: flex; flex-direction: column; gap: 0;
}
.popup-cart-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid #f3f4f6;
}
.popup-cart-item:last-child { border-bottom: none; }
.popup-item-img-wrap {
  position: relative; flex-shrink: 0;
  width: 72px; height: 72px;
  /* NO overflow:hidden — lets the qty badge show outside */
  background: #f5f5f5; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.popup-item-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 10px; display: block;
}
.popup-item-emoji { font-size: 2rem; }
.popup-item-qty-badge {
  position: absolute; top: -7px; right: -7px;
  background: #111; color: #fff; border-radius: 50%;
  width: 22px; height: 22px; font-size: 12px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  z-index: 2;
}
.popup-item-name  { flex: 1; font-size: 0.88rem; font-weight: 700; color: #111; line-height: 1.4; }
.popup-item-price { font-size: 0.9rem; font-weight: 800; color: #111; flex-shrink: 0; white-space: nowrap; }
.popup-item-remove {
  background: #f3f4f6; border: none; cursor: pointer;
  color: #6b7280; font-size: 0.75rem; font-weight: 900;
  width: 30px; height: 30px; border-radius: 50%;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: all 0.18s; margin-inline-start: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.popup-item-remove:hover {
  background: #fee2e2; color: #dc2626;
  transform: scale(1.12);
  box-shadow: 0 2px 8px rgba(220,38,38,0.2);
}

.popup-totals-box {
  margin: 0 16px 12px; padding: 10px 14px;
  background: #f3f4f6; border-radius: 10px;
  border: 1px solid #e5e7eb;
}
.popup-total-row {
  display: flex; justify-content: space-between;
  font-size: 0.86rem; color: #555; padding: 5px 0;
}
.popup-total-sep { border-top: 1px solid #d1d5db; margin: 6px 0; }
.popup-total-final { font-size: 0.95rem; color: #111; font-weight: 800; }
.popup-total-final strong { font-size: 1rem; color: #111; }

.field-error { display: none; font-size: 0.75rem; color: #ef4444; margin-top: 3px; }
.field-error.show { display: block; }

.btn-popup-commander {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, #111827, #4b5563);
  color: #fff; border: none; border-radius: 10px;
  font-family: 'Cairo', sans-serif; font-size: 1rem; font-weight: 800;
  cursor: pointer; margin-top: 8px; letter-spacing: .3px;
  box-shadow: 0 2px 7px rgba(0,0,0,.16);
  transition: opacity .2s; display: flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-popup-commander:hover    { opacity: 0.88; }
.btn-popup-commander:disabled { opacity: .5; cursor: not-allowed; }

.om-input-wrap input.invalid,
.om-input-wrap select.invalid,
#fieldCity.invalid { border: 1.5px solid #ef4444 !important; }
.om-input-wrap:has(input.invalid),
.om-input-wrap:has(select.invalid) { border-color: #ef4444; }

/* ── Floating WhatsApp button ─────────────────────── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  z-index: 9000;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.65);
}
body.fr .wa-float, body:not(.fr) .wa-float { right: 24px; left: auto; }

/* ===================== MOBILE BOTTOM NAV ===================== */
.mobile-bottom-nav {
  display: none;
}
@media (max-width: 768px) {
  .wa-float { display: none; }

  .mobile-bottom-nav {
    display: flex;
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 1500;
    background: #237227;
    border-top: none;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    height: 62px;
    align-items: stretch;
  }
  .mobile-bottom-nav.hidden { display: none; }

  .mbn-item {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 3px;
    color: #888; text-decoration: none; font-size: 0.62rem;
    font-weight: 600; font-family: 'Cairo', sans-serif;
    background: none; border: none; cursor: pointer;
    transition: color 0.2s; padding: 6px 0;
  }
  .mbn-item:hover, .mbn-item.active { color: #111; }
  .mbn-item svg { flex-shrink: 0; }

  .mbn-cart { position: relative; }
  .mbn-cart-count {
    position: absolute; top: 6px;
    background: #cc0000; color: #fff; border-radius: 50%;
    width: 16px; height: 16px; font-size: 9px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    right: -6px; top: -4px;
  }

  /* Pad page content so bottom nav doesn't cover it */
  body { padding-bottom: 62px; }
  body.product-page-open { padding-bottom: 80px; }
}

/* ===================== PRODUCT PAGE MOBILE STICKY CTA ===================== */
.pp-mobile-cta { display: none; }
@media (max-width: 768px) {
  .product-page.open ~ .pp-mobile-cta,
  .pp-mobile-cta {
    position: fixed; bottom: 62px; left: 0; right: 0;
    z-index: 1600;
    gap: 10px;
    padding: 10px 14px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.07);
    display: none;
  }
  .product-page.open ~ .pp-mobile-cta {
    display: flex;
  }
  .pp-mobile-cta-cart {
    flex: 1; background: #111; color: #fff; border: none;
    border-radius: 10px; padding: 14px 10px;
    font-family: 'Cairo', sans-serif; font-size: 0.92rem; font-weight: 700;
    cursor: pointer; transition: opacity 0.2s;
  }
  .pp-mobile-cta-cart:hover { opacity: 0.85; }
  .pp-mobile-cta-order {
    flex: 1.4; background: #d4a017; color: #fff; border: none;
    border-radius: 10px; padding: 14px 10px;
    font-family: 'Cairo', sans-serif; font-size: 0.92rem; font-weight: 700;
    cursor: pointer; transition: opacity 0.2s;
  }
  .pp-mobile-cta-order:hover { opacity: 0.88; }

  .product-page.open .pp-info-section { padding-bottom: 20px; }
}

/* ===================== LOGO PORTFOLIO ===================== */
.logo-section {
  padding: 64px 24px 80px;
  max-width: 1200px; margin: 0 auto;
}
.logo-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 40px;
}
.logo-filter {
  padding: 9px 22px; border-radius: 50px;
  border: 1.5px solid #e5e7eb;
  background: #fff; color: var(--gray);
  font-family: 'Cairo', sans-serif; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: all .2s; white-space: nowrap;
}
.logo-filter:hover { border-color: var(--rose); color: var(--rose); }
.logo-filter.active {
  background: linear-gradient(135deg, var(--rose), var(--orange));
  color: #fff; border-color: transparent;
  box-shadow: 0 4px 14px rgba(200,83,110,.3);
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.logo-card {
  background: #fff; border-radius: var(--radius);
  border: 1.5px solid rgba(0,0,0,.07);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}
.logo-preview {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.logo-preview-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.logo-letters {
  font-size: 3.4rem; font-weight: 900; color: rgba(255,255,255,.95);
  letter-spacing: -2px;
  text-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.logo-preview-ring {
  position: absolute;
  width: 120px; height: 120px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.22);
  pointer-events: none;
}
.logo-preview-ring2 {
  position: absolute;
  width: 168px; height: 168px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.11);
  pointer-events: none;
}
.logo-card-body {
  padding: 16px 18px 18px;
}
.logo-name {
  font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 3px;
}
.logo-industry {
  font-size: 0.8rem; color: var(--gray); margin-bottom: 10px;
}
.logo-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.logo-badge {
  padding: 3px 11px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 700;
  background: var(--rose-light); color: var(--rose);
}
.logo-badge.modern  { background: #e8f5e9; color: var(--green); }
.logo-badge.minimal { background: #e8eaf6; color: #5c6bc0; }
.logo-badge.classic { background: var(--gold-light); color: var(--gold); }

.logo-section-cta {
  text-align: center; margin-top: 52px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.logo-cta-text {
  font-size: 1.05rem; font-weight: 600; color: var(--gray);
}
@media (max-width: 640px) {
  .logo-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
  .logo-preview { height: 140px; }
  .logo-letters { font-size: 2.6rem; }
}

/* ==================== PRODUCT FULL PAGE ==================== */
.product-page {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #fff;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}
[dir=rtl] .product-page { transform: translateX(-100%); }
.product-page.open { transform: translateX(0) !important; }
.product-page-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.product-page-back {
  background: linear-gradient(135deg, var(--rose), var(--orange));
  border: none;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  color: #fff;
  padding: 8px 16px;
  display: flex; align-items: center; gap: 6px;
  border-radius: 50px;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.product-page-back:hover { opacity: 0.88; transform: scale(1.04); }
.product-page-logo {
  display: flex; align-items: center; flex-shrink: 0;
}
.product-page-logo img {
  height: 36px; width: auto; object-fit: contain;
}
.product-page-title {
  font-size: 1.05rem; font-weight: 700; color: var(--dark);
  margin: 0; flex: 1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.product-page-body {
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.pp-images-section { position: sticky; top: 80px; }
.pp-slider {
  position: relative; border-radius: 18px; overflow: hidden;
  height: 360px; display: flex; align-items: center; justify-content: center;
}
.pp-slider img { max-width: 100%; max-height: 100%; object-fit: contain; }
.pp-emoji {
  border-radius: 18px; height: 360px;
  display: flex; align-items: center; justify-content: center;
}
.pp-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.92); border: none; border-radius: 50%;
  width: 42px; height: 42px; font-size: 1.6rem; cursor: pointer;
  z-index: 2; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15); transition: background 0.2s;
}
.pp-arrow:hover { background: #fff; }
.pp-prev { left: 12px; }
.pp-next { right: 12px; }
.pp-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px;
}
.pp-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.55); cursor: pointer; transition: background 0.2s;
}
.pp-dot.active { background: #fff; }
.pp-thumbs { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.pp-thumb {
  width: 66px; height: 66px; object-fit: cover; border-radius: 10px;
  cursor: pointer; border: 2px solid transparent; opacity: 0.65; transition: all 0.2s;
}
.pp-thumb.active { border-color: var(--rose); opacity: 1; }
.pp-brand { font-size: 0.82rem; color: var(--gray); font-weight: 500; margin-bottom: 6px; letter-spacing: 0.04em; }
.pp-name { font-size: 1.6rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; line-height: 1.3; }
.pp-price { font-size: 1.5rem; font-weight: 700; color: #222; margin-bottom: 20px; }
.pp-currency { font-size: 1rem; font-weight: 500; color: #555; }
.pp-desc { color: #555; font-size: 0.95rem; line-height: 1.75; margin-bottom: 18px; }
.pp-benefits { list-style: none; padding: 0; margin-bottom: 22px; }
.pp-benefits li {
  padding: 7px 0; color: var(--dark); font-size: 0.92rem;
  display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px solid #f0f0f0;
}
.pp-benefits li:last-child { border-bottom: none; }
.pp-benefits li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pp-qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.pp-qty-label { font-weight: 600; color: #333; font-size: 0.95rem; }
.pp-qty-controls { display: flex; align-items: center; gap: 0; border: 1.5px solid #ddd; border-radius: 10px; overflow: hidden; }
.pp-qty-btn {
  background: none; border: none; width: 40px; height: 40px;
  font-size: 1.3rem; cursor: pointer; color: #333;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.pp-qty-btn:hover { background: #f5f5f5; }
.pp-qty-input {
  width: 48px; text-align: center; border: none; border-left: 1.5px solid #ddd; border-right: 1.5px solid #ddd;
  font-size: 1rem; font-weight: 600; height: 40px; outline: none; color: #222;
}
.pp-actions { display: flex; gap: 12px; flex-direction: column; margin-bottom: 16px; }
.btn-pp-cart {
  background: #111; color: #fff; border: none; border-radius: 10px;
  padding: 16px 24px; font-size: 1.05rem; font-weight: 700;
  cursor: pointer; width: 100%; transition: opacity 0.2s; letter-spacing: 0.02em;
}
.btn-pp-cart:hover { opacity: 0.85; }
.btn-pp-order {
  background: #d4a017; color: #fff; border: none; border-radius: 10px;
  padding: 16px 24px; font-size: 1.05rem; font-weight: 700;
  cursor: pointer; width: 100%; transition: opacity 0.2s; letter-spacing: 0.02em;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-pp-order:hover { opacity: 0.88; }
.pp-shipping-box {
  background: #f7f7f7; border-radius: 12px; padding: 16px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  margin-top: 6px;
}
.pp-shipping-icon { font-size: 1.6rem; }
.pp-shipping-text { font-size: 0.9rem; color: #2e7d32; font-weight: 700; text-align: center; }
@media (max-width: 768px) {
  .product-page-body {
    grid-template-columns: 1fr; gap: 24px; padding: 16px 16px 80px;
  }
  .pp-images-section { position: static; }
  .pp-slider, .pp-emoji { height: 260px; }
  .pp-name { font-size: 1.25rem; }
  .pp-price { font-size: 1.3rem; }
}

/* ===================== SCROLL REVEAL ANIMATIONS ===================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* Stagger children */
.trust-card:nth-child(1) { transition-delay: 0s; }
.trust-card:nth-child(2) { transition-delay: .08s; }
.trust-card:nth-child(3) { transition-delay: .16s; }
.trust-card:nth-child(4) { transition-delay: .24s; }

.cat-card:nth-child(1) { transition-delay: 0s; }
.cat-card:nth-child(2) { transition-delay: .07s; }
.cat-card:nth-child(3) { transition-delay: .14s; }
.cat-card:nth-child(4) { transition-delay: .21s; }
.cat-card:nth-child(5) { transition-delay: .28s; }

.review-card:nth-child(1) { transition-delay: 0s; }
.review-card:nth-child(2) { transition-delay: .1s; }
.review-card:nth-child(3) { transition-delay: .2s; }

.product-card { transition: opacity .5s ease, transform .5s ease, box-shadow .25s; }

/* ── Floating WA button — pulsing ring ─────────── */
.wa-float::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: wa-ring 2s ease-out infinite;
}
@keyframes wa-ring {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Reveal transitions for trust/cat/review items */
.trust-card.reveal, .cat-card.reveal, .review-card.reveal,
.hero-content.reveal, .cats-header.reveal,
.reviews-inner .section-header.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.trust-card.reveal.visible, .cat-card.reveal.visible, .review-card.reveal.visible,
.hero-content.reveal.visible, .cats-header.reveal.visible,
.reviews-inner .section-header.reveal.visible {
  opacity: 1; transform: none;
}
