*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --rose: #c8977e;
  --rosedark: #9e6650;
  --cream: #fdf6f0;
  --nude: #f0e4d8;
  --charcoal: #2a1f1a;
  --gold: #c9a96e;
  --goldfaint: #f5ead9;
  --white: #fff;
  --radius: 18px;
  --font-ar: 'Tajawal', sans-serif;
  --font-en: 'Cormorant Garamond', serif;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-ar);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden
}

/* ── ANNOUNCE BAR ── */
.announce-bar {
  background: linear-gradient(90deg, var(--charcoal), #3d2a22 50%, var(--charcoal));
  color: #f0d9c8;
  font-size: .82rem;
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center
}

.announce-track {
  display: flex;
  align-items: center;
  gap: 80px;
  white-space: nowrap;
  animation: marquee 22s linear infinite
}

.announce-track span {
  display: flex;
  align-items: center;
  gap: 8px
}

.announce-track i {
  color: var(--gold);
  font-size: .75rem
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 246, 240, .95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(200, 151, 126, .18);
  padding: 0 2.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 2px 20px rgba(42, 31, 26, .07)
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 18px
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: .3s
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-decoration: none
}

.logo-en {
  font-family: var(--font-en);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: .08em;
  font-style: italic
}

.logo-ar {
  font-size: .68rem;
  letter-spacing: .18em;
  color: var(--rose);
  font-weight: 500
}

.search-bar {
  flex: 1;
  max-width: 420px;
  display: flex;
  align-items: center;
  background: var(--nude);
  border-radius: 50px;
  border: 1.5px solid rgba(200, 151, 126, .3);
  padding: 0 1rem;
  gap: 8px;
  height: 42px;
  transition: border-color .25s, box-shadow .25s
}

.search-bar:focus-within {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(200, 151, 126, .15)
}

.search-bar input {
  border: none;
  background: none;
  outline: none;
  width: 100%;
  font-family: var(--font-ar);
  font-size: .9rem;
  color: var(--charcoal)
}

.search-bar i {
  color: var(--rose);
  font-size: .9rem
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 6px
}

.icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 1.05rem;
  transition: background .2s, color .2s
}

.icon-btn:hover {
  background: var(--nude);
  color: var(--rose)
}

.cart-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f9ede4, #fdf6f0 45%, #f3e3d3)
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0
}

.hbc1 {
  width: 600px;
  height: 600px;
  top: -180px;
  left: -180px;
  background: radial-gradient(circle, rgba(201, 169, 110, .18), transparent 70%)
}

.hbc2 {
  width: 450px;
  height: 450px;
  bottom: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(200, 151, 126, .2), transparent 70%)
}

.hero-slider {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  overflow: hidden;
  z-index: 1
}

.hero-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, #fdf6f0 100%);
  z-index: 2;
  pointer-events: none
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .7s cubic-bezier(.77, 0, .18, 1)
}

.slider-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.3)
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 4rem 2.5rem 4rem 5rem
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 151, 126, .15);
  border: 1px solid rgba(200, 151, 126, .35);
  border-radius: 50px;
  padding: .35rem 1rem;
  font-size: .8rem;
  color: var(--rosedark);
  margin-bottom: 1.5rem
}

.hero-badge i {
  font-size: .65rem
}

.hero h1 {
  font-family: var(--font-en);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: .5rem
}

.hero h1 em {
  font-style: italic;
  color: var(--rose);
  display: block
}

.hero-sub {
  font-size: 1.05rem;
  color: #7a5a4e;
  line-height: 1.75;
  margin: 1.2rem 0 2.2rem;
  font-weight: 300
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap
}

.stat {
  display: flex;
  flex-direction: column
}

.stat-num {
  font-family: var(--font-en);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--charcoal)
}

.stat-lbl {
  font-size: .78rem;
  color: #9a7060
}

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--rosedark));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .85rem 2rem;
  font-family: var(--font-ar);
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(200, 151, 126, .45)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200, 151, 126, .55)
}

.btn-outline {
  border: 1.5px solid var(--rose);
  color: var(--rose);
  background: none;
  border-radius: 50px;
  padding: .82rem 1.8rem;
  font-family: var(--font-ar);
  font-size: .95rem;
  cursor: pointer;
  transition: background .2s, color .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-outline:hover {
  background: var(--rose);
  color: #fff
}

/* ── SECTION HEADER ── */
.sec-header {
  text-align: center;
  margin-bottom: 3rem
}

.sec-eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .2em;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: .75rem
}

.sec-title {
  font-family: var(--font-en);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  font-style: italic;
  color: var(--charcoal)
}

.sec-title span {
  color: var(--rose)
}

.sec-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  margin: .8rem auto 0;
  border-radius: 2px
}

/* ── CATEGORIES CAROUSEL ── */
.categories {
  padding: 5rem 2.5rem;
  background: var(--white)
}

.cat-carousel-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative
}

.cat-carousel-track-outer {
  overflow: hidden;
  cursor: grab;
  user-select: none
}

.cat-carousel-track-outer.dragging {
  cursor: grabbing
}

.cat-carousel-track {
  display: flex;
  gap: 1.2rem;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1)
}

.cat-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  width: 160px;
  border: 1.5px solid rgba(200, 151, 126, .12);
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(200, 151, 126, .2);
  border-color: var(--rose)
}

.cat-card.active-cat {
  border-color: var(--rose);
  background: var(--goldfaint)
}

.cat-img {
  width: 100%;
  height: 110px;
  overflow: hidden;
  background: var(--nude)
}

.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease
}

.cat-card:hover .cat-img img {
  transform: scale(1.08)
}

.cat-body {
  padding: .75rem .6rem .85rem;
  text-align: center;
  width: 100%
}

.cat-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--charcoal)
}

.cat-count {
  font-size: .73rem;
  color: var(--rose);
  margin-top: 2px
}

.cat-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(200, 151, 126, .3);
  color: var(--charcoal);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background .2s, color .2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .1)
}

.cat-nav-btn:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose)
}

.cat-nav-prev {
  right: -20px
}

.cat-nav-next {
  left: -20px
}

/* ── PAGE HERO (للصفحات الداخلية) ── */
.page-hero {
  background: linear-gradient(135deg, #f9ede4, #fdf6f0 45%, #f3e3d3);
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200, 151, 126, .12) 1px, transparent 1px);
  background-size: 28px 28px
}

.page-hero-inner {
  position: relative;
  z-index: 1
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .8rem;
  color: #9a7060;
  margin-bottom: 1rem
}

.page-breadcrumb a {
  text-decoration: none;
  color: var(--rose);
  transition: color .2s
}

.page-breadcrumb a:hover {
  color: var(--rosedark)
}

.page-breadcrumb i {
  font-size: .6rem;
  color: #bbb
}

.page-hero h1 {
  font-family: var(--font-en);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-style: italic;
  font-weight: 600;
  color: var(--charcoal)
}

.page-hero h1 span {
  color: var(--rose)
}

.page-hero p {
  color: #7a5a4e;
  font-size: .95rem;
  margin-top: .75rem;
  font-weight: 300
}

/* ── FILTER BAR ── */
.filter-bar {
  background: #fff;
  border-bottom: 1px solid rgba(200, 151, 126, .12);
  padding: .9rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 100%;
  position: sticky;
  top: 70px;
  z-index: 900
}

.filter-count {
  font-size: .82rem;
  color: #9a7060;
  margin-inline-end: auto
}

.filter-select {
  border: 1.5px solid rgba(200, 151, 126, .3);
  background: var(--nude);
  border-radius: 50px;
  padding: .45rem 1rem;
  font-family: var(--font-ar);
  font-size: .82rem;
  color: var(--charcoal);
  outline: none;
  cursor: pointer
}

.filter-select:focus {
  border-color: var(--rose)
}

.filter-chips {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap
}

.chip {
  border: 1.5px solid rgba(200, 151, 126, .3);
  background: none;
  border-radius: 50px;
  padding: .35rem .9rem;
  font-family: var(--font-ar);
  font-size: .78rem;
  color: #7a5a4e;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s
}

.chip:hover,
.chip.active {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose)
}

/* ── FEATURED BANNER ── */
.feat-banner {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a1f1a, #4a2e22 50%, #2a1f1a);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.5rem 4rem;
  gap: 2rem;
  position: relative
}

.feat-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201, 169, 110, .1) 1px, transparent 1px);
  background-size: 30px 30px
}

.feat-text {
  position: relative;
  z-index: 1
}

.feat-tag {
  font-size: .75rem;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: .8rem;
  display: block
}

.feat-title {
  font-family: var(--font-en);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  font-style: italic;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem
}

.feat-title em {
  color: var(--gold)
}

.feat-desc {
  color: rgba(255, 255, 255, .7);
  font-size: .92rem;
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 2rem
}

.feat-btn {
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  border-radius: 50px;
  padding: .85rem 2rem;
  font-family: var(--font-ar);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.feat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, .5)
}

.feat-icons {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1.2rem;
  align-items: center
}

.feat-icon-box {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(201, 169, 110, .12);
  border: 1.5px solid rgba(201, 169, 110, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2rem;
  flex-shrink: 0;
  transition: background .3s, transform .3s
}

.feat-icon-box:hover {
  background: rgba(201, 169, 110, .25);
  transform: scale(1.08)
}

.feat-icon-box.lg {
  width: 120px;
  height: 120px;
  font-size: 2.6rem
}

/* ── PRODUCTS ── */
.products-sec {
  padding: 5rem 2.5rem
}

.products-header {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem
}

.prod-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem
}

.prod-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid rgba(200, 151, 126, .1);
  cursor: pointer
}

.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(200, 151, 126, .22)
}

.prod-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--nude)
}

.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block
}

.prod-card:hover .prod-img img {
  transform: scale(1.07)
}

.prod-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--rose);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .65rem;
  border-radius: 50px;
  z-index: 2
}

.prod-badge.new {
  background: var(--gold);
  color: var(--charcoal)
}

/* ── WISH BUTTON – دايمًا ظاهر ── */
.prod-wish {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, .9);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--rose);
  /* ← دايمًا ظاهر بلون الروز */
  font-size: .85rem;
  transition: color .2s, background .2s, transform .2s;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.prod-wish:hover {
  background: #fff;
  transform: scale(1.12)
}

.prod-wish.liked {
  color: #e00055
}

/* ─────────────────────────────────── */

.prod-info {
  padding: 1rem 1.1rem 1.2rem
}

.prod-cat {
  font-size: .72rem;
  color: var(--rose);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em
}

.prod-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: .25rem 0 .5rem
}

.prod-foot {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.prod-price {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal)
}

.prod-price .old {
  font-size: .8rem;
  color: #bbb;
  text-decoration: line-through;
  margin-right: 6px;
  font-weight: 400
}

.add-cart {
  background: linear-gradient(135deg, var(--rose), var(--rosedark));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .42rem 1rem;
  font-family: var(--font-ar);
  font-size: .8rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s
}

.add-cart:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(200, 151, 126, .4)
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: .35rem;
  color: var(--gold);
  font-size: .7rem
}

/* ── MAKEUP ── */
.makeup-sec {
  padding: 5rem 2.5rem;
  background: linear-gradient(180deg, var(--nude), var(--white))
}

.makeup-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem
}

.makeup-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform .3s
}

.makeup-card:hover {
  transform: scale(1.02)
}

.makeup-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease
}

.makeup-card:hover img {
  transform: scale(1.06)
}

.makeup-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 31, 26, .75), rgba(42, 31, 26, .2) 55%, transparent)
}

.makeup-content {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  width: 100%
}

.makeup-tag {
  font-size: .72rem;
  letter-spacing: .15em;
  color: var(--gold);
  text-transform: uppercase
}

.makeup-title {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  color: #fff;
  margin: .3rem 0 .6rem
}

.makeup-link {
  font-size: .82rem;
  color: rgba(255, 255, 255, .85);
  display: flex;
  align-items: center;
  gap: 6px
}

/* ── OFFERS ── */
.offers-strip {
  padding: 2.5rem
}

.offers-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem
}

.offer-item {
  background: #fff;
  border-radius: 14px;
  padding: 1.4rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(200, 151, 126, .12);
  transition: box-shadow .25s, transform .25s
}

.offer-item:hover {
  box-shadow: 0 8px 28px rgba(200, 151, 126, .18);
  transform: translateY(-3px)
}

.offer-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--goldfaint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--rosedark)
}

.offer-title {
  font-size: .92rem;
  font-weight: 700;
  color: var(--charcoal)
}

.offer-desc {
  font-size: .78rem;
  color: #9a7060;
  margin-top: 2px
}

/* ── NEWSLETTER ── */
.newsletter {
  padding: 5rem 2.5rem;
  background: linear-gradient(135deg, var(--charcoal), #4a2e22);
  text-align: center
}

.newsletter .sec-eyebrow {
  color: var(--gold)
}

.newsletter .sec-title {
  color: #fff
}

.newsletter p {
  color: rgba(255, 255, 255, .65);
  max-width: 480px;
  margin: 1rem auto 2rem;
  line-height: 1.7
}

.nl-form {
  display: flex;
  gap: .75rem;
  max-width: 440px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center
}

.nl-input {
  flex: 1;
  min-width: 200px;
  border: 1.5px solid rgba(201, 169, 110, .3);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-radius: 50px;
  padding: .85rem 1.3rem;
  font-family: var(--font-ar);
  font-size: .9rem;
  outline: none;
  transition: border-color .25s
}

.nl-input::placeholder {
  color: rgba(255, 255, 255, .4)
}

.nl-input:focus {
  border-color: var(--gold)
}

.nl-btn {
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  border-radius: 50px;
  padding: .85rem 1.8rem;
  font-family: var(--font-ar);
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  font-size: .9rem
}

.nl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, .4)
}

/* ── FOOTER ── */
footer {
  background: #1a100d;
  color: rgba(255, 255, 255, .7);
  padding: 3.5rem 2.5rem 1.5rem
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2.5rem
}

.footer-brand .logo-en {
  color: #fff;
  font-size: 2rem
}

.footer-brand .logo-ar {
  color: var(--rose)
}

.footer-brand p {
  font-size: .85rem;
  line-height: 1.7;
  margin-top: .8rem;
  color: rgba(255, 255, 255, .5)
}

.footer-socials {
  display: flex;
  gap: .6rem;
  margin-top: 1.2rem
}

.social-ic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
  text-decoration: none
}

.social-ic:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose)
}

.footer-col h4 {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.footer-col ul li a {
  font-size: .83rem;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: color .2s
}

.footer-col ul li a:hover {
  color: var(--rose)
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem
}

.footer-bottom p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .3)
}

/* ── DRAWER ── */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 1100
}

.overlay.open {
  display: block
}

.drawer {
  position: fixed;
  top: 0;
  right: -320px;
  bottom: 0;
  width: 300px;
  background: var(--cream);
  z-index: 1200;
  padding: 2rem 1.5rem;
  transition: right .35s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto
}

.drawer.open {
  right: 0
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--charcoal)
}

.drawer-menu {
  list-style: none;
  display: flex;
  flex-direction: column
}

.drawer-menu li a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(200, 151, 126, .12);
  text-decoration: none;
  color: var(--charcoal);
  font-size: .95rem;
  font-weight: 500;
  transition: color .2s
}

.drawer-menu li a:hover,
.drawer-menu li a.active-link {
  color: var(--rose)
}

.drawer-menu li a i {
  width: 20px;
  color: var(--rose);
  font-size: .85rem
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* ── PAGINATION ── */
.pagination {
  display: flex;
  justify-content: center;
  gap: .5rem;
  padding: 2rem 0 3rem;
  flex-wrap: wrap
}

.page-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 151, 126, .3);
  background: #fff;
  color: var(--charcoal);
  font-family: var(--font-en);
  font-size: .9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, border-color .2s
}

.page-btn:hover,
.page-btn.active {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose)
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media(max-width:900px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
    min-height: unset
  }

  .hero-slider {
    position: relative;
    width: 100%;
    height: 320px;
    left: unset;
    top: unset;
    bottom: unset
  }

  .hero-slider::after {
    background: linear-gradient(to bottom, transparent 60%, #fdf6f0 100%)
  }

  .hero-content {
    padding: 2rem 2rem 3rem;
    max-width: 100%
  }

  .makeup-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .filter-bar {
    top: 70px;
    padding: .9rem 1.2rem
  }
}

@media(max-width:600px) {
  .navbar {
    padding: 0 1rem
  }

  .search-bar {
    display: none
  }

  .hero {
    flex-direction: column;
    align-items: stretch;
    min-height: unset;
    background: var(--cream)
  }

  .hero-slider {
    position: relative;
    width: 100%;
    height: 260px;
    left: unset;
    top: unset;
    bottom: unset;
    border-radius: 0 0 24px 24px
  }

  .hero-slider::after {
    background: linear-gradient(to bottom, transparent 55%, var(--cream) 100%)
  }

  .hero-bg-circle {
    display: none
  }

  .hero-content {
    padding: 1.5rem 1.2rem 2.5rem
  }

  .prod-grid {
    grid-template-columns: 1fr 1fr;
    gap: .8rem
  }

  .prod-img {
    height: 155px
  }

  .prod-name {
    font-size: .8rem
  }

  .prod-info {
    padding: .7rem .8rem .9rem
  }

  .prod-price {
    font-size: .9rem
  }

  .add-cart {
    font-size: .7rem;
    padding: .35rem .65rem
  }

  .feat-banner {
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    margin: 0 1rem
  }

  .feat-icons {
    display: none
  }

  .categories {
    padding: 3rem 1rem
  }

  .products-sec,
  .makeup-sec {
    padding: 3rem 1rem
  }

  .offers-strip {
    padding: 1.5rem 1rem
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .cat-nav-prev {
    right: -14px
  }

  .cat-nav-next {
    left: -14px
  }

  .page-hero {
    padding: 2.5rem 1.2rem
  }

  .filter-bar {
    padding: .75rem 1rem;
    top: 70px;
    gap: .5rem
  }

  .filter-chips {
    gap: .4rem
  }
}














*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --rose: #c8977e;
  --rosedark: #9e6650;
  --cream: #fdf6f0;
  --nude: #f0e4d8;
  --charcoal: #2a1f1a;
  --gold: #c9a96e;
  --goldfaint: #f5ead9;
  --white: #fff;
  --radius: 18px;
  --font-ar: 'Tajawal', sans-serif;
  --font-en: 'Cormorant Garamond', serif;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-ar);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden
}

/* ANNOUNCE BAR */
.announce-bar {
  background: linear-gradient(90deg, var(--charcoal), #3d2a22 50%, var(--charcoal));
  color: #f0d9c8;
  font-size: .82rem;
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center
}

.announce-track {
  display: flex;
  align-items: center;
  gap: 80px;
  white-space: nowrap;
  animation: marquee 22s linear infinite
}

.announce-track span {
  display: flex;
  align-items: center;
  gap: 8px
}

.announce-track i {
  color: var(--gold);
  font-size: .75rem
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 246, 240, .95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(200, 151, 126, .18);
  padding: 0 2.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 2px 20px rgba(42, 31, 26, .07)
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 18px
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: .3s
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-decoration: none
}

.logo-en {
  font-family: var(--font-en);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: .08em;
  font-style: italic
}

.logo-ar {
  font-size: .68rem;
  letter-spacing: .18em;
  color: var(--rose);
  font-weight: 500
}

.search-bar {
  flex: 1;
  max-width: 420px;
  display: flex;
  align-items: center;
  background: var(--nude);
  border-radius: 50px;
  border: 1.5px solid rgba(200, 151, 126, .3);
  padding: 0 1rem;
  gap: 8px;
  height: 42px;
  transition: border-color .25s, box-shadow .25s
}

.search-bar:focus-within {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(200, 151, 126, .15)
}

.search-bar input {
  border: none;
  background: none;
  outline: none;
  width: 100%;
  font-family: var(--font-ar);
  font-size: .9rem;
  color: var(--charcoal)
}

.search-bar i {
  color: var(--rose);
  font-size: .9rem
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 6px
}

.icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 1.05rem;
  transition: background .2s, color .2s
}

.icon-btn:hover {
  background: var(--nude);
  color: var(--rose)
}

.cart-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f9ede4, #fdf6f0 45%, #f3e3d3)
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0
}

.hbc1 {
  width: 600px;
  height: 600px;
  top: -180px;
  left: -180px;
  background: radial-gradient(circle, rgba(201, 169, 110, .18), transparent 70%)
}

.hbc2 {
  width: 450px;
  height: 450px;
  bottom: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(200, 151, 126, .2), transparent 70%)
}

.hero-slider {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  overflow: hidden;
  z-index: 1
}

.hero-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, #fdf6f0 100%);
  z-index: 2;
  pointer-events: none
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .7s cubic-bezier(.77, 0, .18, 1)
}

.slider-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.3)
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 4rem 2.5rem 4rem 5rem
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 151, 126, .15);
  border: 1px solid rgba(200, 151, 126, .35);
  border-radius: 50px;
  padding: .35rem 1rem;
  font-size: .8rem;
  color: var(--rosedark);
  margin-bottom: 1.5rem
}

.hero h1 {
  font-family: var(--font-en);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: .5rem
}

.hero h1 em {
  font-style: italic;
  color: var(--rose);
  display: block
}

.hero-sub {
  font-size: 1.05rem;
  color: #7a5a4e;
  line-height: 1.75;
  margin: 1.2rem 0 2.2rem;
  font-weight: 300
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--rosedark));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .85rem 2rem;
  font-family: var(--font-ar);
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(200, 151, 126, .45)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200, 151, 126, .55)
}

.btn-outline {
  border: 1.5px solid var(--rose);
  color: var(--rose);
  background: none;
  border-radius: 50px;
  padding: .82rem 1.8rem;
  font-family: var(--font-ar);
  font-size: .95rem;
  cursor: pointer;
  transition: background .2s, color .2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px
}

.btn-outline:hover {
  background: var(--rose);
  color: #fff
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap
}

.stat {
  display: flex;
  flex-direction: column
}

.stat-num {
  font-family: var(--font-en);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--charcoal)
}

.stat-lbl {
  font-size: .78rem;
  color: #9a7060
}

/* SECTION HEADER */
.sec-header {
  text-align: center;
  margin-bottom: 3rem
}

.sec-eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .2em;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: .75rem
}

.sec-title {
  font-family: var(--font-en);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  font-style: italic;
  color: var(--charcoal)
}

.sec-title span {
  color: var(--rose)
}

.sec-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  margin: .8rem auto 0;
  border-radius: 2px
}

/* CATEGORIES CAROUSEL */
.categories {
  padding: 5rem 2.5rem;
  background: var(--white)
}

.cat-carousel-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative
}

.cat-carousel-track-outer {
  overflow: hidden;
  cursor: grab;
  user-select: none
}

.cat-carousel-track-outer.dragging {
  cursor: grabbing
}

.cat-carousel-track {
  display: flex;
  gap: 1.2rem;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1)
}

.cat-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  width: 160px;
  border: 1.5px solid rgba(200, 151, 126, .12);
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(200, 151, 126, .2);
  border-color: var(--rose)
}

.cat-img {
  width: 100%;
  height: 110px;
  overflow: hidden;
  background: var(--nude)
}

.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease
}

.cat-card:hover .cat-img img {
  transform: scale(1.08)
}

.cat-body {
  padding: .75rem .6rem .85rem;
  text-align: center;
  width: 100%
}

.cat-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--charcoal)
}

.cat-count {
  font-size: .73rem;
  color: var(--rose);
  margin-top: 2px
}

.cat-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(200, 151, 126, .3);
  color: var(--charcoal);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background .2s, color .2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .1)
}

.cat-nav-btn:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose)
}

.cat-nav-prev {
  right: -20px
}

.cat-nav-next {
  left: -20px
}

/* FEATURED BANNER */
.feat-banner {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a1f1a, #4a2e22 50%, #2a1f1a);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.5rem 4rem;
  gap: 2rem;
  position: relative
}

.feat-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201, 169, 110, .1) 1px, transparent 1px);
  background-size: 30px 30px
}

.feat-text {
  position: relative;
  z-index: 1
}

.feat-tag {
  font-size: .75rem;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: .8rem;
  display: block
}

.feat-title {
  font-family: var(--font-en);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  font-style: italic;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem
}

.feat-title em {
  color: var(--gold)
}

.feat-desc {
  color: rgba(255, 255, 255, .7);
  font-size: .92rem;
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 2rem
}

.feat-btn {
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  border-radius: 50px;
  padding: .85rem 2rem;
  font-family: var(--font-ar);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.feat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, .5)
}

.feat-icons {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1.2rem;
  align-items: center
}

.feat-icon-box {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(201, 169, 110, .12);
  border: 1.5px solid rgba(201, 169, 110, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2rem;
  flex-shrink: 0;
  transition: background .3s, transform .3s
}

.feat-icon-box:hover {
  background: rgba(201, 169, 110, .25);
  transform: scale(1.08)
}

.feat-icon-box.lg {
  width: 120px;
  height: 120px;
  font-size: 2.6rem
}

/* ═══ PRODUCTS ═══ */
.products-sec {
  padding: 5rem 2.5rem
}

.products-header {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem
}

.prod-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem
}

/* product card */
.prod-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid rgba(200, 151, 126, .1);
  cursor: pointer;
  position: relative
}

.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(200, 151, 126, .22)
}

.prod-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--nude)
}

.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block
}

.prod-card:hover .prod-img img {
  transform: scale(1.07)
}

.prod-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--rose);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .65rem;
  border-radius: 50px;
  z-index: 2
}

.prod-badge.new {
  background: var(--gold);
  color: var(--charcoal)
}

/* quick-view eye button – appears on hover */
.prod-eye {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(42, 31, 26, .82);
  backdrop-filter: blur(6px);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .5rem 1.3rem;
  font-family: var(--font-ar);
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .25s, transform .25s;
  z-index: 3;
  pointer-events: none;
}

.prod-card:hover .prod-eye {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.prod-eye:hover {
  background: var(--rose);
}

.prod-info {
  padding: 1rem 1.1rem 1.2rem
}

.prod-cat {
  font-size: .72rem;
  color: var(--rose);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em
}

.prod-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: .25rem 0 .5rem
}

.prod-foot {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.prod-price {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal)
}

.prod-price .old {
  font-size: .8rem;
  color: #bbb;
  text-decoration: line-through;
  margin-right: 6px;
  font-weight: 400
}

.add-cart-sm {
  background: linear-gradient(135deg, var(--rose), var(--rosedark));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .42rem 1rem;
  font-family: var(--font-ar);
  font-size: .8rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s
}

.add-cart-sm:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(200, 151, 126, .4)
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: .35rem;
  color: var(--gold);
  font-size: .7rem
}

/* ═══ QUICK VIEW PANEL ═══ */
.qv-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 9, .55);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  backdrop-filter: blur(3px);
}

.qv-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.qv-panel {
  position: fixed;
  top: 0;
  left: -100%;
  bottom: 0;
  width: min(540px, 100%);
  background: #fff;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 60px rgba(42, 31, 26, .18);
  transition: left .4s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
}

.qv-panel.open {
  left: 0;
}

/* panel header */
.qv-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid rgba(200, 151, 126, .15);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 5;
}

.qv-head-title {
  font-size: .85rem;
  color: #9a7060;
  letter-spacing: .08em;
}

.qv-close {
  background: var(--nude);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--charcoal);
  font-size: 1rem;
  transition: background .2s, color .2s;
}

.qv-close:hover {
  background: var(--rose);
  color: #fff;
}

/* product image carousel inside panel */
.qv-img-wrap {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: var(--nude);
  flex-shrink: 0;
}

.qv-img-track {
  display: flex;
  height: 100%;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.qv-img-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.qv-img-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.qv-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 3;
}

.qv-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .6);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
}

.qv-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* arrow nav */
.qv-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--charcoal);
  z-index: 3;
  transition: background .2s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
}

.qv-arr:hover {
  background: var(--rose);
  color: #fff;
}

.qv-arr-prev {
  right: 12px;
}

.qv-arr-next {
  left: 12px;
}

/* panel body */
.qv-body {
  padding: 1.6rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.qv-cat {
  font-size: .72rem;
  color: var(--rose);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.qv-name {
  font-family: var(--font-en);
  font-size: 1.65rem;
  font-weight: 600;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.25;
}

.qv-stars {
  display: flex;
  align-items: center;
  gap: 6px;
}

.qv-stars span {
  color: var(--gold);
  font-size: .85rem;
}

.qv-stars em {
  font-style: normal;
  font-size: .8rem;
  color: #9a7060;
}

.qv-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.qv-price {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal);
}

.qv-price-old {
  font-family: var(--font-en);
  font-size: 1.1rem;
  color: #bbb;
  text-decoration: line-through;
}

.qv-save {
  background: rgba(200, 151, 126, .15);
  color: var(--rosedark);
  font-size: .75rem;
  font-weight: 700;
  padding: .2rem .7rem;
  border-radius: 50px;
}

.qv-divider {
  height: 1px;
  background: rgba(200, 151, 126, .15);
}

.qv-desc {
  font-size: .9rem;
  color: #7a5a4e;
  line-height: 1.8;
}

/* color swatches */
.qv-label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: .5rem;
}

.qv-swatches {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

.swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s, transform .2s;
}

.swatch.active,
.swatch:hover {
  border-color: var(--rose);
  transform: scale(1.15);
}

/* qty */
.qv-qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(200, 151, 126, .3);
  border-radius: 50px;
  overflow: hidden;
}

.qty-btn {
  background: none;
  border: none;
  width: 38px;
  height: 38px;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--charcoal);
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: var(--nude);
}

.qty-num {
  min-width: 36px;
  text-align: center;
  font-weight: 700;
  font-size: .95rem;
}

/* add to cart big */
.qv-add-btn {
  flex: 1;
  background: linear-gradient(135deg, var(--rose), var(--rosedark));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .9rem 1.5rem;
  font-family: var(--font-ar);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 24px rgba(200, 151, 126, .4);
}

.qv-add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 151, 126, .5);
}

/* features list */
.qv-features {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.qv-feat-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  color: #7a5a4e;
}

.qv-feat-item i {
  color: var(--rose);
  font-size: .75rem;
  width: 16px;
}

/* MAKEUP */
.makeup-sec {
  padding: 5rem 2.5rem;
  background: linear-gradient(180deg, var(--nude), var(--white))
}

.makeup-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem
}

.makeup-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform .3s
}

.makeup-card:hover {
  transform: scale(1.02)
}

.makeup-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease
}

.makeup-card:hover img {
  transform: scale(1.06)
}

.makeup-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 31, 26, .75), rgba(42, 31, 26, .2) 55%, transparent)
}

.makeup-content {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  width: 100%
}

.makeup-tag {
  font-size: .72rem;
  letter-spacing: .15em;
  color: var(--gold);
  text-transform: uppercase
}

.makeup-title {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  color: #fff;
  margin: .3rem 0 .6rem
}

.makeup-link {
  font-size: .82rem;
  color: rgba(255, 255, 255, .85);
  display: flex;
  align-items: center;
  gap: 6px
}

/* OFFERS */
.offers-strip {
  padding: 2.5rem
}

.offers-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem
}

.offer-item {
  background: #fff;
  border-radius: 14px;
  padding: 1.4rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(200, 151, 126, .12);
  transition: box-shadow .25s, transform .25s
}

.offer-item:hover {
  box-shadow: 0 8px 28px rgba(200, 151, 126, .18);
  transform: translateY(-3px)
}

.offer-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--goldfaint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--rosedark)
}

.offer-title {
  font-size: .92rem;
  font-weight: 700;
  color: var(--charcoal)
}

.offer-desc {
  font-size: .78rem;
  color: #9a7060;
  margin-top: 2px
}

/* FOOTER */
footer {
  background: #1a100d;
  color: rgba(255, 255, 255, .7);
  padding: 3.5rem 2.5rem 1.5rem
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2.5rem
}

.footer-brand .logo-en {
  color: #fff;
  font-size: 2rem
}

.footer-brand .logo-ar {
  color: var(--rose)
}

.footer-brand p {
  font-size: .85rem;
  line-height: 1.7;
  margin-top: .8rem;
  color: rgba(255, 255, 255, .5)
}

.footer-socials {
  display: flex;
  gap: .6rem;
  margin-top: 1.2rem
}

.social-ic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
  text-decoration: none
}

.social-ic:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose)
}

.footer-col h4 {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.footer-col ul li a {
  font-size: .83rem;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: color .2s
}

.footer-col ul li a:hover {
  color: var(--rose)
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem
}

.footer-bottom p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .3)
}

/* DRAWER */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 1100
}

.overlay.open {
  display: block
}

.drawer {
  position: fixed;
  top: 0;
  right: -320px;
  bottom: 0;
  width: 300px;
  background: var(--cream);
  z-index: 1200;
  padding: 2rem 1.5rem;
  transition: right .35s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto
}

.drawer.open {
  right: 0
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--charcoal)
}

.drawer-menu {
  list-style: none;
  display: flex;
  flex-direction: column
}

.drawer-menu li a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(200, 151, 126, .12);
  text-decoration: none;
  color: var(--charcoal);
  font-size: .95rem;
  font-weight: 500;
  transition: color .2s
}

.drawer-menu li a:hover {
  color: var(--rose)
}

.drawer-menu li a i {
  width: 20px;
  color: var(--rose);
  font-size: .85rem
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* RESPONSIVE */
@media(max-width:900px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
    min-height: unset
  }

  .hero-slider {
    position: relative;
    width: 100%;
    height: 320px;
    left: unset;
    top: unset;
    bottom: unset
  }

  .hero-slider::after {
    background: linear-gradient(to bottom, transparent 60%, #fdf6f0 100%)
  }

  .hero-content {
    padding: 2rem 2rem 3rem;
    max-width: 100%
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .qv-panel {
    width: 100%;
    left: -100%;
  }
}

@media(max-width:600px) {
  .navbar {
    padding: 0 1rem
  }

  .search-bar {
    display: none
  }

  .hero {
    flex-direction: column;
    align-items: stretch;
    min-height: unset;
    background: var(--cream)
  }

  .hero-slider {
    position: relative;
    width: 100%;
    height: 260px;
    left: unset;
    top: unset;
    bottom: unset;
    border-radius: 0 0 24px 24px
  }

  .hero-slider::after {
    background: linear-gradient(to bottom, transparent 55%, var(--cream) 100%)
  }

  .hero-bg-circle {
    display: none
  }

  .hero-content {
    padding: 1.5rem 1.2rem 2.5rem
  }

  .prod-grid {
    grid-template-columns: 1fr 1fr;
    gap: .8rem
  }

  .prod-img {
    height: 155px
  }

  .prod-eye {
    font-size: .72rem;
    padding: .4rem .9rem;
    gap: 5px;
  }

  .prod-name {
    font-size: .8rem
  }

  .prod-info {
    padding: .7rem .8rem .9rem
  }

  .prod-price {
    font-size: .9rem
  }

  .add-cart-sm {
    font-size: .7rem;
    padding: .35rem .65rem
  }

  .feat-banner {
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    margin: 0 1rem
  }

  .feat-icons {
    display: none
  }

  .categories {
    padding: 3rem 1rem
  }

  .products-sec,
  .makeup-sec {
    padding: 3rem 1rem
  }

  .offers-strip {
    padding: 1.5rem 1rem
  }

  .offers-inner {
    grid-template-columns: 1fr 1fr;
    gap: .75rem
  }

  .offer-item {
    padding: 1rem .85rem;
    gap: .7rem;
    border-radius: 12px
  }

  .offer-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    border-radius: 10px;
    flex-shrink: 0
  }

  .offer-title {
    font-size: .82rem
  }

  .offer-desc {
    font-size: .7rem
  }

  .makeup-grid {
    grid-template-columns: 1fr 1fr;
    gap: .75rem
  }

  .makeup-card {
    min-height: 160px
  }

  .makeup-title {
    font-size: 1.1rem
  }

  .makeup-content {
    padding: 1rem
  }

  .makeup-tag {
    font-size: .65rem
  }

  .makeup-link {
    font-size: .75rem
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .cat-nav-prev {
    right: -14px
  }

  .cat-nav-next {
    left: -14px
  }

  /* QV panel full screen on mobile */
  .qv-panel {
    width: 100%;
    border-radius: 0;
  }

  .qv-body {
    padding: 1.2rem 1.2rem 1.8rem;
  }

  .qv-img-wrap {
    height: 270px;
  }

  .qv-name {
    font-size: 1.35rem;
  }

  .qv-price {
    font-size: 1.5rem;
  }
}


.wedding-section {
    padding: 80px 2.5rem;
    background: var(--cream);
    font-family: var(--font-ar);
    direction: rtl;
}

/* ── HEADER ── */
.ws-header { text-align: center; margin-bottom: 52px; }

.ws-eyebrow {
    display: block;
    font-family: var(--font-en);
    font-size: 14px;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.ws-title {
    font-family: var(--font-en);
    font-size: 36px;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.3;
    margin-bottom: 0;
}
.ws-title em { color: var(--rose); font-style: italic; }
.ws-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 16px auto 0;
}

/* ── GRID ── */
.ws-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ── CARD ── */
.ws-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--nude);
    transition: transform .4s cubic-bezier(.23,1,.32,1), box-shadow .4s, border-color .3s;
    text-decoration: none;
    display: block;
    color: inherit;
}
.ws-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(200,151,126,.15);
    border-color: var(--rose);
}

/* image */
.ws-card-img {
    height: 210px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ws-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.23,1,.32,1);
}
.ws-card:hover .ws-card-img img { transform: scale(1.06); }

.ws-img-rose   { background: linear-gradient(135deg, #fdf0eb, #f5e0d5); }
.ws-img-purple { background: linear-gradient(135deg, var(--goldfaint), #ede0d5); }
.ws-img-gold   { background: linear-gradient(135deg, var(--goldfaint), #f0e2cc); }

.ws-placeholder {
    font-size: 72px;
    line-height: 1;
    transition: transform .5s;
}
.ws-card:hover .ws-placeholder { transform: scale(1.08) rotate(-4deg); }

/* badge */
.ws-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--rosedark);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 13px;
    border-radius: 20px;
    border: 1px solid rgba(200,151,126,.3);
}
.ws-badge-gold  { color: var(--rosedark); border-color: rgba(201,169,110,.4); }
.ws-badge-plain { color: #7a6050; border-color: rgba(201,169,110,.3); }

/* body */
.ws-card-body { padding: 20px 18px 22px; }
.ws-card-body h3 {
    font-family: var(--font-en);
    font-size: 21px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.ws-card-body p {
    font-size: 13px;
    color: #8a7060;
    line-height: 1.8;
    margin-bottom: 14px;
}

/* pills */
.ws-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.ws-pill {
    font-size: 11px;
    font-weight: 700;
    color: var(--rosedark);
    background: var(--goldfaint);
    padding: 3px 11px;
    border-radius: 20px;
    border: 1px solid rgba(200,151,126,.2);
}

/* footer */
.ws-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.ws-price {
    font-family: var(--font-en);
    font-size: 15px;
    color: var(--gold);
    font-weight: 600;
}
.ws-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose), var(--rosedark));
    padding: 8px 16px;
    border-radius: 20px;
    transition: .3s;
    font-family: var(--font-ar);
    white-space: nowrap;
}
.ws-card:hover .ws-cta-btn {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(200,151,126,.45);
}

/* ── BANNER ── */
.ws-banner {
    max-width: 1100px;
    margin: 40px auto 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, #3d2820 60%, #2c2218 100%);
    border-radius: var(--radius);
    padding: 32px 36px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    text-decoration: none;
    transition: .3s;
}
.ws-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(42,31,26,.35);
}

.ws-banner-text { flex: 1; min-width: 220px; }
.ws-banner-eyebrow {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
}
.ws-banner-title {
    font-family: var(--font-en);
    font-size: 26px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 8px;
}
.ws-banner-title em { color: var(--gold); font-style: italic; }
.ws-banner-sub { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; }

.ws-banner-icons { display: flex; gap: 10px; }
.ws-ban-ic {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.ws-banner-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), #e0c070);
    color: var(--charcoal);
    font-weight: 700;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 50px;
    transition: .3s;
    font-family: var(--font-ar);
    white-space: nowrap;
}
.ws-banner:hover .ws-banner-btn {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(201,169,110,.5);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .wedding-section { padding: 60px 1.5rem; }
    .ws-grid { grid-template-columns: repeat(2, 1fr); }
    .ws-banner { padding: 26px 22px; }
    .ws-banner-icons { display: none; }
}
@media (max-width: 560px) {
    .ws-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .ws-title { font-size: 28px; }
    .ws-banner { flex-direction: column; text-align: center; }
    .ws-banner-btn { width: 100%; justify-content: center; }
}



/* ═══ PAYMENT METHODS ═══ */
.footer-payments {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.payments-title {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.payments-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.pay-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, background 0.2s ease;
    filter: brightness(0.9) saturate(0.85);
}

.pay-img:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    filter: brightness(1) saturate(1);
}

@media (max-width: 480px) {
    .pay-img {
        height: 28px;
        padding: 5px 9px;
    }

    .payments-grid {
        gap: 9px;
    }
}


/* WhatsApp Floating Button */
.wa-float {
    position: fixed;
    bottom: 20px;
    left: 20px; /* عشان عربي */
    background: linear-gradient(135deg, #25d366, #1ebe5d);
    color: #fff;
    border-radius: 50px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* الأيقونة */
.wa-float i {
    font-size: 22px;
}

/* hover */
.wa-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* النص يختفي في الموبايل */
@media(max-width:600px){
    .wa-text {
        display: none;
    }

    .wa-float {
        padding: 14px;
        border-radius: 50%;
    }
}