/* ════════════════════════════════════════════════════════
   لمسة — متجر إكسسوارات أنيق
   ════════════════════════════════════════════════════════ */

:root{
  /* ألوان وردية ناعمة */
  --bg:#FFFEFC;
  --bg-2:#FDF6F3;
  --bg-3:#FAEEE8;
  --bg-cream:#FFF5F0;
  --bg-card:#FFFFFF;

  --rose:#D4877F;
  --rose-dark:#B66C66;
  --rose-light:#E8B5AE;
  --rose-soft:#FBE6E2;
  --rose-pale:#FDF2EE;

  --rose-gold:#C9A179;
  --rose-gold-dark:#A88660;
  --rose-gold-light:#E5C9A8;

  --primary:#2A1F22;
  --text:#3D2D30;
  --text-2:#6B5559;
  --text-3:#9B848A;
  --text-4:#C9B5BA;

  --border:#F0E0DA;
  --border-2:#E0CBC4;
  --border-soft:#F8EDE8;

  --shadow-sm:0 2px 8px rgba(212,135,127,0.08);
  --shadow:0 12px 32px rgba(212,135,127,0.12);
  --shadow-lg:0 24px 60px rgba(212,135,127,0.18);

  --font:'Tajawal',sans-serif;
  --font-display:'Thmanyah Display','Tajawal',serif;
  --font-logo:'Thmanyah Display','Tajawal',serif;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:var(--font);
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
  font-size:15px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit}
a{color:inherit;text-decoration:none}

.container{max-width:1300px;margin:auto;padding:0 32px}
.text-rose{color:var(--rose)}
.text-rose-light{color:var(--rose-light)}

/* ════════════════════════════════════════════════════════
   الأزرار
   ════════════════════════════════════════════════════════ */
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 36px;
  background:linear-gradient(135deg,var(--rose) 0%,var(--rose-gold) 100%);
  color:#fff;
  font-size:14px;
  font-weight:700;
  letter-spacing:0.5px;
  border-radius:50px;
  cursor:pointer;
  transition:all 0.3s;
  font-family:inherit;
  box-shadow:0 8px 20px rgba(212,135,127,0.25);
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(212,135,127,0.35);
}
.btn-primary:disabled{opacity:0.7;cursor:default;transform:none}

.btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 32px;
  background:transparent;
  color:var(--rose);
  font-size:14px;
  font-weight:700;
  border:1.5px solid var(--rose);
  border-radius:50px;
  cursor:pointer;
  transition:all 0.3s;
  font-family:inherit;
}
.btn-outline:hover{
  background:var(--rose);
  color:#fff;
}

.btn-text{
  display:inline-flex;
  align-items:center;
  font-size:14px;
  font-weight:700;
  color:var(--rose);
  transition:opacity 0.2s;
  cursor:pointer;
}
.btn-text:hover{opacity:0.7}

/* ════════════════════════════════════════════════════════
   الشريط العلوي
   ════════════════════════════════════════════════════════ */
.topbar{
  background:linear-gradient(90deg,var(--rose) 0%,var(--rose-gold) 100%);
  color:#fff;
  padding:9px 0;
  font-size:13px;
  text-align:center;
  font-weight:500;
  letter-spacing:0.3px;
}

/* ════════════════════════════════════════════════════════
   الهيدر
   ════════════════════════════════════════════════════════ */
header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,254,252,0.96);
  backdrop-filter:blur(15px);
  border-bottom:1px solid var(--border-soft);
  transition:box-shadow 0.3s;
}
header.scrolled{box-shadow:var(--shadow-sm)}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:16px 32px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-icon{
  width:42px;
  height:42px;
  color:var(--rose);
  flex-shrink:0;
}
.brand-icon svg{width:100%;height:100%}
.brand-text{display:flex;flex-direction:column;line-height:1.1}
.brand-name{
  font-family:var(--font-logo);
  font-size:24px;
  font-weight:700;
  color:var(--rose);
  letter-spacing:0.3px;
}
.brand-tag{
  font-size:9px;
  letter-spacing:4px;
  color:var(--text-4);
  margin-top:3px;
  font-weight:600;
}

.main-nav{display:flex;gap:4px}
.main-nav a{
  padding:10px 14px;
  font-size:14px;
  font-weight:600;
  color:var(--text-2);
  transition:color 0.2s;
  position:relative;
}
.main-nav a:hover{color:var(--rose)}
.main-nav a::after{
  content:'';
  position:absolute;
  bottom:4px;
  right:50%;
  width:0;
  height:2px;
  background:var(--rose);
  transition:all 0.3s;
  transform:translateX(50%);
}
.main-nav a:hover::after{width:60%}

.header-actions{display:flex;gap:6px;align-items:center}
.icon-btn{
  width:40px;
  height:40px;
  border-radius:50%;
  background:transparent;
  color:var(--text-2);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:all 0.2s;
  position:relative;
}
.icon-btn:hover{
  background:var(--rose-pale);
  color:var(--rose);
}
.icon-btn svg{width:20px;height:20px}
.cart-btn{position:relative}
.cart-badge{
  position:absolute;
  top:2px;
  right:2px;
  width:18px;
  height:18px;
  background:var(--rose);
  color:#fff;
  border-radius:50%;
  font-size:10px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
}
[dir="rtl"] .cart-badge{right:auto;left:2px}

.menu-toggle{
  display:none;
  width:42px;
  height:42px;
  background:var(--rose-pale);
  color:var(--rose);
  font-size:22px;
  border-radius:50%;
  cursor:pointer;
}

.mobile-menu{
  position:absolute;
  top:100%;
  right:0;
  left:0;
  background:#fff;
  padding:20px 32px;
  box-shadow:var(--shadow);
  display:none;
  flex-direction:column;
  gap:6px;
  border-bottom:1px solid var(--border);
}
.mobile-menu.open{display:flex}
.mobile-menu a{
  padding:14px 0;
  border-bottom:1px solid var(--border-soft);
  color:var(--text-2);
  font-weight:600;
}
.mobile-menu a:last-child{border:none}

/* ════════════════════════════════════════════════════════
   الهيرو
   ════════════════════════════════════════════════════════ */
.hero{
  position:relative;
  padding:80px 0 100px;
  background:linear-gradient(135deg,var(--bg-cream) 0%,var(--bg) 60%);
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute;
  top:-150px;
  left:-150px;
  width:500px;
  height:500px;
  background:radial-gradient(circle,var(--rose-soft) 0%,transparent 70%);
  z-index:0;
}
.hero::after{
  content:'';
  position:absolute;
  bottom:-200px;
  right:-200px;
  width:600px;
  height:600px;
  background:radial-gradient(circle,rgba(229,201,168,0.3) 0%,transparent 70%);
  z-index:0;
}
.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:50px;
  align-items:center;
}
@media(max-width:1024px){
  .hero-grid{grid-template-columns:1fr;gap:60px;text-align:center}
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 18px;
  background:#fff;
  border:1px solid var(--rose-soft);
  border-radius:30px;
  font-size:12px;
  font-weight:600;
  color:var(--rose-dark);
  margin-bottom:28px;
  box-shadow:var(--shadow-sm);
}
.hero-badge .dot{
  width:7px;
  height:7px;
  background:var(--rose);
  border-radius:50%;
  animation:pulse 2s infinite;
}
@keyframes pulse{
  0%,100%{box-shadow:0 0 0 0 rgba(212,135,127,0.5)}
  70%{box-shadow:0 0 0 10px rgba(212,135,127,0)}
}

.hero-title{
  font-family:var(--font-display);
  font-size:clamp(38px,5.5vw,68px);
  font-weight:800;
  line-height:1.4;
  color:var(--primary);
  margin-bottom:24px;
}

.hero-desc{
  font-size:16px;
  line-height:1.95;
  color:var(--text-2);
  margin-bottom:36px;
  max-width:540px;
}
@media(max-width:1024px){
  .hero-desc{margin-left:auto;margin-right:auto}
}

.hero-actions{
  display:flex;
  gap:18px;
  align-items:center;
  margin-bottom:50px;
  flex-wrap:wrap;
}
@media(max-width:1024px){
  .hero-actions{justify-content:center}
}

.hero-trust{
  display:flex;
  align-items:center;
  gap:30px;
  padding-top:30px;
  border-top:1px solid var(--border);
}
@media(max-width:1024px){
  .hero-trust{justify-content:center}
}
@media(max-width:560px){
  .hero-trust{gap:20px;flex-wrap:wrap}
}
.trust-item{text-align:center}
.trust-num{
  font-family:var(--font-display);
  font-size:28px;
  font-weight:800;
  color:var(--rose);
  line-height:1;
  margin-bottom:6px;
}
.trust-label{
  font-size:12px;
  color:var(--text-3);
  font-weight:500;
}
.trust-divider{
  width:1px;
  height:36px;
  background:var(--border-2);
}

/* الصورة + البطاقات العائمة */
.hero-visual{
  position:relative;
  min-height:540px;
}
.hero-image-main{
  position:relative;
  aspect-ratio:0.95;
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.hero-image-main img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-deco-1{
  position:absolute;
  top:-30px;
  right:-30px;
  width:140px;
  height:140px;
  background:var(--rose-soft);
  border-radius:50%;
  z-index:-1;
}
.hero-deco-2{
  position:absolute;
  bottom:30px;
  left:-40px;
  width:100px;
  height:100px;
  background:rgba(229,201,168,0.4);
  border-radius:50%;
  z-index:-1;
}

.hero-card{
  position:absolute;
  background:#fff;
  border-radius:14px;
  padding:14px 18px;
  box-shadow:var(--shadow);
  display:flex;
  align-items:center;
  gap:12px;
  animation:floatCard 4s ease-in-out infinite;
}
@keyframes floatCard{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}
.hc-img{
  width:48px;
  height:48px;
  border-radius:10px;
  overflow:hidden;
  background:var(--bg-3);
  flex-shrink:0;
}
.hc-img img{width:100%;height:100%;object-fit:cover}
.hc-name{
  font-size:13px;
  font-weight:700;
  color:var(--text);
  margin-bottom:3px;
}
.hc-price{
  font-size:14px;
  color:var(--rose);
  font-weight:800;
}
.hero-card-price{
  bottom:60px;
  right:-30px;
  animation-delay:0s;
}
.hero-card-stars{
  top:50px;
  left:-20px;
  animation-delay:1.5s;
}
.hc-stars{
  font-size:14px;
  color:var(--rose-gold);
  letter-spacing:2px;
  margin-bottom:4px;
}
.hc-text{
  font-size:11px;
  color:var(--text-2);
  font-weight:500;
}
@media(max-width:560px){
  .hero-card-price{right:0}
  .hero-card-stars{left:0}
}

/* ════════════════════════════════════════════════════════
   شريط الميزات
   ════════════════════════════════════════════════════════ */
.features-strip{
  padding:60px 0;
  background:#fff;
  border-bottom:1px solid var(--border);
}
.features-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}
@media(max-width:900px){
  .features-grid{grid-template-columns:repeat(2,1fr);gap:24px}
}
@media(max-width:520px){
  .features-grid{grid-template-columns:1fr}
}
.fs-item{
  display:flex;
  align-items:center;
  gap:14px;
}
.fs-icon{
  width:54px;
  height:54px;
  border-radius:50%;
  background:var(--rose-pale);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  flex-shrink:0;
}
.fs-title{
  font-size:14px;
  font-weight:700;
  color:var(--text);
  margin-bottom:3px;
}
.fs-sub{
  font-size:12px;
  color:var(--text-3);
}

/* ════════════════════════════════════════════════════════
   عناوين الأقسام
   ════════════════════════════════════════════════════════ */
.section-eyebrow{
  display:inline-block;
  padding:6px 18px;
  background:var(--rose-soft);
  color:var(--rose-dark);
  font-size:12px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  border-radius:50px;
  margin-bottom:18px;
}
.section-eyebrow.light{
  background:rgba(255,255,255,0.2);
  color:#fff;
  border:1px solid rgba(255,255,255,0.3);
  backdrop-filter:blur(8px);
}

.section-title{
  font-family:var(--font-display);
  font-size:clamp(30px,4.2vw,50px);
  font-weight:800;
  line-height:1.4;
  color:var(--primary);
  margin-bottom:18px;
}
.section-title.light{color:#fff}

.section-sub{
  font-size:15px;
  line-height:1.9;
  color:var(--text-3);
  max-width:620px;
  margin:0 auto;
}

.section-head{
  text-align:center;
  margin-bottom:60px;
  padding:0 20px;
}

/* ════════════════════════════════════════════════════════
   الفئات
   ════════════════════════════════════════════════════════ */
.categories{
  padding:100px 0;
  background:var(--bg);
}
.cat-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-template-rows:280px 280px;
  gap:18px;
}
@media(max-width:900px){
  .cat-grid{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(3,260px)}
}
@media(max-width:520px){
  .cat-grid{grid-template-columns:1fr;grid-template-rows:repeat(5,240px)}
}

.cat-card{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  cursor:pointer;
  transition:transform 0.4s;
}
.cat-card:hover{transform:translateY(-4px)}
.cat-big{
  grid-column:span 2;
  grid-row:span 2;
}
@media(max-width:900px){
  .cat-big{grid-column:span 2;grid-row:span 1}
}
@media(max-width:520px){
  .cat-big{grid-column:1;grid-row:1}
}

.cat-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.6s;
}
.cat-card:hover img{transform:scale(1.06)}

.cat-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:24px;
  background:linear-gradient(180deg,transparent 40%,rgba(42,31,34,0.85) 100%);
  color:#fff;
}
.cat-eyebrow{
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--rose-light);
  margin-bottom:6px;
  font-weight:700;
}
.cat-overlay h3{
  font-family:var(--font-display);
  font-size:24px;
  font-weight:700;
  margin-bottom:8px;
}
.cat-big .cat-overlay h3{font-size:34px}
.cat-cta{
  font-size:13px;
  font-weight:700;
  color:var(--rose-light);
  letter-spacing:0.5px;
}

/* ════════════════════════════════════════════════════════
   المنتجات
   ════════════════════════════════════════════════════════ */
.products{
  padding:100px 0;
  background:var(--bg-2);
}

.products-tabs{
  display:flex;
  justify-content:center;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:50px;
}
.ptab{
  padding:10px 22px;
  background:transparent;
  border:1px solid var(--border-2);
  border-radius:50px;
  color:var(--text-2);
  font-size:13px;
  font-weight:600;
  cursor:pointer;
  transition:all 0.3s;
  font-family:inherit;
}
.ptab:hover{
  border-color:var(--rose);
  color:var(--rose);
}
.ptab.active{
  background:var(--rose);
  border-color:var(--rose);
  color:#fff;
}

.products-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
@media(max-width:1024px){
  .products-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:768px){
  .products-grid{grid-template-columns:repeat(2,1fr);gap:16px}
}
@media(max-width:420px){
  .products-grid{grid-template-columns:1fr}
}

.product{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  transition:all 0.3s;
  border:1px solid var(--border-soft);
}
.product:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
  border-color:var(--rose-soft);
}

.product-img{
  position:relative;
  aspect-ratio:1;
  overflow:hidden;
  background:var(--bg-3);
}
.product-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.5s;
}
.product:hover .product-img img{transform:scale(1.06)}

.p-badge{
  position:absolute;
  top:12px;
  right:12px;
  padding:5px 12px;
  font-size:10px;
  font-weight:700;
  letter-spacing:1px;
  border-radius:20px;
  z-index:2;
}
.p-badge.sale{background:var(--rose);color:#fff}
.p-badge.new{background:var(--rose-gold);color:#fff}
.p-badge.hot{background:var(--primary);color:#fff}

.product-fav{
  position:absolute;
  top:12px;
  left:12px;
  width:36px;
  height:36px;
  border-radius:50%;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(8px);
  color:var(--text-2);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:all 0.2s;
  z-index:2;
}
.product-fav svg{width:18px;height:18px}
.product-fav:hover{
  color:var(--rose);
  transform:scale(1.1);
}
.product-fav.active{
  color:var(--rose);
  background:#fff;
}
.product-fav.active svg{
  fill:var(--rose);
}

.product-quick{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:12px;
  background:var(--rose);
  color:#fff;
  font-size:13px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  cursor:pointer;
  transform:translateY(100%);
  transition:transform 0.3s;
  font-family:inherit;
}
.product-quick svg{width:16px;height:16px}
.product:hover .product-quick{transform:translateY(0)}
.product-quick:hover{background:var(--rose-dark)}

.product-info{padding:18px}
.product-info h3{
  font-size:14px;
  font-weight:600;
  color:var(--text);
  margin-bottom:10px;
  line-height:1.4;
}
.product-price{
  display:flex;
  align-items:baseline;
  gap:8px;
}
.price{
  font-family:var(--font-display);
  font-size:18px;
  font-weight:800;
  color:var(--rose);
}
.old-price{
  font-size:13px;
  color:var(--text-4);
  text-decoration:line-through;
  font-weight:500;
}

.products-cta{
  text-align:center;
  margin-top:50px;
}

/* ════════════════════════════════════════════════════════
   البانر الترويجي
   ════════════════════════════════════════════════════════ */
.banner-section{
  padding:80px 0;
  background:#fff;
}
.banner{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  background:linear-gradient(135deg,var(--rose-pale) 0%,var(--bg-cream) 100%);
  border-radius:30px;
  overflow:hidden;
  align-items:center;
}
@media(max-width:768px){
  .banner{grid-template-columns:1fr}
}
.banner-content{
  padding:60px;
}
@media(max-width:768px){
  .banner-content{padding:40px 28px;text-align:center}
}
.banner-eyebrow{
  display:inline-block;
  padding:5px 14px;
  background:#fff;
  color:var(--rose-dark);
  font-size:11px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  border-radius:30px;
  margin-bottom:18px;
}
.banner-title{
  font-family:var(--font-display);
  font-size:clamp(28px,4vw,46px);
  font-weight:800;
  line-height:1.4;
  color:var(--primary);
  margin-bottom:16px;
}
.banner-desc{
  font-size:15px;
  color:var(--text-2);
  margin-bottom:28px;
  line-height:1.85;
}
.banner-desc strong{
  color:var(--rose);
  font-weight:800;
  background:#fff;
  padding:2px 12px;
  border-radius:6px;
  font-family:var(--font-display);
}
.banner-image{
  aspect-ratio:0.95;
  overflow:hidden;
}
.banner-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* ════════════════════════════════════════════════════════
   الإطلالة الجديدة
   ════════════════════════════════════════════════════════ */
.new-arrivals{
  padding:100px 0;
  background:var(--bg);
}

/* ════════════════════════════════════════════════════════
   قصتنا
   ════════════════════════════════════════════════════════ */
.story{
  padding:100px 0;
  background:var(--bg-2);
}
.story-grid{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:70px;
  align-items:center;
}
@media(max-width:1024px){
  .story-grid{grid-template-columns:1fr;gap:50px}
}

.story-lead{
  font-size:17px;
  line-height:1.95;
  color:var(--text);
  font-weight:500;
  margin-bottom:18px;
}
.story-text{
  font-size:14px;
  line-height:1.95;
  color:var(--text-2);
  margin-bottom:36px;
}

.story-features{
  display:flex;
  flex-direction:column;
  gap:20px;
}
.sf{
  display:flex;
  gap:16px;
  align-items:flex-start;
}
.sf-icon{
  width:50px;
  height:50px;
  border-radius:50%;
  background:var(--rose-pale);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  flex-shrink:0;
}
.sf strong{
  display:block;
  font-size:14px;
  font-weight:700;
  color:var(--text);
  margin-bottom:4px;
}
.sf span{
  font-size:13px;
  color:var(--text-3);
  line-height:1.7;
}

.story-images{
  position:relative;
  min-height:520px;
}
.si-main{
  width:80%;
  aspect-ratio:0.85;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.si-main img{width:100%;height:100%;object-fit:cover}

.si-overlay{
  position:absolute;
  bottom:-30px;
  left:0;
  width:55%;
  aspect-ratio:0.95;
  border-radius:20px;
  overflow:hidden;
  border:8px solid var(--bg);
  box-shadow:var(--shadow-lg);
}
.si-overlay img{width:100%;height:100%;object-fit:cover}

/* ════════════════════════════════════════════════════════
   آراء العميلات
   ════════════════════════════════════════════════════════ */
.testimonials{
  padding:100px 0;
  background:var(--bg-3);
}
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
@media(max-width:900px){
  .testimonials-grid{grid-template-columns:1fr}
}

.testimonial{
  background:#fff;
  padding:32px 28px;
  border-radius:20px;
  border:1px solid var(--border-soft);
  transition:all 0.3s;
}
.testimonial:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}
.t-stars{
  color:var(--rose-gold);
  font-size:16px;
  letter-spacing:3px;
  margin-bottom:16px;
}
.testimonial p{
  font-size:14px;
  line-height:1.95;
  color:var(--text-2);
  margin-bottom:20px;
}
.testimonial footer{
  padding-top:18px;
  border-top:1px solid var(--border-soft);
}
.testimonial footer strong{
  display:block;
  font-size:14px;
  color:var(--rose-dark);
  margin-bottom:3px;
  font-family:var(--font-display);
}
.testimonial footer span{
  font-size:12px;
  color:var(--text-3);
}

/* ════════════════════════════════════════════════════════
   النشرة البريدية
   ════════════════════════════════════════════════════════ */
.newsletter{
  padding:100px 0;
  background:var(--bg);
}
.newsletter-card{
  background:linear-gradient(135deg,var(--rose) 0%,var(--rose-gold) 100%);
  border-radius:30px;
  padding:80px 40px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.newsletter-card::before{
  content:'';
  position:absolute;
  top:-100px;
  right:-100px;
  width:300px;
  height:300px;
  background:radial-gradient(circle,rgba(255,255,255,0.15) 0%,transparent 70%);
}
.newsletter-card::after{
  content:'';
  position:absolute;
  bottom:-100px;
  left:-100px;
  width:300px;
  height:300px;
  background:radial-gradient(circle,rgba(255,255,255,0.1) 0%,transparent 70%);
}
.nl-content{
  position:relative;
  z-index:1;
  max-width:600px;
  margin:auto;
}
.nl-desc{
  font-size:15px;
  color:rgba(255,255,255,0.9);
  margin-bottom:32px;
  line-height:1.85;
}

.nl-form{
  display:flex;
  gap:0;
  max-width:480px;
  margin:0 auto 18px;
  background:#fff;
  border-radius:50px;
  padding:6px;
}
@media(max-width:520px){
  .nl-form{flex-direction:column;border-radius:20px;gap:6px;padding:6px}
}
.nl-form input{
  flex:1;
  padding:14px 22px;
  border:none;
  background:transparent;
  font-size:14px;
  font-family:inherit;
  color:var(--text);
  outline:none;
}
.nl-form button{
  padding:14px 28px;
  background:var(--primary);
  color:#fff;
  border:none;
  border-radius:50px;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  font-family:inherit;
  transition:opacity 0.2s;
  white-space:nowrap;
}
.nl-form button:hover{opacity:0.85}
.nl-form button:disabled{opacity:0.6}
.nl-note{
  font-size:12px;
  color:rgba(255,255,255,0.75);
  margin-top:14px;
}

/* ════════════════════════════════════════════════════════
   التذييل
   ════════════════════════════════════════════════════════ */
footer{
  background:var(--primary);
  color:#D4C5C8;
  padding:70px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1.2fr;
  gap:50px;
  padding-bottom:50px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
@media(max-width:900px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:40px}
}
@media(max-width:560px){
  .footer-grid{grid-template-columns:1fr;gap:36px}
}

.footer-brand .brand{margin-bottom:20px}
.footer-brand .brand-icon{color:var(--rose-light)}
.footer-brand .brand-name{color:#fff}
.footer-brand .brand-tag{color:rgba(255,255,255,0.5)}
.footer-brand p{
  font-size:13px;
  line-height:1.95;
  color:rgba(255,255,255,0.65);
  max-width:340px;
  margin-bottom:24px;
}
.footer-social{display:flex;gap:10px}
.footer-social a{
  width:40px;
  height:40px;
  border-radius:50%;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,0.7);
  transition:all 0.25s;
}
.footer-social svg{width:17px;height:17px}
.footer-social a:hover{
  background:var(--rose);
  border-color:var(--rose);
  color:#fff;
}

.footer-col h4{
  font-family:var(--font-display);
  font-size:14px;
  font-weight:700;
  color:#fff;
  margin-bottom:22px;
  letter-spacing:0.5px;
}
.footer-col ul{list-style:none}
.footer-col ul li{margin-bottom:12px}
.footer-col ul a{
  font-size:13px;
  color:rgba(255,255,255,0.65);
  transition:color 0.2s;
}
.footer-col ul a:hover{color:var(--rose-light)}
.footer-contact li{
  font-size:13px;
  color:rgba(255,255,255,0.65);
  line-height:1.9;
}

.footer-bottom{
  padding:24px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:18px;
  font-size:12px;
  color:rgba(255,255,255,0.5);
}
.footer-payments{display:flex;gap:8px}
.footer-payments span{
  padding:5px 10px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:6px;
  font-size:10px;
  font-weight:700;
  color:rgba(255,255,255,0.7);
  letter-spacing:0.5px;
}

/* ════════════════════════════════════════════════════════
   زر واتساب
   ════════════════════════════════════════════════════════ */
.wa-float{
  position:fixed;
  bottom:24px;
  left:24px;
  width:56px;
  height:56px;
  background:#25D366;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:90;
  box-shadow:0 8px 24px rgba(37,211,102,0.4);
  transition:transform 0.2s;
}
.wa-float:hover{transform:scale(1.1)}
.wa-float svg{width:30px;height:30px}

/* ════════════════════════════════════════════════════════
   Toast
   ════════════════════════════════════════════════════════ */
.toast{
  position:fixed;
  bottom:30px;
  left:50%;
  transform:translateX(-50%) translateY(100px);
  background:var(--primary);
  color:#fff;
  padding:14px 28px;
  border-radius:50px;
  font-size:13px;
  font-weight:600;
  z-index:200;
  opacity:0;
  transition:all 0.3s;
  box-shadow:var(--shadow-lg);
}
.toast.show{transform:translateX(-50%) translateY(0);opacity:1}

/* ════════════════════════════════════════════════════════
   Reveal Animation
   ════════════════════════════════════════════════════════ */
.reveal{
  opacity:0;
  transform:translateY(30px);
  transition:opacity 0.7s,transform 0.7s;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

/* ════════════════════════════════════════════════════════
   Responsive
   ════════════════════════════════════════════════════════ */
@media(max-width:1024px){
  .main-nav{display:none}
  .header-actions{display:none}
  .menu-toggle{display:flex;align-items:center;justify-content:center}
}
