/* ==========================================================
   HASEEN TOOLS PREMIUM
   SHOP PAGE
========================================================== */

/* Shop Background */

.woocommerce,
.woocommerce-page{

    background:transparent;

}

/* Product Grid */

.products{

    display:grid !important;

    grid-template-columns:repeat(auto-fill,minmax(280px,1fr));

    gap:30px;

}

/* Product Card */

.products .product{

    position:relative;

    padding:18px;

    border-radius:22px;

    overflow:hidden;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    transition:all .45s ease;

}

/* Gold Glow */

.products .product::after{

    content:"";

    position:absolute;

    inset:-40%;

    background:radial-gradient(circle,
    rgba(244,180,0,.12),
    transparent 70%);

    opacity:0;

    transition:.45s;

    pointer-events:none;

}

.products .product:hover::after{

    opacity:1;

}

/* Lift */

.products .product:hover{

    transform:translateY(-12px);

    box-shadow:
    0 30px 60px rgba(0,0,0,.45),
    0 0 40px rgba(244,180,0,.18);

}

/* Product Image */

.products .product img{

    border-radius:16px;

    transition:all .55s ease;

}

.products .product:hover img{

    transform:scale(1.08);

}

/* Product Title */

.products .woocommerce-loop-product__title{

    color:#FFF;

    font-size:18px;

    font-weight:700;

    margin-top:16px;

    transition:.3s;

}

.products .product:hover .woocommerce-loop-product__title{

    color:#F4B400;

}

/* Price */

.products .price{

    color:#F4B400 !important;

    font-size:20px;

    font-weight:700;

    margin-top:10px;

}

/* Old Price */

.products del{

    opacity:.55;

}

/* Rating */

.star-rating{

    color:#F4B400;

}

/* Sale Badge */

.onsale{

    background:#F4B400 !important;

    color:#111 !important;

    border-radius:50px;

    padding:8px 14px;

    font-weight:700;

    top:18px;

    left:18px;

}

/* Add To Cart */

.products .button{

    width:100%;

    margin-top:16px;

}

/* Quick View */

.quick-view,
.wd-quick-view{

    transition:.35s;

}

.quick-view:hover,
.wd-quick-view:hover{

    color:#F4B400;

}

/* Wishlist */

.wd-wishlist-btn{

    transition:.35s;

}

.wd-wishlist-btn:hover{

    color:#F4B400;

    transform:scale(1.15);

}

/* Pagination */

nav.woocommerce-pagination{

    margin-top:60px;

}

.page-numbers{

    transition:.35s;

}

.page-numbers:hover{

    background:#F4B400;

    color:#111;

}

/* Shop Toolbar */

.woocommerce-result-count,
.woocommerce-ordering{

    color:#CFCFCF;

}

/* Select */

.woocommerce-ordering select{

    background:#1A1A1D;

    color:#FFF;

    border-radius:12px;

    border:1px solid rgba(255,255,255,.08);

}