/**
 * Rensi Grouped Products by Subcategory
 * Styles for grouped product display
 */

/* Container for all grouped products */
.rensi-grouped-products {
    width: 100%;
    margin-top: 40px;
    clear: both;
}

/* Individual subcategory section */
.rensi-subcategory-section {
    margin-bottom: 50px;
}

.rensi-subcategory-section:last-child {
    margin-bottom: 0;
}

/* Subcategory header */
.rensi-subcategory-header {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.rensi-subcategory-header a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rensi-subcategory-header a:hover {
    color: #0073aa;
}

/* Product/Category grid */
.rensi-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Card styles (used for both products and categories) */
.rensi-product-card {
    margin: 0;
    padding: 0;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rensi-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.rensi-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.rensi-product-image {
    background: white;
    padding: 15px;
}

/* OEM pill badge */
.rensi-oem-pill {
    display: block;
    text-align: center;
    background: rgba(0, 0, 0, 0.08);
    color: #555;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    margin: 0 15px 8px;
    border-radius: 12px;
    line-height: 1.3;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

/* OEM pill on single product page */
.rensi-oem-pill--product {
    display: inline-block;
    margin: 0;
    font-size: 13px;
    padding: 4px 14px;
}

.rensi-product-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.rensi-product-card:hover .rensi-product-image img {
    transform: scale(1.05);
}

.rensi-product-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    padding: 12px 15px 8px;
    color: #333;
    line-height: 1.4;
    text-align: center;
}

.rensi-product-price {
    display: block;
    padding: 0 15px 15px;
    font-size: 14px;
    font-weight: 600;
    color: #602076;
    text-align: center;
}

/* Tablet styles */
@media (max-width: 980px) {
    .rensi-subcategory-header {
        font-size: 22px;
    }

    .rensi-product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .rensi-grouped-products {
        margin-top: 30px;
    }

    .rensi-subcategory-section {
        margin-bottom: 40px;
    }

    .rensi-subcategory-header {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .rensi-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .rensi-subcategory-header {
        font-size: 18px;
    }

    .rensi-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .rensi-product-image {
        padding: 10px;
    }

    .rensi-product-title {
        font-size: 13px;
        padding: 10px 10px 6px;
    }

    .rensi-product-price {
        padding: 0 10px 12px;
        font-size: 13px;
    }
}
