/* SHOP GRID */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* PRODUCT CARD */
.custom-product-card {
    list-style: none;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: 0.3s ease;
    margin: 0 !important;
    width: 100% !important;
    padding: 0 !important;
}

/* HOVER */
.custom-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* IMAGE */
.custom-product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin: 0 !important;
}

/* CONTENT */
.product-content {
    padding: 16px;
}

/* CATEGORY */
.product-category {
    font-size: 12px;
    color: #3b82f6;
    margin-bottom: 8px;
}

.product-category a {
    color: #3b82f6;
    text-decoration: none;
}

/* TITLE */
.custom-product-card .woocommerce-loop-product__title {
    font-size: 18px !important;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.custom-product-card .woocommerce-loop-product__title a {
    color: #111827;
    text-decoration: none;
}

/* RATING */
.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.woocommerce .star-rating {
    margin: 0 !important;
    color: #fbbf24;
    font-size: 13px;
}

.rating-count {
    font-size: 13px;
    color: #6b7280;
}

/* DESCRIPTION */
.product-short-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 18px;
}

/* BOTTOM */
.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* PRICE */
.product-price {
    font-size: 22px;
    font-weight: 700;
    color: #2563eb;
}

.product-price ins {
    text-decoration: none;
}

/* BUTTON */
.product-cart-btn .button {
    background: #2563eb !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 10px 16px !important;
    font-size: 14px !important;
    transition: 0.3s ease;
    margin: 0 !important;
}

.product-cart-btn .button:hover {
    background: #1d4ed8 !important;
}

/* MOBILE */
@media (max-width: 991px) {

    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 767px) {

    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }
}