@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

:root {
  --pink-1:#fff6fb; --pink-2:#fdd0e8; --pink-3:#f8a6d1;
  --btn:#f28ec8; --btn-h:#d85ca3; --text-1:#2b2b2b; --text-2:#777;
  --bg:#fff; --footer:#2d2d2d; --shadow:0 8px 20px rgba(0,0,0,.06);
}

* { box-sizing: border-box; }
html,body { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', sans-serif;
  margin: 0;
  background: var(--pink-1);
  color: var(--text-1);
  direction: rtl;
}

/* ===== Navbar ===== */
.nav {
  position: fixed;
  top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled { background: #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 12px 20px; display: flex; align-items: center; }
.brand { font-weight: 800; font-size: 22px; color: #7B58B2; text-decoration: none; }
.nav-links { margin-inline-start: auto; display: flex; gap: 20px; }
.nav-links a { color: #333; text-decoration: none; font-size: 16px; font-weight: 500; position: relative; padding: 8px 0; }
.nav-links a::after { content: ""; position: absolute; bottom: -2px; left: 0; width: 0%; height: 2px; background: #7B58B2; transition: width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }

/* ===== Hero ===== */
.hero {
  position: relative; width: 100%;
  min-height: clamp(60vh, 80vh, 720px);
  background: url('images/hero.png') center/cover no-repeat;
  display: flex; align-items: center;
}
.hero-content {
  position: relative; z-index: 1; width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 24px 16px;
  display: flex; flex-direction: column; gap: 14px;
  align-items: flex-start; text-align: left; color: #fff;
}
.eyebrow { letter-spacing: .15em; text-transform: uppercase; color: #FF4CD4; font-size: 20px; margin: 0; }
.hero h1 { margin: 0; font-size: clamp(24px,5vw,44px); line-height: 1.2; color: #fff; }
/* خط مرح للعناوين */
.hero h1, .hero h2 { font-family: 'Marhey', sans-serif; }

.credit { margin: 0; color: #e0e0e0; font-size: 12px; }

.btn {
  display: inline-block; padding: 10px 20px; border-radius: 28px;
  font-size: 14px; text-decoration: none; transition: .2s;
}
.btn.btn-light { background: #7B58B2; color: #fff; }
.btn.btn-light:hover { background: #6a4da0; }

.badge { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 120px; height: 120px; border-radius: 50%; background: #b886ff; color: #fff; box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.badge .num { font-size: 32px; font-weight: 800; line-height: 1; }
.badge .sub { font-size: 12px; opacity: .9; margin-top: 4px; }

@media (max-width: 768px){
  .hero { display: flex; flex-direction: column; justify-content: flex-end; min-height: 100vh; }
  .hero-content { align-items: center; text-align: center; width: 100%; padding: 0 16px 90px; gap: 12px; }
  .btn.btn-light { align-self: center; }
}

/* ===== Section Titles ===== */
.section-title { color: var(--btn-h); text-align: center; margin: 22px 0 6px; font-size: 24px; }
.section-sub { color: #555; text-align: center; margin: 0 0 12px; font-size: 15px; }

/* ===== فلتر المنتجات ===== */
.product-filter { max-width: 1200px; margin: 0 auto 10px; padding: 0 16px; text-align: center; }
.filter-btn {
  background: var(--pink-2);
  border: none;
  padding: 8px 16px;
  margin: 0 5px 10px;
  border-radius: 20px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
}
.filter-btn.active { background: var(--btn); color: #fff; }

/* ===== Product Grid ===== */
.menu { display: grid; gap: 20px; padding: 24px 16px 40px; max-width: 1200px; margin: auto; grid-template-columns: 1fr; }
@media (min-width: 360px) { .menu { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 992px) { .menu { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1400px) { .menu { grid-template-columns: repeat(4, minmax(0,1fr)); } }

/* ===== Product Card ===== */
.item { background: #fff; color: #333; text-align: center; border-radius: 20px; padding: 18px; box-shadow: var(--shadow); transition: transform .25s; display: flex; flex-direction: column; align-items: center; }
.item:hover { transform: translateY(-5px); }
.item img { width: clamp(120px, 26vw, 200px); height: clamp(120px, 26vw, 200px); object-fit: cover; border-radius: 50%; border: 4px solid var(--pink-2); margin-bottom: 10px; transition: .3s; }
.item img:hover { transform: scale(1.05); border-color: var(--pink-3); }
.item h3 { margin: 6px 0 4px; font-size: clamp(16px,2.4vw,18px); color: #333; }
.item .desc { font-size: clamp(13px,2.2vw,14px); color: #666; margin: 0 0 6px; padding: 0 8px; }
.item .price { font-size: clamp(15px,2.6vw,16px); font-weight: 700; color: var(--btn-h); margin: 0 0 8px; }
.btn { background: var(--btn); color: #fff; }
.btn:hover { background: var(--btn-h); }

/* زر "المزيد" بدون إطار دائم */
.item .open-modal { border: none; }
.item .open-modal:focus, .item .open-modal:focus-visible { outline: none; }

/* ===== About & Contact ===== */
.about,.contact { padding: 28px 16px 40px; background: #fff; margin: 0 auto; color: #333; }
.container { max-width: 900px; margin: 0 auto; text-align: center; }
.about h3,.contact h3 { color: var(--btn-h); margin: 0 0 8px; }
footer { background: var(--footer); color: #ccc; padding: 14px; font-size: 13px; text-align: center; }

/* ===== Modal ===== */
body.no-scroll { overflow: hidden; }
.modal { position: fixed; inset: 0; display: none; background: rgba(0, 0, 0, 0.45); z-index: 2000; padding: 12px; }
.modal.is-open { display: block; }
.modal__overlay { position: absolute; inset: 0; }
.modal__dialog { position: relative; background: #fff; color: #222; max-width: 980px; margin: 40px auto; border-radius: 18px; overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25); display: grid; gap: 0; grid-template-columns: 1fr; }
.modal__close { position: absolute; inset-inline-start: 8px; top: 8px; border: 0; background: #fff; color: #333; width: 36px; height: 36px; border-radius: 50%; font-size: 22px; cursor: pointer; box-shadow: var(--shadow); }
.modal__close:hover { background:#f6f6f6; }
.modal__media { position: relative; background:#fdd0e8; display:flex; align-items:center; justify-content:center; }
.modal__media img { width: 100%; max-height: 66vh; object-fit: contain; background:#000; }
.modal__nav { position: absolute; top: 50%; transform: translateY(-50%); border:0; background: rgba(255,255,255,.9); color:#333; width:40px; height:40px; border-radius: 50%; cursor:pointer; font-size:20px; }
.modal__nav:hover { background:#fff; }
.modal__nav.prev { inset-inline-start: 10px; }
.modal__nav.next { inset-inline-end: 10px; }
.modal__body { padding: 14px 16px 18px; }
.modal__body h3 { margin: 0 0 6px; color: var(--btn-h); font-size: 20px; }
.modal__body p { margin: 0 0 8px; color:#555; }
.modal__price { font-weight: 800; color: var(--btn-h); margin-top: 6px; }
.modal__thumbs { margin-top: 10px; display: grid; gap: 8px; grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); }
.modal__thumbs button { border: 2px solid transparent; border-radius: 10px; padding: 0; background: none; cursor: pointer; }
.modal__thumbs button.is-active { border-color: var(--btn-h); }
.modal__thumbs img { width: 100%; height: 64px; object-fit: cover; border-radius: 8px; }

@media (min-width: 900px) {
  .modal__dialog { grid-template-columns: 60% 40%; }
  .modal__media img { max-height: 78vh; }
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-btn {
  position: fixed;
  right: 16px;
  bottom: calc(env(safe-area-inset-bottom, 0) + 16px);
  width: 60px; height: 60px;
  background-color: #25D366; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 6px 18px rgba(0,0,0,.28);
  transition: transform 0.2s, background-color 0.2s;
  z-index: 2147483647; pointer-events: auto;
}
.whatsapp-btn:hover { background-color: #1ebe5d; transform: translateY(-1px); }
@media (max-width: 768px) { .whatsapp-btn { display: flex !important; } }

/* منع أي مشاكل stacking context */
html, body { transform: none !important; }


/* إظهار العنوان والسعر فقط داخل الكارد */
.menu .item .desc { display: none; }

/* ضبط أزرار البطاقات */
.menu .item .open-modal { white-space: nowrap; }


/* ✅ خلي المودال نفسه يسمح بالتمرير إذا المحتوى طويل */
.modal { overflow: auto; padding: 12px; }

/* ✅ قيود عامة تمنع الطول الزايد */
.modal__dialog {
  max-width: min(980px, 96vw);
  max-height: 92vh;            /* لا يتعدى ارتفاع الشاشة */
  margin: 16px auto;           /* أصغر مسافة عالجوال */
  overscroll-behavior: contain;
}

/* ✅ على الشاشات الصغيرة نخلي توزيع مرن عمودي */
@media (max-width: 899px) {
  .modal__dialog {
    display: flex;             /* بدال الشبكة على الموبايل */
    flex-direction: column;
    width: 96vw;
    max-height: 92vh;
    border-radius: 14px;
  }

  .modal__media {
    flex: 0 0 auto;
    max-height: 50vh;          /* الصورة ما تتجاوز نص الشاشة */
  }
  .modal__media img {
    width: 100%;
    height: auto;
    max-height: 50vh;
    object-fit: contain;
    display: block;
    background: #000;
  }

  .modal__body {
    flex: 1 1 auto;            /* ياخذ الباقي */
    min-height: 0;             /* مهم لتمكين السكрол داخل العنصر */
    overflow: auto;            /* سكول للنص الطويل */
    -webkit-overflow-scrolling: touch; /* سلاسة على iOS */
    padding: 12px 14px 16px;
  }

  .modal__thumbs {
    /* لو صاروا كتير، ما يكسروا الطول */
    max-height: 32vh;
    overflow: auto;
  }
}

/* 🖥️ على الديسكتوب نُبقي الشبكة كما هي لكن نضمن عدم تجاوز الارتفاع */
@media (min-width: 900px) {
  .modal__dialog {
    display: grid;
    grid-template-columns: 60% 40%;
    max-height: 92vh;
  }
  .modal__media img { max-height: 82vh; }
  .modal__body {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* 🧹 إظهار العنوان والسعر فقط بالكارد (سبقها عندك بس نخليها هنا للتأكيد) */
.menu .item .desc { display: none; }

/* زر التفاصيل */
.menu .item .open-modal { white-space: nowrap; }

