/*=====================================
DEALS PAGE
=====================================*/

.deals-page{

padding:40px 0 60px;

background:#f8f9fa;

}

/*=====================================
PAGE HEADER
=====================================*/

.page-header{

margin-bottom:25px;

text-align:center;

}

.page-header h2{

font-size:36px;

font-weight:700;

margin-bottom:10px;

color:#222;

}

.page-header p{

color:#777;

font-size:16px;

}

/*=====================================
BANNER
=====================================*/

.deal-banner{

background:linear-gradient(135deg,#D10024,#ff3b3b);

color:#fff;

padding:35px;

border-radius:15px;

margin-bottom:30px;

}

.deal-banner h3{

font-size:34px;

font-weight:700;

margin-bottom:10px;

}

#dealTimer{

font-size:28px;

font-weight:700;

background:#fff;

color:#D10024;

padding:12px 25px;

border-radius:10px;

display:inline-block;

}

/*=====================================
SEARCH
=====================================*/

.deal-search{

margin-bottom:30px;

}

/*=====================================
CARD
=====================================*/

.deal-card{

background:#fff;

border-radius:14px;

overflow:hidden;

transition:.3s;

box-shadow:0 8px 25px rgba(0,0,0,.08);

height:100%;

position:relative;

}

.deal-card:hover{

transform:translateY(-6px);

box-shadow:0 18px 35px rgba(0,0,0,.15);

}

/*=====================================
BADGE
=====================================*/

.deal-badge{

position:absolute;

top:12px;

left:12px;

background:#D10024;

color:#fff;

padding:6px 12px;

font-size:13px;

font-weight:700;

border-radius:30px;

z-index:10;

}

/*=====================================
IMAGE
=====================================*/

.deal-image{

height:230px;

display:flex;

align-items:center;

justify-content:center;

padding:20px;

background:#fff;

}

.deal-image img{

max-width:100%;

max-height:190px;

transition:.35s;

}

.deal-card:hover img{

transform:scale(1.08);

}

/*=====================================
BODY
=====================================*/

.deal-body{

padding:18px;

}

.deal-body small{

color:#888;

display:block;

margin-bottom:8px;

}

.deal-body h5{

font-size:18px;

height:48px;

overflow:hidden;

margin-bottom:15px;

}

.deal-body h5 a{

text-decoration:none;

color:#222;

}

.deal-body h5 a:hover{

color:#D10024;

}

/*=====================================
PRICE
=====================================*/

.deal-price{

margin-bottom:15px;

}

.sale-price{

font-size:24px;

font-weight:700;

color:#D10024;

margin-right:10px;

}

.deal-price del{

color:#999;

}

/*=====================================
RATING
=====================================*/

.deal-rating{

font-size:14px;

margin-bottom:12px;

}

.deal-rating span{

color:#888;

margin-left:8px;

}

/*=====================================
STOCK
=====================================*/

.stock{

font-size:13px;

font-weight:600;

margin-bottom:18px;

}

.stock-in{

color:#198754;

}

.stock-out{

color:#dc3545;

}

/*=====================================
BUTTONS
=====================================*/

.deal-actions{

display:flex;

gap:10px;

}

.deal-actions .btn{

flex:1;

border-radius:8px;

}

/*=====================================
PAGINATION
=====================================*/

.pagination .page-link{

color:#D10024;

border:none;

margin:0 4px;

border-radius:8px;

}

.pagination .active .page-link{

background:#D10024;

color:#fff;

}

/*=====================================
RESPONSIVE
=====================================*/

@media(max-width:991px){

.deal-banner{

text-align:center;

}

#dealTimer{

margin-top:20px;

}

}

@media(max-width:768px){

.page-header h2{

font-size:28px;

}

.deal-banner{

padding:25px;

}

.deal-banner h3{

font-size:26px;

}

.deal-image{

height:180px;

}

.deal-image img{

max-height:140px;

}

}

@media(max-width:576px){

.deal-actions{

flex-direction:column;

}

.sale-price{

display:block;

margin-bottom:5px;

}

.deal-card{

margin-bottom:20px;

}

}