/* ==========================================
   FEEL PC PRODUCT CARD V3
   Production Ready
========================================== */

/* Card */

.st-product-card{
    position:relative;
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:12px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    height:100%;
    transition:all .30s ease;
}

.st-product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

/* =========================
   IMAGE AREA
========================= */

.st-product-image{

    position:relative;

    height:250px;

    background:#fff;

    padding:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;
}

.st-product-image a{

    width:100%;
    height:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;
}

/* Universal Image */

.st-product-img{

    width:100%;
    height:100%;

    object-fit:contain;

    object-position:center;

    transition:transform .35s ease;

    display:block;
}

.st-product-card:hover .st-product-img{

    transform:scale(1.05);
}

/* =========================
   Discount Badge
========================= */

.st-discount-badge{

    position:absolute;

    top:12px;
    left:12px;

    z-index:20;

    background:#ff3b30;

    color:#fff;

    padding:5px 9px;

    font-size:12px;

    font-weight:700;

    border-radius:5px;
}

/* =========================
   Action Buttons
========================= */

.st-product-actions{

    position:absolute;

    top:12px;
    right:12px;

    z-index:30;

    display:flex;

    flex-direction:column;

    gap:8px;
}

.st-action-btn{

    width:38px;
    height:38px;

    border:none;

    border-radius:50%;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    box-shadow:0 4px 12px rgba(0,0,0,.12);

    transition:all .25s ease;
}

.st-action-btn i{

    color:#444 !important;

    font-size:15px !important;

    transition:.25s;
}

.st-action-btn:hover{

    background:#00b5c8 !important;
}

.st-action-btn:hover i{

    color:#fff !important;
}

/* =========================
   BODY
========================= */

.st-product-body{

    flex:1;

    display:flex;

    flex-direction:column;

    padding:16px;

    border-top:1px solid #f4f4f4;
}

/* Rating */

.star-rating{

    min-height:18px;

    margin-bottom:8px;
}

/* Product Name */

.st-product-title{

    height:48px;

    overflow:hidden;

    display:-webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    font-size:15px;

    line-height:1.45;

    font-weight:600;

    margin-bottom:12px;
}

.st-product-title a{

    color:#222;

    text-decoration:none;
}

.st-product-title a:hover{

    color:#00b5c8;
}

/* Price */

.st-price{

    margin-top:auto;
}

.st-price del{

    display:block;

    color:#999;

    font-size:13px;

    margin-bottom:4px;
}

.st-price span{

    color:#00b5c8;

    font-size:31px;

    font-weight:700;

    line-height:1;
}

/* =========================
   Add To Cart
========================= */

.st-cart-btn{

    width:100%;

    margin-top:16px;

    padding:11px 14px;

    border:none;

    border-radius:8px;

    background:#00b5c8;

    color:#fff;

    font-size:14px;

    font-weight:600;

    transition:all .25s ease;
}

.st-cart-btn:hover{

    background:#0096a7;
}

/* =========================
   Responsive
========================= */

@media (max-width:1199px){

    .st-product-image{

        height:220px;
    }

}

@media (max-width:991px){

    .st-product-image{

        height:200px;
    }

    .st-product-title{

        height:44px;

        font-size:14px;
    }

    .st-price span{

        font-size:26px;
    }

}

@media (max-width:575px){

    .st-product-image{

        height:180px;
    }

    .st-action-btn{

        width:34px;
        height:34px;
    }

}
/*==================================================
   STARTECH STYLE HORIZONTAL PRODUCT CARD
===================================================*/

.st-h-card{
    position:relative;
    display:flex;
    align-items:center;
    gap:14px;

    background:#fff;
    border:1px solid #e8edf3;
    border-radius:10px;

    padding:12px;
    min-height:175px;
	

    transition:all .30s ease;
}

.st-h-card:hover{
    box-shadow:0 10px 25px rgba(0,0,0,.10);
    border-color:#16bcdc;
    transform:translateY(-3px);
}

/*==========================
LEFT IMAGE
==========================*/

.st-h-image{
    width:34%;
    min-width:130px;
    height:150px;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
}

.st-h-img{
    width:100%;
    height:100%;

    object-fit:contain;
    object-position:center;
}

.st-h-card:hover .st-h-img{
    transform:scale(1.05);
}

/*==========================
RIGHT CONTENT
==========================*/

.st-h-content{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

/* Rating */

.st-h-rating{
    margin-bottom:6px;
}

/* Title */

.st-h-title{

    display:-webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    overflow:hidden;

    min-height:52px;
}

.st-h-title a{
    color:#1f2937;
    text-decoration:none;
}

.st-h-title a:hover{
    color:#16bcdc;
}

/* only 2 lines */

.st-h-title{
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/*==========================
PRICE
==========================*/

.st-h-price{
    margin:6px 0 12px;
}

.st-h-price del{
    display:block;
    color:#9ca3af;
    font-size:13px;
}

.st-h-price span{
    color:#16bcdc;
    font-size:26px;
    font-weight:700;
}

/*==========================
BUTTON
==========================*/

.st-h-cart{

    width:160px;
    height:42px;

    border:none;

    border-radius:6px;

    background:#16bcdc;

    color:#fff;

    cursor:pointer;

    transition:.3s;

}

.st-h-cart:hover{

    background:#099dbd;

}

/*==========================
DISCOUNT
==========================*/

.st-h-discount{

    position:absolute;

    top:10px;

    left:10px;

    background:#ff4d4f;

    color:#fff;

    font-size:12px;

    padding:4px 8px;

    border-radius:5px;

}

/*==========================
ACTION BUTTON
==========================*/

.st-h-actions{

    position:absolute;

    top:15px;

    right:15px;

    display:flex;

    flex-direction:column;

    gap:8px;

}

.st-h-actions button{

    width:34px;

    height:34px;

    border:none;

    border-radius:50%;

    background:#fff;

    box-shadow:0 4px 12px rgba(0,0,0,.15);

    cursor:pointer;

    transition:.3s;

}

.st-h-actions button:hover{

    background:#16bcdc;

    color:#fff;

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

.st-h-card{

    flex-direction:column;

    text-align:center;

}

.st-h-image{

    width:100%;

}

.st-h-cart{

    width:100%;

}

.st-h-actions{

    position:static;

    flex-direction:row;

    justify-content:center;

    margin-top:12px;

}

}
/*====================================================
  TechLand Style Product List Item
=====================================================*/

.st-list-column{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.st-list-item{
    position:relative;
    display:flex;
    align-items:center;
    gap:16px;
    background:#fff;
    border:1px solid #e8edf3;
    border-radius:10px;
    padding:12px;
    height:135px; /*Fixed Height*/
    transition:all .25s;
    overflow:hidden;
}

.st-list-item:hover{
    border-color:#dbe3ec;
    box-shadow:0 15px 35px rgba(0,0,0,.10);
    transform:translateY(-3px);
}

/*==========================
  Discount Badge
===========================*/

.st-list-discount{
    position:absolute;
    top:10px;
    left:10px;
    background:#ef4444;
    color:#fff;
    font-size:11px;
    font-weight:700;
    line-height:1;
    padding:5px 8px;
    border-radius:20px;
    z-index:2;
}

/*==========================
  Image
===========================*/

.st-list-image{
    width:100px;
    min-width:100px;
    height:100px;
	padding:8px;
	border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;

    background:#fafafa;
}

.st-list-img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.3s;
}

.st-list-item:hover .st-list-img{
    transform:scale(1.05);
}

/*==========================
  Content
===========================*/

.st-list-content{
    flex:1;
    min-width:0;
	height:100%;
    display:flex;
    flex-direction:column;
    
}

/*==========================
  Title
===========================*/

.st-list-title{
    margin:0;
    font-size:15px;
    font-weight:600;
    line-height:1.45;
	height:44px;
	overflow:hidden;
}

.st-list-title a{
    color:#1f2937;
    text-decoration:none;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
	overflow:hidden;
}

.st-list-title a:hover{
    color:#1565C0;
}

/*==========================
  Rating
===========================*/

.st-list-rating{
	height:18px;
    margin-top:6px;
    font-size:13px;
}

/*==========================
  Price
===========================*/

.st-list-price{
	margin-top:auto;
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
}

.st-list-price span{
    color:#e53935;
    font-size:20px;
    font-weight:700;
}

.st-list-price del{
    color:#9ca3af;
    font-size:14px;
}

/*==========================
  Slick Column spacing
===========================*/

.st-list-column{
    padding:4px 8px;
}

/*==========================
  Responsive
===========================*/

@media(max-width:991px){

    .st-list-item{
        min-height:128px;
        padding:12px;
    }

    .st-list-image{
        width:82px;
        min-width:82px;
        height:82px;
    }

    .st-list-title{
        font-size:14px;
    }

    .st-list-price span{
        font-size:17px;
    }

}

@media(max-width:575px){

    .st-list-item{
        gap:12px;
    }

    .st-list-image{
        width:75px;
        min-width:75px;
        height:75px;
    }

    .st-list-title{
        font-size:13px;
        margin-bottom:6px;
    }

    .st-list-rating{
        margin-bottom:6px;
    }

    .st-list-price span{
        font-size:16px;
    }

    .st-list-price del{
        font-size:13px;
    }

}