.affiliate-note {
    margin-top: 1.5rem;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--muted);
    font-size: 0.92rem;
}

.products-section {
    background: #f8f7f3;
}

.product-list {
    display: grid;
    gap: 2rem;
}

.product-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(21, 36, 72, 0.07);
}

.product-image-wrap {
    position: relative;
    display: grid;
    min-height: 390px;
    place-items: center;
    background: var(--cream);
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    max-height: 470px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.rank {
    position: absolute;
    z-index: 1;
    top: 1rem;
    left: 1rem;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(255, 117, 76, 0.3);
}

.product-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(1.7rem, 4vw, 3.5rem);
}

.product-content h2 {
    margin-top: 0.6rem;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.product-content p {
    color: var(--muted);
}

.age-label {
    border-radius: 999px;
    background: #e7f8f3;
    color: #14715d;
    padding: 0.35rem 0.7rem;
    font-size: 0.8rem;
    font-weight: 900;
}

.score-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.2rem;
    margin: 1rem 0 1.7rem;
}

.score-list > span {
    display: grid;
    gap: 0.15rem;
    color: #f0a622;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.score-list b {
    color: var(--ink);
    font-size: 0.75rem;
    letter-spacing: 0;
}

.score-list i {
    color: #ddd;
    font-style: normal;
}

.product-button {
    margin-top: auto;
}

@media (max-width: 760px) {
    .product-card {
        grid-template-columns: 1fr;
    }

    .product-image-wrap {
        min-height: 280px;
    }

    .product-image-wrap img {
        max-height: 340px;
    }
}
