body.single-product .site-main {
    max-width: 100%!important;
}

#ajax-products {
    position: relative;
    transition: opacity .3s ease;
}

#ajax-products.loading::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.6);
    z-index: 5;
}

#ajax-products.loading {
    position: relative;
    opacity: .4;
    pointer-events: none;
}

#ajax-products.loading .collection__item {
    opacity: 0;
}

#ajax-products.loading::after {
    content: "";
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

#ajax-products.loading {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

#ajax-products.loading::before {
    content: "";
    position: absolute;
    inset: 0;
}

.skeleton-card {
    background: #f6f6f6;
    border-radius: 8px;
    overflow: hidden;
    animation: pulse 1s infinite ease-in-out;
}

.skeleton-image {
    height: 250px;
    background: #e5e5e5;
}

.skeleton-content {
    padding: 15px;
}

.skeleton-line {
    height: 14px;
    background: #e5e5e5;
    margin-bottom: 10px;
    border-radius: 4px;
}

.skeleton-line.short {
    width: 60%;
}

.categories__link {
    cursor: pointer;
}

.navigation__button:focus {
    background-color: #fff;
    color: #1e1e1e;
}






















@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: .6; }
    100% { opacity: 1; }
}

