:root {
  --main-color--: #153255;
  --main-color-dark--: #092342;
  --Text-color--: #262626;
  --holdText-color--: #626d84;
  --transition: all 0.3s ease;
  --primary-blue: #1e4b8a;
  --primary-dark: #163a6e;
  --accent-blue: #3b82f6;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --bg-light: #f8fafc;
  --card-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --card-hover-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  --bg-body: #fbfbfc;
  --text-main: #2c3e50;
  --unread-bg: #f1f5f9;
  --border-radius: 16px;
  --primary-color: #3b5d92;
  --border-color: #e5e7eb;
  --text-secondary: #6b7280;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
* {
  direction: rtl;
  margin: 0;
  padding: 0;
  transition: var(--transition);
}
body {
  direction: rtl;
  font-family: "Cairo", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: #f8fafc;
  overflow-x: hidden !important;
}
body.overflow-hidden {
  overflow: hidden;
}
.row.serv-item button.btn {
  padding: 0;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: var(--main-color--);
}

/* عرض الاسكرول */
*::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

/* الخلفية */
*::-webkit-scrollbar-track {
  background: transparent;
}

/* الجزء المتحرك */
*::-webkit-scrollbar-thumb {
  background: var(--main-color--);
  border-radius: 10px;
}

/* Hover */
*::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.45);
}

body::-webkit-scrollbar {
  width: 12px;
}

body section {
  margin: 5px 0;
}
.text-align-left {
  text-align: left;
}
.text-align-right {
  text-align: right;
}
.textHold {
  color: var(--holdText-color--);
}
.textMaincolor {
  color: var(--main-color--);
}
.starsIcon {
  width: 20px !important;
  height: 20px !important;
}
.RiyalSvg {
  width: 20px !important;
  height: 20px !important;
}

main {
  padding: 90px 0px 0px;
  overflow: hidden;
}
.custom-container {
  padding: 0 50px;
}
@media (max-width: 1000px) {
  main {
    padding: 70px 0px 20px;
    margin: 0;
  }
  .custom-container {
    padding: 0 20px;
  }
}
@media (max-width: 580px) {
  main {
    padding: 70px 0px 20px;
    margin: 0;
  }
  .custom-container {
    padding: 0 10px;
  }
}

.oneline {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.twoline {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mainStar.fa-star-half-stroke {
  color: var(--main-color--);
}
.mainStar.fa-star {
  color: var(--main-color--);
}
.yellow.fa-star {
  color: #ffd601;
}
.light.fa-star {
  color: #999;
}

.img-cart {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
}

/* Start header */

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 999;
}

.header-container .logo {
  width: 120px;
  height: 80px;
}
.header-container .logo img {
  width: 100%;
  height: 100%;
}

/* تنسيق مربع البحث */
.search-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--holdText-color--);
  border-radius: 8px;
  padding: 5px 15px;
  width: 300px;
}

.search-box input {
  border: none;
  outline: none;
  width: 100%;
  font-weight: 500;
  font-size: 12px;
  margin-right: 10px;
}

.search-box button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #616161;
}

/* تنسيق القائمة */
.nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-links a {
  text-decoration: none;
  color: var(--Text-color--);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-right: 10px;
  position: relative;
  text-wrap: nowrap;
}
.nav-links a:first-child {
  border-right: none;
}

.nav-links a:hover {
  color: var(--main-color--);
}
.nav-links a:hover .heart {
  stroke: var(--main-color--);
}

.fa-magnifying-glass:hover {
  color: var(--main-color--);
}
.btn-login {
  color: #fff !important;
  background: linear-gradient(114.77deg, #2d6ebd 0%, #153255 100%) !important;
  font-size: 14px !important;
}
.progress-gradient {
  background: linear-gradient(114.77deg, #153255 0%, #2d6ebd 100%) !important;
}

.badge_count {
  background: var(--main-color--);
  color: #fff;
  font-size: 10px;
  padding: 8px;
  position: absolute;
  top: -7px;
  right: -5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.badge_count-left {
  background: var(--main-color--);
  color: #fff;
  font-size: 10px;
  padding: 8px;
  position: absolute;
  top: -5px;
  left: -2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
img.cart-icon {
  width: 25px;
}

.links ul {
  display: flex;
  list-style: none;
  padding: 1px 0 12px;
  gap: 14px;
  margin: 0 0 10px;
}

nav ul li a {
  text-decoration: none;
  color: var(--Text-color--);
  font-weight: 500;
  font-size: 16px;
  padding: 10px 15px;
  position: relative;
  white-space: nowrap;
}

.head2 .links {
  overflow-x: auto;
}

/* الشكل الأساسي للسكرول */
.head2 .links::-webkit-scrollbar {
  height: 4px; /* ده خاص بالعرض */
}

/* شكل الخلفية */
.head2 .links::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* شكل المقبض (المؤشر اللي بيتحرك) */
.head2 .links::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

/* لما تحطي الماوس عليه */
.head2 .links::-webkit-scrollbar-thumb:hover {
  background: var(--main-color--);
}

@media (max-width: 1220px) {
  .links ul li a {
    padding: 10px 0;
  }
  .links ul li {
    text-align: center;
  }
}

.links ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: transparent;
}

.links ul li a.active,
.links ul li a:hover {
  color: var(--main-color--);
}

.links ul li a.active::after,
.links ul li a:hover::after {
  background-color: var(--main-color--);
}
.mobile-nav {
  display: none;
}
.mobile-nav nav {
  box-shadow: 0px 4px 20px 4px #00000033;
  background-color: #fff;
}
.mobile-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.mobile-nav a img,
.mobile-nav a svg {
  width: 30px;
  height: 30px;
}

.mobile-nav .toggle-Sidebar img {
  width: auto;
  height: auto;
}
.mobile-nav a .badge_count {
  right: -5px;
  top: 5px;
  font-size: 10px;
  padding: 7px;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  background: #e8eef5;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  padding: 30px 0 20px;
  z-index: 99999;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: auto;
  z-index: 1001;
}
.sidbar_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.sidbar_overlay.show {
  opacity: 1;
  visibility: visible;
}

.sidebar h2 {
  color: var(--Text-color--);
  padding: 0 10px;
  font-size: 18px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  padding: 10px;
  border-bottom: 1px solid #6b728036;
  margin: 0 !important;
}

.sidebar ul li a {
  text-decoration: none;
  color: var(--Text-color--);
  font-size: 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 !important;
}

.sidebar ul li a img,
.sidebar ul li a svg {
  margin: 0 0 0 10px;
  width: 17px;
  height: 17px;
}
.sidebar .badge_count {
  background: var(--main-color--);
  color: #fff;
  font-size: 10px;
  padding: 5px;
  position: absolute;
  top: -13px;
  right: -4px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.close-btn {
  position: absolute;
  top: 27px;
  left: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

.sidebar.open {
  right: 0;
}

.head-scroll {
  /* background: rgb(255, 255, 255); */
  /* padding: 20px 10px 0; */
  /* box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 4px 0px; */
  border-radius: 0 0 10px 10px;
}

@media (max-width: 1000px) {
  .mobile-nav {
    display: block;
  }
  .links {
    display: none;
  }
  .head1 {
    box-shadow: 0px 4px 4px 0px #0000004d;
    max-width: 100%;
    padding: 0;
  }
  .header-container .logo {
    width: 77px;
    height: 80px;
  }
  .nav-links > select,
  .nav-links > span,
  .nav-links > a {
    display: none;
  }
  .nav-links .cart {
    display: flex;
  }
}

@media (max-width: 930px) {
  .header-container .logo {
    width: 80px;
    height: 60px;
  }
  .search-box {
    padding: 5px 10px;
    width: 100%;
  }
  .w-sm-100 {
    width: 100%;
  }
  .search-box input {
    font-size: 11px;
    padding-right: 5px;
    margin-right: 0;
  }
}

@media (max-width: 580px) {
  .mobile-nav ul li {
    margin: 0 10px;
  }
  .mobile-nav ul li a {
    padding: 10px 0 0;
    font-size: 12px;
  }
  .search-box {
    padding: 5px 10px;
    width: 100%;
  }
  .w-sm-100 {
    width: 100%;
  }

  .nav-links .cart {
    font-size: 10px;
  }
  .nav-links .cart .badge_count-left {
    padding: 7px;
  }
  img.cart-icon {
    width: 22px;
  }
}

/* end header */

/* start swiper */
.heroSwiper {
  width: 100%;
  margin-top: 40px;
}

.heroSwiper .swiper-slide {
  text-align: center;
  font-size: 18px;
}
.slidehero-img-con {
  max-height: 350px;
}

.heroSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: 35px;
  object-fit: contain;
}

@media (max-width: 991px) {
  .heroSwiper {
    margin-top: 0px;
  }
  .slidehero-img-con {
    max-height: 250px;
  }
}
@media (max-width: 768px) {
  .slidehero-img-con {
    max-height: 250px;
  }
}

.heroSwiper .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    270.02deg,
    rgba(25, 58, 102, 0) 0.02%,
    rgba(25, 58, 102, 0.8) 99.98%
  );

  color: white;
  padding: 20px 40px;
  border-radius: 35px;
  text-align: right;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.swiper-pagination {
  position: unset !important;
  margin: 20px auto 10px !important;
  transform: unset !important;
  text-align: unset !important;
}
.heroSwiper-swiper-pagination {
  text-align: center !important;
  margin: 0px auto 10px !important;
}
.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
}
.swiper-pagination-bullet-active {
  background: var(--main-color--) !important;
}

@media (max-width: 768px) {
  .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
  }
  .swiper-pagination-bullet-active {
    width: 20px !important;
    height: 8px !important;
    border-radius: 8px !important;
  }
}
/* end swiper */

/* start Categories */
.categories-section {
  background: #f7fbff; /* الخلفية الفاتحة */
}

.category-card {
  padding: 0;
  background: white;
  border: 1px solid #d9e3ec;
  border-radius: 12px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 150px;
  /* min-width: 260px;
  max-width: 260px; */
}

.category-card img {
  border-radius: 12px 12px 0 0;
  width: 100%;
  height: 100px;
  object-fit: contain;
}

.category-card span {
  font-size: 16px;
  color: #163a5f;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 5px;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
/* @media (max-width: 580px) {
  .category-card img {
    width: 70px;
    height: 70px;
  }
} */
/* start Categories */

.section-header {
  padding: 10px 0;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  color: #0f1c2e;
}

.section-subtitle {
  color: #6c7a89;
  font-size: 14px;
}

.show-all-btn {
  color: #1b4d89;
  font-size: 15px;
  text-decoration: none;
  text-wrap: nowrap;
}

.show-all-btn:hover {
  color: #0d2e5c;
}

/* ============== كارد المنتج ============== */
.swiper-slide {
  height: auto !important;
  display: flex !important;
}

.product-cardWithGift {
  width: 100%;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e5e8eb;

  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-info {
  flex-grow: 1;
}

.product-cardWithGift:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* ============== صورة المنتج ============== */

.product-imgWithGift {
  position: relative;
}

.product-imgWithGift img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  border-radius: 18px 18px 0 0;
}

/* تاج مجاناً */
.tag-free {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(90deg, #24c278 0%, rgba(36, 194, 120, 0.8) 100%);
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 13px;
}

/* بوكس الهديّة */
.gift-box {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  background: #ffffff6e;
  border-radius: 12px;
  padding: 2px 12px;
  border: 1px solid #e3e6ea;
  gap: 8px;
}

.gift-box img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
}

.gift-title {
  font-size: 14px;
  font-weight: bold;
  margin: 0;
  color: #024425;
}

.gift-sub {
  font-size: 12px;
  margin: 0;
  color: #2d2d2d;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============== المحتوى ============== */

.product-bodyWithGift {
  padding: 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-nameWithGift {
  font-size: 18px;
  font-weight: 700;
}

/* منتج مجاني */
.free-product {
  font-size: 13px;
  color: #24c278;
  font-weight: 500;
}

.product-card {
  width: 100%;
  background: #fff;
  border: 1px solid #e4e7eb;
  border-radius: 10px;
  position: relative;
  padding: 10px;

  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}
.product-card.offerExpired .product-info,
.product-card.SoldOut .product-info {
  filter: blur(0.8px);
}
.product-card.offerExpired::after,
.product-card.SoldOut::after {
  content: "";
  position: absolute;
  transform: translateY(0) !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: #000000b1;
  z-index: 1;
}
.product-card.offerExpired::before,
.product-card.SoldOut::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
  padding: 3px 8px;
  color: #fff;
  height: auto;
  border-radius: 30px;
  background-color: #b10909;
  z-index: 222;
  text-wrap: nowrap;
}
.product-card.SoldOut::before {
  content: "نفذت الكمية";
}
.product-card.offerExpired::before {
  content: "اتنهى العرض";
}

/* زر القلب */
.favorite-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.favorite-btn.active {
  background-color: crimson;
  color: #fff;
}

/* صورة المنتج */
.product-img {
  width: 100%;
  height: 200px;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

/* الشارات */
.product-badges {
  margin: 15px 0 0;
  display: flex;
  gap: 6px;
  font-weight: 700;
}

.badge-blue {
  background: #e8f2ff;
  color: #0c448c;
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 12px;
}
.badge-hot {
  background: #f2ebfe;
  color: #471c85;
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 12px;
}

.badge-category {
  background: #fff0e7;
  color: #1a2f4b;
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 12px;
}

.product-title {
  font-size: 15px;
  font-weight: 600;
  margin: 8px 0;
}

/* الأسعار */
.product-prices {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ratingCard {
  color: #0d2d5a;
  font-weight: 600;
}

/* for all products */
.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
}

.new-price {
  font-size: 18px;
  font-weight: 700;
  color: #1b2534;
  display: flex;
  align-items: center;
  gap: 4px;
}

.riyal-icon {
  width: 18px;
  margin-top: 2px;
}

.price {
  display: flex;
  align-items: center;
  gap: 6px;
}

.price-num {
  font-size: 20px;
  font-weight: 700;
}

/* زر أضف للسلة */
.add-to-cart-Icon,
.add-to-cart {
  background: var(--main-color--);
  color: #fff;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 15px;
  border: none;
  cursor: pointer;
}
.add-to-cart-Icon:hover,
.add-to-cart:hover {
  background: var(--main-color-dark--);
}
.add-to-cart.active {
  background: #24c278;
}
.add-to-cart-Icon.active {
  background-color: #24c278;
}

/* زر الشراء */
.buy-now {
  width: 100%;
  background: #0d2d5a;
  color: #fff;
  padding: 8px 0;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.buy-now:hover {
  background: #091c36;
  color: #fff;
}

.buy-now img {
  width: 18px;
}
/* for all products */

.time-box {
  background: #3969a2;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
  min-width: 32px;
  text-align: center;
  display: inline-block;
}

.progress-section .progress {
  background: #d8dbdf;
  height: 6px;
  border-radius: 5px;
  overflow: hidden;
}

.progress-section .progress-bar {
  background: #3969a2;
}

.progress-text {
  font-size: 13px;
  padding-bottom: 5px;
}

.banner-card {
  height: 230px; /* غيّرها حسب التصميم */
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: 0.3s ease;
}

.banner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.banner-img {
  object-fit: cover;
}
.full-image-card {
  height: 100%;
}
.full-image-card img {
  max-height: 380px;
}

@media (max-width: 580px) {
  .section-title {
    font-size: 16px;
  }

  .section-subtitle {
    font-size: 12px;
  }

  .show-all-btn {
    font-size: 12px;
  }
  .product-imgWithGift img {
    height: 200px;
  }
  .product-bodyWithGift {
    padding: 5px;
  }
  .product-nameWithGift {
    font-size: 13px;
  }
  .tag-free {
    top: 6px;
    right: 6px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
  }
  .gift-box {
    bottom: 6px;
    left: 6px;
    border-radius: 8px;
    padding: 6px 6px;
    gap: 4px;
  }
  .gift-box img {
    width: 25px;
    height: 25px;
  }
  .gift-title {
    font-size: 11px;
  }

  .product-img {
    height: 100px;
  }
  .product-badges {
    margin: 5px 0 0;
  }
  .product-title {
    font-size: 12px;
    margin-bottom: 4px;
  }
  .new-price {
    font-size: 14px;
  }
  .ratingCard {
    font-size: 13px;
  }
  .buy-now {
    font-size: 12px;
  }
  .add-to-cart-Icon,
  .add-to-cart {
    font-size: 12px;
  }
  .riyal-icon {
    width: 15px;
  }
  .full-image-card {
    height: 100%;
  }
  .full-image-card img {
    max-height: 270px;
  }
  .banner-card {
    height: 160px; /* غيّرها حسب التصميم */
  }
}

.perfume-section {
  background: #c5d3e4b3;
  padding: 30px 30px 5px;
}

.perfume-section .perfume-header {
  background: #e6ecf4;
  border-radius: 30px 30px 0 0;
  padding: 20px 20px 60px;
  position: relative;
  overflow: hidden;
}

.perfume-section .curve-holder {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

.perfume-section .curve-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.perfume-section .header-text {
  position: relative;
  z-index: 5;
}

.perfume-section .header-text h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0c243c;
}

.perfume-section .header-text p {
  font-size: 14px;
  color: #5c6f80;
}

.perfume-section .white-area {
  background: #fff;
  padding: 20px;
  border-radius: 0 0 20px 20px;
  margin-top: -10px;
  position: relative;
  z-index: 10;
}

@media (max-width: 1200px) {
  .perfume-section .perfume-header {
    padding: 20px 20px 20px;
  }
}

@media (max-width: 1040px) {
  .perfume-section .perfume-header {
    padding: 20px 20px 0px;
  }

  .perfume-section .side-text h4 {
    font-size: 16px;
  }

  .perfume-section .side-text p {
    margin-bottom: 40px !important;
  }
}

@media (max-width: 991px) {
  .perfume-section .curve-holder {
    display: none;
  }

  .perfume-section .side-text h4 {
    text-wrap: nowrap;
  }

  .perfume-section .side-text p {
    text-wrap: nowrap;
    margin-bottom: 15px !important;
  }

  .perfume-section .perfume-header {
    background: #fff;
  }

  .perfume-section {
    padding: 15px 5px;
  }
  .perfume-section .white-area {
    padding: 0 5px;
  }
}

/* start Reviews-section */
.Reviews-section {
  padding: 20px;
  background:
    linear-gradient(#c5d3e4b3, #c5d3e4b3),
    url("../img/Reviews-section.jpg") center / cover no-repeat;

  background-position: center;
  background-size: cover;
}

.testimonial-card {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #faf1ff 16.5%,
    #faf1ff 73.5%,
    #ffffff 100%
  );
  margin-top: 70px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  border: 2px solid var(--main-color--);
  padding: 5px;
  width: 100%;
}

.testimonial-card .image-container {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: -73px auto 29px;
  border: 2px solid var(--main-color--);
}

.testimonial-card .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card .name {
  font-size: 20px;
  color: var(--main-color--);
  margin: -20px 0 10px;
}

.testimonial-card .review {
  font-size: 16px;
  color: var(--Text-color--);
  margin: 0;
}
@media (max-width: 786px) {
  .testimonial-card .image-container {
    width: 70px;
    height: 70px;
    margin: -40px auto 29px;
  }
  .Reviews-section {
    padding: 10px;
  }
  .testimonial-card {
    margin-top: 40px;
  }
}

/* end Reviews-section */

/* start footer  */
.footer {
  background: var(--main-color--);
  color: white;
  padding: 70px 0 0;
  overflow: hidden;
}
.footer * {
  text-align: right;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
}

.footer-top img {
  max-width: 155px;
  max-height: 80px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-column h3 {
  font-size: 18px;
  color: white;
  margin: 10px 0;
}
.footer-column p {
  font-size: 14px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: white;
}

.app_btn {
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 5px;
}
.app_btn a {
  white-space: nowrap;
  color: white;
  background-color: black;
  text-transform: capitalize;
  font-size: 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition);
  padding: 3px;
  cursor: pointer;
}

.payment-methods img {
  width: 50px;
  margin: 5px;
}

.footer .media a {
  padding: 10px;
  font-size: 25px;
  color: #fff;
}

.con_soc {
  display: flex;
  gap: 10px;
}

.faq-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background-color: var(--main-color--);
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.151);
  position: relative;
}
@media screen and (max-width: 1000px) {
  .footer {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  .footer-column p {
    font-size: 17px;
  }
  .footer-column_end {
    justify-content: space-between;
  }
  .footer {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 780px) {
  .con_soc {
    justify-content: center;
  }

  .faq-button {
    width: 35px;
    height: 35px;
  }
  .payment-methods img {
    width: 30px;
    margin: 5px;
  }
}
.faq-button:hover {
  animation: jello-vertical 1s both;
  background-color: #fff;
}
.tooltip {
  position: absolute;
  top: -20px;
  opacity: 0;
  color: white;
  padding: 5px 5px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 0.2s;
  pointer-events: none;
}
.tooltip::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: inherit;
  background-size: 1000%;
  background-position: center;
  transform: rotate(45deg);
  bottom: -15%;
}
.faq-button:hover .tooltip {
  top: -40px;
  opacity: 1;
  transition-duration: 0.3s;
}
.footer-bottom {
  background-color: #fff;
  color: #000;
}

@keyframes jello-vertical {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(0.75, 1.25, 1);
  }
  40% {
    transform: scale3d(1.25, 0.75, 1);
  }
  50% {
    transform: scale3d(0.85, 1.15, 1);
  }
  65% {
    transform: scale3d(1.05, 0.95, 1);
  }
  75% {
    transform: scale3d(0.95, 1.05, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}

/* end footer  */

/* start  productPage  */

.thumbnail {
  cursor: pointer;
  border: 3px solid transparent;
  transition: 0.3s;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: contain;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: var(--main-color--);
}

.productPage .mainImageCon {
  width: 500px;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  transition: opacity 0.3s ease-in-out;
}

.productPage .mainImageCon #mainImage {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease-in-out;
}

.thumbnailContainer {
  max-width: 330px;
  margin: 0 auto;
}

#thumbCarousel svg {
  color: var(--main-color--);
  font-size: 30px;
}
@media (max-width: 480px) {
  .thumbnailContainer {
    max-width: 180px;
  }
  .thumbnail {
    width: 70px !important;
    height: 60px !important;
  }
}

.productPage .card-custom {
  background-color: #f7fbed;
  border-radius: 10px;
  padding: 15px;
  color: var(--Text-color--);
}
.productPage .card-custom strong {
  font-weight: 500;
}
.sea_product .buy-button:hover svg path {
  stroke: var(--main-color--);
}
.sea_product .addToCart {
  background-color: #fff;
  border: 2px solid var(--main-color--);
  color: var(--main-color--);
  font-weight: bold;
}

.sea_product .addToCart:hover {
  background-color: var(--main-color--);
  border: 2px solid var(--main-color--);
  color: #fff;
}
.sea_product .addToCart:hover svg path {
  fill: #fff;
}

@media (max-width: 500px) {
  .sea_product .addToCart {
    width: 70% !important;
    padding: 6px 0;
  }
}
.productPage .nav {
  display: flex;
  justify-content: space-evenly;
  padding: 0 0 20px;
  border: none;
  text-align: center;
}
.productPage .nav .nav-item {
  width: 50%;
}
.productPage .nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid #bdbdbd;
  color: var(--Text-color--);
}
.productPage .nav-tabs .nav-link.active {
  border-bottom: 2px solid var(--main-color--);
  font-weight: 600;
  background-color: transparent;
}

.productPage .tab-content {
  padding: 15px;
  border: 1px solid #d9d7d7;
  border-radius: 10px;
}

.more-text {
  display: block;
}
.show-more-btn {
  display: none;
}
@media (max-width: 768px) {
  .productPage .tab-content {
    padding: 5px;
  }
  .more-text {
    display: none;
  }
  .show-more-btn {
    color: var(--main-color--);
    border: none;
    cursor: pointer;
    margin-top: 10px;
    display: inline;
    font-weight: 500;
  }
}

.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 25px;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}
.step .circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  border: 1.5px solid #d1d1d1;
  color: #666;
  background-color: #fff;
}
.step.active .circle {
  background-color: var(--main-color--);
  color: white;
}
.step::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1.5px;
  background-color: #d1d1d1;
  top: 18px;
  left: 50%;
  z-index: -1;
}
.step:first-child::before {
  display: none;
}

.step span {
  margin-top: 10px;
  color: #666;
  white-space: nowrap;
}
.step.active span {
  font-weight: bold;
  color: black;
}

.productPage .progress-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.productPage .progress-text {
  font-size: 14px;
  font-weight: bold;
  color: var(--Text-color--);
}
.productPage .progress-bar-container {
  position: relative;
  width: 100%;
  height: 5px;
  background: #ddd;
  border-radius: 4px;
  overflow: hidden;
}
.productPage .progress-bar {
  height: 100%;
  background: #eaa300;
  width: 0%; /* ستتغير بالـ JavaScript */
  transition: width 0.5s ease-in-out;
}

.productPage .form-control:focus {
  border-color: var(--main-color--);
  box-shadow: none;
}
.productPage select.form-control {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}

.phoneCon.flagenglish .iti__flag-container {
  left: auto !important;
  right: 0;
}

.paddingInput {
  padding-left: 5px !important;
  padding-right: 95px !important;
}

.smallconImages {
  max-height: 450px;
  overflow-y: auto;
}

@media (max-width: 991px) {
  .productPage .mainImageCon {
    width: 300px;
    height: 270px;
    border-radius: 8px;
    overflow: hidden;
  }

  .smallconImages {
    max-height: unset;
    overflow-y: unset;
    width: 100%;
    max-width: 330px;
    overflow-x: auto;
  }
}

input[type="radio"],
input[type="checkbox"] {
  accent-color: var(--main-color--);
  width: 19px;
  height: 19px;
}
.checkbox-container,
.delivery_address_con {
  background: #fef8f2;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.toggle-switch {
  position: relative;
  min-width: 45px;
  height: 25px;
  padding: 5px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 20px;
  transition: 0.4s;
}

.toggle-switch .slider:before {
  position: absolute;
  content: "";
  height: 23px;
  width: 24px;
  left: -1px;
  bottom: 1px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
}

.toggle-switch input:checked + .slider {
  background-color: var(--main-color--);
}

.toggle-switch input:checked + .slider:before {
  transform: translateX(20px);
}
.delivery-gift {
  opacity: 0;
  transform: translateY(10px);
  max-height: 0;
  overflow: hidden;
  transition:
    opacity 0.99s ease,
    transform 0.99s ease,
    max-height 0.99s ease;
}

.delivery-gift.show {
  opacity: 1;
  transform: translateY(0);
  max-height: 500px; /* رقم كبير يكفي المحتوى */
}

.delivery-options {
  display: flex;
  gap: 10px;
}

.delivery-card {
  flex: 1;
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: 0.3s;
}

.delivery-card:hover {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.productPage .radio-group label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .delivery_address_con h5 {
    font-size: 16px;
  }
  .delivery_address_con p {
    font-size: 14px;
  }
  .delivery_address_con svg {
    width: 40px;
    height: 37px;
  }
  .delivery-card {
    padding: 5px;
  }

  .productPage input[type="radio"] {
    width: 15px;
    height: 15px;
  }
}

#map {
  height: 300px;
  width: 100%;
  border-radius: 10px;
}

.productPage legend {
  font-size: 18px;
  font-weight: bold;
}

.productPage .payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--holdText-color--);
  padding: 0 10px;
  margin: 5px 0;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  min-height: 50px;
}

.payment-option:hover,
.payment-option.selected {
  border: 2px solid var(--main-color--);
  box-shadow: 0 0 10px rgba(125, 95, 192, 0.3);
  scale: 1.02;
}
.payment-option input {
  margin-right: 10px;
}

.payment-option img {
  width: 50px;
  height: auto;
}

.order-confirmation {
  text-align: center;
  padding: 30px 30px 15px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 60%;
  margin: 20px auto;
}

.order-confirmation h2 {
  color: var(--Text-color--);
  font-size: 24px;
}

.order-confirmation .message {
  color: var(--Text-color--);
  font-size: 16px;
  line-height: 1.6;
}

.order-confirmation .buttons {
  margin-top: 20px;
}

.order-confirmation .btn {
  padding: 10px 15px;
  border-radius: 8px;
  background: var(--main-color--);
  transition: var(--transition);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid var(--main-color--);
  background: #fff;
  color: var(--main-color--);
}

.order-confirmation .btn:hover {
  background: var(--main-color--);
  color: #fff;
}
.order-confirmation .btn:hover svg path {
  stroke: #fff;
  fill: #fff;
}
@media (max-width: 600px) {
  .order-confirmation {
    width: 90%;
    padding: 30px 15px 15px;
  }
  .order-confirmation .btn {
    width: 100%;
  }
}

.payment-success {
  background: #dee8f5;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  width: 600px;
  margin: 0 auto 20px;
}
@media (max-width: 600px) {
  .payment-success {
    padding: 10px;
    width: 95%;
    margin-top: 10px;
  }
}
.payment-success h2 {
  color: var(--Text-color--);
  font-size: 22px;
}

.payment-success .sub-text {
  color: #616161;
  font-size: 22px;
  margin-bottom: 15px;
}

.payment-success hr {
  border: 0;
  height: 1px;
  background: #616161;
  margin: 10px 0;
}

.payment-success .total-amount {
  font-size: 22px;
  color: #616161;
  margin: 0;
}

.payment-success .amount {
  font-size: 24px;
  color: var(--Text-color--);
  margin: 0 0 20px;
  font-weight: bold;
}

.payment-success .payment-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.payment-success .detail-box {
  border: 1px solid #d1d1d1;
  padding: 12px;
  border-radius: 8px;
  margin: 10px;
  max-width: 200px;
}

.payment-success .label {
  font-size: 18px;
  color: var(--Text-color--);
  font-weight: bold;
  line-height: 20px;
  margin-bottom: 5px;
}
.payment-success .Ptext {
  font-size: 18px;
  color: #616161;
  margin: 0;
}

.payment-success .download-pdf {
  display: block;
  margin-top: 20px;
  color: var(--Text-color--);
  text-decoration: none;
  font-weight: bold;
  font-weight: 500;
  font-size: 25px;
  line-height: 20px;
}

.payment-success .download-pdf:hover {
  text-decoration: underline;
}

.order-tracking {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.order-tracking .order-status p {
  font-size: 14px;
  color: #3d2c59;
  margin-bottom: 8px;
}

.order-tracking .status-button {
  background: #fdf2d5;
  color: #6c5b3b;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.order-tracking .status-button img {
  width: 16px;
  height: 16px;
}

.order-tracking .order-info {
  text-align: right;
}

.order-tracking .order-info h2 {
  color: var(--Text-color--);
  font-size: 22px;
  margin-bottom: 5px;
  font-weight: bold;
}

.order-tracking .arrival-time {
  font-size: 16px;
  font-weight: bold;
  color: var(--Text-color--);
  margin: 20px 0 3px;
}

.note {
  font-size: 14px;
  color: #534e61;
  background: #f9f8fd;
  padding: 3px 12px;
  border-radius: 10px;
  display: inline-block;
}

.order-tracking .order-number p {
  font-size: 14px;
  color: var(--Text-color--);
  font-weight: bold;
}

.order-tracking .order-id {
  font-size: 16px;
  color: var(--Text-color--);
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 6px;
}

.order-tracking .copy-btn {
  background: #f7f5fc;
  border: none;
  cursor: pointer;
  font-size: 18px;
}

.copy-message {
  font-size: 14px;
  color: #6c5b7b;
  font-weight: bold;
  margin-left: 10px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.copy-message.show {
  opacity: 1;
}

.timeline {
  position: relative;
  max-width: 700px;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 30px;
  padding: 0px 20px;
}

@media (max-width: 1290px) {
  .timeline {
    max-width: 600px;
  }
}

@media (max-width: 1200px) {
  .timeline {
    max-width: 490px;
  }
}

@media (max-width: 768px) {
  .timeline {
    max-width: 400px;
    padding: 0;
  }
}
@media (max-width: 600px) {
  .timeline {
    max-width: 250px;
    padding: 0;
  }
}

.timeline::before {
  content: "";
  position: absolute;
  width: 2px;
  background: #ccc;
  top: 10px;
  bottom: 0;
  right: 10px;
}

.timeline-item {
  position: relative;
  padding: 10px 7px 10px;
  background: white;
  border-radius: 6px;
}

.timeline-item h5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 20px;
}

.timeline .icon {
  position: absolute;
  right: -30px;
  top: 0;
  background: #ccc;
  border-radius: 50%;
  padding: 10px;
  color: #fff;
}

.timeline-item h5 > .icon svg {
  width: 30px;
  height: 28px;
}

.timeline-item p {
  position: relative;
}

.timeline p .icon {
  position: absolute;
  right: -24px;
  top: 1px;
  background: #ccc;
  border-radius: 50%;
  padding: 4px 4px 2px;
  font-size: 10px;
  color: transparent;
}

.timeline-item .details_date {
  position: absolute;
  right: -90px;
  font-size: 0.9rem;
  color: #666;
}

.timeline-item h5 .details_date {
  right: -160px;
}

.timeline-item:not(.completed) .details_date {
  visibility: hidden;
}

.timeline-item:not(.completed) .details_date::after {
  content: "_  _  _  _";
  /* استبدال الوقت بشرطة */
  visibility: visible;
  position: absolute;
  left: 0;
  top: -6px;
  right: 0;
  text-align: center;
  color: #666;
  letter-spacing: 1px;
  /* التحكم في تباعد الأحرف */
  font-weight: bold;
  font-size: 18px;
}

.timeline-item.completed .icon {
  background: var(--main-color--);
  border-color: var(--main-color--);
  color: #fff;
}

.details_contact_btn svg {
  width: 26px;
  height: 26px;
}

.details_contact_btn a.follow {
  color: #bdbdbd;
  border: 1px solid #bdbdbd;
  border-radius: 8px;
}

.timeline-item.completed .details_contact_btn a.follow {
  color: var(--main-color--);
  border: 1px solid var(--main-color--);
  border-radius: 8px;
}

.timeline-item.completed .details_contact_btn svg path {
  stroke: var(--main-color--);
}

.timeline-item.completed .details_contact_btn svg rect {
  stroke: var(--main-color--);
}

@media (max-width: 400px) {
  .timeline {
    max-width: 250px;
    padding: 0;
  }

  .timeline-item {
    padding: 10px 0 10px;
  }

  .timeline-item h5 {
    padding: 0 20px 0 0;
    font-size: 18px;
  }

  .timeline .icon {
    padding: 8px;
    top: 8px;
  }

  .timeline-item h5 > .icon svg {
    width: 15px;
    height: 15px;
  }

  .timeline-item h5 .details_date {
    right: -91px;
    max-width: 62px;
  }

  .timeline .note {
    font-size: 10px;
  }

  .details_contact_btn a.follow {
    font-size: 12px;
    padding: 4px;
  }

  .details_contact_btn a.follow svg {
    width: 18px;
    height: 18px;
  }

  .timeline-item h5 svg {
    width: 15px;
    height: 15px;
  }

  .timeline::before {
    right: -17px;
  }
}

.timeline .toggle-btn {
  cursor: pointer;
  color: #666;
  font-size: 1rem;
  margin-right: 5px;
}

.timeline .details {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #666;
}

.order-card {
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  margin: 0 auto 20px;
}

.order-header {
  font-weight: bold;
  font-size: 18px;
  color: var(--main-color--);
  margin-bottom: 10px;
}

.order-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  justify-content: space-between;
}

.order-item img {
  width: 85px;
  height: 75px;
  border-radius: 6px;
}

.order-summary {
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.order-card .total {
  font-weight: bold;
  font-size: 18px;
  color: var(--main-color--);
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.numOfCart input {
  border: 1px solid #ddd;
  background-color: #fff;
  padding: 10px 14px;
  border-radius: 0.375rem;
  width: 40px;
}

.numOfCart button {
  color: var(--main-color--);
  font-size: 30px;
  padding-bottom: 0;
  padding-top: 0;
  border: 1px solid #ddd;
  background-color: #fff;
  transition: var(--transition);
}
.numOfCart button:hover {
  background-color: var(--main-color--);
  color: #fff;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #333;
}

.home-icon {
  font-size: 18px;
  text-decoration: none;
  color: black;
}

.separator {
  color: gray;
}

.breadcrumb span {
  font-weight: bold;
}

.discount-container {
  margin: 20px 0;
}

.discount-container label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  color: #333;
}

.discount-box {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  padding: 5px;
}

.discount-box input {
  flex: 1;
  border: none;
  padding: 0 10px;
  outline: none;
  font-size: 14px;
  background: none;
  border-right: 1px solid #d1d1d1;
}

.discount-box .discount-btn {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.discount-box .discount-btn img {
  width: 20px;
  height: 20px;
}

.send-btn {
  padding: 4px 16px;
  background: var(--main-color--);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition);
  text-wrap: nowrap;
}

.send-btn:hover {
  background: var(--main-color-dark--);
  color: white;
}

/* end productPage  */

.free-gift-card {
  background: linear-gradient(135deg, #f2fdf8, #ecfbf4);
  border-color: #b8ecd3;
}

.free-gift-card .gift-icon {
  width: 42px;
  height: 42px;
  background: #4cd07f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 18px;
}

.free-gift-card .inner-gift-card {
  background: #fff;
  border: 1px solid #d9f3e6;
}

.free-gift-card .product-icon img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent !important;
  transition: var(--transition);
}
.iti--separate-dial-code .iti__selected-flag:hover {
  background-color: #27d9b525 !important;
}
.iti__country-list {
  left: 0;
}
#phoneWithCode {
  text-align: right;
  padding-left: 240px;
}

.flagenglish .iti__country-list {
  left: unset;
  right: 0;
}
.flagenglish #phoneWithCode {
  text-align: left;
}

@media (min-width: 768px) {
  .iti {
    width: 100%;
  }
}

.iti-mobile .iti--container {
  top: 25% !important;
  bottom: 0 !important;
}

.phoneCon.flagenglish .iti__flag-container {
  left: auto !important;
  right: 0;
}

.points-wrapper {
  border-radius: 24px;
  background: #eef2f7;
  border: 2px solid #8fa1b8;
}

.points-wrapper .points-balance {
  background: linear-gradient(135deg, #2f6fb6, #1f4f8f);
  border-radius: 20px;
}

.points-wrapper .icon-circleImage img {
  width: 30px;
  height: 30px;
}
.points-wrapper .icon-circle {
  padding: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.points-wrapper .icon-circle.dark img {
  width: 30px;
  height: 30px;
}
.points-wrapper .icon-circle.dark {
  background: #0d2b4d;
}

.points-wrapper .use-points {
  background: #fff;
  border-radius: 18px;
}

.points-wrapper .form-switch .form-check-input {
  width: 42px;
  height: 22px;
}

.custom-container {
  opacity: 0;
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  animation: cardFadeUp 0.5s forwards;
}

@keyframes cardFadeUp {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.seaMore-section .filter-container {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border: 1px solid #d1d1d1;
}

.seaMore-section .price-range {
  border-bottom: 1px solid #d1d1d1;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.seaMore-section .filter-container .filter-group {
  border-top: 1px solid #d1d1d1;
  padding: 15px 0;
}
.seaMore-section .filter-container .search-box-con {
  border-top: 1px solid #d1d1d1;
  padding: 15px 0;
}
.seaMore-section .filter-header {
  color: var(--main-color--);
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

.seaMore-section .clear-filter {
  color: var(--main-color--);
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 10px;
}
.toggle-filter {
  display: flex;
  align-items: center;
  border-radius: 6px;
  background: var(--main-color--);
  padding: 7px;
}

.seaMore-section .selected-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 15px;
}

.seaMore-section .selected-filters span {
  border: 1px solid #d1d1d1;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.seaMore-section .selected-filters span i {
  color: var(--main-color--);
  cursor: pointer;
}

.seaMore-section .search-box {
  display: flex;
  align-items: center;
  border-radius: 5px;
  padding: 5px;
  width: auto;
  gap: 5px;
}

.seaMore-section .search-box input {
  border: none;
  outline: none;
  flex: 1;
  padding: 0;
  margin: 0;
}

.seaMore-section .search-box button {
  background: var(--main-color--);
  color: white;
  border: none;
  padding: 2px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}
.seaMore-section .fa-magnifying-glass {
  color: #616161;
}
.seaMore-section .fa-magnifying-glass:hover {
  animation: none;
}

.seaMore-section .filter-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--main-color--);
}

.seaMore-section .filter-option {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}

.seaMore-section .filter-option input {
  accent-color: var(--main-color-dark--);
}

.seaMore-section .filter-option label {
  flex: 1;
  font-size: 14px;
}

.seaMore-section .filter-option span {
  font-size: 12px;
  color: #666;
}

.seaMore-section .price-range {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.seaMore-section .price-range input {
  width: 100px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px;
  font-size: 13px;
}

.seaMore-section .submit-filter {
  background: var(--main-color--);
  color: white;
  border: none;
  padding: 5px 40px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  margin: auto;
  transition: var(--transition);
}

.seaMore-section button:hover {
  background: var(--main-color--);
}
.filter.open {
  top: 0;
  bottom: 60px;
  margin: 60px 0;
  padding-top: 35px;
  max-height: calc(100vh - 140px);
  overflow: auto;
}
#closeFilter {
  top: 4px;
}
@media (max-width: 768px) {
  .filter {
    position: fixed;
    top: 120%;
    background: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: 0.8s ease-in-out;
    padding: 20px 0;
    z-index: 99999;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    right: 50%;
    transform: translateX(50%);
    width: 90%;
  }
  .seaMore-section .card-body {
    padding: 8px;
  }
}

.seaMore-service-section .buy-button,
.seaMore-Offer-section .buy-button {
  width: 100% !important;
}

/* end serviceSeaMore  */
.walletPage .page-title {
  text-align: start;
  margin-bottom: 2rem;
  color: #000;
  font-size: 1.75rem;
}

.walletPage .custom-card {
  background: white;
  border-radius: 1.5rem;
  border: none;
  box-shadow: var(--card-shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.walletPage .custom-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-hover-shadow);
}

.walletPage .balance-card {
  background: linear-gradient(135deg, #1e5bb0 0%, #163a6e 100%);
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.walletPage .balance-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.walletPage .balance-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.walletPage .balance-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 1rem;
  padding: 1rem;
  background: #ffffff1a;
  border-radius: 10px;
}

.walletPage .conversion-rate {
  font-size: 0.85rem;
  opacity: 0.7;
}

.walletPage .cash-value {
  font-size: 1.25rem;
  font-weight: 700;
}

.walletPage .steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.walletPage .step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  position: relative;
}

.walletPage .step-item:last-child {
  margin-bottom: 0;
}

.walletPage .step-number {
  background: #f1f5f9;
  color: var(--text-muted);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-left: 1rem;
  flex-shrink: 0;
}

.walletPage .step-content h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.walletPage .step-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.walletPage .tip-card {
  background: #eef5ff;
  border: 1px solid #dbeafe;
}

.walletPage .tip-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #1e40af;
}

.walletPage .tip-text {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.walletPage .btn-use-points {
  background: linear-gradient(105.15deg, #3573be 0%, #153255 100%);

  color: white;
  border: none;
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
}

.walletPage .btn-use-points:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 10px -1px rgba(37, 99, 235, 0.4);
  color: white;
}

.walletPage .action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1rem;
  height: 100%;
  cursor: pointer;
}

.walletPage .action-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.walletPage .action-card:hover .action-icon {
  transform: scale(1.1) rotate(5deg);
}

.walletPage .icon-wallet {
  background-color: #dedfdf91;
}
.walletPage .icon-gift {
  background-color: #dcfce7;
  color: #16a34a;
}
.walletPage .icon-bag {
  background-color: #f3f4f6;
  color: #4b5563;
}
.walletPage .icon-history {
  background-color: #f1f5f9;
  color: #64748b;
}

.walletPage .icon-blue-light {
  background-color: #dbeafe;
  color: #2563eb;
}
.walletPage .icon-green {
  background-color: #1dafa11a;
  color: #1dafa1;
}
.walletPage .icon-green-light {
  background-color: #dcfce7;
  color: #16a34a;
}
.walletPage .icon-cyan-light {
  background-color: #cffafe;
  color: #0891b2;
}

.walletPage .action-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.walletPage .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.walletPage .section-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.walletPage .view-all {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

.walletPage .transaction-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 1rem;
  margin-bottom: 1rem;
  transition: background-color 0.2s;
}

.walletPage .transaction-item:hover {
  background: #f1f5f9;
}

.walletPage .trans-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.walletPage .trans-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.walletPage .trans-icon.up {
  background-color: #dcfce7;
  color: #16a34a;
}

.walletPage .trans-icon.down {
  background-color: #fee2e2;
  color: #dc2626;
  transform: rotate(90deg);
}

.walletPage .trans-details h6 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.walletPage .trans-details p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.walletPage .trans-amount {
  text-align: left;
}

.walletPage .trans-points {
  font-weight: 700;
  font-size: 1rem;
  display: block;
}

.walletPage .points-plus {
  color: #16a34a;
}
.walletPage .points-minus {
  color: #dc2626;
}

.walletPage .trans-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.walletPage .fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.walletPage .delay-1 {
  animation-delay: 0.1s;
}
.walletPage .delay-2 {
  animation-delay: 0.2s;
}
.walletPage .delay-3 {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .walletPage .coin-icon-wrapper img {
    width: 60px;
    height: 60px;
  }
  .walletPage .cash-value {
    font-size: 1rem;
  }
}

.profilePage {
  max-width: 700px;
  margin: 0 auto;
  padding: 15px;
}
/* Animations */
.profilePage .fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.profilePage .fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Card Styling */
.profilePage .custom-card {
  background: white;
  border: none;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  padding: 20px;
  transition: var(--transition);
}

/* Profile Header */
.profilePage .profile-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar-placeholder {
  width: 60px;
  height: 60px;
  background-color: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.profilePage .user-info h5 {
  margin: 0;
  font-weight: 700;
}

.profilePage .user-info p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Points Wallet Card */
.profilePage .wallet-card {
  background: linear-gradient(135deg, #2c5384, #16355d);
  color: white;
  border-radius: 20px;
  padding: 25px;
}

.profilePage .wallet-card .btn-outline-light {
  border-radius: 10px;
  font-size: 0.9rem;
  padding: 5px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.profilePage .wallet-card .btn-light {
  border-radius: 10px;
  font-weight: 600;
  padding: 5px 20px;
}

/* Stats Row */
.profilePage .stat-item {
  text-align: center;
  flex: 1;
}

.profilePage .stat-value {
  font-weight: 700;
  font-size: 1.2rem;
  display: block;
  color: var(--primary-blue);
}

.profilePage .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* List Styling */
.profilePage .menu-list {
  padding: 0;
}

.profilePage .menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: #333;
  transition: var(--transition);
}

.profilePage .menu-item:last-child {
  border-bottom: none;
}

.profilePage .menu-item:hover {
  padding-right: 10px;
  color: var(--primary-blue);
}

.profilePage .menu-icon {
  width: 35px;
  height: 35px;
  background: #f8f9fa;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.profilePage .badge-count {
  background: #e9ecef;
  color: #444;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.profilePage .chevron {
  margin-right: auto;
  color: #ccc;
  font-size: 0.8rem;
}

/* Logout Button */
.profilePage .btn-logout {
  width: 100%;
  border-radius: 15px;
  padding: 12px;
  color: #dc3545;
  background: white;
  border: 1px solid #f8d7da;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.profilePage .btn-logout:hover {
  background: #fff5f5;
  transform: translateY(-2px);
}

.notifications-container {
  max-width: 700px;
  margin: 0px auto 20px;
  padding: 0 20px;
}

/* Header */
.notifications-container .header-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.notifications-container .title {
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 5px;
}

.notifications-container .subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.notifications-container .mark-read-btn {
  background: white;
  border: 1px solid #e2e8f0;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  color: var(--text-main);
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  margin-right: auto;
  margin-bottom: 20px;
}

.notifications-container .mark-read-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

/* Notification Card */
.notifications-container .notif-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid transparent;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.notifications-container .notif-card.show {
  opacity: 1;
  transform: translateY(0);
}

.notifications-container .notif-card:hover {
  transform: scale(1.01);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}

/* Unread State */
.notifications-container .notif-card.unread {
  background-color: var(--unread-bg);
}

.notifications-container .notif-card.unread::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-blue);
}

/* Icon Container */
.notifications-container .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.notifications-container .icon-points {
  background: #fff7ed;
  color: #f59e0b;
}

.notifications-container .icon-offer {
  background: #ecfdf5;
  color: #10b981;
}

.notifications-container .icon-order {
  background: #eff6ff;
  color: #3b82f6;
}

.notifications-container .icon-alert {
  background: #fef2f2;
  color: #ef4444;
}

/* Content */
.notifications-container .notif-content {
  flex-grow: 1;
  padding: 0 20px;
}

.notifications-container .notif-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.notifications-container .notif-text {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 4px;
  line-height: 1.6;
}

.notifications-container .notif-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Delete Button */
.notifications-container .delete-btn {
  background: none;
  border: none;
  color: #cbd5e1;
  padding: 8px;
  transition: color 0.2s;
  cursor: pointer;
}

.notifications-container .delete-btn:hover {
  color: #ef4444;
}

/* Responsive */
@media (max-width: 576px) {
  .notifications-container .notif-card {
    padding: 15px;
  }

  .notifications-container .icon-box {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .notifications-container .notif-content {
    padding: 0 12px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.myordersPage .animate-in {
  animation: fadeIn 0.4s ease-out forwards;
}

/* Breadcrumb */
.myordersPage .breadcrumb-item a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.myordersPage .breadcrumb-item a:hover {
  color: var(--primary-color);
}

.myordersPage .breadcrumb-item.active {
  color: #1f2937;
  font-weight: 600;
}

/* Page Title */
.myordersPage h1.page-title {
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
}

/* Filter Section */
.myordersPage .filter-section {
  background: transparent;
  margin-bottom: 2rem;
}

.myordersPage .form-control,
.myordersPage .form-select {
  border-radius: 0.5rem;
  padding: 0.6rem 1rem;
  border-color: #e5e7eb;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.myordersPage .form-control:focus,
.myordersPage .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(59, 93, 146, 0.1);
}

.myordersPage .search-container {
  position: relative;
}

.myordersPage .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

/* Status Tabs */
.myordersPage .status-tabs {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.myordersPage .status-tab {
  background: white;
  border: 1px solid #e5e7eb;
  color: var(--text-secondary);
  padding: 0.4rem 1.2rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.myordersPage .status-tab:hover {
  background-color: #f3f4f6;
}

.myordersPage .status-tab.active {
  background-color: #eff6ff;
  color: var(--primary-color);
  border-color: #bfdbfe;
}

/* Order Cards */
.myordersPage .order-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: unset;
  margin-bottom: 1rem;
  transition: all 0.3s ease-out;
  position: relative;
  overflow: hidden;
  opacity: 1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: unset;
}

.myordersPage .order-card.hidden {
  opacity: 0;
  max-height: 0;
  margin-bottom: 0;
  padding: 0;
  border: none;
  visibility: hidden;
}

.myordersPage .order-card:hover:not(.hidden) {
  transform: translateY(-2px);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.05),
    0 4px 6px -2px rgba(0, 0, 0, 0.025);
  border-color: #d1d5db;
}

/* Badges */
.status-badge {
  font-size: 0.8rem;
  padding: 0.35em 0.8em;
  border-radius: 999px;
  font-weight: 600;
  margin: 0 5px;
}

.badge-progress {
  background-color: #fef3c7;
  color: #d97706;
}

.badge-success {
  background-color: #d1fae5;
  color: #059669;
}

.badge-failed {
  background-color: #fee2e2;
  color: #dc2626;
}

.myordersPage .order-id {
  font-weight: 700;
  font-size: 1.1rem;
  margin-right: 0.5rem;
}

/* Product */
.myordersPage .product-image-container {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid #f3f4f6;
}

.myordersPage .product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.myordersPage .product-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.myordersPage .meta-text {
  color: #757677;
}

.myordersPage .price-label {
  color: #6b7280;
  font-size: 0.9rem;
}

.myordersPage .price-value {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Buttons */
.myordersPage .btn-action {
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 0.375rem;
  transition: all 0.2s;
}

.myordersPage .btn-primary-custom {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: white;
}

.myordersPage .btn-primary-custom:hover {
  background-color: #2e4a78;
  border-color: #2e4a78;
  color: white;
  box-shadow: 0 4px 6px -1px rgba(59, 93, 146, 0.4);
}

.myordersPage .btn-outline-custom {
  background-color: white;
  border: 1px solid #d1d5db;
  color: #4b5563;
}

.myordersPage .btn-outline-custom:hover {
  background-color: #f9fafb;
  border-color: #9ca3af;
  color: #1f2937;
}

/* Responsive */
@media (max-width: 768px) {
  .myordersPage .order-card {
    padding: 1rem;
  }
  .myordersPage .status-tabs {
    justify-content: flex-start;
    margin-top: 1rem;
  }

  .myordersPage .status-tab {
    padding: 0.4rem 0.9rem !important;
    font-size: 0.8rem;
  }

  .myordersPage .order-header-info {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.5rem;
  }

  .myordersPage .price-container {
    margin-bottom: 0.5rem;
  }

  .myordersPage .card-body-content {
    flex-direction: column;
  }

  .myordersPage .product-actions {
    width: 100%;
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
  }

  .myordersPage .btn-action {
    flex: 1;
  }
  .textSize {
    font-size: 14px;
  }
}

.form-select {
  background-position: left 0.75rem center;
}

.cursor-pointer {
  cursor: pointer;
}

.otherAddress label:hover {
  background-color: #f8f9fa;
}

.otherAddress input[type="radio"]:checked + div {
  color: var(--main-color--);
}
.no-w {
  width: unset !important;
}
.nowrap {
  text-wrap: nowrap;
}

.pac-container {
  z-index: 1056 !important; /* أعلى من Bootstrap modal */
}

.swiper-wrapper {
  height: unset !important;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

/* صندوق المودال */
.modal-con {
  background: white;
  padding: 20px 20px 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  position: relative;
  width: 40%;
  overflow: auto;
}

/* عرض المودال */
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  z-index: 999999;
}

.modal-overlay.active .modalserv {
  transform: translateY(0);
}

.modalservTitle {
  border-bottom: 1.5px solid #d1d1d1;
  padding-bottom: 15px;
  padding-top: 15px;
}

/* زر إغلاق */
.modal-overlay .close-btn {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 20px;
  cursor: pointer;
  background: none;
  border: none;
}

.add-rating {
  color: var(--main-color--);
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
.rating-form {
  display: flex;
  align-items: center;
}
.rating-form .rating {
  font-size: 1.5rem;
}
.rating-form .rating svg {
  cursor: pointer;
  fill: #ccc;
  transition: fill 0.3s;
  width: 30px;
  height: 30px;
}
.rating-form .rating svg path {
  fill: #d0d0d0;
}
.rating-form .rating svg.selected path {
  fill: var(--main-color--);
}

/* Responsive */
@media (max-width: 888px) {
  .modal-con {
    width: 90%;
  }
}

.order-details .order-card-details {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.order-details .product-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
}

.order-details .btn-buy-again {
  background-color: #3b5998;
  color: white;
  border: none;
}

.order-details .btn-buy-again:hover {
  background-color: #2d4373;
  color: white;
}

.order-details .order-header-info {
  color: #6c757d;
  font-size: 0.95rem;
}

.order-details .price-total {
  color: #3b5998;
  font-weight: bold;
}

header .search-box-wrapper {
  width: 100% !important;
}

.live-search-dropdown {
  margin-top: 8px !important;
  min-width: 300px !important;
}

.CompleteProfile {
  max-width: 800px;
  margin: 0 auto 20px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.CompleteProfile .profile-upload-wrapper {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
}

.CompleteProfile .profile-preview {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px dashed #cbd5e0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #f8fafc;
}

.CompleteProfile .profile-preview:hover {
  border-color: var(--main-color--);
  background-color: #eff6ff;
}

.CompleteProfile .profile-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}

.CompleteProfile .upload-text {
  text-align: center;
  font-size: 0.9rem;
  color: #64748b;
  padding: 10px;
}

.CompleteProfile .edit-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-weight: bold;
}

.CompleteProfile .profile-preview.has-image:hover .edit-overlay {
  opacity: 1;
}

.CompleteProfile .profile-preview.has-image {
  border-style: solid;
  border-color: var(--main-color--);
}

/* <!-- start new 4-3-2026 -- > */
 .gift-wrapping-section {
  transition: all 0.3s ease;
  border: 1.5px dashed #d1d1d1 !important;
  background-color: #fdfdfd;
  cursor: pointer;
}

.gift-wrapping-section:hover {
  border-color: var(--textMaincolor, #2ea38d) !important;
  background-color: #f8fffb;
}

.gift-wrapping-section .form-check-input:checked {
  background-color: var(--textMaincolor, #2ea38d);
  border-color: var(--textMaincolor, #2ea38d);
  box-shadow: 0 0 8px rgba(46, 163, 141, 0.3);
}

.gift-wrapping-section #giftMessageArea {
  overflow: hidden;
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gift-wrapping-section #giftMessage {
  border-radius: 0 10px 10px 0;
  border: 1px solid #e0e0e0;
  resize: none;
}

.gift-wrapping-section #giftMessage:focus {
  border-color: var(--textMaincolor, #2ea38d);
  box-shadow: none;
}

.gift-wrapping-section .input-group-text {
  border-radius: 10px 0 0 10px !important;
  background-color: #f1f1f1;
  color: var(--textMaincolor, #2ea38d);
}
/* <!-- end start new 4-3-2026 -- > */

