/* ============================================================
   VER LUXURY BRAND — OLIVE GREEN EDITION
   Palette: Deep Olive, Warm Champagne, Ivory, Antique Gold
   Aesthetic: Minimal · Elegant · Feminine · Luxury
   ============================================================ */
:root {
  /* — Logo-derived palette: Deep Teal bg + Copper/Bronze brand — */
  --olive:        #2C6B62;   /* teal-green from logo bg */
  --olive-deep:   #1A4A43;   /* darker teal */
  --olive-mid:    #3D7D73;   /* mid teal */
  --olive-light:  #5A9E93;   /* light teal */
  --olive-mist:   #90C4BC;   /* mist teal */
  --gold:         #B5622A;   /* copper/bronze from logo mark */
  --gold-light:   #D4895A;   /* lighter copper */
  --champagne:    #F5EDE4;   /* warm ivory */
  --ivory:        #F9F5F0;
  --ivory-dark:   #EFE7DC;
  --dark:         #0F2A26;   /* very dark teal */
  --text:         #1A2E2B;
  --text-soft:    #2E4C47;
  --text-muted:   #5A7A75;
  --white:        #FFFFFF;
  --line:         rgba(44,107,98,0.15);
  --copper:       #B5622A;   /* alias for copper */
  --copper-light: #D4895A;
  --teal:         #2C6B62;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Tajawal', sans-serif;
  font-weight: 400;
  background: var(--ivory);
  color: var(--text);
  overflow-x: hidden;
  direction: rtl;
  cursor: default;
}

/* Custom cursor */
*, *::before, *::after { box-sizing: border-box; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--olive-mist); }

/* ── TYPOGRAPHY ── */
.font-display { font-family: 'Amiri', serif; }

/* ── PAGE LOADER ── */
#loader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 32px;
  transition: opacity 1s ease, visibility 1s ease;
}
#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.loader-logo-svg {
  width: 90px; height: 90px; object-fit: contain;
  animation: loaderPulse 2s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%,100% { opacity: 0.3; transform: scale(0.96); }
  50%      { opacity: 1;   transform: scale(1); }
}
.loader-text {
  font-family: 'Amiri', serif;
  font-size: 13px;
  letter-spacing: 8px;
  color: var(--olive-mist);
  text-transform: uppercase;
}
.loader-line {
  width: 180px; height: 1px;
  background: rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
}
.loader-line::after {
  content: '';
  position: absolute; inset-block: 0; right: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: lineSlide 2s ease forwards;
}
@keyframes lineSlide { to { right: -100%; } }

/* ── TOP BAR ── */
.topbar {
  background: var(--olive-deep);
  color: rgba(255,255,255,0.93);
  padding: 9px 60px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; letter-spacing: 0.3px;
  font-weight: 300;
}
.topbar a { color: inherit; text-decoration: none; display: flex; align-items: center; gap: 7px; transition: color 0.3s; }
.topbar a:hover { color: var(--gold-light); }
.topbar-left, .topbar-right { display: flex; gap: 24px; align-items: center; }

/* ── NAVBAR ── */
.navbar {
  background: rgba(248,244,238,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 900;
  height: 80px;
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(52,59,45,0.08); }

.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.nav-logo-svg { width: 46px; height: 46px; object-fit: contain; transition: transform 0.4s ease; }
.nav-logo:hover .nav-logo-svg { transform: scale(1.05) rotate(-2deg); }
.nav-logo-text {
  font-family: 'Amiri', serif;
  font-size: 26px;
  color: var(--olive-deep);
  letter-spacing: 3px;
}

.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links li a {
  display: block; padding: 0 20px; line-height: 80px;
  color: var(--olive-deep); font-size: 15px; font-weight: 700;
  text-decoration: none; letter-spacing: 0.5px;
  position: relative; transition: color 0.3s;
}
.nav-links li a::after {
  content: ''; position: absolute;
  bottom: 0; right: 20px; left: 20px; height: 2px;
  background: var(--olive);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s ease;
}
.nav-links li a:hover { color: var(--copper); }
.nav-links li a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-logo-text { font-weight: 800; letter-spacing: 4px; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-icon-btn {
  width: 38px; height: 38px; border: none; background: transparent;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.3s, transform 0.2s;
  color: var(--text-soft);
}
.nav-icon-btn:hover { background: var(--champagne); color: var(--olive); transform: scale(1.08); }
.nav-icon-btn svg { width: 18px; height: 18px; }

/* ── HERO SLIDER ── */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  overflow: hidden;
}

/* Slide 0 — Brand Intro */
.slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}
.slide.active { opacity: 1; visibility: visible; }

.slide-0 {
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center; gap: 0;
  overflow: hidden;
}
.slide-0-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(74,82,64,0.25) 0%, transparent 70%);
}
/* Subtle noise texture */
.slide-0-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-brand-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  animation: heroBrandIn 1.4s cubic-bezier(0.22,1,0.36,1) 0.3s both;
}
@keyframes heroBrandIn {
  from { opacity: 0; transform: translateY(50px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-brand-logo {
  width: 160px; height: 160px; object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(184,150,110,0.4));
  animation: logoGlow 4s ease-in-out infinite;
}
@keyframes logoGlow {
  0%,100% { filter: drop-shadow(0 0 20px rgba(184,150,110,0.2)); }
  50%      { filter: drop-shadow(0 0 50px rgba(184,150,110,0.45)); }
}
.hero-tag {
  font-size: 11px; letter-spacing: 6px; text-transform: uppercase;
  color: var(--gold); font-weight: 400;
}
.hero-title {
  font-family: 'Amiri', serif;
  font-size: clamp(46px, 7vw, 88px);
  color: var(--white); line-height: 1.15;
  background: linear-gradient(135deg, #fff 20%, var(--gold-light) 60%, #fff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 17px; color: rgba(255,255,255,0.92); font-weight: 400;
  max-width: 480px; line-height: 2; letter-spacing: 0.3px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Slide 1..N — Image slides */
.slide-img {
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
}
.slide-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,31,24,0.75) 0%, rgba(28,31,24,0.1) 60%, transparent 100%);
}
.slide-caption {
  position: relative; z-index: 2;
  padding: 60px; max-width: 600px;
  transform: translateY(20px); opacity: 0;
  transition: transform 0.8s ease 0.4s, opacity 0.8s ease 0.4s;
}
.slide.active .slide-caption { transform: translateY(0); opacity: 1; }
.slide-caption-tag {
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; display: block;
}
.slide-caption h2 {
  font-family: 'Amiri', serif; font-size: clamp(38px, 5vw, 62px);
  color: var(--white); line-height: 1.2; margin-bottom: 16px; font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.slide-caption p { color: rgba(255,255,255,0.94); font-size: 16px; line-height: 1.9; margin-bottom: 28px; font-weight: 400; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }

/* Slide bg — real images */
.slide-1 { background: url('Image/clothes/img3.png') center/cover no-repeat; }
.slide-2 { background: url('Image/perfum/img1.png') center/cover no-repeat; }
.slide-3 { background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&q=80') center/cover no-repeat; }

/* Slide visual content */
.slide-visual {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.slide-visual-inner {
  display: flex; gap: 20px; align-items: center;
  opacity: 0;
}

/* Slider controls */
.slider-controls {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; align-items: center; gap: 12px;
}
.slider-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer; transition: all 0.4s;
}
.slider-dot.active { background: var(--gold); width: 28px; border-radius: 3px; }

.slider-arrows {
  position: absolute; top: 50%; z-index: 10;
  display: flex; gap: 0; width: 100%;
  pointer-events: none;
}
.slider-arrow {
  pointer-events: all;
  position: absolute;
  top: -20px;
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  cursor: pointer; color: white;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; border-radius: 50%;
}
.slider-arrow:hover { background: var(--olive); border-color: var(--olive); transform: scale(1.1); }
.slider-arrow.prev { right: 30px; }
.slider-arrow.next { left: 30px; }
.slider-arrow svg { width: 18px; height: 18px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 34px; font-family: 'Tajawal', sans-serif;
  font-size: 14px; font-weight: 400; letter-spacing: 0.5px;
  cursor: pointer; text-decoration: none; border: none;
  transition: all 0.35s ease; position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(110%); transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(0); }

.btn-solid {
  background: var(--olive);
  color: var(--white);
}
.btn-solid:hover { background: var(--olive-deep); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(52,59,45,0.3); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-olive-ghost {
  background: transparent;
  color: var(--olive);
  border: 1px solid var(--olive);
}
.btn-olive-ghost:hover { background: var(--olive); color: white; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(74,82,64,0.2); }

/* ── SECTION WRAPPER ── */
.section { padding: 110px 60px; }
.section-sm { padding: 80px 60px; }
.max-w { max-width: 1200px; margin: 0 auto; }

/* ── ORNAMENT / DIVIDER ── */
.ornament {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 20px;
}
.ornament-line { flex: 0 0 60px; height: 1px; background: var(--olive-mist); opacity: 0.5; }
.ornament-icon { color: var(--olive-mist); }
.ornament-icon svg { width: 22px; height: 22px; display: block; }

/* ── SECTION HEADER ── */
.sec-header { text-align: center; margin-bottom: 70px; }
.sec-header h2 {
  font-family: 'Amiri', serif; font-size: clamp(36px, 4vw, 54px);
  color: var(--olive-deep); margin-bottom: 16px; font-weight: 700;
}
.sec-header p {
  color: var(--text-soft); font-size: 16.5px; line-height: 2;
  max-width: 620px; margin: 0 auto; font-weight: 400;
}

/* ── FEATURES ── */
.features-bg { background: var(--ivory); }
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.feat-card {
  background: var(--white); padding: 50px 32px; text-align: center;
  position: relative; overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.feat-card::after {
  content: ''; position: absolute; bottom: 0; right: 0; left: 0; height: 4px;
  background: #2ecc71; transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s ease;
  box-shadow: 0 0 10px rgba(46,204,113,0.4);
}
.feat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(52,59,45,0.1); z-index: 1; }
.feat-card:hover::after { transform: scaleX(1); transform-origin: left; }
.feat-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--champagne); margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s ease;
}
.feat-icon svg { width: 30px; height: 30px; color: var(--olive); transition: color 0.4s; }
.feat-card:hover .feat-icon { background: var(--olive); }
.feat-card:hover .feat-icon svg { color: white; }
.feat-card h3 {
  font-family: 'Amiri', serif; font-size: 24px;
  color: var(--olive-deep); margin-bottom: 12px; font-weight: 700;
}
.feat-card p { color: var(--text-soft); font-size: 15px; line-height: 2; font-weight: 400; }

/* ── COLLECTIONS ── */
.collections-bg { background: var(--champagne); }
.collections-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
}
.col-card {
  position: relative; height: 580px; overflow: hidden; cursor: pointer;
}
.col-card-bg {
  position: absolute; inset: 0;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.col-card:hover .col-card-bg { transform: scale(1.06); }
.col-abaya .col-card-bg { background: url('Image/clothes/img3.png') center/cover no-repeat; }
.col-perfume .col-card-bg { background: url('Image/perfum/img1.png') center/cover no-repeat; }

/* Decorative SVG illustration inside cards */
.col-illustration {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.12; transition: opacity 0.5s;
}
.col-card:hover .col-illustration { opacity: 0.08; }
.col-illustration svg { width: 280px; height: 280px; color: var(--gold-light); }

.col-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,31,24,0.88) 0%, rgba(28,31,24,0.05) 55%);
}
.col-badge {
  position: absolute; top: 0; right: 0;
  background: var(--olive); color: white;
  padding: 14px 28px; font-family: 'Amiri', serif; font-size: 18px;
  letter-spacing: 1px;
}
.col-content {
  position: absolute; bottom: 0; right: 0; left: 0;
  padding: 44px 44px;
}
.col-content-tag {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 10px;
}
.col-content h3 {
  font-family: 'Amiri', serif; font-size: 36px; color: white; margin-bottom: 12px;
  transform: translateY(8px); transition: transform 0.4s;
}
.col-card:hover .col-content h3 { transform: translateY(0); }
.col-content p {
  color: rgba(255,255,255,0.9); font-size: 15px; line-height: 1.9; font-weight: 400;
  max-width: 380px; margin-bottom: 22px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s 0.1s, transform 0.4s 0.1s;
}
.col-card:hover .col-content p { opacity: 1; transform: translateY(0); }
.col-link {
  color: var(--gold); font-size: 13px; text-decoration: none;
  letter-spacing: 1px; display: inline-flex; align-items: center; gap: 8px;
  opacity: 0; transition: opacity 0.4s 0.15s;
}
.col-link svg { width: 14px; height: 14px; }
.col-card:hover .col-link { opacity: 1; }
.col-link:hover { color: white; }

/* ── ABOUT ── */
.about-bg { background: var(--ivory); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  width: 100%; height: 520px; border-radius: 2px; overflow: hidden;
  position: relative;
  background: linear-gradient(145deg, var(--olive-deep), var(--olive-mid));
  display: flex; align-items: center; justify-content: center;
}
.about-img-main::before {
  content: ''; position: absolute;
  top: 20px; right: -20px; bottom: -20px; left: 20px;
  border: 1px solid var(--olive-mist); border-radius: 2px;
  opacity: 0.4; pointer-events: none; z-index: -1;
}
.about-img-svg { width: 200px; opacity: 0.88; object-fit: contain; }
.about-stats {
  position: absolute; bottom: -24px; left: -30px;
  background: var(--olive-deep);
  padding: 28px 36px; display: flex; gap: 32px;
  box-shadow: 0 20px 50px rgba(52,59,45,0.25);
}
.stat-n { font-family: 'Amiri', serif; font-size: 40px; color: var(--gold); display: block; line-height: 1; }
.stat-l { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; margin-top: 4px; display: block; }

.about-text .sec-header { text-align: right; margin-bottom: 0; }
.about-text .sec-header .ornament { justify-content: flex-start; margin-bottom: 16px; }
.about-gold-bar { width: 48px; height: 2px; background: var(--gold); margin-bottom: 28px; }
.about-text p { color: var(--text); font-size: 15.5px; line-height: 2.1; font-weight: 400; margin-bottom: 18px; }
.about-features { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 36px; }
.about-feat-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; background: var(--champagne); border-right: 3px solid var(--olive);
}
.about-feat-item svg { width: 18px; height: 18px; color: var(--olive); flex-shrink: 0; }
.about-feat-item span { font-size: 14.5px; color: var(--text); font-weight: 500; }

/* ── CTA BANNER ── */
.cta-bg {
  background: var(--olive-deep);
  position: relative; overflow: hidden; text-align: center;
}
.cta-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(184,150,110,0.08) 0%, transparent 70%);
}
.cta-bg::after {
  content: 'VER'; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Amiri', serif; font-size: 320px;
  color: rgba(255,255,255,0.02); letter-spacing: 20px; white-space: nowrap;
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 2; max-width: 680px; margin: 0 auto;
}
.cta-inner .ornament .ornament-line { background: var(--gold); opacity: 0.4; }
.cta-inner .ornament .ornament-icon { color: var(--gold); }
.cta-inner h2 {
  font-family: 'Amiri', serif; font-size: clamp(38px, 5vw, 60px);
  color: var(--white); margin-bottom: 20px;
}
.cta-inner p { color: rgba(255,255,255,0.90); font-size: 16.5px; line-height: 2; font-weight: 400; margin-bottom: 40px; }

/* ── TESTIMONIALS ── */
.testi-bg { background: var(--ivory-dark); }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.testi-imgs { position: relative; height: 480px; }
.timg {
  position: absolute; overflow: hidden;
  background: linear-gradient(135deg, var(--olive-deep), var(--olive-mid));
  display: flex; align-items: center; justify-content: center;
}
.timg svg { opacity: 0.2; color: var(--gold-light); }
.timg-1 { width: 200px; height: 250px; top: 0; right: 0; border-radius: 100px 4px 4px 4px; animation: tf1 5s ease-in-out infinite; }
.timg-2 { width: 175px; height: 210px; top: 50px; right: 220px; border-radius: 4px 100px 4px 4px; background: linear-gradient(135deg, #2A3020, #4A5A40); animation: tf2 5s ease-in-out 1.2s infinite; }
.timg-3 { width: 280px; height: 175px; bottom: 0; right: 40px; border-radius: 4px 4px 100px 4px; background: linear-gradient(135deg, #1A2018, #3A4830); animation: tf3 5s ease-in-out 2.4s infinite; }
@keyframes tf1 { 0%,100% { transform: translateY(0); }   50% { transform: translateY(-14px); } }
@keyframes tf2 { 0%,100% { transform: translateY(0); }   50% { transform: translateY(-8px); } }
@keyframes tf3 { 0%,100% { transform: translateY(0); }   50% { transform: translateY(-11px); } }

.testi-content h2 { font-family:'Amiri',serif; font-size:38px; color:var(--olive-deep); margin-bottom:36px; }
.tcard {
  background: var(--white); padding: 32px 32px 32px 28px;
  border-right: 3px solid var(--olive); margin-bottom: 20px;
  transition: transform 0.35s, box-shadow 0.35s;
}
.tcard:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 50px rgba(44,107,98,0.18); }
.tcard-quote { font-size: 44px; font-family: Georgia,serif; color: var(--olive); opacity: 0.15; line-height: 1; margin-bottom: 8px; }
.tcard-stars { color: #FFD700; font-size: 16px; margin-bottom: 12px; display: flex; gap: 4px; filter: drop-shadow(0 0 4px rgba(255,215,0,0.6)); }
.tcard-stars svg { width: 16px; height: 16px; fill: #FFD700; }
.tcard-text { color: var(--text); font-size: 15px; line-height: 2; font-weight: 400; }

/* ── PRODUCTS SECTION ── */
.products-bg { background: var(--ivory); }
.products-tabs { display: flex; gap: 0; margin-bottom: 48px; border-bottom: 2px solid var(--line); }
.prod-tab {
  padding: 14px 36px; font-size: 16px; font-weight: 700; font-family: 'Amiri', serif;
  cursor: pointer; border: none; background: transparent; color: var(--text-muted);
  position: relative; transition: color 0.3s; letter-spacing: 0.5px;
}
.prod-tab::after {
  content: ''; position: absolute; bottom: -2px; right: 0; left: 0; height: 3px;
  background: var(--copper); transform: scaleX(0); transition: transform 0.3s;
}
.prod-tab.active { color: var(--olive-deep); }
.prod-tab.active::after { transform: scaleX(1); }
.prod-tab:hover { color: var(--copper); }
.prod-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.prod-panel { display: none; }
.prod-panel.active { display: block; }
.prod-card {
  background: var(--white); overflow: hidden;
  box-shadow: 0 2px 20px rgba(26,74,67,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer; position: relative;
}
.prod-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(26,74,67,0.15); }
.prod-img {
  width: 100%; height: 320px; object-fit: cover;
  display: block; transition: transform 0.6s ease;
}
.prod-card:hover .prod-img { transform: scale(1.05); }
.prod-img-wrap { overflow: hidden; position: relative; }
.prod-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--copper); color: white;
  padding: 5px 14px; font-size: 11px; font-weight: 700; letter-spacing: 1px;
}
.prod-body { padding: 22px 24px; }
.prod-body h4 { font-family:'Amiri',serif; font-size:20px; color:var(--olive-deep); margin-bottom:6px; font-weight:700; }
.prod-body p { font-size:13.5px; color:var(--text-muted); line-height:1.8; margin-bottom:14px; }
.prod-footer { display:flex; align-items:center; justify-content:center; }
.prod-price { display: none; }
.prod-btn {
  padding: 8px 20px; background: var(--olive); color: white;
  border: none; font-family:'Tajawal',sans-serif; font-size:13px; font-weight:600;
  cursor: pointer; transition: background 0.3s;
}
.prod-btn:hover { background: var(--copper); }

/* ── GALLERY STRIP ── */
.gallery-strip { background: var(--dark); overflow: hidden; padding: 0; }
.gallery-track-wrap { display: flex; overflow: hidden; }
.gallery-track {
  display: flex; gap: 4px; flex-shrink: 0;
  will-change: transform;
}
.g-item {
  width: 360px; height: 270px; flex-shrink: 0;
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--olive-deep);
  display: flex; align-items: center; justify-content: center;
}
.g-item img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; }
.g-item:hover img { transform: scale(1.08); }
.g-item:nth-child(2n)   { background: linear-gradient(135deg, #0f2a26, #1a4a43); }
.g-item:nth-child(3n)   { background: linear-gradient(135deg, #1a2e2b, #2c4e47); }
.g-item:nth-child(4n)   { background: linear-gradient(135deg, #0d2420, #1a3a35); }
.g-item-inner { opacity: 0.2; color: var(--gold-light); }
.g-item-inner svg { width: 80px; height: 80px; }
.g-item-ov {
  position: absolute; inset: 0;
  background: rgba(74,82,64,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s;
}
.g-item-ov svg { width: 28px; height: 28px; color: white; }
.g-item:hover .g-item-ov { opacity: 1; }

/* ── CONTACT ── */
.contact-bg { background: var(--champagne); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-label { font-size: 13px; font-weight: 500; color: var(--olive); letter-spacing: 0.3px; margin-bottom: 8px; display: block; }
.contact-input, .contact-textarea {
  width: 100%; padding: 14px 18px; background: var(--white);
  border: 1px solid transparent; font-family: 'Tajawal', sans-serif;
  font-size: 14.5px; color: var(--text); direction: rtl; font-weight: 300;
  outline: none; transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-input:focus, .contact-textarea:focus {
  border-color: var(--olive); box-shadow: 0 0 0 3px rgba(74,82,64,0.08);
}
.contact-textarea { height: 130px; resize: vertical; }
.contact-group { margin-bottom: 22px; }
.ci-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 22px; background: var(--white);
  border-right: 3px solid transparent;
  margin-bottom: 14px; transition: all 0.3s;
}
.ci-row:hover { border-right-color: var(--olive); transform: translateX(-4px); box-shadow: 0 6px 20px rgba(52,59,45,0.08); }
.ci-icon-wrap {
  width: 46px; height: 46px; background: var(--champagne); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-icon-wrap svg { width: 18px; height: 18px; color: var(--olive); }
.ci-body h4 { font-size: 14px; font-weight: 500; color: var(--olive-deep); margin-bottom: 5px; }
.ci-body a { font-size: 13.5px; color: var(--text-soft); text-decoration: none; display: block; line-height: 1.7; transition: color 0.3s; font-weight: 300; }
.ci-body a:hover { color: var(--olive); }

/* ── FOOTER ── */
.footer { background: var(--olive-deep); color: rgba(255,255,255,0.7); padding: 80px 60px 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto 60px; }
.footer-brand-logo { width: 70px; margin-bottom: 20px; display: block; object-fit: contain; }
.footer-brand p { font-size: 14px; line-height: 2; font-weight: 400; margin-bottom: 24px; color: rgba(255,255,255,0.85); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); text-decoration: none;
  transition: all 0.35s;
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--olive-light); border-color: var(--olive-light); color: white; transform: translateY(-3px); }
.footer-col h4 {
  font-family: 'Amiri', serif; font-size: 20px; color: white;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.82); text-decoration: none; font-size: 14px;
  font-weight: 400; display: flex; align-items: center; gap: 8px;
  transition: all 0.3s;
}
.footer-links a svg { width: 12px; height: 12px; opacity: 0; transition: opacity 0.3s; }
.footer-links a:hover { color: var(--gold-light); padding-right: 4px; }
.footer-links a:hover svg { opacity: 1; }
.footer-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.footer-g-item {
  height: 80px; background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s; cursor: pointer;
}
.footer-g-item:last-child { grid-column: span 2; height: 65px; }
.footer-g-item:hover { background: rgba(184,150,110,0.15); }
.footer-g-item svg { width: 32px; height: 32px; color: var(--gold); opacity: 0.5; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px; text-align: center;
  font-size: 13px; color: rgba(255,255,255,0.35); font-weight: 300;
}

/* ── PAGE HERO BANNER ── */
.page-banner {
  height: 320px; background: var(--olive-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden; text-align: center;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,150,110,0.12) 0%, transparent 65%);
}
.page-banner h1 { font-family:'Amiri',serif; font-size:58px; color:white; position:relative; z-index:1; }
.breadcrumb {
  display: flex; gap: 10px; align-items: center;
  color: rgba(255,255,255,0.5); font-size: 14px; z-index:1; margin-top:10px;
}
.breadcrumb a { color:rgba(255,255,255,0.5); text-decoration:none; transition:color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb svg { width:12px; height:12px; }

/* ── SCROLL REVEAL ── */
.reveal, .reveal-l, .reveal-r {
  opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal   { transform: translateY(35px); }
.reveal-l { transform: translateX(-35px); }
.reveal-r { transform: translateX(35px); }
.revealed { opacity: 1 !important; transform: none !important; }

.stagger > * { opacity: 0; transform: translateY(25px); transition: opacity 0.6s ease, transform 0.6s ease; }
.stagger.revealed > *:nth-child(1) { opacity:1; transform:none; transition-delay:0.05s; }
.stagger.revealed > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.15s; }
.stagger.revealed > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.25s; }
.stagger.revealed > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.35s; }

/* ── RESPONSIVE ── */
/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 38px; height: 38px;
  background: transparent; border: none; cursor: pointer;
  padding: 4px; border-radius: 6px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: var(--champagne); }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--olive-deep); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV DRAWER ── */
.mobile-nav {
  position: fixed; top: 80px; right: 0; left: 0;
  background: rgba(248,244,238,0.98);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  z-index: 850;
  border-bottom: 2px solid var(--line);
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { max-height: 400px; }
.mobile-nav ul { list-style: none; padding: 12px 0 20px; }
.mobile-nav ul li a {
  display: block; padding: 14px 28px;
  font-size: 16px; font-weight: 700;
  color: var(--olive-deep); text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, background 0.2s;
}
.mobile-nav ul li:last-child a { border-bottom: none; }
.mobile-nav ul li a:hover { color: var(--copper); background: var(--ivory); }
.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 840;
  background: rgba(15,42,38,0.35);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }

/* ── RESPONSIVE: TABLET 1024px ── */
@media (max-width: 1024px) {
  .topbar, .navbar { padding-right: 30px; padding-left: 30px; }
  .section { padding: 80px 30px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .collections-grid { grid-template-columns: 1fr; }
  .col-card { height: 420px; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .prod-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .prod-img { height: 260px; }
  .testi-imgs { height: 360px; }
}

/* ── RESPONSIVE: MOBILE 768px ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .navbar { padding: 0 20px; height: 68px; }
  .nav-logo-text { font-size: 22px; }
  .nav-logo-svg { width: 38px; height: 38px; }
  /* topbar: icons-only compact row */
  .topbar {
    padding: 8px 16px;
    flex-wrap: wrap; gap: 10px;
    font-size: 11.5px;
  }
  .topbar-left, .topbar-right { gap: 14px; }
  .tb-label { display: none; }
  /* hero */
  .hero { height: 85vh; min-height: 520px; }
  .hero-title { font-size: clamp(32px, 8vw, 52px); }
  .hero-ctas { flex-direction: column; align-items: center; gap: 12px; }
  .hero-ctas .btn { width: 220px; justify-content: center; }
  .hero-brand-logo { width: 110px; height: 110px; }
  /* general sections */
  .section { padding: 70px 20px; }
  .section-sm { padding: 50px 20px; }
  .sec-header { margin-bottom: 50px; }
  .sec-header h2 { font-size: clamp(28px, 6vw, 40px); }
  /* features */
  .features-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .feat-card { padding: 36px 20px; }
  /* collections */
  .col-card { height: 360px; }
  .col-content { padding: 28px 28px; }
  /* about */
  .about-img-main { height: 380px; }
  .about-stats { padding: 18px 22px; gap: 20px; bottom: -16px; left: -14px; }
  .stat-n { font-size: 30px; }
  /* testi */
  .testi-imgs { display: none; }
  .testi-content { width: 100%; }
  /* footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  /* products */
  .prod-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .prod-img { height: 220px; }
}

/* ── RESPONSIVE: SMALL MOBILE 480px ── */
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; gap: 16px; }
  .prod-img { height: 280px; }
  .prod-body { padding: 18px; }
  .prod-body h4 { font-size: 18px; }
  .products-tabs { justify-content: center; }
  .prod-tab { padding: 12px 24px; font-size: 15px; }
  .tcard { padding: 24px 20px; }
  .about-stats { flex-direction: column; gap: 12px; padding: 16px 20px; left: 0; bottom: -10px; }
  .about-img-main { height: 300px; }
  .col-card { height: 300px; }
  .topbar-right { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .navbar { height: 62px; }
  .mobile-nav { top: 62px; }
}
