/* Add custom CSS styles below */
#dates-features {
  /* Custom color scheme for this section */
  --section-bg: #f9f5f0;
  --section-primary: #8c6239;
  --section-dark: #4a3f35;
  --section-light: #7a7a7a;
  --section-white: #ffffff;

  /* Layout */
  background-color: var(--section-bg);
  padding: 60px 20px;
  overflow: hidden;
  font-family: "Cairo", sans-serif;
}

/* Container */
#dates-features .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Title */
#dates-features .section-title {
  text-align: center;
  margin-bottom: 50px;
}

#dates-features .section-title h2 {
  color: var(--section-primary);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
}

#dates-features .section-title p {
  color: var(--section-dark);
  font-size: 1.2rem;
  margin: 0;
}

/* Features Grid */
#dates-features .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  #dates-features .features-grid {
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 20px;
  }
}

/* Features Column */
#dates-features .features-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Feature Item */
#dates-features .feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease;
}

#dates-features .feature-item:hover {
  transform: translateY(-5px);
}

/* Icon Wrapper */
#dates-features .icon-wrap {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--section-white);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(140, 98, 57, 0.1);
  padding: 10px;
}

#dates-features .icon-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Text Content */
#dates-features .text-wrap h3 {
  color: var(--section-dark);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 10px 0;
}

#dates-features .text-wrap p {
  color: var(--section-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Center Image Column */
#dates-features .center-image-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

#dates-features .center-image {
  max-width: 100%;
  height: auto;
  max-height: 550px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

/* Desktop Layout - RTL Direction */
@media (min-width: 992px) {
  #dates-features .right-column .feature-item {
    flex-direction: row;
    text-align: right;
  }

  #dates-features .left-column .feature-item {
    flex-direction: row-reverse;
    text-align: left;
  }
}

/* Mobile Layout */
@media (max-width: 991px) {
  #dates-features .feature-item {
    text-align: center;
    flex-direction: column !important;
  }

  #dates-features .icon-wrap {
    margin-bottom: 15px;
  }
}

/* main product with bg */

.s-block--slider-with-bg h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.s-block--slider-with-bg p {
  font-size: 1rem;
  max-width: 600px;
  margin: 10px auto 30px auto;
  line-height: 1.6;
}

.s-block--slider-with-bg h3,
.s-block--slider-with-bg p {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

.s-slider-block__title-left {
  display: flex !important;
  justify-content: center !important;
  width: 100%;
}

.s-slider-block__title-left .s-slider-block__title-nav {
  display: none;
}

.s-block--slider-with-bg .s-product-card-price {
  text-align: center !important;
  width: 100%;
  display: block;
}