/* ── Guide → Products section ────────────────────────────────────────────── */

.hc-guide-products-wrap {
    margin-top: 32px;
}

.hc-guide-products {
    /* nothing extra needed — section element */
}

.hc-gp-heading {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
    color: #1d2327;
}

/* ── Grid ───────────────────────────────────────────────────────────────── */

.hc-gp-grid {
    display: grid;
    grid-template-columns: repeat( auto-fill, minmax( 180px, 1fr ) );
    gap: 16px;
}

/* ── Card ───────────────────────────────────────────────────────────────── */

.hc-gp-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .15s, transform .15s;
}

.hc-gp-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.10);
    transform: translateY(-2px);
}

/* ── Image ──────────────────────────────────────────────────────────────── */

.hc-gp-img-link {
    display: block;
    background: #f9fafb;
    aspect-ratio: 1;
    overflow: hidden;
}

.hc-gp-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 8px;
    box-sizing: border-box;
}

.hc-gp-no-img {
    width: 100%;
    aspect-ratio: 1;
    background: #f3f4f6;
}

/* ── Body ───────────────────────────────────────────────────────────────── */

.hc-gp-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    flex: 1;
}

.hc-gp-name {
    font-size: 13px;
    font-weight: 600;
    color: #1d2327;
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hc-gp-name:hover { color: #2271b1; }

.hc-gp-price {
    font-size: 14px;
    font-weight: 700;
    color: #1d2327;
}

.hc-gp-price ins {
    text-decoration: none;
}

.hc-gp-price del {
    opacity: .5;
    font-weight: 400;
    font-size: 12px;
    margin-right: 4px;
}

/* ── Add to cart ────────────────────────────────────────────────────────── */

.hc-gp-atc {
    display: block;
    text-align: center;
    font-size: 12px !important;
    padding: 6px 10px !important;
    margin-top: auto;
    border-radius: 4px !important;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hc-product-guides {
    margin: 12px 0;
}

.hc-product-guides-label {
    font-weight: 600;
    margin-bottom: 6px;
}

.hc-product-guides-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hc-product-guides-list li {
    margin-bottom: 4px;
}

.hc-product-guides-list li a {
    text-decoration: underline;
}


/* ── Responsive ─────────────────────────────────────────────────────────── */

@media ( max-width: 600px ) {
    .hc-gp-grid {
        grid-template-columns: repeat( 2, 1fr );
        gap: 12px;
    }

    .hc-gp-body {
        padding: 8px;
        gap: 6px;
    }

    .hc-gp-name { font-size: 12px; }
    .hc-gp-price { font-size: 13px; }
}

@media ( max-width: 380px ) {
    .hc-gp-grid {
        grid-template-columns: 1fr;
    }
}