body {
  font-family: 'Tajawal', sans-serif;
  margin: 0;
  background-color: #ffffff;
  color: #272526;
  direction: rtl;
}

/* ✅ الهيدر */
.navbar {
  background-color: #810145;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ✅ اللوجو */
.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

/* ✅ روابط التنقل */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ff2562;
}

/* ✅ زر الهامبرغر */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

/* ✅ موبايل */
@media (max-width: 768px) {
  .navbar-container {
    position: relative;
  }

  .menu-toggle {
    display: block;
    margin-left: 10px; /* هامش يسار خفيف */
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #810145;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
    display: none;
    gap: 15px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}

/* ✅ شريط المميزات */
.del-strip {
  background-color: #cec9c9;
  padding: 12px 0;
}

.del-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.del-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #1e1e1e;
  font-weight: 500;
  white-space: nowrap;
}

.del-item i {
  font-size: 20px;
  color: #810145;
}

@media (max-width: 480px) {
  .del-container {
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    overflow-x: auto;
    padding: 10px;
    gap: 12px;
  }

  .del-item {
    font-size: 13px;
    gap: 6px;
  }

  .del-item i {
    font-size: 16px;
  }
}

/* ✅ قسم الوسائط */
.media-container {
  padding: 50px 0;
}

.media-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.media-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
}

.media-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.media-text-block {
  max-width: 300px;
  text-align: right;
}

.media-text-block h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1e1e1e;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.pink-divider {
  width: 60px;
  height: 4px;
  background-color: #810145;
  border-radius: 2px;
  margin-bottom: 20px;
}

.media-text-block p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.media-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background-color: #810145;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.media-btn:hover {
  background-color: #a01360;
}

/* ✅ الفيديو */
.video-wrapper {
  position: relative;
  width: 400px;
  height: 600px;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-btns {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
}

.top-btns button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #810145;
  color: white;
  font-size: 18px;
  border: none;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  cursor: pointer;
}

.controls {
  position: absolute;
  bottom: 15px;
  right: 15px;
  left: 15px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.controls button {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  background-color: #1e1e1e;
  color: white;
  font-size: 14px;
  gap: 8px;
  border: none;
}

.controls button:hover {
  background-color: #810145;
}

@media (max-width: 768px) {
  .media-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .video-wrapper {
    width: 100%;
    height: auto;
  }

  .media-image {
    height: auto;
  }
}


/* ✅ سلايدر المميزات */

.features-slider {
  background-color: #cec9c9;
  overflow: hidden;
  padding: 25px 0;
  position: relative;
  direction: ltr;
}
.slider-track {
  display: flex;
  gap: 50px;
  will-change: transform;
  animation: scrollInfinite 10s linear infinite;
}
.features-slider:hover .slider-track {
  animation-play-state: paused;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #810145;
  font-weight: 600;
  font-size: 16px;
  min-width: 160px;
  white-space: nowrap;
  gap: 8px;
}
.feature-item i {
  font-size: 32px;
}
@keyframes scrollInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*المنتجات*/


/* سكشن المنتجات بالكامل */
.product-slider {
  background-color: #ffffff;
  padding: 50px 0;
  position: relative;
  direction: ltr; /* ضروري عشان التحريك يشتغل طبيعي */
  overflow: hidden;
}


/* حاوية السلايدر */
.slider-container {
  overflow: hidden;
  width: 100%;
}

/* المسار الذي يحتوي على البطاقات */
.product-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease-in-out;
}

/* البطاقة */
.slider-card {
  background: #f7f3f3;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 15px;
  text-align: center;
  min-width: 350px;
  max-width: 350px;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 350px;
  flex-shrink: 0;
  
}

.slider-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 10px;
}

.slider-card .description {
  font-size: 18px;
  font-weight: 500;
  color: #1e3d59;
  margin-bottom: 5px;
}

.slider-card .price {
  font-size: 16px;
  font-weight: bold;
  color: #810145;
  margin-bottom: 10px;
}

.slider-card .btn {
  display: inline-block;
  padding: 8px 20px;
  background-color: #810145;
  color: white;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.slider-card .btn:hover {
  background: #a51662;
}

/* أزرار التحريك */
.slider-buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  box-sizing: border-box;
}

.slider-buttons button {
  background: #810145;
  color: white;
  border: none;
  font-size: 32px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-buttons button:hover {
  background: #a51662;
}


/*الفوووتر*/
.footer-dooz {
  background-color: #810145;
  color: white;
  padding: 50px 20px 30px;
  font-size: 15px;
  direction: rtl;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #f1f1f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffadc2;
}

.app-badges img {
  height: 40px;
  margin: 5px 10px 10px 0;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  color: white;
  margin-left: 10px;
  font-size: 20px;
  display: inline-block;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffadc2;
}

.footer-divider {
  margin: 30px 0;
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: #f1f1f1;
}

.footer-bottom .dev-note {
  margin-top: 5px;
  font-size: 14px;
  color: #ffffff;
}

.footer-bottom .dev-note a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-bottom .dev-note a:hover {
  color: #f1f1f1;
}


@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }


}

/*نافذة الطلب*/

/* نافذة الطلب */
.modal {
  display: none; /* ← لا تكتب بعدها display: flex */
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-y: auto;
}

.modal-content {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  animation: popIn 0.3s ease;
  box-sizing: border-box;
}

@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-content h3 {
  margin-top: 0;
  color: #810145;
  text-align: center;
  font-size: 20px;
}

.modal-content label {
  display: block;
  margin-top: 12px;
  font-weight: 500;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  box-sizing: border-box;
}

.modal-content .btn {
  display: block;
  width: 100%;
  margin-top: 20px;
  background-color: #810145;
  border: none;
  padding: 12px;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
}

.modal-content .btn:hover {
  background-color: #a51662;
}

.close {
  position: absolute;
  top: 12px;
  left: 18px;
  font-size: 24px;
  color: #810145;
  cursor: pointer;
}

/* رسالة النجاح */
.success-message {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #28a745;
  color: white;
  padding: 15px 25px;
  border-radius: 10px;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 10000;
  animation: none; /* ← ✅ أوقف العرض التلقائي */
}


@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(20px); }
  10%, 90% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(20px); }
}

/* دعم الجوال */
@media (max-width: 480px) {
  .modal-content {
    padding: 20px;
    font-size: 14px;
  }

  .modal-content .btn {
    font-size: 15px;
  }
}

/* 🌸 قسم الورد والهدايا من Dooz */
/* 🌟 قسم عام (ورد / هدايا / كيك / عطور) */
.section-box {
  background: linear-gradient(135deg, #f5f0e6 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/pattern-floral.svg') repeat;
  opacity: 0.05;
}

.section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

.section-text {
  flex: 1;
  min-width: 320px;
}

.section-text h2 {
  font-size: 2.2rem;
  line-height: 1.5;
  color: #810145;
  margin-bottom: 25px;
  font-weight: 700;
}

.section-text h2 span {
  color: #c71585;
}

.section-text p {
  color: #3e3e3e;
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 30px;
}

.section-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 35px;
}

.section-points div {
  background: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border-right: 5px solid #810145;
  font-weight: 500;
  color: #444;
  transition: 0.3s;
}

.section-points div:hover {
  transform: translateX(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.section-points i {
  color: #810145;
  margin-left: 10px;
}

.section-btn {
  display: inline-block;
  background: #810145;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(129, 1, 69, 0.2);
}

.section-btn:hover {
  background: #a61661;
  box-shadow: 0 8px 20px rgba(166, 22, 97, 0.3);
  transform: translateY(-2px);
}

.section-image {
  flex: 1;
  text-align: center;
  position: relative;
}

.section-frame {
  position: relative;
  display: inline-block;
  padding: 10px;
  background: linear-gradient(145deg, #fff, #f3e7ed);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.section-frame::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 2px solid #81014533;
  z-index: -1;
}

.section-frame img {
  border-radius: 15px;
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.section-frame img:hover {
  transform: scale(1.03);
}

/* 📱 استجابة الجوال */
@media (max-width: 900px) {
  .section-inner {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }

  .section-text h2 {
    font-size: 1.8rem;
  }

  .section-points {
    align-items: center;
  }

  .section-points div {
    width: 80%;
  }
}


/* 🎀 سكشن اختيار الهدية */
/* 🎀 سكشن اختيار الهدية */
.choose-gift {
  background: linear-gradient(135deg, #fff 0%, #f8f3f6 100%);
  padding: 100px 20px;
  text-align: center;
}

.choose-gift-inner {
  max-width: 700px;
  margin: auto;
}

.choose-gift h2 {
  font-size: 2.2rem;
  color: #810145;
  margin-bottom: 15px;
  font-weight: 700;
}

.choose-gift p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 40px;
}

.choose-gift-form {
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: right;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  flex: 1 1 100%;
}

.form-group.half {
  flex: 1 1 calc(50% - 10px);
}

.form-group.full {
  flex: 1 1 100%;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #810145;
  font-weight: 600;
}

.choose-gift-form input,
.choose-gift-form select,
.choose-gift-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Tajawal', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.choose-gift-form input:focus,
.choose-gift-form select:focus,
.choose-gift-form textarea:focus {
  border-color: #810145;
  outline: none;
  box-shadow: 0 0 6px rgba(129, 1, 69, 0.2);
}

.btn-send {
  background-color: #810145;
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 6px 15px rgba(129, 1, 69, 0.25);
}

.btn-send:hover {
  background-color: #a01360;
  box-shadow: 0 8px 20px rgba(160, 19, 96, 0.3);
  transform: translateY(-2px);
}

/* 📱 دعم الموبايل */
@media (max-width: 600px) {
  .choose-gift {
    padding: 70px 15px;
  }

  .choose-gift h2 {
    font-size: 1.8rem;
  }

  .choose-gift-form {
    padding: 25px 20px;
    flex-direction: column;
  }
}

/*سياسة الدفع*/
.policy-section h3 {
  margin-top: 25px;
  color: #c0392b;
  font-size: 20px;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
}

.policy-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

.policy-list i {
  color: #00c6ff;
  margin-left: 8px;
}

.note {
  margin-top: 20px;
  font-weight: bold;
  color: #1e3d59;
}


/*معرض الصور*/
.gift-gallery {
  padding: 40px 20px;
  background-color: #fdfdfd;
}

.gallery-header {
  text-align: center;
  margin-bottom: 30px;
}

.gallery-header h2 {
  font-size: 2em;
  margin-bottom: 10px;
  font-family: 'Rubik', sans-serif;
  color: #1e3d59;
}

.gallery-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1em;
  color: #555;
}

.pinterest-gallery {
  column-count: 3;
  column-gap: 15px;
}

.pinterest-gallery img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  object-fit: cover;
}

.pinterest-gallery img:hover {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .pinterest-gallery {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .pinterest-gallery {
    column-count: 1;
  }

  .gallery-header h2 {
    font-size: 1.5em;
  }

  .gallery-header p {
    font-size: 1em;
  }
}
.gallery-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 700;
  font-family: 'Tajawal', sans-serif;
  color: #810145;
}

/* زر واتساب عائم */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: white;
  font-size: 28px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
  color: #fff;
}

