/* Product list and product detail */
.category-products {
    position: relative;
    padding: 70px 0 90px;
    background: #f6f5f3;
}

/* Cart and checkout */
.cart-page__header {
    padding-bottom: 76px;
}

.cart-page__hero {
    max-width: 820px;
    margin-top: 54px;
    color: #fff;
}

.cart-page__eyebrow,
.cart-page__label {
    display: inline-block;
    color: #f3bf82;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.cart-page__title {
    margin: 14px 0 0;
    color: #fff;
    font-size: clamp(42px, 6vw, 74px);
    font-weight: 600;
    line-height: 1.04;
}

.cart-page__lead {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 20px;
    line-height: 1.5;
}

.cart-page {
    min-height: 520px;
    padding: 82px 0 100px;
    background: #f6f5f3;
}

.cart-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 34px;
    align-items: start;
}

.cart-page__content,
.checkout,
.cart-empty {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 18px 46px rgba(40, 38, 36, .08);
}

.cart-page__content {
    padding: 34px;
}

.cart-page__section-header {
    display: flex;
    margin-bottom: 28px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e1df;
}

.cart-page__section-title {
    margin: 8px 0 0;
    color: #282624;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 600;
    line-height: 1.12;
}

.cart-page__clear,
.cart-item__remove {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0;
    color: rgba(40, 38, 36, .56);
    font: inherit;
    font-size: 14px;
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: color .2s ease;
}

.cart-action-icon {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 17px;
}

.cart-page__clear:hover,
.cart-item__remove:hover {
    color: #282624;
}

.cart-page__items {
    display: grid;
    gap: 18px;
}

.cart-item {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 26px;
    padding: 20px;
    background: #f6f5f3;
    border-radius: 8px;
}

.cart-item__image {
    display: flex;
    min-height: 150px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
}

.cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(230px, auto);
    gap: 24px;
    align-items: center;
}

.cart-item__type {
    display: block;
    margin-bottom: 8px;
    color: #908171;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.cart-item__title {
    margin: 0;
    color: #282624;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.cart-item__title a {
    color: inherit;
}

.cart-item__meta {
    display: flex;
    margin-top: 12px;
    flex-wrap: wrap;
    gap: 8px 18px;
    color: rgba(40, 38, 36, .64);
    font-size: 14px;
    line-height: 1.45;
}

.cart-item__controls {
    display: grid;
    justify-items: end;
    gap: 16px;
}

.cart-item__quantity {
    display: grid;
    gap: 8px;
    justify-items: end;
    transition: opacity .2s ease;
}

.cart-item__quantity.is-updating {
    opacity: .62;
    pointer-events: none;
}

.cart-item__quantity label {
    color: rgba(40, 38, 36, .62);
    font-size: 13px;
}

.cart-item__quantity-field {
    display: flex;
    overflow: hidden;
    border: 1px solid #e2e1df;
    border-radius: 8px;
}

.cart-item__quantity-field input {
    width: 58px;
    padding: 12px 10px;
    color: #282624;
    font: inherit;
    text-align: center;
    background: #fff;
    border: 0;
    appearance: textfield;
    -moz-appearance: textfield;
    -webkit-appearance: none;
}

.cart-item__quantity-field input::-webkit-outer-spin-button,
.cart-item__quantity-field input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.cart-item__quantity-btn {
    display: flex;
    width: 42px;
    align-items: center;
    justify-content: center;
    color: #282624;
    font: inherit;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    background: #fff;
    border: 0;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.cart-item__quantity-btn:first-child {
    border-right: 1px solid #e2e1df;
}

.cart-item__quantity-btn:last-child {
    border-left: 1px solid #e2e1df;
}

.cart-item__quantity-btn:hover {
    color: #fff;
    background: #282624;
}

.cart-item__price {
    display: grid;
    gap: 6px;
    justify-items: end;
    color: #282624;
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
}

.cart-item__price strong {
    color: rgba(40, 38, 36, .6);
    font-size: 14px;
    font-weight: 500;
}

.cart-summary {
    position: sticky;
    top: 120px;
    padding: 34px;
    color: #fff;
    background: #282624;
    border-radius: 30px;
    box-shadow: 0 26px 70px rgba(40, 38, 36, .18);
}

.cart-summary__label {
    color: #f3bf82;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.cart-summary__price {
    margin-top: 14px;
    color: #fff;
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 700;
    line-height: 1;
}

.cart-summary__rows {
    display: grid;
    gap: 14px;
    margin-top: 28px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.cart-summary__rows div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #e2e1df;
    font-size: 15px;
}

.cart-summary__rows strong {
    color: #fff;
}

.cart-summary__button {
    width: 100%;
    margin-top: 24px;
    color: #282624;
    background: #f3bf82;
}

.cart-summary__button:hover {
    color: #282624;
    background: #e2e1df;
}

.cart-summary__note {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.5;
}

.checkout {
    display: grid;
    grid-template-columns: .7fr 1fr;
    gap: 42px;
    margin-top: 34px;
    padding: 40px;
}

.checkout__intro p,
.cart-empty p {
    margin: 18px 0 0;
    color: rgba(40, 38, 36, .72);
    font-size: 17px;
    line-height: 1.55;
}

.checkout-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.checkout-form__field {
    display: grid;
    gap: 8px;
}

.checkout-form__field--wide {
    grid-column: 1 / -1;
}

.checkout-form__field label {
    color: #282624;
    font-size: 14px;
    font-weight: 600;
}

.checkout-form__field input,
.checkout-form__field textarea {
    width: 100%;
    padding: 15px 16px;
    color: #282624;
    font: inherit;
    background: #f6f5f3;
    border: 1px solid transparent;
    border-radius: 8px;
    outline: 0;
    transition: border-color .2s ease, background .2s ease;
}

.checkout-form__field textarea {
    resize: vertical;
}

.checkout-form__field input:focus,
.checkout-form__field textarea:focus {
    background: #fff;
    border-color: #908171;
}

.checkout-form__agree {
    display: flex;
    margin-top: 20px;
    align-items: flex-start;
    gap: 10px;
    color: rgba(40, 38, 36, .72);
    font-size: 14px;
    line-height: 1.45;
}

.checkout-form__agree input {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: #908171;
    flex: 0 0 18px;
}

.checkout-form__agree a {
    color: #908171;
}

.checkout-form__submit {
    width: 100%;
    margin-top: 24px;
}

.cart-empty {
    display: grid;
    max-width: 1180px;
    min-height: 430px;
    margin: 0 auto;
    grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr);
    overflow: hidden;
    text-align: left;
}

.cart-empty__content {
    padding: 58px;
    align-self: center;
}

.cart-empty__content .cart-page__section-title {
    max-width: 620px;
}

.cart-empty__content p {
    max-width: 620px;
}

.cart-empty__actions {
    display: flex;
    margin-top: 28px;
    flex-wrap: wrap;
    gap: 14px;
}

.cart-empty__consult {
    color: #282624;
    border: 1px solid #d4c9bd;
}

.cart-empty__consult:hover {
    color: #282624;
    background: #f6f5f3;
}

.cart-empty__panel {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 42px;
    color: #fff;
    background: #282624;
}

.cart-empty__panel::before {
    position: absolute;
    inset: 28px;
    content: "";
    border: 1px solid rgba(243, 191, 130, .35);
    border-radius: 8px;
}

.cart-empty__mark {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, .1);
    font-size: clamp(54px, 7vw, 83px);
    font-weight: 800;
    line-height: .82;
    margin-bottom: 15px;
    /*word-break: break-word;*/
}

.cart-empty__steps {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
}

.cart-empty__steps span {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 0 18px;
    color: #e2e1df;
    font-size: 14px;
    font-weight: 600;
    background: rgba(255, 255, 255, .08);
    border-radius: 8px;
}

.order-success__header {
    padding-bottom: 54px;
}

.order-success {
    min-height: 620px;
    padding: 86px 0 100px;
    background: #f6f5f3;
}

/*.order-success__layout {*/
/*    display: grid;*/
/*    grid-template-columns: minmax(0, 1fr) 430px;*/
/*    gap: 34px;*/
/*    align-items: stretch;*/
/*}*/

.order-success__content {
    position: relative;
    overflow: hidden;
    padding: 58px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(40, 38, 36, .08);
}

.order-success__content::after {
    position: absolute;
    right: -34px;
    bottom: -20px;
    content: "DAMASKA";
    color: rgba(40, 38, 36, .04);
    font-size: clamp(72px, 12vw, 170px);
    font-weight: 800;
    line-height: .8;
    pointer-events: none;
}

.order-success__icon {
    display: flex;
    width: 76px;
    height: 76px;
    margin-bottom: 28px;
    align-items: center;
    justify-content: center;
    color: #282624;
    background: #f3bf82;
    border-radius: 50%;
}

.order-success__icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.order-success__title {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 12px 0 0;
    color: #282624;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 600;
    line-height: 1.04;
}

.order-success__lead {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(40, 38, 36, .72);
    font-size: 20px;
    line-height: 1.5;
}

.order-success__actions {
    position: relative;
    z-index: 1;
    display: flex;
    margin-top: 34px;
    flex-wrap: wrap;
    gap: 14px;
}

.order-success__secondary {
    color: #282624;
    border: 1px solid #d4c9bd;
}

.order-success__secondary:hover {
    color: #282624;
    background: #f6f5f3;
}

.order-success__panel {
    padding: 38px;
    color: #fff;
    background: #282624;
    border-radius: 8px;
    box-shadow: 0 26px 70px rgba(40, 38, 36, .18);
}

.order-success__panel-label {
    display: block;
    color: #f3bf82;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.order-success__steps {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.order-success__steps div {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.order-success__steps span {
    display: block;
    margin-bottom: 12px;
    color: rgba(243, 191, 130, .72);
    font-size: 13px;
    font-weight: 700;
}

.order-success__steps strong {
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.order-success__steps p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 1180px) {
    .cart-page__layout,
    .cart-empty,
    .order-success__layout,
    .checkout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }
}

@media (max-width: 760px) {
    .cart-page__header {
        padding-bottom: 44px;
    }

    .cart-page__hero {
        margin-top: 34px;
    }

    .cart-page__lead {
        font-size: 17px;
    }

    .cart-page {
        padding: 44px 0 62px;
    }

    .order-success {
        min-height: auto;
        padding: 44px 0 62px;
    }

    .cart-page__content,
    .checkout,
    .cart-empty,
    .cart-summary {
        padding: 24px;
    }

    .order-success__content,
    .order-success__panel {
        padding: 28px;
    }

    .order-success__lead {
        font-size: 17px;
    }

    .order-success__actions {
        flex-direction: column;
    }

    .cart-empty {
        padding: 0;
    }

    .cart-empty__content,
    .cart-empty__panel {
        padding: 28px;
    }

    .cart-empty__panel {
        min-height: 260px;
    }

    .cart-empty__actions {
        flex-direction: column;
    }

    .cart-page__section-header {
        flex-direction: column;
    }

    .cart-item,
    .cart-item__body,
    .checkout-form__grid {
        grid-template-columns: 1fr;
    }

    .cart-item {
        padding: 14px;
    }

    .cart-item__image {
        min-height: 220px;
    }

    .cart-item__controls,
    .cart-item__quantity,
    .cart-item__price {
        justify-items: stretch;
    }

    .cart-item__quantity-field input {
        flex: 1;
    }

    .cart-item__price {
        white-space: normal;
    }
}

.category-products__header {
    max-width: 860px;
    margin: 0 auto 42px;
    text-align: center;
}

.category-products__title,
.product-specs__title {
    margin: 0;
    color: #282624;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 600;
    line-height: 1.12;
}

.category-products__subtitle {
    margin: 14px 0 0;
    color: rgba(40, 38, 36, .72);
    font-size: 20px;
    line-height: 1.45;
}

.category-products__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.product-card {
    position: relative;
    display: flex;
    min-height: 100%;
    overflow: hidden;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 18px 46px rgba(40, 38, 36, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.product-card a {
    text-decoration: none;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 58px rgba(40, 38, 36, .14);
}

.product-card__label {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;
    padding: 8px 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    background: #282624;
    border-radius: 999px;
}

.product-card__image {
    display: flex;
    height: 270px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f6f5f3 0%, #fff 100%);
    color: inherit;
    text-decoration: none;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .35s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.04);
}

.product-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.product-card__title {
    margin: 0;
}

.product-card__title a {
    color: #282624;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.product-card__title a:hover {
    color: #908171;
}

.product-card__text {
    margin: 12px 0 0;
    color: rgba(40, 38, 36, .72);
    font-size: 15px;
    line-height: 1.5;
}

.product-card__meta {
    display: flex;
    margin-top: auto;
    padding-top: 22px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: rgba(40, 38, 36, .64);
    font-size: 14px;
}

.product-card__meta strong {
    color: #282624;
    font-size: 20px;
    white-space: nowrap;
}

.product-card__cart-form {
    margin-top: 20px;
}

.product-card__quantity {
    margin-top: 20px;
}

.product-card__cart-btn {
    display: inline-flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    background: #282624;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
}

.product-card__cart-btn:hover {
    background: #908171;
    transform: translateY(-2px);
}

.product-card__cart-form.is-added .product-card__cart-btn {
    color: #282624;
    background: #f3bf82;
}

.category-products__empty {
    padding: 34px;
    text-align: center;
    background: #fff;
    border-radius: 24px;
}

.product-page__header {
    position: relative;
    padding: 148px 0 54px;
    background: #908171;
    border-radius: 0 0 30px 30px;
}

.product-page {
    padding: 86px 0 110px;
    background: #fff;
}

.product-page__container,
.product-page__header .product-page__container,
.product-specs .product-page__container {
    width: min(1400px, calc(100% - 40px));
    margin: 0 auto;
}

.product-breadcrumbs {
    margin: 0;
}

.product-page__header .breadcrumbs__link {
    color: #fff;
}

.product-page__header .breadcrumbs__current {
    color: #e2e1df;
}

.product-page__header .breadcrumbs__separator {
    background: #e2e1df;
}

.product-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(380px, .75fr);
    grid-template-areas: "media info";
    gap: 0;
    align-items: stretch;
}

.product-hero__media {
    position: relative;
    grid-area: media;
    min-width: 0;
    padding: 42px 84px 42px 42px;
    background: #f6f5f3;
    border-radius: 30px;
}

.product-hero__media-label {
    position: absolute;
    top: 28px;
    left: 32px;
    color: #908171;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-hero__main-image {
    display: flex;
    min-height: 560px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
    border-radius: 0;
}

.product-hero__main-image img {
    width: 100%;
    height: 100%;
    max-height: 620px;
    object-fit: contain;
}

.product-hero__gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.product-hero__thumb {
    display: block;
    overflow: hidden;
    height: 90px;
    background: #f6f5f3;
    border: 1px solid #e2e1df;
    border-radius: 8px;
}

.product-hero__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-hero__info {
    position: relative;
    z-index: 2;
    grid-area: info;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 54px 0 54px -42px;
    padding: 58px 54px;
    color: #fff;
    background: #282624;
    border-radius: 30px;
    box-shadow: 0 26px 70px rgba(40, 38, 36, .2);
}

.product-hero__index {
    position: absolute;
    top: 24px;
    right: 28px;
    color: rgba(255, 255, 255, .42);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.product-hero__eyebrow {
    margin-bottom: 22px;
    color: #f3bf82;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
}

.product-hero__title {
    margin: 0;
    color: #fff;
    font-size: clamp(40px, 4vw, 58px);
    font-weight: 600;
    line-height: 1.1;
}

.product-hero__summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
    margin-top: 38px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.product-hero__price {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1;
}

.product-hero__price-label {
    color: #e2e1df;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
}

.product-hero__quick-spec {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 22px;
    border-left: 1px solid rgba(255, 255, 255, .16);
}

.product-hero__quick-spec span {
    color: #e2e1df;
    font-size: 15px;
}

.product-hero__quick-spec strong {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.product-hero__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 34px;
}

.product-hero__cart-form {
    display: flex;
}

.product-hero__cart-form,
.product-hero__cart-form .btn-dark {
    min-width: 249px;
}

.product-hero__quantity {
    width: min(100%, 249px);
    justify-items: stretch;
}

.product-hero__quantity .cart-item__quantity-field {
    width: 100%;
}

.product-hero__quantity .cart-item__quantity-field input {
    width: auto;
    min-width: 0;
    height: 50px;
    flex: 1 1 0;
}

.product-hero__quantity .cart-item__quantity-btn {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
}

.product-hero__quantity label {
    color: rgba(255, 255, 255, .72);
}

.product-hero__actions .btn-dark,
.product-hero__secondary {
    white-space: nowrap;
}

.product-hero__actions .btn-dark {
    color: #282624;
    background: #f3bf82;
}

.product-hero__actions .btn-dark:hover {
    background: #e2e1df;
}

.product-hero__secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .34);
}

.product-specs {
    padding: 80px 0 90px;
    background: #f6f5f3;
}

.product-specs__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    gap: 64px;
}

.product-specs__grid--compact {
    display: inline-grid;
    width: fit-content;
    max-width: 100%;
    grid-template-columns: auto;
}

.product-specs__header {
    display: flex;
    margin-bottom: 44px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e2e1df;
}

.product-specs__subtitle {
    margin: 0 0 20px;
    color: #282624;
    font-size: 26px;
    font-weight: 600;
}

.product-specs__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #908171;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-specs__header-mark {
    color: #e2e1df;
    font-size: clamp(42px, 7vw, 88px);
    font-weight: 600;
    line-height: .8;
    text-transform: uppercase;
}

.product-specs__text,
.product-specs__description {
    color: rgba(40, 38, 36, .74);
    font-size: 17px;
    line-height: 1.58;
}

.product-specs__list {
    display: grid;
    width: fit-content;
    max-width: 100%;
    gap: 14px;
    margin: 0;
    counter-reset: product-spec;
}

.product-specs__list div {
    display: grid;
    grid-template-columns: 48px minmax(120px, .45fr) minmax(0, 1fr);
    align-items: baseline;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid #e2e1df;
    counter-increment: product-spec;
}

.product-specs__list div:first-child {
    border-top: 1px solid #e2e1df;
}

.product-specs__list div > span {
    color: #908171;
    font-size: 12px;
    font-weight: 600;
}

.product-specs__list div > span::before {
    content: counter(product-spec, decimal-leading-zero);
}

.product-specs__list dt {
    color: #282624;
    font-size: 17px;
    font-weight: 600;
}

.product-specs__list dd {
    margin: 0;
    color: #282624;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
}

.product-specs__description-block {
    padding: 34px;
    background: #fff;
    border-left: 4px solid #908171;
}

@media (max-width: 1180px) {
    .category-products__grid,
    .product-specs__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-specs__grid--compact {
        display: grid;
        width: 100%;
        grid-template-columns: minmax(0, 1fr);
    }

    .product-hero {
        grid-template-columns: 1fr;
        grid-template-areas:
            "media"
            "info";
    }

    .product-hero__media {
        padding: 38px;
        border-radius: 30px;
    }

    .product-hero__info {
        margin: -34px 34px 0;
    }
}

@media (max-width: 760px) {
    .category-products {
        padding: 48px 0 62px;
    }

    .category-products__grid,
    .product-specs__grid {
        grid-template-columns: 1fr;
    }

    .category-products__subtitle {
        font-size: 17px;
    }

    .product-card__image {
        height: 230px;
    }

    .product-card__meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-page__container,
    .product-page__header .product-page__container,
    .product-specs .product-page__container {
        width: min(100% - 24px, 1400px);
    }

    .product-page__header {
        padding: 112px 0 34px;
        border-radius: 0 0 20px 20px;
    }

    .product-page {
        padding: 44px 0 54px;
    }

    .product-hero {
        gap: 38px;
    }

    .product-hero__media {
        padding: 28px 16px 58px;
    }

    .product-hero__media-label,
    .product-hero__index {
        display: none;
    }

    .product-hero__info {
        margin: -70px 12px 0;
        padding: 38px 24px;
    }

    .product-hero__title {
        font-size: 42px;
    }

    .product-hero__main-image {
        min-height: 320px;
        border-radius: 12px;
    }

    .product-hero__gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-hero__summary {
        grid-template-columns: 1fr;
    }

    .product-hero__quick-spec {
        padding: 20px 0 0;
        border-top: 1px solid rgba(255, 255, 255, .16);
        border-left: 0;
    }

    .product-hero__actions {
        flex-direction: column;
    }

    .product-specs__header-mark {
        display: none;
    }

    .product-specs__list div {
        grid-template-columns: 34px 100px minmax(0, 1fr);
        gap: 12px;
    }
}
