.deals-wrapper{
  display:flex;
  gap:15px;
}

/* LEFT CARD */
.deal-left-card{
  background:#f5f5f5;
  border-radius:14px;
  padding:18px;
  min-width:220px;
  text-align:left;
}

.deal-left-title{
  font-size:20px;
  font-weight:800;
  margin-bottom:5px;
}

.deal-left-sub{
  color:#555;
  margin-bottom:12px;
}

.deal-left-btn{
  background:#111;
  color:#fff;
  border:none;
  border-radius:25px;
  padding:8px 18px;
  font-size:13px;
}
.deal-left-btn:hover{background:#333}

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

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

/* ITEM */
.deal-item{
  min-width:180px;
  background:#fff;
  border-radius:14px;
  padding:10px;
  transition:transform .25s ease, box-shadow .25s ease;
}
.deal-item:hover{
  transform:translateY(-4px);
  box-shadow:0 8px 18px rgba(0,0,0,.08);
}

/* IMAGES CLS SAFE */
.deal-item img{
  width:100%;
  height:180px;
  object-fit:contain;
  transition:transform .25s ease;
}
.deal-item:hover img{
  transform:scale(1.05);
}

.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:40%;
  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,.15);
  z-index:5;
}
.deal-arrow:hover{background:#f1f1f1}
.deal-arrow.left{left:5px}
.deal-arrow.right{right:5px}

/* MOBILE */
@media(max-width:768px){
  .deals-wrapper{
    flex-direction:column;
  }
  .deal-left-card{
    width:100%;
  }
  .deal-item{
    min-width:150px;
  }
  .deal-item img{
    height:150px;
  }
}
