.product-list-section {
    min-height: calc(100vh - 80px);
    padding: 4rem 0;
    background:
        radial-gradient(
            circle at top left,
            color-mix(in srgb, var(--swem-primary, #2b1d18) 8%, transparent),
            transparent 35%
        ),
        linear-gradient(
            180deg,
            var(--swem-bg, #fffaf7) 0%,
            #ffffff 100%
        );
}

/* Cabeçalho da listagem */
.product-list-header {
    max-width: 720px;
    margin-bottom: 2rem;
}

.product-list-header h1 {
    color: var(--swem-text, #2b1d18);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 0.7rem;
}

.product-list-header p {
    color: var(--swem-muted, #7a675f);
    font-size: 1rem;
    line-height: 1.7;
}

/* Link do card */
.product-card-link {
    text-decoration: none;
    color: inherit;
}

/* Card */
.product-card {
    height: 100%;
    background: color-mix(in srgb, var(--swem-surface, #ffffff) 96%, #ffffff);
    border: 1px solid var(--swem-border, #e8dcd6);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(45, 30, 20, 0.09);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(
        in srgb,
        var(--swem-primary, #2b1d18) 24%,
        var(--swem-border, #e8dcd6)
    );
    box-shadow: 0 26px 70px rgba(45, 30, 20, 0.14);
}

/* Imagem */
.product-card-image-area {
    position: relative;
    padding: 0.75rem;
}

.product-card-image-area img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 22px;
    background: var(--swem-bg, #fffaf7);
    display: block;
}

/* Badge promoção */
.product-card-promo-badge {
    position: absolute;
    top: 1.15rem;
    left: 1.15rem;
    z-index: 2;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    background: var(--swem-primary, #2b1d18);
    color: var(--swem-on-primary, #ffffff);
    font-size: 0.72rem;
    font-weight: 900;
}

/* Corpo */
.product-card-body {
    padding: 0 1.2rem 1.3rem;
}

/* Categoria antiga */
.product-card-category {
    display: inline-flex;
    margin-bottom: 0.65rem;
    border-radius: 999px;
    padding: 0.3rem 0.7rem;
    background: var(--swem-primary-soft, #fff1ed);
    color: var(--swem-secondary, #7a3c32);
    font-size: 0.72rem;
    font-weight: 900;
}

/* Tags novas */
.product-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.65rem;
}

.product-card-tags span {
    display: inline-flex;
    border-radius: 999px;
    padding: 0.28rem 0.65rem;
    background: var(--swem-primary-soft, #fff1ed);
    color: var(--swem-secondary, #7a3c32);
    font-size: 0.7rem;
    font-weight: 900;
}

.product-card-body h2 {
    color: var(--swem-text, #2b1d18);
    font-size: 1.15rem;
    font-weight: 900;
    margin-bottom: 0.45rem;
}

.product-card-body p {
    color: var(--swem-muted, #7a675f);
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 0.8rem;
}

/* Mini especificações */
.product-mini-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.product-mini-specs span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border-radius: 999px;
    padding: 0.32rem 0.65rem;
    background: var(--swem-bg, #fffaf7);
    border: 1px solid var(--swem-border, #e8dcd6);
    color: var(--swem-muted, #7a675f);
    font-size: 0.75rem;
    font-weight: 800;
}

/* Rodapé do card */
.product-card-footer {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: flex-end;
}

/* Preço */
.product-card-price {
    display: grid;
    gap: 0.1rem;
}

.product-card-price span {
    color: var(--swem-muted, #9b8981);
    font-size: 0.82rem;
    text-decoration: line-through;
}

.product-card-price strong,
.product-card-body strong {
    color: var(--swem-text, #2b1d18);
    font-size: 1.15rem;
    font-weight: 900;
}

/* Estoque */
.product-stock {
    border-radius: 999px;
    padding: 0.28rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 900;
    white-space: nowrap;
}

.product-stock.available {
    background: #eef8f0;
    color: #23743a;
}

.product-stock.unavailable {
    background: #fff4ed;
    color: #9b4d22;
}

/* Estado vazio */
.search-empty-page {
    padding: 2rem;
    background: var(--swem-surface, #ffffff);
    border-radius: 24px;
    border: 1px solid var(--swem-border, #e8dcd6);
    color: var(--swem-muted, #7a675f);
    text-align: center;
    box-shadow: 0 16px 45px rgba(45, 30, 20, 0.06);
}

/* Responsivo */
@media (max-width: 991px) {
    .product-list-section {
        padding: 2.5rem 0;
    }

    .product-card-image-area img {
        height: 250px;
    }
}

@media (max-width: 575px) {
    .product-list-section {
        padding: 1.8rem 0;
    }

    .product-list-header {
        margin-bottom: 1.5rem;
    }

    .product-card {
        border-radius: 24px;
    }

    .product-card-image-area {
        padding: 0.65rem;
    }

    .product-card-image-area img {
        height: 240px;
        border-radius: 20px;
    }

    .product-card-body {
        padding: 0 1rem 1.1rem;
    }

    .product-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}