.products-page [data-products-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease;
}

.products-page [data-products-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.products-page .products-breadcrumb {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1rem 1rem 0;
    font-size: .875rem;
    color: #64748b;
}

.products-page .products-breadcrumb a {
    color: #475569;
    text-decoration: none;
    transition: color .2s ease;
}

.products-page .products-breadcrumb a:hover {
    color: #d67203;
}

.products-page .category-tab {
    display: inline-flex;
    align-items: center;
    padding: .625rem 1.25rem;
    border-radius: 9999px;
    font-size: .95rem;
    font-weight: 500;
    color: #475569;
    background: #f1f5f9;
    border: 1px solid transparent;
    transition: all .25s ease;
    text-decoration: none;
}

.products-page .category-tab:hover {
    color: #d67203;
    background: #fff7ed;
    border-color: #fed7aa;
}

.products-page .category-tab.is-active {
    color: #fff;
    background: #d67203;
    border-color: #d67203;
    box-shadow: 0 6px 14px -6px rgba(214, 114, 3, .5);
}

.products-page .product-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: .75rem;
    background: #f8fafc;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
    cursor: zoom-in;
    aspect-ratio: 3 / 4;
    transition: transform .35s ease, box-shadow .35s ease;
}

.products-page .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px -18px rgba(15, 23, 42, .35);
}

.products-page .product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.products-page .product-card:hover img {
    transform: scale(1.06);
}

.products-page .product-card .card-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.25rem 1rem .9rem;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, .78) 100%);
    color: #fff;
    transform: translateY(15%);
    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
}

.products-page .product-card:hover .card-overlay {
    transform: translateY(0);
    opacity: 1;
}

.products-page .product-card .card-overlay h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.products-page .product-card .card-overlay p {
    font-size: .8rem;
    color: #cbd5e1;
    margin: .25rem 0 0;
}

.products-page .product-card .card-zoom {
    position: absolute;
    top: .75rem;
    right: .75rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, .9);
    color: #d67203;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(.85);
    transition: opacity .3s ease, transform .3s ease;
    font-size: 1rem;
}

.products-page .product-card:hover .card-zoom {
    opacity: 1;
    transform: scale(1);
}

.products-page .empty-state {
    padding: 4rem 1.5rem;
    text-align: center;
    color: #64748b;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 1rem;
}

.products-page .cms-pager {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.products-page .cms-pager a,
.products-page .cms-pager span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 .875rem;
    border-radius: .5rem;
    border: 1px solid #e2e8f0;
    color: #475569;
    text-decoration: none;
    font-size: .9rem;
    transition: all .2s ease;
    background: #fff;
}

.products-page .cms-pager a:hover {
    color: #d67203;
    border-color: #fed7aa;
    background: #fff7ed;
}

.products-page .cms-pager .active,
.products-page .cms-pager .current {
    background: #d67203;
    border-color: #d67203;
    color: #fff;
}

.pl-lightbox {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(15, 23, 42, .92);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s ease;
}

.pl-lightbox.is-open {
    display: flex;
    opacity: 1;
}

.pl-lightbox .pl-stage {
    position: relative;
    max-width: 92vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pl-lightbox .pl-stage img {
    max-width: 92vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: .5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
}

.pl-lightbox .pl-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3rem;
    text-align: center;
    color: #e2e8f0;
    font-size: .95rem;
}

.pl-lightbox .pl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .625rem;
    padding: .5rem 0;
}

.pl-lightbox .pl-dot {
    position: static;
    transform: none;
    width: .625rem;
    height: .625rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, .4);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background-color .2s ease, transform .2s ease;
}

.pl-lightbox .pl-dot:hover,
.pl-lightbox .pl-dot.is-active {
    background: #d67203;
}

.pl-lightbox .pl-dot.is-active {
    transform: scale(1.25);
}

.pl-lightbox button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 0;
    cursor: pointer;
    font-size: 1.75rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s ease;
}

.pl-lightbox button:hover {
    background: rgba(255, 255, 255, .24);
}

.pl-lightbox .pl-prev {
    left: max(1rem, calc(50% - 46vw));
}

.pl-lightbox .pl-next {
    right: max(1rem, calc(50% - 46vw));
}

.pl-lightbox .pl-close {
    top: 1.25rem;
    right: 1.25rem;
    transform: none;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
}

@media (max-width: 640px) {
    .pl-lightbox .pl-prev {
        left: .5rem;
    }

    .pl-lightbox .pl-next {
        right: .5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .products-page [data-products-reveal],
    .products-page .product-card,
    .products-page .product-card img {
        transition: none;
        transform: none;
        opacity: 1;
    }
}
