/* KooZone Marketplace - Product Grid CSS */
.kz-home-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.kz-section-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #333;
    border-left: 5px solid var(--kz-purple);
    padding-left: 15px;
}

/* Product Grid Layout */
.kz-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

/* Modern Product Card */
.kz-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.kz-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--kz-purple);
}

.kz-pro-img-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f9f9f9;
}

.kz-pro-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.kz-product-card:hover .kz-pro-img-box img {
    transform: scale(1.1);
}

.kz-pro-details {
    padding: 15px;
    flex-grow: 1;
}

.kz-pro-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 38px;
    line-height: 1.4;
}

.kz-pro-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.kz-curr-price {
    font-size: 20px;
    font-weight: 800;
    color: #222;
}

.kz-tag-delivery {
    background: #f3ebfb;
    color: var(--kz-purple);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
}

.kz-rating-badge {
    background: #28a745;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .kz-product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .kz-pro-img-box { height: 180px; }
}