/* =========================================================
   ACPS PRODUCT GRID
   ========================================================= */

.acps-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin: 32px 0;
}

/* =========================================================
   PRODUCT CARD
   ========================================================= */

.acps-product-card {
    display: flex;
    flex-direction: column;
    padding: 22px;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.acps-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
}

/* =========================================================
   PRODUCT IMAGE
   ========================================================= */

.acps-product-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    margin-bottom: 18px;
    text-decoration: none;
}

.acps-product-image {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: contain;
}

/* =========================================================
   BRAND
   ========================================================= */

.acps-product-brand {
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.7;
}

/* =========================================================
   PRODUCT TITLE
   ========================================================= */

.acps-product-title {
    margin: 0 0 8px;
    font-size: 1.15rem;
    line-height: 1.35;
}

.acps-product-title a {
    text-decoration: none;
}

/* =========================================================
   MERCHANT
   ========================================================= */

.acps-product-merchant {
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.75;
}

/* =========================================================
   PRICE
   ========================================================= */

.acps-product-price {
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 700;
}

/* =========================================================
   DESCRIPTION
   ========================================================= */

.acps-product-summary {
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================================
   BUTTON
   ========================================================= */

.acps-product-button {
    display: inline-block;
    margin-top: auto;
    padding: 10px 18px;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
}

/* =========================================================
   DISCLAIMER
   ========================================================= */

.acps-product-disclaimer {
    margin-top: 24px;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .acps-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .acps-product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .acps-product-image-link,
    .acps-product-image {
        height: 200px;
    }
}