:root{
    --black: #050505;
    --ink: #101010;
    --graphite: #191919;
    --white: #ffffff;
    --offwhite: #f7f7f4;
    --line: #d9d9d9;
    --line-dark: #282828;
    --muted: #737373;
    --blue: #1557d6;
    --green: #35a91f;
    --pink: #ff4f9a;
    --purple: #6b21a8;
    --red: #e01818;
}




.custom-product__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}
@media (max-width: 600px) {
    .custom-product__wrapper {
        gap: 0;
    }
}
.custom-product__gallery {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}
.custom-product__gallery .main-slider{
    max-width: 500px;
}

.custom-product__content {
    width: 100%;
}

.product-title {
    font-size: 28px;
    margin-bottom: 10px;
}


.product-price {
    font-size: 20px;
    margin-bottom: 5px;
}



.product-short-description {
    margin-bottom: 20px;
}

.product-gallery {
    width: 100%;
}

#description,
#reviews {
    scroll-margin-top: 160px;
}

.main-slider {
    margin-bottom: 10px;
}

.main-slider img {
    /*height: 40vh;*/
    margin: 0 auto;
    width: auto;
    /*min-height: 400px;*/
}
.product-hero-block{
    min-height: 70vh;
    /*max-height: 600px;*/
}
.swiper-slide{
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    width: 100% !important;
}
@media (max-width: 1050px) {
    .product-hero-block{
        min-height: unset;
        max-height: unset;
    }

    .product-hero-block, .main-slider img {
        height: auto;
        min-height: unset;
    }
}


.thumbs-slider .swiper-slide {
    cursor: pointer;
    opacity: 0.6;
}

.thumbs-slider .swiper-slide-thumb-active {
    opacity: 1;
}

.thumbs-slider img {
    width: 100%;
}

.acc-content {
    position: absolute;
    bottom: 100%; /* 👈 ключ */
    left: 0;
    width: 100%;
    font-size: 12px;
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;

    opacity: 0;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    pointer-events: none;

    -webkit-transition: 0.25s ease;

    -o-transition: 0.25s ease;

    transition: 0.25s ease;
    z-index: 10;
}

/* активное состояние */
.acc-item.active .acc-content {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    pointer-events: auto;
}

.acc-title {
    cursor: pointer;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
}
.acc-title .acc-icon{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.acc-item.active .acc-title {
    font-weight: bold;
}


/* ---- Минималистичное поле выбора количества ---- */
.qty-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.qty-wrapper button {
    padding: 4px 10px;
    background: #f0f0f0;
    border: 1px solid #ccc;
    cursor: pointer;
    font-weight: 600;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    border-radius: 4px;
}

.qty-wrapper button:hover {
    background: #e0e0e0;
}

.qty-wrapper input.qty {
    width: 50px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 4px 0;
    -moz-appearance: textfield;
}
.qty-wrapper input.qty::-webkit-outer-spin-button,
.qty-wrapper input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* new quantity button */
.quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #ddd;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.quantity input {
    width: 40px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 11px;
}
@media (max-width: 768px) {
    .quantity input {
        font-size: 16px;
    }
}


.qty-btn {
    background: none;
    border: none;
    width: 30px;
    height: 20px;
    cursor: pointer;
    font-size: 16px;
}
@media (max-width: 768px) {
    .qty-btn {
        width: 40px;
        height: 30px;
    }
}


.qty-btn:hover {
    background: #f5f5f5;
}

.quantity input.qty::-webkit-outer-spin-button,
.quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity input.qty {
    -moz-appearance: textfield;
}


/* ---- Кнопка Add to Cart ---- */
.single_add_to_cart_button {
    background-color: #000;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    padding: 11px 24px 8px!important;
    border-radius: 8px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    margin-top: 15px;
    width: 100%;
    cursor: pointer;
}
@media (max-width: 768px) {
    .single_add_to_cart_button {
        font-size: 14px !important;
        padding: 15px 24px 13px !important;
    }
}


.single_add_to_cart_button:hover {
    background-color: #222;
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
}
.single_add_to_cart_button.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ---- Кнопки размера ---- */
.size-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.size-options button {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    font-weight: 500;
}

.size-options button.active {
    border-color: #000;
    background: #000;
    color: #fff;
}

.product-gallery .swiper-button-prev,
.product-gallery .swiper-button-next {
    color: #000;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    top: 50%;
    font-weight: 400;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
    font-size: 25px!important;
    margin-left: 5px;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
    font-size: 25px!important;
    margin-right: 5px;
}

.product-footer {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

/* LEFT */
.product-footer__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.product-title {
    font-size: 20px;
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .product-title {
        text-transform: uppercase;
        text-align: center;
        font-size: clamp(44px, 5.5vw, 82px);
    }
}
@media (max-width: 560px) {
    .product-title {
        font-size: clamp(40px, 13vw, 60px);
    }
}

.product-breadcrumbs {
    font-size: 12px;
    color: #888;
}

/* CENTER */
.product-section{
    margin-bottom: 30px;
    scroll-margin-top: 120px;
}
.product-description{
    width: 100%;
}
.product-footer__center {
    text-align: center;
}
.product-footer__center .woo-variation-items-wrapper li .variable-item-span{
    font-size: 12px!important;
}

@media (max-width: 768px) {
    .product-footer__center .woo-variation-items-wrapper li .variable-item-span{
        font-size: 17px!important;
    }
}



.product-footer__center .woocommerce-variation-add-to-cart .quantity{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.product-footer__center .single_add_to_cart_button{
    font-family: 'Basic', sans-serif;
    background-color: #000!important;
    font-size: 12px!important;
}

.product-footer__center .woocommerce-variation-add-to-cart .single_add_to_cart_button{
    max-width: 200px;
}
.product-footer__center .single_add_to_cart_button.disabled::after {
    content: '↑';
    position: absolute;
    margin-top: -2px;
}
.product-footer__center .single_add_to_cart_button::after {
    display: inline-block;
    margin-left: 6px;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
}
.product-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 15px;
    align-items: center;
}
.product-price del{
    font-size: 11px;
    order: 2;
}
.product-price ins{
    text-decoration: none;
}

@media (max-width: 768px) {
    .product-price del, .product-price ins{
        padding: 5px 5px 2px 5px;
    }
    .product-price ins{
        text-decoration: none;
        font-size: 18px;
    }
    .product-price del{
        font-size: 15px;
    }
}

.variable-items-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.variable-item {
    border: 1px solid #ddd;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 13px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
@media (max-width: 768px) {
    .variable-item {
        width: 50px!important;
        height: 40px!important;
    }
    .variable-item.selected{
        background-color: #000!important;
        color: #fff!important;
    }
}



.variable-item:hover {
    border-color: #000;
}

.variable-item.selected {
    background: #000;
    color: #fff;
}
.variations{
    width: 100%;
    margin-bottom: 8px;
}
.variations tr{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.woo-variation-swatches.wvs-show-label .variations .woo-variation-items-wrapper{
    width: 100% !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.variations .woo-variation-items-wrapper ul{
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
}
.variations_form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
}

.variable-items-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    overflow-x: auto;
}
.single_variation_wrap .variations_button{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.variable-item {
    border: 1px solid #ddd;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 13px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.variable-item:hover {
    border-color: #000;
}

.variable-item.selected {
    background: #000;
    color: #fff;
}

.product-footer__right {
    position: relative;
}
@media (max-width: 768px) {

    .product-footer {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {

    .product-footer__center {
        -ms-flex-order: 2;
        -webkit-box-ordinal-group: 3;
        order: 2;
    }

    .product-footer__right {
        -ms-flex-order: 3;
        -webkit-box-ordinal-group: 4;
        order: 3;
    }

}


.product-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.scroll-link {
    background: none;
    text-align: left;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.7);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #000;
    padding: 10px;
}

.comment-form-comment, .comment-form-author, .comment-form-email{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 250px;
}


.product-extra-accordion {
    margin-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .product-footer__left .product-extra-accordion{
        display: none;
    }
}

.extra-acc-item {
    border-bottom: 1px solid rgba(0,0,0,0.4);
}

.extra-acc-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.extra-acc-icon {
    position: relative;
    width: 10px;
    height: 10px;
}

.extra-acc-icon::before,
.extra-acc-icon::after {
    content: '';
    position: absolute;
    background: #000;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.extra-acc-icon::before {
    width: 10px;
    height: 1px;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.extra-acc-icon::after {
    width: 1px;
    height: 10px;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

/* active */
.extra-acc-item.active .extra-acc-icon::after {
    -webkit-transform: translateX(-50%) rotate(90deg);
    -ms-transform: translateX(-50%) rotate(90deg);
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.extra-acc-content {
    display: grid;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease;
    -o-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease;
}

.extra-acc-content p {
    margin: 0 0 10px;
    font-size: 11px;
    line-height: 1.5;
}


/* product highlights */
.product-highlights {
    max-width: 300px;
}
@media (max-width: 768px) {
    .product-highlights {
        max-width: unset;
    }
}

/*.highlights-title {*/
/*    font-size: 12px;*/
/*    margin-bottom: 10px;*/
/*}*/

.highlights-content {
    font-size: 11.5px;
    line-height: 1.5;
}


.highlights-content p {
    margin: 0 0 10px;
}

/* если список */
.highlights-content ul {
    padding-left: 15px;
    margin: 0;
}

.highlights-content li {
    margin-bottom: 5px;
}

.product-footer__right .product-extra-accordion{
    display: none;
}

@media (max-width: 768px) {
    .product-footer__right .product-extra-accordion{
        display: block;
    }
}




.product-sections-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 100px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-top: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

}
@media (max-width: 600px) {
    .product-sections-wrap {
        margin-top: 20px;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.product-sections h2 {
    font-size: 17px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* ACF gallery */
.acf-gallery {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
}
.acf-gallery-item{
    pointer-events: none;
}
.acf-gallery-item img {
    width: 100%;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
    height: 500px;
}

/* 📱 mobile */
@media (max-width: 768px) {
    .product-sections {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.acf-gallery-item {
    overflow: hidden;
}

.acf-gallery-item img {
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    -o-transition: transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

/* comments */
.commentlist{
    padding: 0;
}
.woocommerce-review__dash{
    display: none;
}
.comment-text .cr-comment-head-text{
    font-size: 13px;
}
.woocommerce p.stars a::before{
    color: #000;
}


.product-reviews {
    margin-top: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.review-card {
    border: 1px solid #000;
    padding: 18px;
    min-height: 180px;
}

.review-stars {
    margin-bottom: 10px;
}

.review-author {
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-text {
    line-height: 1.5;
}

@media (max-width: 768px) {

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

}
.reviews-load-more{
    background: #000;
    color: #fff;
    margin: 25px auto 0;
    display: flex;
    border: 1px solid #000;
    padding: 10px;
    cursor: pointer;
}
.review-images {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.review-image {
    width: 72px;
    height: 72px;
    border: 1px solid #000;
    overflow: hidden;
    display: block;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



/* Trust strip */
.trust-strip {
    width: 100%;
    background: #050505;
    color: #fff;
    border-bottom: 1px solid #282828;
}
.trust-strip-top{
    border-top: 1px solid #282828;
    margin-top: 57px;
}
@media (max-width: 1050px) {
    .trust-strip-top{
        margin-top: 49px;
    }
}
.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.trust-item {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    border-right: 1px solid #282828;
}
.trust-item:last-child { border-right: 0; }
@media (max-width: 980px) {
    .trust-strip__grid {
        grid-template-columns: repeat(4, minmax(170px, 1fr));
        overflow-x: auto;
    }
    .trust-item {
        min-width: 175px;
        padding: 14px 18px;
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .trust-item {
        padding: 10px 18px;
        gap: 10px;
    }
}
.trust-item img{
    width: 32px;
    height: 32px;
}
.trust-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
}
.trust-icon svg { width: 32px; height: 32px; stroke-width: 1.7; }
.trust-item strong {
    display: block;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.trust-item span {
    display: block;
    margin-top: 2px;
    color: rgba(255,255,255,.7);
    font-size: 12px;
}

@media (max-width: 768px) {
    .trust-item strong {
        font-size: 11px;
    }
    .trust-item span {
        font-size: 10px;
    }

}





.review-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 980px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .review-grid {
        grid-template-columns: 1fr;
    }
}
.review{
    border: 1px solid var(--line);
    padding: 24px;
    background: var(--white);
    display: flex;
    flex-direction: column;
}
.stars{
    letter-spacing: 2px;
    font-size: 25px;
    text-align: center;
}
.review .stars{
    margin-bottom: 10px;
}
.rating{
    display: flex;
    align-items: center;
    gap: 5px;
}
@media (max-width: 768px) {
    .rating{
        justify-content: center;
    }
}

.rating .stars{
    font-size: 22px;
}
.stars .star{
    color: rgba(0, 0, 0, .18);
}
.stars .star.filled{
    color: #000;
}
.reviews{
    font-size: 15px;
}
.review p{
    margin: 0 0 18px;
    color: #222;
    font-size: 14px;
    line-height: 1.55;
}
.review strong{
    display: block;
    font-size: 13px;
}
.review span{
    color: var(--muted);
    font-size: 12px;
}
.review span.star{
    font-size: 20px;
}
.customers-say h2{
    font-size: clamp(23px, 4vw, 30px) !important;
    text-align: center!important;
    line-height: 1.3!important;
}



.mobile-sticky-cart {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform .3s ease;
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 -8px 30px rgba(0,0,0,.08);
}

.mobile-sticky-cart.active {
    transform: translateY(0);
}

.mobile-sticky-cart-info h2{
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 2px;
}

.mobile-sticky-cart__inner {
    display: grid;
    grid-template-columns: auto 70px 120px;
    gap: 10px;
    align-items: center;
    padding: 12px;
}
@media (max-width: 400px) {
    .mobile-sticky-cart__inner{
        grid-template-columns: auto 70px 80px;
        gap: 15px;
    }
}




.mobile-sticky-cart__price {
    color: #000;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}
.mobile-sticky-cart__price del{
    display: none;
}
.mobile-sticky-cart__price ins{
    text-decoration: none;
    font-size: 12px;
}
.mobile-size-trigger,
.mobile-add-trigger {
    height: 50px;

    border: 1px solid #fff;
    background: transparent;
    color: #fff;

    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;

    cursor: pointer;
}
@media (max-width: 400px) {
    .mobile-add-trigger {
        font-size: 10px;
    }
}
.mobile-size-trigger{
    font-size: 10px;
    border: 1px solid #000;
    color: #000;
}

.mobile-add-trigger {
    background: #000;
    color: #fff;
}

.mobile-add-trigger.disabled {
    opacity: .4;
    pointer-events: none;
}

@media (min-width: 769px) {
    .mobile-sticky-cart {
        display: none;
    }
}




.mobile-size-popup {
    position: fixed;
    inset: 0;

    z-index: 10000;

    opacity: 0;
    pointer-events: none;

    transition: opacity .25s ease;
}

.mobile-size-popup.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-size-popup__overlay {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.45);

    backdrop-filter: blur(3px);
}

.mobile-size-popup__sheet {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    padding: 10px 20px;
    transform: translateY(100%);
    transition: transform .3s ease;
}

.mobile-size-popup.active .mobile-size-popup__sheet {
    transform: translateY(0);
}

.mobile-size-popup__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.mobile-size-popup__title {
    font-size: 18px;
    font-weight: 600;
}

.mobile-size-popup__close {
    border: none;
    background: none;

    font-size: 28px;

    cursor: pointer;
}

.mobile-size-popup__sizes {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
}

.mobile-size-option {
    height: 30px;

    border: 1px solid #000;
    background: #fff;

    font-size: 15px;
    font-weight: 500;

    cursor: pointer;

    transition: all .2s ease;
}

.mobile-size-option.active {
    background: #000;
    color: #fff;
}





.thumbs-slider {
    margin-top: 12px;
}


.thumbs-slider .swiper-slide {
    cursor: pointer;

    border: 1px solid transparent;

    transition: border-color .2s ease,
    opacity .2s ease;

    opacity: .55;
    max-width: 100px;
}
@media (max-width: 400px) {
    .thumbs-slider .swiper-slide {
        max-width: 60px;
    }
}

.thumbs-slider .swiper-wrapper{
    display: flex;
    justify-content: center;
}

.thumbs-slider .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #000;
}

.thumbs-slider img {
    width: 100%;
    display: block;
}



.mini-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
}
.mini-trust__item {
    border: 1px solid var(--line);
    padding: 14px 10px;
    text-align: center;
    font-size: 12px;
    font-weight: 850;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 5px;
}
.mini-trust__item img{
    width: 30px;
    height: auto;
}
.save-badge{
    order: 3;
    font-size: 9px;
    font-weight: 950;
    padding: 6px 5px 4px;
    text-transform: uppercase;
    border-radius: 3px;
    background-color: #000;
    color: #fff;
}
@media (max-width: 768px) {
    .save-badge{
        font-size: 12px;
    }
}

.product-color{
    margin-bottom: 10px;
    margin-top: 10px;
}
.product-color span{
    font-size: 14px;
}

.spider-size-table{
    width: 100%;
    border-collapse: collapse;
}
.spider-size-table thead{
    background: #000;
    color: #fff;
}
.spider-size-table thead th{
    padding: 2px;
}
.spider-size-table tbody td{
    text-align: center;
    padding: 5px;
}
.spider-size-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.spider-size-table {
    width: 100%;
    min-width: 350px;
    border-collapse: collapse;
}
.spider-size-table th,
.spider-size-table td {
    white-space: nowrap;
}