.page-products-hero {
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.page-products-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.page-products-stat-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    background: hsla(0, 0%, 100%, 0.04);
    padding: 0.4rem 0.9rem;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: hsla(0, 0%, 100%, 0.78);
    text-transform: uppercase;
}

.page-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .page-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .page-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.page-products-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    padding-bottom: 2rem;
}

.page-products-pagination a,
.page-products-pagination span {
    display: inline-flex;
    min-width: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    padding: 0.5rem 0.85rem;
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.75);
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.page-products-pagination a:hover {
    border-color: rgba(252, 213, 53, 0.35);
    color: #fcd535;
}

.page-products-pagination .is-active {
    border-color: rgba(252, 213, 53, 0.5);
    background: rgba(252, 213, 53, 0.12);
    color: #fcd535;
}

.page-products-pagination .is-disabled {
    opacity: 0.4;
    pointer-events: none;
}

.page-product-detail-stage {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 1.5rem;
    background: radial-gradient(circle at top, rgba(252, 213, 53, 0.08), transparent 38%), rgba(0, 0, 0, 0.42);
    border: 1px solid hsla(0, 0%, 100%, 0.08);
}

.page-product-detail-counter {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 2;
    border-radius: 9999px;
    background: hsla(0, 0%, 6%, 0.72);
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    color: hsla(0, 0%, 100%, 0.85);
    backdrop-filter: blur(8px);
}

.page-product-detail-content {
    color: hsla(0, 0%, 100%, 0.85);
    line-height: 1.7;
}

.page-product-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
}

.page-product-detail-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.page-product-detail-content th,
.page-product-detail-content td {
    border: 1px solid hsla(0, 0%, 100%, 0.12);
    padding: 0.5rem 0.75rem;
}
