/* Main Styles */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
 
}

/*:root {*/
  /* Colors */
/*  --athens-gray: #f9fafb;*/
/*  --athens-gray-light: #f3f4f6;*/
/*  --athens-gray-dark: #e5e7eb;*/
/*  --azalea: #fadadd;*/
/*  --azalea-30: rgba(250, 218, 221, 0.3);*/
/*  --azalea-90: rgba(250, 218, 221, 0.9);*/
/*  --black-10: rgba(0, 0, 0, 0.1);*/
/*  --candlelight: #facc15;*/
/*  --ebony-clay: #1f2937;*/
/*  --gray-chateau: #9ca3af;*/
/*  --mischka: #d1d5db;*/
/*  --pale-sky: #6b7280;*/
/*  --river-bed: #4b5563;*/
/*  --sweet-pink: #ff9eaa;*/
/*  --sweet-pink-90: rgba(255, 158, 170, 0.9);*/
/*  --color-primary: #dd5678;*/
/*  --color-secondary: #ec9fae;*/
/*  --color-white: #ffffff;*/
/*}*/

body {
  background: linear-gradient(to left, rgba(224, 179, 190, 0.32), rgba(224, 179, 190, 0.32)), #ffffff;
  color: #1D1D1F;
  direction: rtl;
  overflow-x: hidden;
  font-family: 'Tajawal' !important;
}

.hero-section {
  background: linear-gradient(to right, #f7d9df, #f8eaee);
  background-size: cover;
  background-position: center;
  height: 582px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hero-section {
    height: 480px;
  }
}
a{
  text-decoration: none;
}

/* Bootstrap Overrides */
.container {
  max-width: 1280px;
}

.row {
  --bs-gutter-x: 1.5rem;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.text-rose-600, .text-rose-500, .text-rose-400 {
  color: var(--color-primary);
}

.bg-rose-400, .bg-rose-500, .bg-rose-60 {
  background-color: var(--color-primary);
}

.bg-rose-100 {
  background-color: var(--azalea);
}

.hover\:bg-rose-100:hover {
  background-color: var(--azalea);
}

.text-gray-400 {
  color: var(--pale-sky);
}

.text-gray-500 {
  color: var(--river-bed);
}

.text-gray-600 {
  color: var(--ebony-clay);
}

.text-gray-700 {
  color: #374151;
}

.text-gray-800 {
  color: #1f2937;
}

.text-title-17 {
  color: var(--ebony-clay);
}

.text-white {
  color: var(--color-white);
}

.bg-white {
  background-color: var(--color-white);
}

.bg-pink-200 {
  background-color: var(--sweet-pink);
}

.hover\:bg-pink-300:hover {
  background-color: var(--sweet-pink-90);
}

.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
}

/* Custom Heights */
.h-96 {
  height: 24rem;
}

.h-16 {
  height: 4rem;
}

.h-12 {
  height: 3rem;
}

.h-10 {
  height: 2.5rem;
}

.h-8 {
  height: 32px;
}

.h-6 {
  height: 1.5rem;
}

.h-5 {
  height: 1.25rem;
}

.w-8 {
  width: 2rem;
}

.w-5 {
  width: 1.25rem;
}

/* Custom column for 5 items per row */
.col-lg-2-4 {
  flex: 0 0 auto;
  width: 20%;
}

/* Dropdown menus */
.dropdown-menu {
  position: absolute;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 0.25rem;
  z-index: 1000;
}

/* Category Cards */
.category-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
  height: 30rem;
}

.category-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

}
.category-card:hover img {
  transform: scale(1.5) translateY(70px);
  z-index: 10;
}

.category-card img {
  transition: transform 1s ease;
}

.category-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, rgba(221, 86, 120, 0.8), rgba(221, 86, 120, 0.2));
  z-index: 1;
}

.category-card .bg-gradient-to-b {
  background: linear-gradient(to top, rgba(221, 86, 120, 0.8), rgba(221, 86, 120, 0.2));
  opacity: 0.8;
  z-index: 10;
}

.category-card:hover .bg-gradient-to-b {
  height: 100vh;
  background: 
    linear-gradient(to top, rgba(31, 41, 55, 0.9), rgba(131, 139, 150, 0.8)),
    url('../../assets_new/images/card0.png') !important;
  background-size: cover !important;
  background-position: center !important;
  background-blend-mode: overlay !important;
  opacity: 1;
  margin-top: 0 !important;
}

.category-card:hover > div:last-child {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.category-card h3 {
  color: white;
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
  transition: transform 1s ease;
}

.category-card:hover h3 {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .category-card {
    height: 255px; 
    border-radius: 16px;
    width: 100%;
  }
  .category-card h3{
    font-size: 1.1rem !important;
  }
  .section_special
  {
    padding-top: 148px !important;    
  }
}
/* Product Cards */
.product-card {
  background: #fff;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.product-image-container {
  position: relative;
  padding-top: 133%;
  overflow: hidden;
  background: #f8f8f8;
  border-radius: 20px 20px 0 0;
}

.product-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/frame-90.png') no-repeat center;
  background-size: cover;
  z-index: 1;
}

.product-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 2;
  background-color: #fff;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: #DD5678;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  z-index: 3;
}

.product-hover-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.product-info {
  background-color: #fff;
  padding: 16px;
  text-align: center;
  border-top: 1px solid #f0f0f0;
}

.product-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--ebony-clay);
  margin-bottom: 0.5rem;
  text-align: center;
}

.product-price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
}

.price-currency {
  font-size: 0.75rem;
  color: var(--pale-sky);
}

.price-amount {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.price-old {
  color: var(--pale-sky);
  text-decoration: line-through;
  font-size: 0.75rem;
  margin-right: 0.5rem;
}

/* Discount Banner */
.discount-banner {
  background: linear-gradient(90deg, rgba(221, 193, 207, 1) 0%, rgba(221, 86, 120, 1) 51.83%);
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 20px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.discount-timer-box {
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.discount-timer-box:hover {
  transform: scale(1.05);
  background: white;
}

/* Pagination */
.pagination-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.pagination-btn:hover {
  background-color: #fff;
  color: #DD5678;
  border-color: #f9a8b9;
  box-shadow: 0 4px 8px rgba(221, 86, 120, 0.15);
  transform: translateY(-1px);
}

/* Footer */
.footer-divider {
  border-top: 1px solid #e5e5e5;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--color-primary);
  color: white;
}

.newsletter-input {
  border-radius: 0 0.5rem 0.5rem 0;
  border: 1px solid #d1d5db;
  padding: 0.75rem 1rem;
  flex-grow: 1;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  border-color: #DD5678;
  box-shadow: 0 0 0 3px rgba(221, 86, 120, 0.2);
  outline: none;
}

.newsletter-button {
  background-color: #fadadd;
  color: #4b5563;
  border-radius: 0.5rem 0 0 0.5rem;
  padding: 0 1.5rem;
  transition: all 0.3s ease;
}

.newsletter-button:hover {
  background-color: #f9a8b9;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background-color: white;
  z-index: 1045;
  padding: 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.mobile-menu.open {
  right: 0;
  transform: translateX(0);
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}

/* Product Hover Effects */
.product-hover-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 20;
}

.product-hover-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-hover-icon:hover {
  transform: scale(1.1);
  background: #dd5678;
  color: white;
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
}

.product-image-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.product-image-wrapper:hover:before {
  opacity: 1;
}

.product-image-wrapper:hover .product-hover-icons {
  opacity: 1;
}

/* Product Scroller */
#productScroller {
  overflow-x: scroll;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  scrollbar-width: none;
  cursor: grab;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  min-height: 460px;
  padding-bottom: 30px;
  display: flex;
  flex-wrap: nowrap;
  touch-action: pan-x;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Navigation */
.nav-link {
  color: var(--ebony-clay);
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--color-primary);
}

/* Shopping cart */
.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* Hero section adjustments */
.hero-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 1;
}
@media  (max-width: 768px) {
  .hero-slide {
    width: 100%;
    height: 70%;
    bottom: 3%;
    top: auto;
    /*left: 10%;*/
  }
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .hero-content {
    left: 50%;
    top:40%!important;
  }
}

.hero-content .row {
  border-radius: 10px;
  padding: 30px;
}

.hero-content h1 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1D1D1F;
  font-size: 2.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #1D1D1F;
}

.hero-content .btn-primary {
  background-color: #dd5678;
  border-color: #dd5678;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
}

.hero-content .btn-primary:hover {
  background-color: #c94d6b;
  border-color: #c94d6b;
}

@media (min-width: 768px) {
  .hero-slider {
    height: 550px;
  }
  
  .hero-content {
    top: 179px;
  }
}

@media (min-width: 992px) {
  .hero-slider {
    height: 630px;
  }
}

/* Special Offer Section */
.special-offer {
  background: linear-gradient(to right, #e37195 0%, #f178a0 50%, #f488aa 100%);
  color: white;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.special-offer::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  background-image: url('images/XMLID_106_.png');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0.6;
}

.special-offer::after {
  content: '';
  position: absolute;
  bottom: 0%;
  left: 1%;
  width: 200px;
  height: 200px;
  background-image: url('images/XMLID_125_.png');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 1;
}

.special-offer .col-md-6:first-child {
  position: relative;
  min-height: 300px;
  padding: 0;
  overflow: hidden;
}

.special-offer .col-md-6:first-child img.desktop-img {
  position: absolute;
  height: 115%;
  width: auto;
  max-width: none;
  top: -5%;
  left: 0;
  object-fit: cover;
}

.special-offer h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.special-offer p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.timer-box {
  background-color: white;
  border-radius: 6px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.timer-box:hover {
  transform: translateY(-2px);
}

.timer-number {
  color: #f178a0;
  font-weight: 600;
  font-size: 16px;
}

.special-offer .col-md-6:last-child {
  min-height: 300px;
  position: relative;
}

.special-offer .col-md-6:last-child img {
  position: absolute;
  height: auto;
  max-height: 120%;
  top: -10%;
  left: 0;
  object-fit: cover;
}

.mobile-img {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  top: auto !important;
  right: auto !important;
}

@media (max-width: 767px) {
  .special-offer {
    padding: 0;
    background: linear-gradient(to left, #e37195 0%, #f178a0 50%, #f488aa 100%);
    height: auto;
    position: relative;
    overflow: hidden;
  }
  
  .special-offer::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 3%;
    width: 80px;
    height: 80px;
    background-image: url('images/XMLID_106_.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: 1;
  }
  
  .special-offer::after {
    content: '';
    position: absolute;
    bottom: 0%;
    left: 10%;
    width: 100px;
    height: 100px;
    background-image: url('images/XMLID_125_.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: 1;
  }
  
  .special-offer .container-fluid {
    padding: 0;
  }
  
  .special-offer .row {
    flex-direction: row;
    align-items: center;
    margin: 0;
  }
  
  .mobile-offer-img {
    order: 0;
    width: 42%;
    padding: 0 !important;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 240px;
    left: 0;
  }
  
  .special-offer img.mobile-img {
    position: relative !important;
    width: auto !important;
    height: 100% !important;
    max-height: none;
    margin: 0;
    top: 10%;
    display: block;
    object-fit: cover;
    object-position: center;
  }
  
  .special-offer .special-offer-text {
    padding: 20px 15px 20px 10px;
    width: 58%;
    order: 1;
    text-align: right;
    direction: rtl;
  }
  
  .special-offer h2 {
    font-size: 18px !important;
    text-align: right;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 700;
  }
  
  .special-offer p {
    text-align: right;
    font-size: 12px;
    padding: 0;
    margin-bottom: 10px;
    line-height: 1.4;
  }
  
  .timer-container {
   
    margin: 15px 0;
    gap: 8px !important;
    display: flex;
  }
  
  .timer-box {
    width: 45px;
    height: 45px;
    margin-top: 0;
    border-radius: 8px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }
  
  .timer-number {
    font-size: 16px;
    font-weight: 600;
    color: #f178a0;
  }
  
  .shop-now-btn {
    display: block;
   
    margin: 15px 0 0 auto;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    color: #f178a0;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
}

/* Discount banner */
.discount-banner-section {
  background: linear-gradient(to left, rgba(255, 158, 170, 0.85), rgba(255, 158, 170, 0.85)), url(../../assets_new/images/section1.png) center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.discount-banner-button {
  text-decoration: none;
  border: 2px solid white;
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  color: white;
  transition: all 0.3s ease;
}

.discount-banner-button:hover {
  background-color: white;
  color: var(--color-primary);
}

/* Font sizes */
.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

/* Font weights */
.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

/* Components used in multiple places */
.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary:hover {
  background-color: #c94d6b;
  border-color: #c94d6b;
  color: white;
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(221, 86, 120, 0.25);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
  background-color: transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

/* Additional helper classes */
.overflow-hidden {
  overflow: hidden;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.object-cover {
  object-fit: cover;
}

.cursor-pointer {
  cursor: pointer;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

/* Bootstrap Carousel Overrides */
#newArrivalsCarousel {
  position: relative;
  margin-bottom: 2rem;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

/* Custom carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 10%;
  opacity: 0.8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  padding: 10px;
  background-size: 50% 50%;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

/* Custom column for 5 items per row */
@media (min-width: 992px) {
  .col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
  }
}

.object-fit-cover {
  object-fit: cover;
}

/* Products Scrollable Container */
.products-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.products-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0;
  margin: 0 -10px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.products-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.product-card-wrapper {
  flex: 0 0 auto;
  width: 260px;
  padding: 0 10px;
  margin-bottom: 20px;
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.955), rgba(0, 0, 0, 0));
  z-index: 3;
  opacity: 1;
}

/* New Arrivals Product Card Styles */
.products-scroll .product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.product-image-container {
  background: url('images/frame-90.png') no-repeat center;
  background-size: cover;
  position: relative;
  padding-top: 133%;
  overflow: hidden;
}

.product-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  
}

.products-scroll .product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: #FF6B81;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 14px;
}

.products-scroll .product-hover-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.products-scroll .product-card:hover .product-hover-icons {
  opacity: 1;
}

.products-scroll .product-hover-icon {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.products-scroll .product-hover-icon:hover {
  transform: translateY(-2px);
}

.products-scroll .product-hover-icon i {
  color: #333;
  font-size: 16px;
}

.product-info {
  background-color: #fff !important;
  padding: 16px;
  text-align: center;
  background: transparent;
}

.products-scroll .product-title {
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
}

.products-scroll .product-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.products-scroll .price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
  margin-right: 8px;
}

.products-scroll .price-amount {
  color: #FF6B81;
  font-size: 18px;
  font-weight: 600;
}

.products-scroll .price-currency {
  color: var(--pale-sky);
  font-size: 14px;
}

/* Updated Pagination Styles */
.pagination {
  display: flex;
  gap: 8px;
  margin-top: 2rem;
}

.pagination .page-item .page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: none;
  background-color: #f8f8f8;
  color: #666;
  font-size: 16px;
  transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
  background-color: #FF6B81;
  color: white;
}

.pagination .page-item .page-link:hover {
  background-color: #FF6B81;
  color: white;
}

section.py-5 {
  background-color: #f9ecef !important;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 32px;
}

.best-sellers .product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 480px;
  padding: 12px;
}
@media screen and (max-width: 768px) {
  .best-sellers .product-card {
    height: 100%;
  }
}

.best-sellers .product-image-container {
  position: relative;
  width: 100%;
 
  background: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
}

.best-sellers .product-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.best-sellers .product-image-wrapper img {
  position: absolute;
  bottom: 0;
  /*top: 20%;*/
  width: 100%;
  height: 100%;
  /*object-fit: contain;*/
}

.best-sellers .product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: #FF6B81;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 14px;
}

.best-sellers .product-hover-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.best-sellers .product-card:hover .product-hover-icons {
  opacity: 1;
}

.best-sellers .product-hover-icon {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.best-sellers .product-hover-icon:hover {
  transform: translateY(-2px);
}

.best-sellers .product-hover-icon i {
  color: #333;
  font-size: 16px;
}

.best-sellers .product-info {
  padding: 16px 0 0;
  text-align: center;
}

.best-sellers .product-title {
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
}

.best-sellers .product-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #FF6B81;
}

.best-sellers .price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
  margin-right: 8px;
}

.best-sellers .price-currency {
  font-size: 14px;
}

.best-sellers .price-amount {
  font-size: 18px;
  font-weight: 600;
}

.desktop-img {
  display: block;
  max-height: 100%;
}

.special-offer .special-offer-text {
  text-align: right;
  padding: 40px 20px 40px 40px;
  direction: rtl;
}

@media (max-width: 767px) {
  .special-offer .special-offer-text {
    padding: 15px;
    width: 55%;
    order: 1;
  }
}

@media (max-width: 768px) {
  .special-offer .row {
    flex-direction: row-reverse;
  }
  
  .special-offer .col-md-6:first-child {
    order: 1;
  }
  
  
  .special-offer .col-md-6:last-child {
    order: 0;
  }
  
}
