.products-section-light { padding: 80px 0 100px; background: #fff; }
@media (max-width: 991px) { .products-section-light { padding: 40px 0 80px; } }
@media (min-width: 1200px) { .products-section-light > .container { max-width: 1440px; } }

.products-section-light .hpl-sidebar-title {
    font-family: var(--default-font);
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-color);
}
.products-section-light .hpl-sidebar-header { margin-bottom: 18px; gap: 10px; }

.products-section-light .hpl-filter-group { padding: 10px 12px; margin-bottom: 6px; }
.products-section-light .hpl-filter-label,
.products-section-light .hpl-parent-label {
    font-size: 12px !important;
    letter-spacing: 1px !important;
    font-weight: 700;
    color: var(--primary-color);
}
.products-section-light .hpl-accordion .hpl-accordion-toggle { padding: 0 0 8px 0; }
.products-section-light .hpl-accordion-chevron { width: 10px; height: 10px; }

.products-section-light .hpl-active-box { margin-bottom: 16px; }
.products-section-light .hpl-active-tag { font-size: 10.5px; padding: 4px 8px 4px 10px; gap: 6px; }
.products-section-light .hpl-active-tag-remove { font-size: 13px; }
.products-section-light .hpl-clear-link { font-size: 10px; }

.products-section-light .hpc-qf-btn { font-size: 11px; padding: 6px 10px; }

.products-section-light .hpl-coat-pill,
.products-section-light .hpl-specialty-item,
.products-section-light .hpl-body-type-item,
.products-section-light .hpl-lineage-item { font-size: 11px; padding: 6px 10px; }
.products-section-light .hpl-specialty-count,
.products-section-light .hpl-lineage-count { font-size: 9px; }
.products-section-light .hpl-coat-circle { width: 14px; height: 14px; }
.products-section-light .hpl-lineage-medal { font-size: 10px; width: 16px; height: 16px; }

.products-section-light .hpl-range-values,
.products-section-light .hpl-price-value { font-size: 11px; }
.products-section-light .hpl-range-label,
.products-section-light .hpl-price-range-label,
.products-section-light .hpl-temp-label { font-size: 9px; }

.products-section-light .hpc-grid-header {
    border-bottom: 1px solid #ebe7df;
    padding-bottom: 22px;
    margin-bottom: 36px;
    align-items: flex-end;
}
.products-section-light .hpc-grid-eyebrow {
    color: var(--accent-color);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.products-section-light .hpc-grid-title {
    font-family: var(--default-font);
    font-weight: 600;
    font-size: 1.9rem;
    letter-spacing: 0;
    line-height: 1.2;
    color: var(--primary-color);
    text-transform: none;
    margin: 0;
}
.products-section-light .hpc-grid-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--accent-color);
}
.products-section-light .hpc-grid-meta {
    color: var(--text-color);
    font-size: 0.84rem;
    letter-spacing: 0;
    margin-top: 8px;
    display: block;
}

.products-section-light .shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
@media (max-width: 1199px) { .products-section-light .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .products-section-light .shop-grid { grid-template-columns: 1fr; } }

.products-section-light .shop-card {
    background: #423a34;
    border-radius: 12px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}
.products-section-light .shop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(66,58,52,0.18);
}
.products-section-light .shop-card > a {
    display: block;
    position: relative;
    aspect-ratio: 5 / 7;
    height: auto;
}
.products-section-light .shop-card-img { position: absolute; inset: 0; }
.products-section-light .shop-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.products-section-light .shop-card:hover .shop-card-img img { transform: scale(1.04); }

.products-section-light .shop-card-img::after {
    content: '';
    position: absolute;
    top: auto;
    left: 0; right: 0; bottom: 0;
    height: 60%;
    background: linear-gradient(to top,
        rgba(34,28,22,0.96) 0%,
        rgba(34,28,22,0.92) 35%,
        rgba(34,28,22,0.6) 65%,
        rgba(34,28,22,0.2) 88%,
        transparent 100%);
    pointer-events: none;
    display: block;
}

.products-section-light .shop-card-body {
    position: absolute;
    inset: auto 0 0 0;
    padding: 22px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: transparent;
}
.products-section-light .shop-card-name {
    font-family: var(--default-font);
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}
.products-section-light .shop-card-sub {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.92rem;
    color: var(--accent-color);
    margin: 0 0 10px;
}
.products-section-light .shop-card .sc-info-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.products-section-light .shop-card .sc-tag {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    font-size: 0.7rem;
    padding: 4px 11px;
    border-radius: 100px;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.products-section-light .shop-card .sc-tag-accent {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
}

.products-section-light .shop-card-badge {
    top: 14px; right: 14px;
    width: 34px; height: 34px;
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(201,169,110,0.35);
    z-index: 3;
}

.products-section-light .shop-card-sale-badge {
    position: absolute;
    top: 0; left: 0;
    z-index: 3;
    padding: 5px 14px 5px 12px;
    font-family: var(--default-font);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom-right-radius: 10px;
    pointer-events: none;
}
.products-section-light .shop-card-sale-badge--sold { background: rgba(192,57,43,0.92); color: #fff; }
.products-section-light .shop-card-sale-badge--reserved { background: rgba(201,169,110,0.92); color: var(--primary-color); }

.products-mobile-filter-btn {
    background: var(--primary-color) !important;
    color: #fff !important;
    padding: 15px 24px !important;
    border-radius: 6px !important;
    font-family: var(--default-font);
    font-weight: 700 !important;
    font-size: 0.78rem !important;
    letter-spacing: 2px !important;
    text-transform: uppercase;
    transition: all .3s;
    border: none;
}
.products-mobile-filter-btn:hover {
    background: var(--accent-color) !important;
    color: var(--primary-color) !important;
}

.products-empty-state { padding: 100px 20px; text-align: center; }
.products-empty-state .es-icon {
    width: 84px; height: 84px;
    border-radius: 50%;
    background: #f9f8f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    margin-bottom: 26px;
}
.products-empty-state h4 {
    font-family: var(--default-font);
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 10px;
}
.products-empty-state h4 em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--accent-color);
}
.products-empty-state p {
    color: var(--text-color);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0 auto 28px;
    max-width: 420px;
}
.products-empty-state .btn-reset {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 14px 34px;
    border-radius: 6px;
    font-family: var(--default-font);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
    border: none;
}
.products-empty-state .btn-reset:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(201,169,110,0.35);
    color: var(--primary-color);
}
