/* ================= SECTION ================= */
.deals-section{
  padding:40px 0;
  background:none; /* IMPORTANT */
}

/* ================= WRAPPER ================= */
.deals-wrapper{
  display:flex;
  gap:18px;
  align-items:stretch;
}

/* ================= LEFT CARD ================= */
.deal-left-card{
  background:#ffffff;
  border-radius:16px;
  padding:14px;
  width:240px;
  display:flex;
  flex-direction:column;
  box-shadow:0 6px 18px rgba(0,0,0,.12);
}

/* IMAGE INSIDE LEFT CARD ONLY */
.deal-left-image{
  width:100%;
  height:150px;
  border-radius:12px;
  overflow:hidden;
  margin-bottom:12px;
}

.deal-left-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* TEXT */
.deal-left-title{
  font-size:18px;
  font-weight:800;
  margin-bottom:4px;
  color:#111;
}

.deal-left-sub{
  font-size:13px;
  color:#555;
  margin-bottom:14px;
}

/* BUTTON */
.deal-left-btn{
  background:#111;
  color:#fff;
  border:none;
  border-radius:24px;
  padding:9px 18px;
  font-size:13px;
  cursor:pointer;
  transition:.25s ease;
}

.deal-left-btn:hover{
  background:#333;
}

/* ================= SLIDER ================= */
.deal-slider{
  position:relative;
  flex:1;
  overflow:hidden;
}

.deal-products{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding-bottom:6px;
}

.deal-products::-webkit-scrollbar{
  display:none;
}

/* ================= PLAN CARD ================= */
.deal-item{
  min-width:180px;
  background:#ffffff;
  border-radius:14px;
  padding:10px;
  transition:transform .25s ease, box-shadow .25s ease;
}

.deal-item:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 20px rgba(0,0,0,.12);
}

/* IMAGE */
.deal-item img{
  width:100%;
  height:170px;
  object-fit:contain;
  transition:transform .25s ease;
}

.deal-item:hover img{
  transform:scale(1.05);
}

/* TEXT */
.deal-title{
  font-size:14px;
  margin-top:8px;
  min-height:36px;
}

.deal-price{
  font-weight:800;
}

.old{
  color:#777;
  text-decoration:line-through;
  font-weight:400;
  margin-left:5px;
}

/* ================= ARROWS ================= */
.deal-arrow{
  position:absolute;
  top:45%;
  transform:translateY(-50%);
  background:#fff;
  border:none;
  width:38px;
  height:38px;
  border-radius:50%;
  font-size:18px;
  cursor:pointer;
  box-shadow:0 4px 10px rgba(0,0,0,.2);
  z-index:5;
}

.deal-arrow:hover{
  background:#f1f1f1;
}

.deal-arrow.left{ left:6px; }
.deal-arrow.right{ right:6px; }

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .deals-wrapper{
    flex-direction:column;
  }

  .deal-left-card{
    width:100%;
  }

  .deal-left-image{
    height:180px;
  }

  .deal-item{
    min-width:150px;
  }

  .deal-item img{
    height:150px;
  }
}
