.khafasya-out-ui {
  padding: 90px 20px;
  background: #fff;
  font-family: "Poppins", sans-serif;
}

.khafasya-out-wrap {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
}

/* =========================
   ✅ LEFT CONTENT
========================= */

.khafasya-out-content {
  flex: 1;
}

.khafasya-out-content h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
}

.khafasya-out-content p {
  font-size: 16px;
  color: #666;
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.khafasya-out-btn {
  display: inline-block;
  background: #101820;
  color: #fff;
  padding: 13px 34px;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.khafasya-out-btn:hover {
  background: #000;
}

/* =========================
   ✅ RIGHT IMAGE AREA
========================= */

.khafasya-out-images {
  position: relative;
 flex: 1.2;
 min-height: 340px;
  padding-right: 40px;
}

/* ✅ GREY TRANSPARENT RECTANGLE */
.khafasya-grey-box {
  position: absolute;
  top: 50%;
  right: 0;
   width: 95%;             /* ✅ Wider background box */
  height: 300px;
  transform: translateY(-50%);
  background: rgba(180, 180, 180, 0.28);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  z-index: 1;
}

/* ✅ IMAGES FLOATING OUTSIDE THE BOX */
.khafasya-img-row {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 28px;                /* ✅ More spacing between wider images */
}

.khafasya-img-card {
  width: 40%;               /* ✅ Wider images */
  transform-style: preserve-3d;
  transition: 0.4s ease;
}

.khafasya-img-card img {
  width: 100%;
  height: 200px;            /* ✅ Taller & premium look */
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

/* ✅ 3D FLOATING EFFECT */
.khafasya-img-card:nth-child(1) {
  transform: translateY(-20px);
}

.khafasya-img-card:nth-child(2) {
  transform: translateY(20px);
}

.khafasya-img-card:nth-child(3) {
  transform: translateY(-10px);
}

.khafasya-img-card:hover {
  transform: translateY(-30px) scale(1.05);
}

/* =========================
   ✅ MOBILE → ONLY 1 IMAGE
========================= */

@media(max-width: 768px) {

  .khafasya-out-wrap {
    flex-direction: column;
    text-align: center;
  }

  .khafasya-out-images {
    padding-right: 0;
  }

  .khafasya-img-row {
    justify-content: center;
  }

  .khafasya-img-card {
    display: none;
    width: 100%;
  }

  .khafasya-img-card.active-mobile {
    display: block;
  }

  .khafasya-grey-box {
    width: 100%;
    height: 200px;
  }

  .khafasya-img-card img {
    height: 240px;
  }
}
/* offer price  */
.spice-offer-section {
  font-family: "Poppins", sans-serif;
  background: #f7f7f7;
  padding: 40px;
}

.spice-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.product-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
}

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

/* Dark overlay always visible */
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.product-content {
  color: #fff;
}

.product-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.shop-btn {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid #f8b400;
  color: #f8b400;
  font-size: 13px;
  text-decoration: none;
}

/* RIGHT OFFER */
.offer-box {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.offer-box h2 {
  font-size: 26px;
  color: #b85c00;
  margin-bottom: 10px;
}

.offer-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.offer-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 25px;
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
  font-size: 14px;
}

.offer-box img {
  width: 100%;
  border-radius: 14px;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .spice-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    height: 240px;
  }
} 
/* offer bar end */
 .features-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    font-family: "Poppins", sans-serif;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
  }

  .feature-item i {
    font-size: 32px;
    color: #8B4513; /* Primary Color */
  }

  .feature-text h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #000;
  }

  .feature-text p {
    margin: 0;
    font-size: 13px;
    color: #555;
  }

  .divider {
    width: 1px;
    background: #e7e7e7;
    height: 40px;
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    .features-box {
      flex-direction: column;
      text-align: center;
    }
    .divider {
      display: none;
    }
    .feature-item {
      justify-content: center;
    }
  }

/*shop products skin-2 css */
.shop-products-skin-2 {
  padding: 5px;
  margin-bottom: 5px !important;
}

.shop-products-skin-2 .product {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.shop-products-skin-2 .img-as-background {
  height: 315px !important;
}

.shop-products-skin-2 .product:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.shop-products-skin-2 .img-as-background img {
  width: 100%;
  object-fit: cover;
  border-bottom: 1px solid #eee;
  border-radius: 8px 8px 0 0;
}

.shop-products-skin-2 h6 {
  font-weight: 600;
  color: #000;
  font-size: 1rem;
}

.shop-products-skin-2 .price-holder .price-old {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
  font-size: 0.9rem;
}

.shop-products-skin-2 .price-holder .price {
  color: #000;
  font-weight: 600;
  font-size: 1rem;
}

.shop-products-skin-2 .content {
  padding: 0px !important;
}

.shop-products-skin-2-btn .btn {
  border-color:#d4af37 !important;
  width: 80%;
  text-transform: capitalize;
  color: #d4af37 !important;
  font-weight: bold !important;
  padding: 8px 20px !important;
  border-radius: 8px !important;
  transition: background 0.3s ease !important;
  transition: 0.3s ease-in-out;
  margin-bottom: 15px;
}

.shop-products-skin-2-btn .btn:hover {
  color: #fff !important;
}

@media (max-width: 767px) {
  .shop-products-skin-2 .mw-layout-product-stock {
    padding: 5px;
  }

  .shop-products-skin-2 .img-as-background {
    height: 168px !important;
  }

  .shop-products-skin-2 h6 {
    font-size: 14px !important;
  }

  .shop-products-skin-2-btn .btn {
    font-size: 14px;
    padding: 5px 10px !important;
  }

  .shop-products-skin-2 .price-holder .price {
    font-size: 14px;
  }
}
/*shop products skin-2 css */
/* product page */
/*custom color*/
.custom-radio {
  display: inline-block;
  margin: -5px;
  cursor: pointer;
}

.custom-radio input[type="radio"] {
  display: none; /* Hide the default radio button */
}

.custom-radio label {
  display: inline-block;
  padding: 10px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size:14px;
  text-align:center;
}
.custom-radio label:hover {
  border-color:#000;
}

.custom-radio input[type="radio"]:checked + label {
  border-color: #000;
  color: #000;
} 
/* the product page radio end*/

/* product page button */
.buy-now {
      
  background-color:#9b4f27 !important;
  color:white !important;
}
.buy-now :hover{
  background-color:#9b4f27 !important;
  color:white !important;
}
.add-to-wishlist-btn{
  display:none;
}
.add-to-cart-btn  {
  background-color:#9b4f27 !important;
  color:color !important;
}
/*fax */
/*FAQ*/
.noedit p{
  font-family: 'Poppins', sans-serif;
  font-size:14px ;
}
.mw-accordion-faq-skin-button {
  height: 50px !important;
  background: linear-gradient(135deg, #ffffff, #f7f7f7);
  border: 1px solid #EAEAE5 !important;
  border-radius: 12px;
  box-shadow: 0 8px 7px rgba(0,0,0,0.1);
  color: #333;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.mw-accordion-faq-skin-button:hover {
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
}
.mw-accordion-faq-skin-button h5{
  font-size:15px !important;
  font-weight:600 !important;
  font-family: 'Poppins', sans-serif;
}
/*FAQ end product page*/
/*product section design*/
.dev-service-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #faf8ef;
  padding: 14px 12px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  max-width: 600px;
  margin: 20px auto;
  text-align: center;
  flex-wrap: nowrap;
  gap: 10px;
}
.dev-service-box {
  flex: 1;
}
.dev-service-box i {
  font-size: 24px;
  color: #222;
  margin-bottom: 6px;
}
.dev-service-box h4 {
  font-size: 12px;
  color: #111;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 480px) {
  .dev-service-section {
    gap: 8px;
    padding: 10px;
  }
  .dev-service-box i {
    font-size: 20px;
  }
  .dev-service-box h4 {
    font-size: 11px;
  }
}
.luxury-bg-dark {
  font-family: "Poppins", sans-serif;

  background: 
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("https://img.developmentbucket.com/userfiles/media/kahafsay/default/soft-blurred-luxury-background-with-warm-hanging-lights-p.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  min-height: 100vh;
  padding: 40px 0;
  color: black;
}



    .testimonial-section {
      padding: 70px 20px;
      text-align: center;
      overflow: hidden;
    }

    .testimonial-title {
      font-size: 34px;
      font-weight: 600;
      margin-bottom: 50px;
      color:white;
    }

    .testimonial-slider {
      overflow: hidden;
      max-width: 1200px;
      margin: auto;
      position: relative;
    }

    .testimonial-track {
      display: flex;
      gap: 25px;
      width: max-content;
      animation: infiniteScroll 25s linear infinite;
    }

    .testimonial-track:hover {
      animation-play-state: paused;
    }

    @keyframes infiniteScroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    .testimonial-card {
      background: #fff;
      width: 330px;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
      position: relative;
      flex-shrink: 0;
      text-align: center;
    }

    .quote-icon {
      font-size: 60px;
      color: #ddd;
      position: absolute;
      top: 15px;
      left: 20px;
    }

    .avatar {
      width: 55px;
      height: 55px;
      background: #ccc;
      border-radius: 50%;
      margin: 0 auto 15px;
    }

    .testimonial-card h4 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .testimonial-card p {
      font-size: 14px;
      color: #666;
      line-height: 1.8;
      margin-bottom: 15px;
    }

    .stars {
      color: #ffb703;
      font-size: 16px;
    }

    /*