
.shc-catalog {
    display: grid;
    grid-template-columns: repeat(var(--shc-columns, 3), minmax(0, 1fr));
    gap: 24px;
    font-family: Arial, sans-serif;
}

.shc-card {
    overflow: hidden;
    border: 1px solid rgba(217, 171, 73, 0.28);
    border-radius: 18px;
    background: #171a1a;
    color: #ffffff;
    transition: transform 0.2s ease;
}

.shc-card:hover {
    transform: translateY(-3px);
}

.shc-card__image {
    display: block;
    aspect-ratio: 4 / 3;
    background: #111111;
}

.shc-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shc-card__placeholder,
.shc-product__placeholder {
    height: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d9ab49;
    background: #111111;
    font-weight: 800;
}

.shc-card__body {
    padding: 22px;
}

.shc-card__sku {
    margin-bottom: 8px;
    color: #d9ab49;
    font-size: 12px;
}

.shc-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.25;
}

.shc-card h3 a {
    color: #ffffff;
    text-decoration: none;
}

.shc-card__excerpt {
    min-height: 66px;
    color: #c8cfcc;
    font-size: 14px;
    line-height: 1.55;
}

.shc-card__bottom {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 18px 0;
}

.shc-card__price {
    color: #ffffff;
    font-weight: 800;
}

.shc-card__stock {
    color: #d9ab49;
    font-size: 13px;
}

.shc-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    background: #d9ab49;
    color: #000000 !important;
    text-decoration: none;
    font-weight: 800;
}

.shc-empty {
    grid-column: 1 / -1;
    padding: 40px;
    border-radius: 18px;
    background: #171a1a;
    color: #ffffff;
    text-align: center;
}

/* Страница отдельного товара */
.shc-product {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 46px;
    align-items: start;
    padding: 34px;
    border: 1px solid rgba(217, 171, 73, 0.26);
    border-radius: 24px;
    background: #171a1a;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

.shc-product__main-image {
    overflow: hidden;
    min-height: 420px;
    border-radius: 18px;
    background: #ffffff;
}

.shc-product__main-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: contain;
    background: #ffffff;
}

.shc-product__gallery {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.shc-product__thumb {
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(217, 171, 73, 0.25);
    border-radius: 10px;
    background: #ffffff;
    cursor: pointer;
}

.shc-product__thumb:hover {
    border-color: #d9ab49;
}

.shc-product__thumb img {
    display: block;
    width: 100%;
    height: 82px;
    object-fit: contain;
    background: #ffffff;
}

.shc-product__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.shc-product__meta span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(217, 171, 73, 0.28);
    border-radius: 999px;
    color: #d9ab49;
    font-size: 12px;
    font-weight: 800;
}

.shc-product__content h1 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
}

.shc-product__status-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shc-product__price {
    color: #d9ab49;
    font-size: 28px;
    font-weight: 900;
}

.shc-product__availability {
    color: #d9ab49;
    font-size: 14px;
    font-weight: 800;
}

.shc-product__description {
    margin-bottom: 28px;
    color: #d9dfdd;
    font-size: 16px;
    line-height: 1.7;
}

.shc-product__description h2,
.shc-product__description h3,
.shc-product__description h4 {
    color: #ffffff;
}

.shc-product__description img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 900px) {
    .shc-catalog {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shc-product {
        grid-template-columns: 1fr;
        padding: 24px;
    }
}

@media (max-width: 620px) {
    .shc-catalog {
        grid-template-columns: 1fr;
    }

    .shc-product {
        padding: 18px;
    }

    .shc-product__gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .shc-product__main-image,
    .shc-product__main-image img {
        min-height: 280px;
    }

    .shc-product__status-row {
        align-items: flex-start;
        flex-direction: column;
    }
}


.shc-catalog-wrap {
    font-family: Arial, sans-serif;
}

.shc-catalog-filter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.55fr) auto;
    gap: 16px;
    align-items: end;
    margin-bottom: 28px;
    padding: 20px;
    border: 1px solid rgba(217, 171, 73, 0.25);
    border-radius: 18px;
    background: #171a1a;
}

.shc-catalog-filter__field label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

.shc-catalog-filter input,
.shc-catalog-filter select {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    background: #0f1111;
    color: #ffffff;
}

.shc-catalog-filter__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.shc-filter-reset {
    color: #d9ab49 !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.shc-pagination {
    margin-top: 34px;
}

.shc-pagination ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.shc-pagination a,
.shc-pagination span {
    display: inline-flex;
    min-width: 42px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid rgba(217,171,73,.35);
    border-radius: 999px;
    background: #171a1a;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 800;
}

.shc-pagination .current {
    background: #d9ab49;
    color: #000000 !important;
}

@media (max-width: 800px) {
    .shc-catalog-filter {
        grid-template-columns: 1fr;
    }

    .shc-catalog-filter__actions {
        align-items: flex-start;
        flex-direction: column;
    }
}
