.product-list-page {
    display: grid;
    gap: 28px;
}

.product-list-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 30px;
    border: 1px solid #edd5d9;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(193, 18, 31, 0.10), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #fff8f8 52%, #fff1f3 100%);
    box-shadow: 0 18px 48px rgba(17, 24, 39, 0.06);
}

.product-list-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff1f3;
    color: #b80f1f;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-list-hero h1 {
    margin: 14px 0 12px;
    color: #111827;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.product-list-hero p {
    margin: 0;
    max-width: 760px;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.8;
}

.product-list-hero__meta {
    display: flex;
    justify-content: flex-end;
}

.product-list-stat {
    min-width: 160px;
    padding: 20px 22px;
    border: 1px solid #edd5d9;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 24px rgba(193, 18, 31, 0.08);
    text-align: center;
}

.product-list-stat strong {
    display: block;
    color: #b80f1f;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
}

.product-list-stat span {
    display: block;
    margin-top: 8px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.product-list-empty {
    padding: 34px 28px;
    border: 1px solid #edd5d9;
    border-radius: 24px;
    background: #ffffff;
    text-align: center;
}

.product-list-empty h2 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 24px;
}

.product-list-empty p {
    margin: 0;
    color: #6b7280;
    line-height: 1.8;
}

.product-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-list-card {
    overflow: hidden;
    border: 1px solid #edd5d9;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(17, 24, 39, 0.06);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.product-list-card:hover {
    transform: translateY(-4px);
    border-color: #e2aeb9;
    box-shadow: 0 24px 46px rgba(193, 18, 31, 0.12);
}

.product-list-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #fff7f8 0%, #ffeef1 100%);
}

.product-list-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-list-card__placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: #8b5a63;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.product-list-card__body {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.product-list-card h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.product-list-card h2 a {
    color: #111827;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-list-card h2 a:hover {
    color: #b80f1f;
}

.product-list-card p {
    margin: 0;
    color: #6b7280;
    line-height: 1.8;
}

.product-list-card__actions {
    padding-top: 4px;
}

.product-list-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(143, 16, 32, 0.18);
    border-radius: 14px;
    background: linear-gradient(135deg, #b80f1f 0%, #d71920 58%, #8f1020 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(193, 18, 31, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.product-list-card .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 32px rgba(193, 18, 31, 0.24);
    opacity: 0.98;
}

@media (max-width: 1100px) {
    .product-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-list-hero {
        grid-template-columns: 1fr;
    }

    .product-list-hero__meta {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .product-list-grid {
        grid-template-columns: 1fr;
    }

    .product-list-hero {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .product-list-card {
        border-radius: 20px;
    }

    .product-list-card__body {
        padding: 18px;
    }

    .product-list-card h2 {
        font-size: 20px;
    }
}