/* =====================================
   Global WooCommerce Product Card Premium Design
===================================== */
/* Product Grid */
.woocommerce ul.products {
    gap: 25px !important;
}
/* Product Card */
.woocommerce ul.products li.product {
    background:#ffffff !important;
    border:1px solid #eeeeee !important;
    border-radius:18px !important;
    padding:15px !important;
    overflow:hidden !important;
    display:flex !important;
    flex-direction:column !important;
    min-height:470px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:.3s ease;
    position:relative;
}
/* Hover */
.woocommerce ul.products li.product:hover {
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}
/* Product Image */
.woocommerce ul.products li.product img {
    height:260px !important;
    width:100% !important;
    object-fit:contain !important;
    background:#f7f7f7 !important;
    border-radius:14px !important;
    padding:15px !important;
}
/* Product Title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color:#111 !important;
    font-size:17px !important;
    font-weight:600 !important;
    text-align:center !important;
    min-height:55px;
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    margin:15px 0 5px !important;
}
/* Price */
.woocommerce ul.products li.product .price {
    text-align:center !important;
    display:block !important;
    font-size:18px !important;
    font-weight:700 !important;
    color:#222 !important;
    margin-bottom:15px !important;
}
/* Add To Cart Button */
.woocommerce ul.products li.product .button {
    background:#2BBEF9 !important;
    color:#fff !important;
    border-radius:8px !important;
    width:85% !important;
    margin:auto auto 5px !important;
    padding:13px 20px !important;
    font-weight:600 !important;
    text-align:center !important;
}
/* Button Hover */
.woocommerce ul.products li.product .button:hover {
    background:#1a9fd4 !important;
}
/* Out Of Stock Badge */
.woocommerce ul.products li.product.outofstock:before {
    content:"OUT OF STOCK";
    position:absolute;
    top:10px;
    left:10px;
    background:#111;
    color:white;
    padding:7px 14px;
    border-radius:30px;
    font-size:11px;
    font-weight:700;
    z-index:5;
}
/* Mobile */
@media(max-width:768px){
    .woocommerce ul.products li.product {
        min-height:420px;
    }
    .woocommerce ul.products li.product img {
        height:180px !important;
    }
	
.custom-login-required {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px 30px;
    text-align:center;
    background:#f8f8f8;
    border-radius:12px;
}
.custom-login-required h3 {
    font-size:26px;
    margin-bottom:12px;
}
.custom-login-required p {
    margin-bottom:25px;
}
.custom-login-btn {
    display:inline-block;
    padding:12px 35px;
    background:#21a9e8;
    color:#fff !important;
    border-radius:6px;
    font-weight:600;
    text-decoration:none;
}