/* --- Final Fixed Offers Carousel (Without Heart & Search Icons) --- */

/* Carousel Container */
.owl-carousel {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  direction: ltr;
}

/* Stage */
.owl-stage {
  display: flex !important;
  flex-wrap: nowrap !important;
}

/* Stage Outer */
.owl-stage-outer {
  overflow: visible !important;
}

/* Owl Item Card */
.owl-carousel .owl-item {
  position: relative;
  overflow: hidden;
  width: 220px !important;
  min-width: 110px !important;
  max-width: 220px !important;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #f7edf9 70%, #faf7fc 100%);
  box-shadow: 0 3px 10px rgba(90, 40, 90, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 10px !important;
  border: 1px solid #e9d9ee;
  box-sizing: border-box;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start;
}

/* Hover Animation */
.owl-carousel .owl-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 22px rgba(90, 40, 90, 0.2);
}

/* Image Styling */
.owl-carousel .owl-item img.offers.specialoffer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Image Hover */
.owl-carousel .owl-item:hover img.offers.specialoffer {
  transform: scale(1.06);
  opacity: 0.9;
}

/* Discount Label */
.owl-carousel .owl-item .discount-lable {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #6c3483 60%, #dcc1e0 100%);
  color: #fff;
  padding: 6px 14px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  border: 1px solid #b58fcf;
  box-shadow: 0 4px 10px rgba(90, 40, 90, 0.22);
  z-index: 2;
}

/* Card Content (Ensures Uniform Height) */
.owl-carousel .owl-item .card-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100px; /* ارتفاع یکنواخت */
  padding: 10px;
  z-index: 2;
}

/* Icons (Generic, no heart or search) */
.ico {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
  background-color: #f8eaf7;
  margin: 0 3px;
  box-shadow: 0 1px 4px rgba(90, 40, 90, 0.08);
  transition: transform 0.2s, filter 0.2s, opacity 0.2s;
  display: inline-block;
  vertical-align: middle;
}

.ico:hover {
  transform: scale(1.15) rotate(-6deg);
  opacity: 0.9;
  background-color: #dcc1e0;
}

/* Clearfix Fix */
.clr, .clear {
  clear: both !important;
  height: 0 !important;
  background: transparent !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block;
}

/* --- Responsive Fixes --- */
@media (max-width: 1200px) {
  .owl-carousel .owl-item { width: 200px !important; min-width: 200px !important; }
}
@media (max-width: 992px) {
  .owl-carousel .owl-item { width: 180px !important; min-width: 180px !important; }
}
@media (max-width: 768px) {
  .owl-carousel .owl-item { width: 48% !important; min-width: 48% !important; }
}
@media (max-width: 576px) {
  .owl-carousel .owl-item { width: 100% !important; min-width: 100% !important; }
}
