.wpc-catalog {
    --wpc-border: rgba(23, 21, 19, 0.16);
    --wpc-text: #171513;
    --wpc-muted: #686159;
    --wpc-accent: #d3a86d;
    --wpc-accent-dark: #8b602d;
    --wpc-dark: #0b0a09;
    --wpc-light: #f7f4ef;
    display: grid;
    column-gap: clamp(18px, 2vw, 28px);
    row-gap: clamp(42px, 5vw, 68px);
    align-items: stretch;
    margin: 32px 0;
    color: var(--wpc-text);
    font-family: Inter, Arial, sans-serif;
}

.wpc-columns-1 {
    grid-template-columns: 1fr;
}

.wpc-columns-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.wpc-columns-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wpc-columns-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.wpc-columns-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.wpc-product {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--wpc-text);
}

.wpc-product__media {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    background: #ded6cb;
    text-decoration: none;
}

.wpc-product__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease;
}

.wpc-product:hover .wpc-product__image {
    transform: scale(1.035);
}

.wpc-product__placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: var(--wpc-muted);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 24px;
}

.wpc-product__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 17px 1px 0;
}

.wpc-product__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    color: var(--wpc-accent-dark);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.wpc-product__categories a {
    color: inherit;
    text-decoration: none;
}

.wpc-product__categories a:hover,
.wpc-product__categories a:focus {
    color: var(--wpc-accent-dark);
}

.wpc-product__title {
    margin: 0;
    color: var(--wpc-text);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(25px, 2.1vw, 31px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.025em;
}

.wpc-product__title a {
    color: inherit;
    text-decoration: none;
}

.wpc-product__title a:hover {
    color: var(--wpc-accent-dark);
}

.wpc-product__price {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: baseline;
    margin-top: 2px;
    font-size: 17px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.wpc-product__old-price {
    color: var(--wpc-muted);
    font-size: 13px;
    font-weight: 400;
    text-decoration: line-through;
}

.wpc-product__sku {
    color: var(--wpc-muted);
    font-size: 12px;
}

.wpc-product__excerpt {
    display: -webkit-box;
    overflow: hidden;
    color: var(--wpc-muted);
    font-size: 14px;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.wpc-product__excerpt p {
    margin: 0;
}

.wpc-product__actions {
    display: grid;
    gap: 12px;
    padding-top: 12px;
    margin-top: auto;
}

.wpc-product__actions .wpc-button:not(.wpc-button--secondary) {
    order: 1;
}

.wpc-product__actions .wpc-button--secondary {
    order: 2;
}

.wpc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 16px;
    border: 1px solid var(--wpc-dark, #0b0a09);
    border-radius: 4px;
    background: var(--wpc-dark, #0b0a09);
    color: var(--wpc-light, #f7f4ef);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.wpc-button:hover,
.wpc-button:focus {
    border-color: var(--wpc-accent);
    background: var(--wpc-accent);
    color: var(--wpc-dark, #0b0a09);
    transform: translateY(-1px);
}

.wpc-button:active {
    transform: translateY(1px);
}

.wpc-button:focus-visible,
.wpc-product a:focus-visible,
.wpc-pagination a:focus-visible {
    outline: 2px solid var(--wpc-accent);
    outline-offset: 3px;
}

.wpc-button--disabled {
    border-color: #d5d0c8;
    background: #d5d0c8;
    color: #57514a;
    cursor: not-allowed;
}

.wpc-button--secondary {
    min-height: 28px;
    padding: 2px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--wpc-text);
    font-size: 12px;
    text-decoration: underline;
    text-decoration-color: var(--wpc-accent);
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

.wpc-button--secondary:hover,
.wpc-button--secondary:focus {
    background: transparent;
    color: var(--wpc-accent-dark);
    transform: none;
}

.wpc-empty {
    padding: 30px;
    border-top: 1px solid var(--wpc-accent, #d3a86d);
    border-radius: 0;
    color: var(--wpc-muted, #686159);
}

.site-main.wpc-catalog-page {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    color-scheme: light;
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.94), transparent 31rem),
        #f7f4ef;
}

.wpc-archive {
    --wpc-border: rgba(23, 21, 19, 0.16);
    --wpc-text: #171513;
    --wpc-muted: #686159;
    --wpc-accent: #d3a86d;
    --wpc-accent-dark: #8b602d;
    --wpc-dark: #0b0a09;
    --wpc-light: #f7f4ef;
    width: min(1440px, calc(100% - 64px));
    margin: 0 auto;
    padding: clamp(42px, 5vw, 72px) 0 clamp(76px, 8vw, 120px);
    color: var(--wpc-text);
    font-family: Inter, Arial, sans-serif;
}

.wpc-archive__header {
    margin-bottom: clamp(42px, 5vw, 66px);
}

.wpc-archive__title {
    margin: 0;
    color: var(--wpc-text);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(54px, 6vw, 84px);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 0.98;
}

html[lang="kk-KZ"] .wpc-archive__title {
    font-size: clamp(48px, 5.4vw, 76px);
}

.wpc-archive__intro {
    max-width: 650px;
    margin: 22px 0 0;
    color: var(--wpc-muted);
    font-size: clamp(15px, 1.25vw, 18px);
    line-height: 1.65;
}

.wpc-archive__count {
    margin: 12px 0 0;
    color: var(--wpc-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.wpc-archive__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
    gap: clamp(36px, 4vw, 64px);
    align-items: start;
}

.wpc-archive__products {
    min-width: 0;
}

.wpc-archive__products > .wpc-catalog {
    margin: 0;
}

.wpc-filters-drawer {
    position: sticky;
    top: 32px;
    min-width: 0;
    padding-top: 24px;
    border-top: 1px solid var(--wpc-accent);
}

.wpc-filters-drawer__toggle {
    display: none;
}

.wpc-filters-drawer__heading {
    display: flex;
    gap: 16px;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 12px;
}

.wpc-filters-drawer__heading h2 {
    margin: 0;
    color: var(--wpc-text);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1;
}

.wpc-filters-drawer__heading span,
.wpc-filters-drawer__active {
    color: var(--wpc-accent-dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wpc-filters-drawer__description {
    margin: 0 0 26px;
    color: var(--wpc-muted);
    font-size: 13px;
    line-height: 1.6;
}

.wpc-filters {
    display: grid;
    gap: 20px;
    padding: 0;
    border: 0;
    background: transparent;
}

.wpc-filter-field {
    display: grid;
    min-width: 0;
    gap: 8px;
}

.wpc-filter-field label {
    color: var(--wpc-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.wpc-filter-field__help {
    color: var(--wpc-muted);
    font-size: 12px;
    line-height: 1.5;
}

.wpc-filter-field input,
.wpc-filter-field select {
    width: 100%;
    min-width: 0;
    height: 52px;
    margin: 0;
    padding: 0 12px;
    border: 1px solid var(--wpc-border);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.62);
    color: var(--wpc-text);
    font: inherit;
    font-size: 14px;
    letter-spacing: 0;
}

.wpc-filter-field input:focus,
.wpc-filter-field select:focus {
    border-color: var(--wpc-accent-dark);
    outline: 2px solid rgba(211, 168, 109, 0.25);
    outline-offset: 1px;
}

.wpc-filters__actions {
    display: grid;
    gap: 14px;
    margin-top: 4px;
}

.wpc-filters__actions .wpc-button {
    cursor: pointer;
    font-family: inherit;
}

.wpc-filters__reset {
    color: var(--wpc-muted);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
}

.wpc-filters__reset:hover,
.wpc-filters__reset:focus {
    color: var(--wpc-accent-dark);
}

.wpc-empty--archive {
    display: grid;
    gap: 12px;
    min-height: 280px;
    align-content: center;
    margin: 0;
    padding-inline: 0;
}

.wpc-empty--archive strong {
    color: var(--wpc-text);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 600;
    line-height: 1;
}

.wpc-empty--archive a {
    width: fit-content;
    margin-top: 6px;
    color: var(--wpc-accent-dark);
    font-size: 13px;
    font-weight: 600;
    text-underline-offset: 4px;
}

.wpc-pagination {
    margin-top: clamp(50px, 6vw, 76px);
}

.wpc-pagination > .page-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wpc-pagination a.page-numbers,
.wpc-pagination span.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 8px 12px;
    border: 1px solid var(--wpc-border);
    border-radius: 4px;
    background: transparent;
    color: var(--wpc-text);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.wpc-pagination a.page-numbers:hover,
.wpc-pagination a.page-numbers:focus,
.wpc-pagination span.page-numbers.current {
    border-color: var(--wpc-dark);
    background: var(--wpc-dark);
    color: var(--wpc-light);
}

.site-main.wpc-single-product-page {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    color-scheme: light;
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.94), transparent 31rem),
        #f7f4ef;
}

.wpc-single-product {
    --wpc-border: rgba(23, 21, 19, 0.16);
    --wpc-text: #171513;
    --wpc-muted: #686159;
    --wpc-accent: #d3a86d;
    --wpc-accent-dark: #8b602d;
    --wpc-dark: #0b0a09;
    --wpc-light: #f7f4ef;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(36px, 5vw, 84px);
    row-gap: clamp(44px, 6vw, 84px);
    align-items: start;
    width: min(1380px, calc(100% - 64px));
    margin: 0 auto;
    padding: clamp(34px, 4vw, 58px) 0 clamp(72px, 8vw, 118px);
    color: var(--wpc-text);
    font-family: Inter, Arial, sans-serif;
}

.wpc-single-product__breadcrumb,
.wpc-single-product__gallery,
.wpc-single-product__summary,
.wpc-single-product__description {
    min-width: 0;
}

.wpc-single-product__breadcrumb {
    grid-column: 1 / -1;
}

.wpc-single-product__gallery {
    grid-column: 1 / span 7;
}

.wpc-single-product__summary {
    grid-column: 8 / -1;
    position: sticky;
    top: 34px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: clamp(25px, 3vw, 42px) 0 0;
    border-top: 1px solid var(--wpc-accent);
}

.wpc-single-product__back {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    color: var(--wpc-muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.wpc-single-product__back:hover,
.wpc-single-product__back:focus-visible {
    color: var(--wpc-accent-dark);
    transform: translateX(-2px);
}

.wpc-single-product__back:focus-visible,
.wpc-single-product__categories a:focus-visible,
.wpc-single-product__meta a:focus-visible,
.wpc-single-gallery__main:focus-visible,
.wpc-single-gallery__thumb:focus-visible {
    outline: 2px solid var(--wpc-accent-dark);
    outline-offset: 4px;
}

.wpc-single-product__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px;
    color: var(--wpc-accent-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    line-height: 1.4;
    text-transform: uppercase;
}

.wpc-single-product__categories a {
    color: inherit;
    text-decoration: none;
}

.wpc-single-product__title {
    margin: 0;
    color: var(--wpc-text);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(48px, 5.15vw, 76px);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 0.98;
}

html[lang="kk-KZ"] .wpc-single-product__title {
    font-size: clamp(43px, 4.65vw, 68px);
}

.wpc-single-product__lead {
    max-width: 52ch;
    margin: 25px 0 0;
    color: var(--wpc-muted);
    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.7;
}

.wpc-single-product__price-label {
    margin: 30px 0 0;
    color: var(--wpc-muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.wpc-single-product__price {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    align-items: baseline;
    margin-top: 8px;
    color: var(--wpc-text);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(30px, 2.8vw, 42px);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.wpc-single-product__price .wpc-product__old-price {
    color: var(--wpc-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
}

.wpc-single-product__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin: 34px 0 0;
    color: var(--wpc-muted);
}

.wpc-single-product__meta div {
    display: grid;
    gap: 7px;
    padding-top: 14px;
    border-top: 1px solid var(--wpc-border);
}

.wpc-single-product__meta dt {
    margin: 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.wpc-single-product__meta dd {
    margin: 0;
    color: var(--wpc-text);
    font-size: 15px;
    line-height: 1.5;
}

.wpc-single-product__meta a {
    color: inherit;
    text-decoration: none;
}

.wpc-single-product__meta a:hover {
    color: var(--wpc-accent-dark);
}

.wpc-single-product__actions {
    margin-top: 34px;
}

.wpc-single-product__actions .wpc-button {
    width: 100%;
    min-height: 64px;
    border: 1px solid var(--wpc-dark);
    border-radius: 4px;
    background: var(--wpc-dark);
    color: var(--wpc-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.wpc-single-product__actions .wpc-button:hover,
.wpc-single-product__actions .wpc-button:focus-visible {
    border-color: var(--wpc-accent);
    background: var(--wpc-accent);
    color: var(--wpc-dark);
    transform: translateY(-1px);
}

.wpc-single-product__actions .wpc-button:active {
    transform: translateY(1px);
}

.wpc-single-product__actions .wpc-button--disabled {
    border-color: #d5d0c8;
    background: #d5d0c8;
    color: #57514a;
}

.wpc-single-product__actions > p {
    margin: 13px 0 0;
    color: var(--wpc-muted);
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.wpc-single-product__order-help {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--wpc-border);
}

.wpc-single-product__order-help > strong {
    display: block;
    color: var(--wpc-text);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.15;
}

.wpc-single-product__order-help ol {
    display: grid;
    gap: 9px;
    margin: 14px 0 0;
    padding-left: 20px;
    color: var(--wpc-muted);
    font-size: 13px;
    line-height: 1.55;
}

.wpc-single-product__order-help li {
    padding-left: 3px;
}

.wpc-single-product__description {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(36px, 5vw, 84px);
    row-gap: 30px;
    padding-top: clamp(42px, 6vw, 78px);
    border-top: 1px solid var(--wpc-accent);
    color: var(--wpc-muted);
}

.wpc-single-product__description-heading {
    grid-column: 1 / -1;
}

.wpc-single-product__description-note {
    max-width: 590px;
    margin: 16px 0 0;
    color: var(--wpc-muted);
    font-size: 14px;
    line-height: 1.65;
}

.wpc-single-product__description-body {
    grid-column: 5 / span 7;
    max-width: 760px;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.8;
}

.wpc-single-product__description h2 {
    margin: 0;
    color: var(--wpc-text);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(42px, 4.2vw, 62px);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1;
}

html[lang="kk-KZ"] .wpc-single-product__description h2 {
    font-size: clamp(38px, 3.8vw, 56px);
}

.wpc-single-product__description-body > :first-child {
    margin-top: 0;
}

.wpc-single-product__description-body > :last-child {
    margin-bottom: 0;
}

.wpc-single-product__description-body h3,
.wpc-single-product__description-body h4 {
    margin: 1.8em 0 0.55em;
    color: var(--wpc-text);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.65em;
    line-height: 1.15;
}

.wpc-single-product__description-body a {
    color: var(--wpc-accent-dark);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.wpc-single-gallery {
    display: grid;
    gap: 16px;
}

.wpc-single-gallery__main {
    display: block;
    overflow: hidden;
    aspect-ratio: 1;
    border-radius: 4px;
    background: #ded6cb;
}

.wpc-single-gallery__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 220ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.wpc-single-gallery__main:hover .wpc-single-gallery__image {
    transform: scale(1.018);
}

.wpc-single-gallery__main.is-changing .wpc-single-gallery__image {
    opacity: 0.5;
}

.wpc-single-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(76px, 96px));
    gap: 12px;
}

.wpc-single-gallery__thumb {
    display: block;
    overflow: hidden;
    padding: 0;
    aspect-ratio: 1;
    border: 1px solid var(--wpc-border);
    border-radius: 4px;
    background: #ded6cb;
    cursor: pointer;
    opacity: 0.66;
    transition: border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.wpc-single-gallery__thumb:hover,
.wpc-single-gallery__thumb.is-active {
    border-color: var(--wpc-accent-dark);
    opacity: 1;
}

.wpc-single-gallery__thumb:active {
    transform: scale(0.98);
}

.wpc-single-gallery__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wpc-single-gallery__hint {
    max-width: 620px;
    margin: 0;
    color: var(--wpc-muted);
    font-size: 12px;
    line-height: 1.55;
}

.wpc-single-gallery__status {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.wpc-single-gallery__status.is-error {
    position: static;
    width: auto;
    height: auto;
    padding: 11px 14px;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    border-left: 2px solid var(--wpc-accent-dark);
    background: rgba(255, 255, 255, 0.54);
    color: var(--wpc-text);
    font-size: 13px;
}

.wpc-single-gallery--empty {
    display: grid;
    min-height: 520px;
    place-items: center;
    border: 1px solid var(--wpc-border);
    border-radius: 4px;
    background: #ebe5dc;
    color: var(--wpc-muted);
    align-content: center;
    gap: 8px;
    padding: 30px;
    text-align: center;
}

.wpc-single-gallery--empty strong {
    color: var(--wpc-text);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 28px;
    font-weight: 600;
}

.wpc-single-gallery--empty span {
    max-width: 320px;
    font-size: 13px;
    line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
    .wpc-product__image,
    .wpc-button,
    .wpc-single-product__back,
    .wpc-single-product__actions .wpc-button,
    .wpc-single-gallery__image,
    .wpc-single-gallery__thumb {
        transition: none;
    }

    .wpc-single-gallery__main:hover .wpc-single-gallery__image {
        transform: none;
    }
}

@media (max-width: 1100px) {
    .wpc-columns-4,
    .wpc-columns-5,
    .wpc-columns-6 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .wpc-archive {
        width: min(100% - 40px, 1040px);
    }

    .wpc-archive__layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .wpc-filters-drawer {
        grid-row: 1;
        position: static;
        padding: 0;
        border-top: 0;
    }

    .wpc-filters-drawer__toggle {
        display: grid;
    }

    .wpc-filters-drawer__toggle {
        width: 100%;
        min-height: 66px;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 6px 18px;
        align-items: center;
        padding: 14px 0;
        border: 0;
        border-top: 1px solid var(--wpc-accent);
        border-bottom: 1px solid var(--wpc-border);
        border-radius: 0;
        background: transparent;
        color: var(--wpc-text);
        font: inherit;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-align: left;
        text-transform: uppercase;
        cursor: pointer;
    }

    .wpc-filters-drawer__active {
        grid-column: 1;
        color: var(--wpc-muted);
        font-size: 10px;
    }

    .wpc-filters-drawer__indicator {
        grid-column: 2;
        grid-row: 1 / span 2;
        color: var(--wpc-accent-dark);
        font-size: 24px;
        font-weight: 400;
        line-height: 1;
    }

    .wpc-filters-drawer__panel {
        display: none;
    }

    .wpc-filters-drawer.is-open .wpc-filters-drawer__panel {
        display: block;
        padding: 28px 0 30px;
        border-bottom: 1px solid var(--wpc-border);
    }

    .wpc-filters-drawer__heading {
        display: none;
    }

    .wpc-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 18px;
    }

    .wpc-filter-field--search,
    .wpc-filters__actions {
        grid-column: 1 / -1;
    }

    .wpc-filters__actions {
        grid-template-columns: minmax(180px, 1fr) auto;
        align-items: center;
    }

    .wpc-filters__reset {
        padding: 0 10px;
    }

    .wpc-single-product {
        column-gap: 40px;
    }

    .wpc-single-product__gallery {
        grid-column: 1 / span 7;
    }

    .wpc-single-product__summary {
        grid-column: 8 / -1;
    }

    .wpc-single-product__title {
        font-size: clamp(46px, 5.5vw, 62px);
    }
}

@media (min-width: 761px) and (max-width: 900px) {
    .wpc-archive .wpc-columns-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .wpc-catalog,
    .wpc-columns-2,
    .wpc-columns-3,
    .wpc-columns-4,
    .wpc-columns-5,
    .wpc-columns-6 {
        grid-template-columns: 1fr;
    }

    .wpc-product__body {
        padding: 14px 2px 0;
    }

    .site-main.wpc-single-product-page {
        width: 100%;
        padding: 0;
    }

    .site-main.wpc-catalog-page {
        width: 100%;
        padding: 0;
    }

    .wpc-archive {
        width: min(100% - 32px, 680px);
        padding: 32px 0 72px;
    }

    .wpc-archive__header {
        margin-bottom: 34px;
    }

    .wpc-archive__title {
        font-size: clamp(46px, 14vw, 60px);
    }

    html[lang="kk-KZ"] .wpc-archive__title {
        font-size: clamp(41px, 12.5vw, 54px);
    }

    .wpc-filters {
        grid-template-columns: 1fr;
        gap: 17px;
        padding: 0;
    }

    .wpc-filter-field--search,
    .wpc-filter-field,
    .wpc-filters__actions {
        grid-column: 1;
    }

    .wpc-filters__actions {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .wpc-filters-drawer__toggle {
        gap: 5px 14px;
        font-size: 11px;
        letter-spacing: 0.09em;
    }

    .wpc-filters-drawer__panel {
        padding: 24px 0 26px;
    }

    .wpc-filter-field input,
    .wpc-filter-field select {
        height: 50px;
    }

    .wpc-product__title {
        font-size: 29px;
    }

    .wpc-pagination > .page-numbers {
        justify-content: center;
    }

    .wpc-single-product {
        grid-template-columns: 1fr;
        width: min(100% - 32px, 680px);
        row-gap: 34px;
        padding: 24px 0 68px;
    }

    .wpc-single-product__breadcrumb,
    .wpc-single-product__gallery,
    .wpc-single-product__summary,
    .wpc-single-product__description {
        grid-column: 1;
    }

    .wpc-single-product__summary {
        position: static;
        padding: 28px 0 0;
    }

    .wpc-single-product__title {
        font-size: clamp(44px, 13.5vw, 60px);
        line-height: 0.98;
    }

    html[lang="kk-KZ"] .wpc-single-product__title {
        font-size: clamp(39px, 12vw, 54px);
    }

    .wpc-single-product__lead {
        margin-top: 20px;
        font-size: 16px;
    }

    .wpc-single-product__price {
        margin-top: 8px;
        font-size: 34px;
    }

    .wpc-single-product__price-label {
        margin-top: 26px;
    }

    .wpc-single-product__meta {
        margin-top: 30px;
    }

    .wpc-single-product__actions {
        margin-top: 30px;
    }

    .wpc-single-product__actions .wpc-button {
        min-height: 60px;
    }

    .wpc-single-product__description {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 38px;
    }

    .wpc-single-product__description-heading,
    .wpc-single-product__description-body {
        grid-column: 1;
    }

    .wpc-single-product__description h2 {
        font-size: 44px;
    }

    html[lang="kk-KZ"] .wpc-single-product__description h2 {
        font-size: 39px;
    }

    .wpc-single-product__description-body {
        font-size: 16px;
        line-height: 1.75;
    }

    .wpc-single-gallery {
        gap: 12px;
    }

    .wpc-single-gallery__thumbs {
        display: flex;
        gap: 9px;
        padding: 2px 0 4px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        scrollbar-width: thin;
    }

    .wpc-single-gallery__thumb {
        width: 72px;
        min-width: 72px;
        scroll-snap-align: start;
    }

    .wpc-single-gallery--empty {
        min-height: 360px;
    }
}
