/* ============================================================
   Ottor — styles.css  (ملف CSS الوحيد)
   مطابق لتصميم https://ottor-project-tau.vercel.app/
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap');

/* ─── CSS Variables ────────────────────────────────────── */
:root {
  --primary: #B5478A;
  --primary-dk: #8E2F69;
  --primary-lt: rgba(181, 71, 138, 0.10);
  --white: #ffffff;
  --bg: #ffffff;
  --surface: #FAF8FB;
  --ink: #1F2937;
  --muted: #6B7280;
  --border: #E5E7EB;
  --rad-sm: 8px;
  --rad-md: 14px;
  --rad-lg: 22px;
  --rad-pill: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.09);
  --shadow-pk: 0 6px 24px rgba(181, 71, 138, 0.18);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  direction: rtl;
  scroll-behavior: smooth;
}

body {
  font-family: 'Tajawal', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.hidden {
  display: none !important;
}

/* ─── Scroll Reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.visible,
.editor-styles-wrapper .reveal,
.block-editor-block-list__layout .reveal,
.wp-admin .reveal {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-delay-3 {
  transition-delay: 0.36s;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 13px 30px;
  border-radius: var(--rad-pill);
  font-size: 15px;
  font-weight: 700;
  box-shadow: var(--shadow-pk);
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--primary-dk);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--primary);
  padding: 12px 26px;
  border-radius: var(--rad-pill);
  font-size: 15px;
  font-weight: 700;
  border: 2px solid var(--primary);
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 12px 26px;
  border-radius: var(--rad-pill);
  font-size: 15px;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.2s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
}

.btn-pk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-lt);
  color: var(--primary);
  padding: 12px 26px;
  border-radius: var(--rad-pill);
  font-size: 15px;
  font-weight: 700;
  border: 1.5px solid var(--primary);
  transition: all 0.22s;
}

.btn-pk:hover {
  background: var(--primary);
  color: var(--white);
}

/* ════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  height: 38px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding: 4px 0;
  position: relative;
  transition: color 0.2s;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--primary);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

/* ── Mobile Toggle Button ── */
.mobile-toggle {
  display: none;
  width: 44px; height: 44px; border-radius: var(--rad-md);
  background: var(--primary-lt); border: 1.5px solid rgba(181, 71, 138, 0.25);
  color: var(--primary); font-size: 20px; cursor: pointer;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(181, 71, 138, 0.12);
  transition: all 0.25s var(--ease);
}
.mobile-toggle:hover,
.mobile-toggle:active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-pk);
  transform: translateY(-1px) scale(1.03);
}

@media (max-width: 800px) {
  .site-nav { display: none !important; }
  .btn-header { display: none !important; }
  .mobile-toggle { display: flex !important; }
}

/* ── Mobile Nav Drawer ── */
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(6px);
  z-index: 99999; opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-nav-drawer {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 290px; max-width: 85vw; background: #fff;
  padding: 24px; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.35s var(--ease);
  box-shadow: -10px 0 35px rgba(0,0,0,0.2);
}
.mobile-nav-overlay.open .mobile-nav-drawer { transform: translateX(0); }

.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px; border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.mobile-nav-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary-lt); border: 1px solid rgba(181, 71, 138, 0.2);
  color: var(--primary); font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.mobile-nav-close:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.mobile-nav-links { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.mobile-nav-links a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: var(--rad-md);
  font-size: 15px; font-weight: 700; color: var(--ink);
  transition: all 0.22s;
}
.mobile-nav-links a i { font-size: 16px; color: var(--primary); min-width: 20px; text-align: center; }
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: var(--primary-lt); color: var(--primary);
}
.mobile-nav-footer { padding-top: 20px; border-top: 1px solid var(--border); }

.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--rad-pill);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-header:hover {
  background: var(--primary-dk);
}

/* ════════════════════════════════════════════════════════
   HOME HERO — شبيه الموقع المرجعي تماماً
   ════════════════════════════════════════════════════════ */
.home-hero {
  background: var(--primary);
  min-height: 500px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  min-height: 520px;
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
}

/* ── عمود النص ── */
.hero-text-col {
  padding: 60px 0;
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  color: #FFE9F5;
  padding: 6px 16px;
  border-radius: var(--rad-pill);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.22;
  color: #fff;
  margin-bottom: 18px;
}

.hero-title em {
  font-style: normal;
  color: #FFD6EF;
}

.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-actions .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: none;
}

.hero-actions .btn-primary:hover {
  background: #F3E8EF;
  transform: translateY(-2px);
}

.hero-actions .btn-ghost {}

.hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.13);
  border-radius: var(--rad-md);
  padding: 10px 18px;
  backdrop-filter: blur(4px);
  width: fit-content;
  max-width: 100%;
}

.hero-stat-item {
  text-align: center;
  padding: 0 16px;
}

.hero-stat-item strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
}

.hero-stat-item span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
}

.stat-sep {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

/* ── عمود الصورة (مستغل كامل مساحة الجانب الأيسر) ── */
.hero-img-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  padding: 20px 0;
}

.hero-pedestal-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.04) 55%, transparent 75%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% {
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0.7;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
  }
}

.hero-arch-frame {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 420px;
  border-radius: 180px 180px 32px 32px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35),
    0 0 0 6px rgba(255, 255, 255, 0.22),
    0 0 40px rgba(255, 214, 239, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.hero-arch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease);
}

.hero-arch-frame:hover img {
  transform: scale(1.08);
}

.hero-badge-glass {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: var(--rad-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.5);
  color: var(--ink);
  white-space: nowrap;
  animation: floatBadge 4s ease-in-out infinite;
}

.badge-bottom {
  bottom: 20px;
  right: -10px;
  animation-delay: 0s;
}

.badge-top-right {
  top: 30px;
  right: -25px;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  color: var(--primary-dk);
  animation-delay: 1.5s;
}

.badge-top-left {
  top: 120px;
  left: -25px;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  color: var(--primary-dk);
  animation-delay: 2.5s;
}

.hero-badge-glass i {
  color: #F59E0B;
  font-size: 16px;
}

.hero-badge-glass strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
}

.hero-badge-glass span {
  font-size: 11px;
  color: var(--muted);
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ════════════════════════════════════════════════════════
   FEATURED / CAROUSEL SECTION
   ════════════════════════════════════════════════════════ */
.featured-section {
  padding: 80px 0;
  background: var(--bg);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  background: var(--primary-lt);
  color: var(--primary);
  padding: 5px 16px;
  border-radius: var(--rad-pill);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}

.section-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Carousel ── */
.carousel-wrap {
  position: relative;
  overflow: hidden;
  padding: 8px 0 20px;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s var(--ease);
  will-change: transform;
}

/* ── Product Item (clean — no card box, like reference site) ── */
.product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  padding: 20px 16px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.product-item:hover {
  transform: translateY(-6px);
}

.product-img-box {
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: var(--rad-md);
  overflow: hidden;
  background: #f5f5f7;
}

.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s var(--ease);
}

.product-item:hover .product-img-box img {
  transform: scale(1.06);
}

.product-item-cat {
  display: inline-block;
  background: var(--primary-lt);
  color: var(--primary);
  padding: 3px 14px;
  border-radius: var(--rad-pill);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-item-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.4;
}

.btn-item-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 6px 18px;
  border-radius: var(--rad-pill);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.22s;
}

.product-item:hover .btn-item-action {
  background: var(--primary);
  color: #fff;
}

/* carousel nav buttons */
.carousel-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--ink);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 10;
  transition: all 0.2s;
  cursor: pointer;
}

.carousel-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-pk);
}

.carousel-btn:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

#carouselPrev {
  right: -2px;
}

#carouselNext {
  left: -2px;
}

.view-all-center {
  text-align: center;
  margin-top: 44px;
}

/* ════════════════════════════════════════════════════════
   CRAFT SECTION — طريقة الصنع
   ════════════════════════════════════════════════════════ */
.craft-section {
  padding: 80px 0;
  background: var(--surface);
}

.craft-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* text side */
.craft-text-side {}

.craft-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 28px;
}

.craft-feat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.craft-feat-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: var(--primary-lt);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
}

.craft-feat-body h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}

.craft-feat-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* image side */
.craft-img-side {
  position: relative;
}

.craft-img-wrap {
  border-radius: var(--rad-lg);
  overflow: hidden;
  height: 420px;
  background: var(--primary-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.craft-img-wrap img {
  max-height: 92%;
  max-width: 92%;
  object-fit: contain;
}

.craft-float-tag {
  position: absolute;
  bottom: -16px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--rad-md);
  box-shadow: var(--shadow-pk);
}

.craft-float-tag i {
  font-size: 20px;
}

.craft-float-tag strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
}

.craft-float-tag span {
  font-size: 12px;
  opacity: 0.8;
}

/* ════════════════════════════════════════════════════════
   ABOUT BAND (dark pink strip)
   ════════════════════════════════════════════════════════ */
.about-band {
  padding: 80px 0;
  background: var(--primary);
  color: #fff;
}

.about-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-band-inner h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 16px;
}

.about-band-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-band-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
}

.about-band-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.25));
  animation: float 5s ease-in-out infinite;
}

/* ════════════════════════════════════════════════════════
   TESTIMONIAL
   ════════════════════════════════════════════════════════ */
.testimonial-section {
  padding: 80px 0;
  background: var(--bg);
}

.testimonial-card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: center;
  background: var(--surface);
  border-radius: var(--rad-lg);
  padding: 50px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.test-stars {
  color: #F59E0B;
  font-size: 18px;
  margin-bottom: 18px;
}

.test-quote {
  font-size: 18px;
  line-height: 1.85;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 28px;
  quotes: "\201C" "\201D";
}

.test-quote::before {
  content: open-quote;
  color: var(--primary);
  font-size: 36px;
  line-height: 0;
  vertical-align: -14px;
  margin-left: 6px;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.test-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}

.test-author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.test-author-sub {
  font-size: 13px;
  color: var(--muted);
}

.test-img-side {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
}

.test-img-side img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.10));
}

/* ════════════════════════════════════════════════════════
   PROMO BANNER (إعلان ترويجي بدل النشرة البريدية)
   ════════════════════════════════════════════════════════ */
.promo-banner {
  background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 60%, #C9609A 100%);
  padding: 50px 0; position: relative; overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.promo-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.promo-icons {
  display: flex; gap: 8px; font-size: 22px;
  opacity: 0.75; flex-shrink: 0;
  animation: floatIcons 3s ease-in-out infinite alternate;
}
@keyframes floatIcons {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}
.promo-text { flex: 1; min-width: 220px; }
.promo-tag {
  display: inline-block;
  background: rgba(255,255,255,0.22); color: #fff;
  padding: 3px 14px; border-radius: var(--rad-pill);
  font-size: 12px; font-weight: 700; margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.promo-text h3 {
  font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 6px; line-height: 1.35;
}
.promo-text p { font-size: 13px; color: rgba(255,255,255,0.82); }
.promo-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; flex-shrink: 0; }

.btn-promo-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 11px 24px; border-radius: var(--rad-pill);
  font-size: 14px; font-weight: 700;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: background 0.2s, transform 0.2s;
}
.btn-promo-wa:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-promo-wa i { font-size: 18px; }

.btn-promo-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); color: #fff;
  padding: 10px 22px; border-radius: var(--rad-pill);
  font-size: 14px; font-weight: 700;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: background 0.2s, transform 0.2s;
}
.btn-promo-outline:hover { background: rgba(255,255,255,0.28); transform: translateY(-2px); }

.sub-btn:hover {
  background: #333;
}

/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.site-footer {
  background: #fff;
  padding: 60px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 12px;
  margin-bottom: 18px;
  max-width: 260px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-lt);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s;
}

.socials a:hover {
  background: var(--primary);
  color: #fff;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* ════════════════════════════════════════════════════════
   PAGE HERO (للصفحات الداخلية: المنتجات / عنا / تواصل)
   ════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--primary);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
}

.page-hero-center {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb a:hover {
  color: #fff;
}

/* ════════════════════════════════════════════════════════
   PRODUCTS PAGE — layout with sidebar
   ════════════════════════════════════════════════════════ */
.products-page-section {
  padding: 60px 0 80px;
}

.products-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  align-items: start;
}

/* السايدبار يتثبت عند السكرول في الشاشات الكبيرة فقط */
@media (min-width: 961px) {
  .filters-col {
    position: sticky;
    top: 90px;
  }
}


/* Filter sidebar */
.filter-sidebar-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
}

.filter-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: var(--rad-md);
  background: var(--surface);
  color: var(--muted);
  border: 1.5px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.22s;
  cursor: pointer;
  text-align: right;
}

.filter-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-lt);
}

.filter-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ─── Hierarchical Filter Groups ──────────────────────── */

/* الـ wrapper لكل مجموعة (parent + children) */
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* زر الـ parent — السهم على اليسار */
.filter-parent {
  justify-content: space-between;
  position: relative;
}

.filter-arrow {
  font-size: 11px;
  margin-right: auto;
  margin-left: 0;
  transition: transform 0.25s var(--ease);
  color: var(--muted);
  flex-shrink: 0;
}

/* لما الـ group مفتوح — السهم يتقلب */
.filter-parent.group-open .filter-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

/* حاوية الصب-كاتيجوريات — مخفية بالأكورديون */
.filter-children {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.25s;
  padding: 0 0 0 12px;
  border-right: 2px solid transparent;
}

/* لما مفتوح */
.filter-children.open {
  max-height: 300px;
  padding: 6px 0 4px 12px;
  border-right-color: rgba(181, 71, 138, 0.25);
  margin-top: 4px;
}

/* زر الصب-كاتيجوري — أصغر وبحدود خفيفة */
.filter-child {
  font-size: 13px;
  padding: 8px 12px;
  background: var(--bg);
  border-color: var(--border);
  color: var(--muted);
  border-radius: var(--rad-sm);
}

.filter-child:hover {
  background: var(--primary-lt);
  border-color: var(--primary);
  color: var(--primary);
}

.filter-child.active {
  background: var(--primary-lt);
  color: var(--primary-dk);
  border-color: var(--primary);
  font-weight: 700;
}

/* عند تفعيل parent تبقى بارزة */
.filter-parent.active {
  background: rgba(181, 71, 138, 0.12);
  color: var(--primary-dk);
  border-color: var(--primary);
}


.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 24px;
}

/* ─── Product Card (صفحة المنتجات) ──────────────────── */
.product-card {
  border-radius: var(--rad-lg);
  border: 1.5px solid var(--border);
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-pk);
  transform: translateY(-5px);
  border-color: var(--primary);
}

/* ─── Scent Card (كارت الرائحة) ──────────────────────────── */
.scent-card {
  border-color: rgba(181, 71, 138, 0.2);
  background: linear-gradient(160deg, #fff 60%, rgba(181,71,138,0.03) 100%);
}

/* الأوفرلاي فوق الصورة — يعرض أيقونة الرائحة */
.scent-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(181,71,138,0.07) 0%, rgba(181,71,138,0.18) 100%);
  pointer-events: none;
  z-index: 1;
  transition: background 0.3s;
}

.scent-card:hover .scent-overlay {
  background: linear-gradient(180deg, rgba(181,71,138,0.12) 0%, rgba(181,71,138,0.28) 100%);
}

.scent-icon {
  font-size: 64px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
  transition: transform 0.3s var(--ease);
  z-index: 2;
}

.scent-card:hover .scent-icon {
  transform: scale(1.12);
}

/* بادج الأحجام المتاحة (أسفل الصورة) */
.sizes-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255,255,255,0.92);
  color: var(--primary-dk);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--rad-pill);
  border: 1px solid rgba(181,71,138,0.2);
  z-index: 3;
  backdrop-filter: blur(4px);
}

/* اسم الرائحة في الكارت */
.scent-name {
  font-size: 18px !important;
  color: var(--primary-dk);
}



.product-img-wrap {
  position: relative;
  background: #f5f5f7;
  height: 270px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s var(--ease);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-img-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--rad-pill);
}

.product-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.4;
}

.product-desc-short {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 14px;
}

.product-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-vol-tag {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-card-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 6px 14px;
  border-radius: var(--rad-pill);
  font-size: 12px;
  font-weight: 700;
  transition: all 0.22s;
}

.product-card:hover .btn-card-action {
  background: var(--primary);
  color: #fff;
}

/* ── زر واتساب في الكارد ── */
.btn-wa-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.35);
}

.btn-wa-card:hover {
  transform: scale(1.12);
  box-shadow: 0 5px 16px rgba(37, 211, 102, 0.5);
}

/* ── زر واتساب في المودال ── */
.modal-actions {
  margin-top: 20px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--rad-pill);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  transition: background 0.2s, transform 0.2s;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

.btn-whatsapp i {
  font-size: 20px;
}

.no-products {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

.no-products i {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.3;
}

/* ════════════════════════════════════════════════════════
   QUIZ SECTION
   ════════════════════════════════════════════════════════ */
.quiz-section {
  padding: 80px 0;
  background: var(--primary);
}

.quiz-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.quiz-intro {
  color: #fff;
}

.quiz-intro h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin: 12px 0 10px;
}

.quiz-intro p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.quiz-box {
  background: #fff;
  border-radius: var(--rad-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}

.quiz-q-num {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.quiz-box h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
}

.quiz-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quiz-opt-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  border-radius: var(--rad-md);
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.22s;
  cursor: pointer;
}

.quiz-opt-btn i {
  font-size: 22px;
  color: var(--primary);
}

.quiz-opt-btn:hover {
  border-color: var(--primary);
  background: var(--primary-lt);
  color: var(--primary);
}

.quiz-result-card {
  text-align: center;
}

.check-icon {
  font-size: 46px;
  color: var(--primary);
  margin-bottom: 14px;
}

.rec-name {
  font-size: 20px;
  font-weight: 900;
  color: var(--primary);
  margin: 8px 0;
}

.rec-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── Quiz Results Grid & Cards ───────────────────────── */
.quiz-rec-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.quiz-rec-subtitle strong {
  color: var(--primary);
}

.rec-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 20px 0;
  text-align: right;
}

.rec-card {
  background: var(--surface);
  border: 1.5px solid rgba(181, 71, 138, 0.2);
  border-radius: var(--rad-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, border-color 0.2s;
}

.rec-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
}

.rec-card-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-dk);
}

.rec-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.rec-card-notes {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--ink);
  background: rgba(181, 71, 138, 0.06);
  padding: 8px 12px;
  border-radius: var(--rad-sm);
}

.btn-rec-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 9px 16px;
  border-radius: var(--rad-pill);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.3);
  transition: background 0.2s, transform 0.2s;
  margin-top: 6px;
}

.btn-rec-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  color: #fff;
}


/* ════════════════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════════════════ */
.about-mission {
  padding: 80px 0;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-mission-grid h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.3;
}

.about-mission-grid p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 14px;
}

.about-hero-img-wrap {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-lt);
  border-radius: var(--rad-lg);
}

.about-hero-img-wrap img {
  max-height: 92%;
  max-width: 92%;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.12));
}

.values-section {
  padding: 70px 0;
  background: var(--surface);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background: #fff;
  border-radius: var(--rad-lg);
  padding: 32px 24px;
  border: 1.5px solid var(--border);
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}

.value-card:hover {
  box-shadow: var(--shadow-pk);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--primary-lt);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 18px;
}

.value-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.stats-band {
  padding: 70px 0;
  background: var(--primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 20px;
  color: #fff;
}

.stat-item:not(:last-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-num {
  font-size: 46px;
  font-weight: 900;
  display: block;
}

.stat-lbl {
  font-size: 14px;
  opacity: 0.8;
}

/* ════════════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════════════ */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--rad-md);
  background: var(--surface);
  border: 1.5px solid var(--border);
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 13px;
  background: var(--primary-lt);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-item h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-form {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--rad-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--rad-sm);
  border: 1.5px solid var(--border);
  background: var(--surface);
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  text-align: right;
}

.form-control:focus {
  border-color: var(--primary);
  background: #fff;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--rad-pill);
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: var(--primary-dk);
}

.form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}

.form-success i {
  font-size: 52px;
  color: var(--primary);
  margin-bottom: 14px;
}

.form-success h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

/* ════════════════════════════════════════════════════════
   MODAL
   ════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #fff;
  border-radius: var(--rad-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  transform: scale(0.94) translateY(16px);
  transition: transform 0.35s var(--ease);
}

.modal-overlay.open .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.modal-img-wrap,
.modal-img-box {
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f7;
  border-radius: var(--rad-md);
  overflow: hidden;
}

.modal-img,
.modal-img-wrap img,
.modal-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.modal-cat {
  display: inline-block;
  background: var(--primary-lt);
  color: var(--primary);
  padding: 3px 14px;
  border-radius: var(--rad-pill);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.modal-name {
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 10px;
}

.modal-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.pyramid-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}

.pyr-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: var(--rad-sm);
  margin-bottom: 8px;
  font-size: 13px;
  background: var(--surface);
}

.pyr-row.heart {
  background: rgba(181, 71, 138, 0.07);
}

.pyr-row.base {
  background: rgba(181, 71, 138, 0.14);
}

.pyr-lbl {
  font-weight: 700;
  color: var(--primary);
  min-width: 90px;
}

.modal-vol {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  margin-top: 14px;
}

.modal-vol i {
  color: var(--primary);
}

/* ════════════════════════════════════════════════════════
   PROCESS SECTION (الصفحة التعريفية)
   ════════════════════════════════════════════════════════ */
.process-section {
  padding: 80px 0;
  background: #fff;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.process-step {
  text-align: center;
  padding: 24px 16px;
  background: var(--surface);
  border-radius: var(--rad-lg);
  border: 1.5px solid var(--border);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pk);
  border-color: var(--primary);
}

.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-pk);
}

.process-step h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤960px)
   ════════════════════════════════════════════════════════ */
@media (max-width: 960px) {

  /* ── Header ── */
  .btn-header span { display: none; }
  .btn-header { padding: 10px 14px; }

  /* ── Hero ── */
  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0 24px;
  }
  .hero-img-col { height: 340px; order: -1; }
  .hero-arch-frame { width: 240px; height: 310px; border-radius: 130px 130px 20px 20px; }
  .badge-top-right, .badge-top-left { display: none; }
  .badge-bottom { right: 50%; transform: translateX(50%); bottom: 10px; }
  .hero-text-col { padding: 30px 0 40px; text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stat { justify-content: center; width: fit-content; margin: 0 auto; }

  /* ── Grids ── */
  .craft-inner,
  .about-band-inner,
  .about-mission-grid,
  .testimonial-card,
  .contact-grid,
  .quiz-inner { grid-template-columns: 1fr; }

  .testimonial-card { padding: 28px; }
  .test-img-side { height: 200px; }
  .quiz-inner { gap: 30px; }

  /* ── Products Page ── */
  .products-layout { grid-template-columns: 1fr; gap: 24px; }
  .filters-col {
    position: static !important;
    top: auto !important;
    z-index: 1;
    background: var(--surface);
    padding: 16px;
    border-radius: var(--rad-lg);
    border: 1.5px solid var(--border);
    margin-bottom: 10px;
  }
  .filter-sidebar-title { margin-bottom: 10px; }
  .filter-tabs { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .filter-tab { flex: 1 1 auto; min-width: 100px; text-align: center; justify-content: center; }
  .filter-group { flex: 1 1 auto; min-width: 120px; width: 100%; }
  .filter-children.open { width: 100%; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* ── About ── */
  .values-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-item:not(:last-child) { border: none; }
  .process-row { grid-template-columns: repeat(2, 1fr); }

  /* ── Modal ── */
  .modal-grid { grid-template-columns: 1fr; }
  .modal-img-wrap, .modal-img-box { height: 240px; }

  /* ── Promo Banner ── */
  .promo-inner { flex-direction: column; text-align: center; gap: 20px; }
  .promo-icons { justify-content: center; }
  .promo-cta { justify-content: center; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤600px)
   ════════════════════════════════════════════════════════ */
@media (max-width: 600px) {

  /* ── Header ── */
  .site-nav { display: none; }
  .site-header .container { padding: 0 16px; }

  /* ── Hero ── */
  .home-hero { min-height: auto; }
  .hero-layout { padding: 0 16px; gap: 0; }
  .hero-title { font-size: clamp(24px, 7vw, 32px); }
  .hero-tag { font-size: 12px; padding: 5px 12px; }
  .hero-sub { font-size: 14px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { padding: 11px 20px; font-size: 14px; }
  .hero-img-col { height: 280px; }
  .hero-arch-frame { width: 200px; height: 260px; }
  .hero-stat {
    display: inline-flex !important;
    flex-direction: row !important;
    width: auto !important;
    max-width: 100% !important;
    justify-content: center;
    flex-wrap: nowrap;
    margin: 0 auto;
    padding: 8px 12px;
  }
  .hero-stat-item { padding: 0 8px; }
  .hero-stat-item strong { font-size: 15px; }
  .hero-stat-item span { font-size: 10px; }
  .stat-sep { display: block !important; height: 22px; }

  /* ── Sections padding ── */
  .featured-section,
  .craft-section,
  .testimonial-section,
  .about-mission,
  .values-section,
  .stats-band,
  .quiz-section,
  .process-section { padding: 50px 0; }

  /* ── Section header ── */
  .section-title { font-size: 22px; }
  .section-sub { font-size: 13px; }

  /* ── Carousel ── */
  .product-img-box { height: 180px; }
  .product-item-title { font-size: 14px; }

  /* ── Products Grid ── */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-img-wrap { height: 160px; }
  .product-name { font-size: 13px; }
  .product-desc-short { font-size: 12px; }
  .product-card-body { padding: 12px; }
  .btn-card-action { padding: 5px 10px; font-size: 11px; }

  /* ── About band ── */
  .about-band-img { height: 260px; }
  .about-band-inner h2 { font-size: 22px; }
  .about-hero-img-wrap { height: 280px; }

  /* ── Values ── */
  .values-grid { grid-template-columns: 1fr; }

  /* ── Stats ── */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 34px; }

  /* ── Process ── */
  .process-row { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* ── Quiz ── */
  .quiz-opts { grid-template-columns: 1fr; }
  .quiz-box { padding: 24px 18px; }
  .quiz-intro h2 { font-size: 22px; }

  /* ── Testimonial ── */
  .testimonial-card { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
  .test-img-side { height: 160px; }
  .test-quote { font-size: 15px; }

  /* ── Promo Banner ── */
  .promo-banner { padding: 36px 0; }
  .promo-inner { padding: 0 16px; }
  .promo-text h3 { font-size: 16px; }
  .promo-icons { font-size: 18px; }
  .btn-promo-wa, .btn-promo-outline { padding: 10px 18px; font-size: 13px; }
  .promo-cta { gap: 10px; }

  /* ── Modal ── */
  .modal-card { padding: 24px 18px; }
  .modal-name { font-size: 18px; }
  .modal-img-wrap, .modal-img-box { height: 200px; }
  .btn-whatsapp { padding: 11px 20px; font-size: 14px; }

  /* ── Contact ── */
  .contact-section { padding: 50px 0; }
  .contact-grid { gap: 24px; }
  .contact-form { padding: 20px; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { font-size: 12px; padding: 16px 0; }

  /* ── Page Hero (inner pages) ── */
  .page-hero { height: 220px; }
  .page-hero h1 { font-size: 26px; }
  .page-hero p { font-size: 14px; }

  /* ── Container ── */
  .container { padding: 0 16px; }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — Small Mobile (≤400px)
   ════════════════════════════════════════════════════════ */
@media (max-width: 400px) {
  .hero-title { font-size: 22px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions a { width: 100%; justify-content: center; }
  .products-grid { grid-template-columns: 1fr; }
  .product-img-wrap { height: 220px; }
  .hero-stat {
    display: inline-flex !important;
    flex-direction: row !important;
    justify-content: space-evenly;
    padding: 6px 8px;
  }
  .hero-stat-item { padding: 0 4px; }
  .hero-stat-item strong { font-size: 13px; }
  .hero-stat-item span { font-size: 9px; }
  .stat-sep { display: block !important; height: 18px; }
  .promo-cta { flex-direction: column; align-items: center; }
  .btn-promo-wa, .btn-promo-outline { width: 100%; justify-content: center; }
  .filter-tab { min-width: 90px; font-size: 12px; }
  .process-row { grid-template-columns: 1fr; }
}

/* ─── Scents Tags (الروائح المتاحة) ─────────────────────── */
.scents-block {
  margin: 14px 0 10px;
  padding: 12px 14px;
  background: var(--primary-lt);
  border-radius: var(--rad-md);
  border: 1px solid rgba(181, 71, 138, 0.12);
}
.scents-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dk);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.scents-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.scent-tag {
  display: inline-block;
  padding: 3px 10px;
  background: #fff;
  border: 1px solid rgba(181, 71, 138, 0.25);
  border-radius: var(--rad-pill);
  font-size: 12px;
  color: var(--primary-dk);
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.scent-tag:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ════════════════════════════════════════════════════════
   GUTENBERG BLOCKS — ottor-blocks plugin styles
   تطابق كامل مع تصميم الثيم
   ════════════════════════════════════════════════════════ */

/* ── Hero Block ── */
.ottor-hero-block .hero,
.wp-block-ottor-hero .hero {
  background: var(--primary);
  min-height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 60px 0;
  direction: rtl;
}
.ottor-hero-block .hero-content,
.wp-block-ottor-hero .hero-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: right;
}
.ottor-hero-block .badge-pill,
.wp-block-ottor-hero .badge-pill {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: #FFE9F5;
  padding: 6px 16px;
  border-radius: var(--rad-pill);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.ottor-hero-block h1,
.wp-block-ottor-hero h1 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.22;
}
.ottor-hero-block p,
.wp-block-ottor-hero p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 28px;
}
.ottor-hero-block .hero-actions,
.wp-block-ottor-hero .hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.ottor-hero-block .btn-primary,
.wp-block-ottor-hero .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--primary);
  padding: 12px 28px;
  border-radius: var(--rad-pill);
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s, transform 0.2s;
}
.ottor-hero-block .btn-primary:hover,
.wp-block-ottor-hero .btn-primary:hover { background: #F3E8EF; transform: translateY(-2px); }

.ottor-hero-block .btn-secondary,
.wp-block-ottor-hero .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--rad-pill);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: background 0.2s;
}
.ottor-hero-block .btn-secondary:hover,
.wp-block-ottor-hero .btn-secondary:hover { background: rgba(255,255,255,0.25); }

/* ── Features Bar Block ── */
.ottor-features-bar-block .features-bar,
.wp-block-ottor-features-bar .features-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  background: var(--ink);
  padding: 0;
  direction: rtl;
}
.ottor-features-bar-block .features-bar > div,
.wp-block-ottor-features-bar .features-bar > div {
  padding: 20px 24px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-left: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ottor-features-bar-block .features-bar > div:last-child,
.wp-block-ottor-features-bar .features-bar > div:last-child { border-left: none; }

/* ── Featured Carousel Block ── */
.ottor-featured-carousel-block .featured-section,
.wp-block-ottor-featured-carousel .featured-section {
  padding: 80px 0;
  background: var(--bg);
  direction: rtl;
}
.ottor-featured-carousel-block .section-head,
.wp-block-ottor-featured-carousel .section-head {
  text-align: center;
  margin-bottom: 48px;
}

/* ── Promo Banner Block ── */
.ottor-promo-block .promo-banner,
.wp-block-ottor-promo-banner .promo-banner {
  padding: 60px 40px;
  background: var(--primary);
  border-radius: var(--rad-lg);
  text-align: right;
  direction: rtl;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.ottor-promo-block .promo-tag,
.wp-block-ottor-promo-banner .promo-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 4px 14px;
  border-radius: var(--rad-pill);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}
.ottor-promo-block h2,
.wp-block-ottor-promo-banner h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.ottor-promo-block p,
.wp-block-ottor-promo-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 24px;
}
.ottor-promo-block .btn-gold,
.wp-block-ottor-promo-banner .btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFD700;
  color: #1a0a14;
  padding: 13px 30px;
  border-radius: var(--rad-pill);
  font-weight: 800;
  font-size: 15px;
  transition: background 0.2s, transform 0.2s;
}
.ottor-promo-block .btn-gold:hover,
.wp-block-ottor-promo-banner .btn-gold:hover { background: #f5c800; transform: translateY(-2px); }

/* ── Craft Section Block ── */
.ottor-craft-block .craft-section,
.wp-block-ottor-craft-section .craft-section {
  padding: 80px 0;
  background: var(--surface);
  direction: rtl;
}
.ottor-craft-block .craft-container,
.wp-block-ottor-craft-section .craft-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: right;
}
.ottor-craft-block .craft-subtitle,
.wp-block-ottor-craft-section .craft-subtitle {
  display: inline-block;
  background: var(--primary-lt);
  color: var(--primary);
  padding: 5px 16px;
  border-radius: var(--rad-pill);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}
.ottor-craft-block h2,
.wp-block-ottor-craft-section h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.3;
}
.ottor-craft-block p,
.wp-block-ottor-craft-section p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 640px;
}
.ottor-craft-block .craft-features,
.wp-block-ottor-craft-section .craft-features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.ottor-craft-block .feature-item,
.wp-block-ottor-craft-section .feature-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--border);
  padding: 10px 18px;
  border-radius: var(--rad-md);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

/* ── Stats Band Block ── */
.ottor-stats-block .stats-band,
.wp-block-ottor-stats-band .stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--primary);
  padding: 48px 20px;
  direction: rtl;
}
.ottor-stats-block .stat-item,
.wp-block-ottor-stats-band .stat-item {
  text-align: center;
  padding: 0 20px;
  border-left: 1px solid rgba(255,255,255,0.2);
}
.ottor-stats-block .stat-item:last-child,
.wp-block-ottor-stats-band .stat-item:last-child { border-left: none; }
.ottor-stats-block .stat-item h3,
.wp-block-ottor-stats-band .stat-item h3 {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}
.ottor-stats-block .stat-item p,
.wp-block-ottor-stats-band .stat-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

/* ── About Mission Block ── */
.ottor-about-mission-block .about-mission,
.wp-block-ottor-about-mission .about-mission {
  padding: 80px 0;
  background: var(--bg);
  direction: rtl;
}
.ottor-about-mission-block .about-mission-grid,
.wp-block-ottor-about-mission .about-mission-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.ottor-about-mission-block .about-mission-text h2,
.wp-block-ottor-about-mission .about-mission-text h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.3;
  margin: 14px 0 18px;
}
.ottor-about-mission-block .about-mission-text p,
.wp-block-ottor-about-mission .about-mission-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

/* ── Values Grid Block ── */
.ottor-values-block .values-section,
.wp-block-ottor-values-grid .values-section {
  padding: 80px 0;
  background: var(--surface);
  direction: rtl;
}
.ottor-values-block .values-grid,
.wp-block-ottor-values-grid .values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.ottor-values-block .value-card,
.wp-block-ottor-values-grid .value-card {
  background: #fff;
  border-radius: var(--rad-lg);
  padding: 36px 28px;
  text-align: right;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.ottor-values-block .value-card:hover,
.wp-block-ottor-values-grid .value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.ottor-values-block .value-icon,
.wp-block-ottor-values-grid .value-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-lt);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 18px;
}
.ottor-values-block .value-card h3,
.wp-block-ottor-values-grid .value-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}
.ottor-values-block .value-card p,
.wp-block-ottor-values-grid .value-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Testimonial Block ── */
.ottor-testimonial-block .testimonial-card,
.wp-block-ottor-testimonial .testimonial-card {
  max-width: 1180px;
  margin: 40px auto;
  padding: 40px 50px;
  background: var(--surface);
  border-radius: var(--rad-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-right: 5px solid var(--primary);
  direction: rtl;
  text-align: right;
}
.ottor-testimonial-block .quote-icon,
.wp-block-ottor-testimonial .quote-icon {
  font-size: 60px;
  color: var(--primary);
  line-height: 0.8;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}
.ottor-testimonial-block blockquote,
.wp-block-ottor-testimonial blockquote {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.85;
  font-weight: 500;
  margin-bottom: 20px;
  border: none;
  padding: 0;
}
.ottor-testimonial-block .author-info strong,
.wp-block-ottor-testimonial .author-info strong {
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}

/* ── FAQ Accordion Block ── */
.ottor-faq-block .faq-section,
.wp-block-ottor-faq-accordion .faq-section {
  padding: 80px 0;
  background: var(--bg);
  direction: rtl;
}
.ottor-faq-block .section-title,
.wp-block-ottor-faq-accordion .section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  text-align: right;
  margin-bottom: 32px;
}
.ottor-faq-block .faq-item,
.wp-block-ottor-faq-accordion .faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rad-md);
  padding: 24px 28px;
  border-right: 4px solid var(--primary);
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.ottor-faq-block .faq-item:hover,
.wp-block-ottor-faq-accordion .faq-item:hover { box-shadow: var(--shadow-md); }
.ottor-faq-block .faq-q,
.wp-block-ottor-faq-accordion .faq-q {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}
.ottor-faq-block .faq-a,
.wp-block-ottor-faq-accordion .faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* ── CTA Block ── */
.ottor-cta-block .cta-section,
.wp-block-ottor-call-to-action .cta-section {
  background: var(--primary) !important;
  padding: 80px 20px;
  border-radius: var(--rad-lg);
  text-align: center;
  color: #fff;
  margin: 40px 0;
  direction: rtl;
}
.ottor-cta-block h2,
.wp-block-ottor-call-to-action h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}
.ottor-cta-block p,
.wp-block-ottor-call-to-action p {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 28px;
}
.ottor-cta-block .btn-primary,
.wp-block-ottor-call-to-action .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: var(--rad-pill);
  font-weight: 800;
  font-size: 16px;
  transition: background 0.2s, transform 0.2s;
}
.ottor-cta-block .btn-primary:hover,
.wp-block-ottor-call-to-action .btn-primary:hover { background: #F3E8EF; transform: translateY(-2px); }

/* ── Contact Info Block ── */
.ottor-contact-block .contact-section,
.wp-block-ottor-contact-info .contact-section {
  padding: 80px 0;
  background: var(--bg);
  direction: rtl;
}
.ottor-contact-block .contact-grid,
.wp-block-ottor-contact-info .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.ottor-contact-block .contact-info-side h2,
.wp-block-ottor-contact-info .contact-info-side h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--ink);
  margin: 14px 0 16px;
  line-height: 1.3;
}
.ottor-contact-block .contact-info-side p,
.wp-block-ottor-contact-info .contact-info-side p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}
.ottor-contact-block .contact-form-side,
.wp-block-ottor-contact-info .contact-form-side {
  background: #fff;
  padding: 30px;
  border-radius: var(--rad-lg);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* ── Scent Pyramid Block ── */
.ottor-scent-pyramid-block .notes-block,
.wp-block-ottor-scent-pyramid .notes-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rad-md);
  padding: 24px;
  margin: 16px 0;
  direction: rtl;
}
.ottor-scent-pyramid-block .notes-title,
.wp-block-ottor-scent-pyramid .notes-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-dk);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ottor-scent-pyramid-block .notes-grid,
.wp-block-ottor-scent-pyramid .notes-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ottor-scent-pyramid-block .note-item,
.wp-block-ottor-scent-pyramid .note-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink);
  padding: 8px 12px;
  background: #fff;
  border-radius: var(--rad-sm);
  border: 1px solid var(--border);
}
.ottor-scent-pyramid-block .note-lbl,
.wp-block-ottor-scent-pyramid .note-lbl { color: var(--muted); font-weight: 600; }
.ottor-scent-pyramid-block .note-val,
.wp-block-ottor-scent-pyramid .note-val { font-weight: 700; color: var(--primary-dk); }

/* ── Scent Quiz Block ── */
.ottor-scent-quiz-block .quiz-section,
.wp-block-ottor-scent-quiz .quiz-section {
  padding: 80px 0;
  background: var(--surface);
  direction: rtl;
}

/* ── Size Guide Block ── */
.ottor-size-guide-block,
.wp-block-ottor-size-guide { direction: rtl; }

/* ── Gutenberg Page Content Wrapper ── */
.ottor-gutenberg-page-content {
  direction: rtl;
}
.ottor-gutenberg-page-content .wp-block-ottor-hero { margin: 0 -20px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .ottor-values-block .values-grid,
  .wp-block-ottor-values-grid .values-grid { grid-template-columns: 1fr; }
  .ottor-contact-block .contact-grid,
  .wp-block-ottor-contact-info .contact-grid { grid-template-columns: 1fr; }
  .ottor-stats-block .stats-band,
  .wp-block-ottor-stats-band .stats-band { grid-template-columns: 1fr; }
  .ottor-stats-block .stat-item,
  .wp-block-ottor-stats-band .stat-item { border-left: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 20px; }
  .ottor-promo-block .promo-banner,
  .wp-block-ottor-promo-banner .promo-banner { padding: 40px 20px; }
  .ottor-testimonial-block .testimonial-card,
  .wp-block-ottor-testimonial .testimonial-card { padding: 28px 20px; }
}
/* ════════════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════════════ */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--rad-md);
  background: var(--surface);
  border: 1.5px solid var(--border);
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 13px;
  background: var(--primary-lt);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-item h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.contact-form {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--rad-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--rad-sm);
  border: 1.5px solid var(--border);
  background: var(--surface);
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  text-align: right;
  box-sizing: border-box;
}

.form-control:focus {
  border-color: var(--primary);
  background: #fff;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--rad-pill);
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit:hover {
  background: var(--primary-dk);
}

.form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}

.form-success i {
  font-size: 52px;
  color: var(--primary);
  margin-bottom: 14px;
}

.form-success h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-form { padding: 20px; }
}

/* ════════════════════════════════════════════════════════
   CONTACT FORM 7 OVERRIDES & STYLING
   ════════════════════════════════════════════════════════ */
.wpcf7 {
  width: 100%;
}

.wpcf7 form .form-group {
  margin-bottom: 18px;
}

.wpcf7 form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea,
.wpcf7 .form-control {
  width: 100% !important;
  padding: 12px 16px !important;
  border-radius: var(--rad-sm) !important;
  border: 1.5px solid var(--border) !important;
  background: var(--surface) !important;
  font-size: 14px !important;
  font-family: inherit !important;
  color: var(--ink) !important;
  outline: none !important;
  transition: border-color 0.2s !important;
  text-align: right !important;
  box-sizing: border-box !important;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus,
.wpcf7 .form-control:focus {
  border-color: var(--primary) !important;
  background: #fff !important;
}

.wpcf7 textarea {
  resize: vertical !important;
  min-height: 120px !important;
}

.wpcf7 input[type="submit"],
.wpcf7 .btn-submit {
  width: 100% !important;
  padding: 14px !important;
  background: var(--primary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--rad-pill) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 .btn-submit:hover {
  background: var(--primary-dk) !important;
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-not-valid-tip {
  color: #d9534f;
  font-size: 12px;
  margin-top: 5px;
}

.wpcf7 response-output,
div.wpcf7-response-output {
  margin: 16px 0 0 0 !important;
  padding: 12px 16px !important;
  border-radius: var(--rad-sm) !important;
  font-size: 14px !important;
  text-align: center !important;
}

/* ════════════════════════════════════════════════════════
   PROMO BANNER
   ════════════════════════════════════════════════════════ */
.promo-banner {
  background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 60%, #C9609A 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.promo-icons {
  display: flex;
  gap: 8px;
  font-size: 22px;
  opacity: 0.85;
  flex-shrink: 0;
  animation: floatIcons 3s ease-in-out infinite alternate;
}

@keyframes floatIcons {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

.promo-text {
  flex: 1;
  min-width: 220px;
}

.promo-tag {
  display: inline-block;
  background: rgba(255,255,255,0.22);
  color: #fff;
  padding: 3px 14px;
  border-radius: var(--rad-pill);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.promo-text h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.35;
}

.promo-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.promo-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn-promo-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 11px 24px;
  border-radius: var(--rad-pill);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

.btn-promo-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  color: #fff;
}

.btn-promo-wa i {
  font-size: 18px;
}

.btn-promo-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--rad-pill);
  font-size: 14px;
  font-weight: 700;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

.btn-promo-outline:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-2px);
  color: #fff;
}

@media (max-width: 768px) {
  .promo-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .promo-text {
    text-align: center;
  }
  .promo-cta {
    justify-content: center;
  }
}

.promo-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.95;
  flex-shrink: 0;
  animation: floatIcons 3s ease-in-out infinite alternate;
}

.promo-emoji {
  width: 28px;
  height: 28px;
  display: inline-block;
  vertical-align: middle;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}
