/* ================================================
   CPA Products Grid — v1.0.0
   ================================================ */

/* ── Wrapper ── */
.cpa-layout-wrapper {
    width: 100%;
}

.cpa-products-column {
    width: 100%;
}

/* ── Grid: 4 columns desktop ── */
.cpa-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
}

/* ── Single card ── */
.cpa-product-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: inherit;
}

.cpa-product-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    margin-bottom: 10px;
    box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.cpa-product-item:hover .cpa-product-img img {
    box-shadow: 0 0 8px 3px rgba(255, 103, 0, 0.4);
}

/* Category thumbnail (may be taller or have object-fit) */
.cpa-cat-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    margin-bottom: 10px;
    box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    object-fit: cover;
}

.cpa-category-item:hover .cpa-cat-img {
    box-shadow: 0 0 8px 3px rgba(255, 103, 0, 0.4);
}

.cpa-product-name {
    font-family: "Toxigenesis", Sans-serif;
    font-size: 1em;
    text-transform: uppercase;
    text-align: center;
}

.cpa-product-cat {
    text-align: center;
    background-color: var(--e-global-color-primary);
    color: #fff;
    font-size: 0.8em;
    padding: 3px 10px;
    border-radius: 5px;
    line-height: 1;
    display: inline-block;
    margin-top: 4px;
}

/* ── Responsive: tablet (≤1024px) → 3 columns ── */
@media (max-width: 1024px) {
    .cpa-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── Responsive: mobile (≤600px) → 2 columns ── */
@media (max-width: 600px) {
    .cpa-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 12px;
    }
}
