/* ==============================================
   New product layout — admin only
   ============================================== */

p.stock.in-stock {
    display: none;
}


.new-product-layout .product__more-info-wrapper {
    grid-template-columns: 100%;
}



/* Reviews slider */
.product-reviews-fullwidth {
    padding: 70px 0 50px;
    overflow: hidden;
}

.product-reviews-fullwidth .products-section__title {
    margin-bottom: 40px;
}

.product-reviews-slider__card {
    background: #fefbea;
    border-radius: 16px;
    padding: 30px 28px;
    margin: 0 12px;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    transition: transform 0.3s ease;
}

.product-reviews-slider__card:hover {
    transform: translateY(-3px);
}

.product-reviews-slider__text {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-reviews-slider__footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.product-reviews-slider__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.product-reviews-slider__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.product-reviews-slider__author {
    font-weight: 700;
    font-size: 15px;
    color: #1a1a2e;
}

.product-reviews-slider__stars {
    display: flex;
    gap: 2px;
    margin-right: auto;
}

.product-reviews-slider__stars .star {
    color: #d1d5db;
    font-size: 15px;
}

.product-reviews-slider__stars .star--filled {
    color: #f59e0b;
}

.product-reviews-slider .slick-dots {
    display: none !important;
}

/* Arrows (shared between reviews & video) */
.product-reviews-fullwidth__arrows,
.video-reviews__arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.video-reviews__arrows {
    margin-top: 30px;
}

.product-review-open {
    border: none;
    background: #8bae00;
    color: #fff;
    font-family: varelaround, rubik, sans-serif;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.product-review-open:hover {
    background: #342448;
    color: #fff;
}

.product-review-open--main {
    display: block;
    min-width: 190px;
    min-height: 48px;
    padding: 12px 28px;
    border-radius: 999px;
    margin: 22px auto 0;
    font-size: 17px;
}

.product-review-open--small {
    min-height: 32px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
    background: #fff;
    color: #675E9B;
    border: 1px solid #d8d2e8;
}

.product-review-open--small:hover {
    background: #675E9B;
    border-color: #675E9B;
}

.product-review-panel {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.product-review-panel.is-open {
    opacity: 1;
    pointer-events: auto;
}

.product-review-panel__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.45);
}

.product-review-panel__dialog {
    position: absolute;
    top: 0;
    left: 0;
    width: min(460px, calc(100vw - 28px));
    height: 100%;
    background: #fff;
    padding: 34px 28px;
    box-shadow: 18px 0 40px rgba(26, 26, 46, 0.18);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
}

.product-review-panel.is-open .product-review-panel__dialog {
    transform: translateX(0);
}

.product-review-panel__close {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #3F3953;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.product-review-panel__close:hover {
    background: #675E9B;
    border-color: #675E9B;
    color: #fff;
}

.product-review-panel__title {
    margin: 0 0 22px;
    padding-left: 48px;
    font-size: 28px;
    line-height: 1.2;
    color: #342448;
}
@media screen and (min-width: 767px) {
    .new-product-layout .product_title {
        font-size: 38px;
        line-height: 40px;
    }
}
.product-review-panel__form div#respond input,
.product-review-panel__form div#respond textarea,
.product-review-panel__form div#respond select {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border: 1px solid #d8d2e8;
    border-radius: 8px;
    background: #fff;
    color: #1a1a2e;
    font-family: rubik, sans-serif;
    font-size: 16px;
    text-align: right;
}

.product-review-panel__form div#respond textarea {
    min-height: 130px;
    max-height: none;
}

.product-review-panel__form div#respond label {
    display: block;
    margin-bottom: 7px;
    color: #3F3953;
    font-size: 14px;
    font-weight: 700;
}

.product-review-panel__form div#respond p {
    margin: 0 0 16px;
}

.product-review-panel__form #respond input#submit {
    width: 100%;
    margin-top: 4px;
    padding: 14px 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-review-panel__form .comment-form-rating label {
    display: block;
}

.product-review-panel__form p.stars {
    margin: 10px 0 18px;
}

.product-review-panel__form p.stars span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.product-review-panel__form p.stars a {
    position: relative;
    width: 24px !important;
    height: 24px;
    overflow: hidden;
    font-size: 0;
    color: transparent !important;
    text-indent: -9999px;
}

.product-review-panel__form p.stars a::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23d6d0e0' d='M12 2.6c.45 0 .86.26 1.05.67l2.15 4.55 4.9.52c.96.1 1.35 1.28.62 1.9l-3.7 3.25 1.1 4.85c.22.95-.8 1.66-1.64 1.16L12 17.4l-4.48 2.5c-.84.5-1.86-.21-1.64-1.16l1.1-4.85-3.7-3.25c-.73-.62-.34-1.8.62-1.9l4.9-.52L10.95 3.27c.19-.41.6-.67 1.05-.67z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.product-review-panel__form p.stars a.is-filled::before,
.product-review-panel__form p.stars a.active::before,
.product-review-panel__form p.stars a:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5c518' d='M12 2.6c.45 0 .86.26 1.05.67l2.15 4.55 4.9.52c.96.1 1.35 1.28.62 1.9l-3.7 3.25 1.1 4.85c.22.95-.8 1.66-1.64 1.16L12 17.4l-4.48 2.5c-.84.5-1.86-.21-1.64-1.16l1.1-4.85-3.7-3.25c-.73-.62-.34-1.8.62-1.9l4.9-.52L10.95 3.27c.19-.41.6-.67 1.05-.67z'/%3E%3C/svg%3E");
}

body.review-panel-open {
    overflow: hidden;
}

.pr-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid #d1d5db;
    background: #fff;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.pr-arrow:hover {
    background: #675E9B;
    border-color: #675E9B;
    color: #fff;
}

.pr-arrow:active {
    transform: scale(0.92);
}

/* Variations cards */
.new-product-layout table.variations tr th.label {
    display: none;
}

.new-product-layout .variation-radios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

.new-product-layout .var-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.new-product-layout .var-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.new-product-layout .var-card label {
    width: 100%;
    margin: 0;
    padding: 20px 7px 16px;
    min-width: 0;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    position: relative;
}

.new-product-layout .var-card label::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #c4c4c4;
    background: #fff;
    box-sizing: border-box;
}

.new-product-layout .var-card input:checked+label {
    border-color: #675E9B;
    background: #faf9ff;
}

.new-product-layout .var-card input:checked+label::before {
    border-color: #675E9B;
    background: #675E9B;
    box-shadow: inset 0 0 0 3px #fff;
}

.new-product-layout .var-card__icon {
    display: block;
    width: 64px;
    height: 64px;
}

.new-product-layout .var-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.new-product-layout .var-card__name {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: #1a1a2e;
    height: 40.5px;
}

.new-product-layout .var-badge {
    display: inline-block;
    background: #eceaf3;
    color: #3F3953;
    font-size: 12px;
    font-weight: 600;
    padding: 5px;
    border-radius: 999px;
    margin-top: auto;
    line-height: 14px;
    height: 38px;
    align-items: center;
    display: flex;
    min-width: 80px;
}

.new-product-layout form.variations_form.cart {
    border-top: none;
    padding-top: 10px;
}

.new-product-layout .quantity-break-radios {
    margin-bottom: 18px;
}

.new-product-layout .quantity-break-card label {
    min-height: 170px;
}

.new-product-layout .quantity-break-card .var-badge {
    margin-top: 0;
}

/* Product gallery — Slick */
.new-product-layout .product__gallery {
    position: sticky;
    top: 100px;
}

.new-product-layout .woocommerce-product-gallery {
    width: 100%;
    position: relative;
}

.new-product-layout .woocommerce-product-gallery__wrapper {
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    background: #f7f5ff;
}

.new-product-layout .woocommerce-product-gallery__image {
    margin: 0;
    text-align: center;
    height: 520px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #f7f5ff;
}

.new-product-layout .woocommerce-product-gallery__image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px;
    object-fit: contain;
}

.new-product-layout .product-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.new-product-layout .product-gallery-arrow--prev {
    right: 12px;
}

.new-product-layout .product-gallery-arrow--next {
    left: 12px;
}

.new-product-layout .product-gallery-thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 14px;
}

.new-product-layout .product-gallery-thumbs__item {
    flex: 1 1 0;
    min-width: 0;
    height: 96px;
    padding: 6px;
    border: 2px solid #ebe8f4;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.new-product-layout .product-gallery-thumbs__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.new-product-layout .product-gallery-thumbs__item.is-active,
.new-product-layout .product-gallery-thumbs__item:hover {
    border-color: #675E9B;
}

@media screen and (max-width: 767px) {
    .new-product-layout .product__gallery {
        position: static;
    }

    .new-product-layout .woocommerce-product-gallery__image {
        height: 360px;
    }

    .new-product-layout .product-gallery-thumbs__item {
        height: 76px;
    }
}

/* Benefits before variations */
.new-product-layout .product-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 8px 0 28px;
    text-align: center;
}

.new-product-layout .product-benefits__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.new-product-layout .product-benefits__icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 50%;
}

.new-product-layout .product-benefits__text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    color: #1a1a2e;
}

@media screen and (max-width: 767px) {
    .new-product-layout .product-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 12px;
        margin-bottom: 24px;
    }

    .new-product-layout .product-benefits__icon {
        width: 56px;
        height: 56px;
    }

    .new-product-layout .product-benefits__text {
        font-size: 13px;
    }
}

/* Rating */
.new-product-layout .woocommerce-product-rating {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin: 8px 0 18px;
    padding: 10px 16px;
    background: #fefbea;
    border-radius: 999px;
    width: fit-content;
    max-width: 100%;
}

.new-product-layout .woocommerce-product-rating .star-rating {
    position: relative;
    margin: 0;
    width: 130px;
    height: 24px;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23d6d0e0' d='M12 2.6c.45 0 .86.26 1.05.67l2.15 4.55 4.9.52c.96.1 1.35 1.28.62 1.9l-3.7 3.25 1.1 4.85c.22.95-.8 1.66-1.64 1.16L12 17.4l-4.48 2.5c-.84.5-1.86-.21-1.64-1.16l1.1-4.85-3.7-3.25c-.73-.62-.34-1.8.62-1.9l4.9-.52L10.95 3.27c.19-.41.6-.67 1.05-.67z'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 26px 24px;
    background-position: left center;
}

.new-product-layout .woocommerce-product-rating .star-rating:before {
    display: none;
}

.new-product-layout .woocommerce-product-rating .star-rating span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    display: block;
    font-size: 0;
    line-height: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5c518' d='M12 2.6c.45 0 .86.26 1.05.67l2.15 4.55 4.9.52c.96.1 1.35 1.28.62 1.9l-3.7 3.25 1.1 4.85c.22.95-.8 1.66-1.64 1.16L12 17.4l-4.48 2.5c-.84.5-1.86-.21-1.64-1.16l1.1-4.85-3.7-3.25c-.73-.62-.34-1.8.62-1.9l4.9-.52L10.95 3.27c.19-.41.6-.67 1.05-.67z'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 26px 24px;
    background-position: left center;
}

.new-product-layout .woocommerce-product-rating .star-rating span:before {
    display: none;
}

.new-product-layout .woocommerce-product-rating a.woocommerce-review-link {
    font-size: 13px;
    line-height: 1.3;
    color: #675E9B;
    text-decoration: none;
    font-weight: 600;
}

.new-product-layout .woocommerce-product-rating a.woocommerce-review-link:hover {
    color: #3F3953;
}

/* Benefits list */
.new-product-layout .product__description {
    margin: 0 0 24px;
}

.new-product-layout .product__description p {
    margin: 0 0 12px;
}

.new-product-layout .product__description p:last-child {
    margin-bottom: 0;
}

.new-product-layout .product__description ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.new-product-layout .product__description ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 1.45;
    color: #3F3953;
    font-weight: 500;
}

.new-product-layout .product__description ul li:before {
    content: "";
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-top: 1px;
    border-radius: 50%;
    background-color: #675E9B;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.2L6.3 11L12.5 4.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

/* Notice before add to cart */
.new-product-layout .product-cart-notice {
    border: 1px solid #ebe8f4;
    border-radius: 16px;
    padding: 26px 20px 24px;
    margin: 22px 0 18px;
    text-align: center;
    background: linear-gradient(180deg, #faf9ff 0%, #fff 100%);
}

.new-product-layout .product-cart-notice__top {
    font-size: 19px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.35;
}

.new-product-layout .product-cart-notice__price-label {
    color: #675E9B;
}

.new-product-layout .product-cart-notice__shipping {
    color: #3F3953;
    font-weight: 700;
}

.new-product-layout .product-cart-notice__top .price,
.new-product-layout .product-cart-notice__top .amount {
    display: inline;
    font-weight: 800;
    color: #1a1a2e;
    font-size: 20px;
}

.new-product-layout .product__description+.price {
    display: none;
}

.new-product-layout .product-cart-notice__top del {
    opacity: 0.45;
    font-weight: 500;
    font-size: 15px;
}

.new-product-layout .product-cart-notice__guarantee {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px dashed #e0dceb;
    font-size: 13px;
    line-height: 1.55;
    color: #c62828;
    font-weight: 500;
}

.new-product-layout .single_add_to_cart_button,
.new-product-layout .add-to-cart-buttons-wrapper .button,
.new-product-layout .add-to-cart-buttons-wrapper button {
    width: 100%;
    border-radius: 999px;
    min-height: 54px;
    font-size: 18px;
    font-weight: 700;
    background: #8bae00;
    border-color: #8bae00;
    color: #fff;
    transition: background 0.2s ease;
}

.new-product-layout .single_add_to_cart_button:hover,
.new-product-layout .add-to-cart-buttons-wrapper .button:hover,
.new-product-layout .add-to-cart-buttons-wrapper button:hover {
    background: #769600;
    border-color: #769600;
    color: #fff;
}

/* Under photo text */
.new-product-layout .under-photo-content {
    margin-top: 20px;
    padding: 15px 30px;
    background: #342448;
    border-radius: 15px;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
    width: 100%;
    max-width: 100%;
    display: block;
}

.new-product-layout .under-photo-content svg * {
    fill: #fff;
}

/* Key factors as cards */
.new-product-layout .product-key-factors {
    background: transparent;
    padding: 40px 0;
    margin-top: 40px;
}

.new-product-layout .product-key-factors__wrapper {
    grid-gap: 16px;
    max-width: 100%;
}

.new-product-layout .product-key-factors__item {
    border: 1px solid #ebe8f4;
    border-radius: 16px;
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: border-color 0.2s ease;
    background: #f9f9fd;
}

.new-product-layout .product-key-factors__item:hover {
    border-color: #8bae00;
}

.new-product-layout .product-key-factors__item-icon {
    height: 72px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    padding: 10px;
    border-radius: 14px;
}

.new-product-layout .product-key-factors__item-text {
    text-transform: none;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
    color: #3F3953;
    margin-top: 0;
}

/* Coupon notice */
.product-notice-coupon--new {
    background: linear-gradient(90deg, #675E9B 0%, #8a7fc0 100%);
    color: #fff;
    text-align: center;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.product-notice-coupon--new:hover {
    filter: brightness(1.05);
}

@media screen and (max-width: 1024px) {
    .new-product-layout .product-key-factors__wrapper {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 12px;
    }
}

@media screen and (max-width: 767px) {
    .new-product-layout .variation-radios {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .new-product-layout .var-card label {
        padding: 20px 14px 14px;
    }

    .product-review-panel__dialog {
        top: auto;
        bottom: 0;
        width: 100%;
        height: auto;
        max-height: 88vh;
        padding: 30px 20px 24px;
        border-radius: 18px 18px 0 0;
        transform: translateY(100%);
    }

    .product-review-panel.is-open .product-review-panel__dialog {
        transform: translateY(0);
    }

    .product-review-panel__title {
        font-size: 24px;
    }

    .product-review-open--small {
        /* flex-basis: 100%; */
    }

    .new-product-layout .product-key-factors__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .new-product-layout .under-photo-content {
        font-size: 16px;
        padding: 16px 18px;
    }

    .product-notice-coupon--new {
        font-size: 13px;
        padding: 12px 14px;
    }
}
.new-product-layout .woocommerce-product-rating {
    justify-content: center;
}
/* More info: image left, accordion right */
.new-product-layout .product__more-info {
    padding: 70px 0;
}

.product-more-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-more-split__image {
    position: sticky;
    top: 130px;
}

.product-more-split__image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.product-more-split__accordion .accordion__content {
    font-size: 15px;
    line-height: 1.7;
}

.new-product-layout .accordion__item {
    border: none;
    background: #f6f4ff;
    padding: 20px;
    border-radius: 16px;
}

.new-product-layout .product-more-split__accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media screen and (max-width: 767px) {
    .new-product-layout .product__more-info {
        padding: 45px 0;
    }

    .product-more-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-more-split__image {
        position: static;
        order: -1;
    }
}

/* Info block — text left, image right */
.product-info-block {
    padding: 70px 0;
}

.product-info-block__inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.product-info-block__content {
    flex: 1;
}

.product-info-block__title {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 20px;
    line-height: 1.3;
}

.product-info-block__text {
    font-size: 16px;
    line-height: 1.75;
    color: #4a4a5a;
}

.product-info-block__text p:last-child {
    margin-bottom: 0;
}

.product-info-block__image {
    flex: 0 0 45%;
    max-width: 45%;
}

.product-info-block__image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.product-info-block__text li {
    align-items: flex-start !important;
}

.product-info-block__text li:before {
    margin-top: 11px;
}

@media screen and (max-width: 767px) {
    .product-info-block {
        padding: 45px 0;
    }

    .product-info-block__inner {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .product-info-block__image {
        flex: none;
        max-width: 100%;
    }

    .product-info-block__title {
        font-size: 24px;
    }
}

/* FAQ 2-column */
.product-faq-section {
    padding: 70px 0;
}

.product-faq-section .products-section__title {
    margin-bottom: 80px;
}

.product-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

.product-faq-grid__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-faq-grid .accordion__item {
    border: none !important;
    background: #f6f4ff;
    padding: 20px;
    border-radius: 16px;
}

.product-faq-grid .accordion__item:first-child {
    border-top: 1px solid #e8e8e8;
}

@media screen and (min-width: 767px) {
    .under-photo-content_mobile {
        display: none !important;
    }
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .product-reviews-slider__card {
        margin: 0 8px;
    }
}

@media screen and (max-width: 767px) {
    .product-reviews-fullwidth {
        padding: 45px 0 40px;
    }

    .pr-arrow {
        width: 42px;
        height: 42px;
    }

    .product-reviews-slider__card {
        margin: 0 6px;
        padding: 22px 20px;
    }

    .product-reviews-slider__avatar {
        width: 40px;
        height: 40px;
    }

    .product-reviews-fullwidth__arrows {
        margin-top: 30px;
    }

    .product-faq-section {
        padding: 45px 0;
    }

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

    .product-faq-grid__col+.product-faq-grid__col .accordion__item:first-child {
        border-top: none;
    }














    .new-product-layout .product__gallery {
        display: flex;
        flex-direction: column;
    }

    .new-product-layout .woocommerce-product-gallery.woocommerce-product-gallery--with-images {
        order: 0;
    }

    .new-product-layout .product_title {
        order: 2;
    }

    .new-product-layout .product__gallery .under-photo-content {
        display: none;
    }

    .new-product-layout .woocommerce-product-gallery.woocommerce-product-gallery--with-images {
        margin: 0;
    }
    .under-photo-content_mobile {
        display: block;
    }
    .new-product-layout .product_title {
        margin-top: 20px;
    }
}
