/* ======================================================
   product-card.css
   Isolated redesign for product page.
   All rules scoped under .product-page--redesign
   to avoid affecting other pages or triggering a webpack rebuild.
   ====================================================== */

/* ---- Design tokens ---- */
.product-page--redesign {
    --pc-accent:        #E30613;
    --pc-accent-hover:  #C80511;
    --pc-border:        #E5E5E5;
    --pc-text-muted:    #888888;
    --pc-zebra:         #F8F8F8;
    --pc-stock-bg:      #E8F5E9;
    --pc-stock-text:    #2E7D32;
}


/* ================================================
   BLOCK 1: Gallery + Buy Card
   ================================================ */

/* Reset old inline-block layout from _product.scss */
.product-page--redesign .product-body {
    display: flex !important;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
    font-size: 14px; /* cancel the font-size:0 inline-block hack */
    position: relative;
}

/* --- Gallery --- */
.product-page--redesign .product-body .gallery {
    display: block !important;
    width: auto !important;
    flex: 1 1 55%;
    min-width: 320px;
}

.product-page--redesign .product-body .gallery .gallery-view {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    border: 1px solid var(--pc-border);
    background: #fff;
    overflow: hidden;
    position: relative;
}

/* neutralize the pseudo-element line-height hack */
.product-page--redesign .product-body .gallery .gallery-view::before {
    content: none !important;
}

.product-page--redesign .product-body .gallery .gallery-view a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 400px;
}

.product-page--redesign .product-body .gallery .gallery-view img,
.product-page--redesign .product-body .gallery .gallery-view video {
    max-height: 420px !important;
    max-width: 100%;
    width: auto;
    vertical-align: middle;
    object-fit: contain;
}

.product-page--redesign .product-body .gallery .gallery-previews {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    margin-top: 8px;
    overflow-x: auto;
    white-space: nowrap;
}

.product-page--redesign .product-body .gallery .gallery-preview {
    flex-shrink: 0;
    width: 66px;
    height: 66px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--pc-border) !important;
    overflow: hidden;
    margin-right: 0;
}

.product-page--redesign .product-body .gallery .gallery-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-page--redesign .product-body .gallery .gallery-preview.active {
    border-color: var(--pc-accent) !important;
}

.product-page--redesign .product-body .gallery .gallery-preview.active::after {
    border-bottom-color: var(--pc-accent) !important;
}

/* Advantages under gallery */
.product-page--redesign .product-body .gallery .product-advantages {
    margin-top: 16px;
}

/* --- Buy Card --- */
.product-page--redesign .product-body .product-buy-card {
    flex: 1 1 35%;
    max-width: 400px;
    background: #fff;
    border: 1px solid var(--pc-border);
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 0;
    font-family: "roboto", serif;
}

/* Vendor logo */
.product-page--redesign .product-buy-card__vendor {
    margin-bottom: 12px;
}
.product-page--redesign .product-buy-card__vendor img {
    max-height: 40px;
    max-width: 130px;
}

/* Meta rows */
.product-page--redesign .product-buy-card__meta {
    margin-bottom: 12px;
    font-size: 13px;
}
.product-page--redesign .product-buy-card__meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid var(--pc-border);
    color: #555;
}
.product-page--redesign .product-buy-card__meta-row span {
    font-size: 13px;
    font-weight: 400;
}
.product-page--redesign .product-buy-card__meta-row span.prod {
    font-family: "Roboto-Medium", serif;
    font-weight: 600;
}
.product-page--redesign .product-buy-card__meta-row:last-of-type {
    border-bottom: none;
}
.product-page--redesign .product-buy-card__meta-row a {
    font-weight: 600;
    color: #333;
    text-decoration: none;
}
.product-page--redesign .product-buy-card__meta-row a:hover {
    color: var(--pc-accent);
}

/* Rating */
.product-page--redesign .product-buy-card__reviews {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    padding: 5px 0;
}
.product-page--redesign .product-buy-card__reviews .reviews-count {
    font-size: 12px;
    color: var(--pc-text-muted);
}

/* Services (payment + delivery) */
.product-page--redesign .product-buy-card__services {
    padding: 10px 0;
    margin-bottom: 12px;
}
.product-page--redesign .product-buy-card__service {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    margin-bottom: 8px;
}
.product-page--redesign .product-buy-card__service:hover {
    color: var(--pc-accent);
    text-decoration: none;
}
.product-page--redesign .product-buy-card__service:last-child {
    margin-bottom: 0;
}
.product-page--redesign .product-buy-card__service-text {
    font-family: "Roboto-Medium", serif;
    font-size: 13px;
    font-weight: 600;
}
.product-page--redesign .product-buy-card__delivery {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #333;
}
.product-page--redesign .quest-block {
    vertical-align: middle;
    display: inline-block;
    width: 17px;
    height: 17px;
    line-height: 24px;
    background: url(../../images/desktop/icons/green-quest.png) no-repeat;
    position: relative;
    margin: -1px 0 0 1px;
}
.product-page--redesign .product-buy-card__delivery-lines {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.5;
}

/* Map preview */
.product-page--redesign .product-map-preview {
    margin-bottom: 12px;
}
.product-page--redesign .product-map-preview__points {
    display: block;
    font-size: 13px;
    color: var(--pc-accent);
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 8px;
}
.product-page--redesign .product-map-preview__points:hover {
    text-decoration: underline;
    color: var(--pc-accent-hover);
}
.product-page--redesign .product-map-preview__points-count {
    font-size: 16px;
}
.product-page--redesign .product-map-preview__image {
    display: flex;
    align-items: end;
    justify-content: center;
    height: 120px;
    background-size: cover;
    background-position: center;
    background-color: var(--pc-zebra);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.product-page--redesign .product-map-preview__image:hover .product-map-preview__btn {
    background: var(--pc-accent-hover) !important;
}
.product-page--redesign .product-map-preview__btn {
    background: var(--pc-accent) !important;
    border-color: var(--pc-accent) !important;
    color: #fff !important;
    font-size: 13px;
    padding: 8px 16px;
    z-index: 1;
    cursor: pointer;
    border-radius: 0;
    margin-bottom: 20px;
}

/* Pricing */
.product-page--redesign .product-buy-card__pricing {
    margin-bottom: 12px;
}
.product-page--redesign .product-buy-card__pricing .prices {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 4px;
    justify-content: center;
}
.product-page--redesign .product-buy-card__pricing .price {
    font-size: 28px !important;
    font-weight: 700;
    color: var(--pc-accent) !important;
    line-height: 1.1;
}
.product-page--redesign .product-buy-card__pricing .price .rub {
    font-size: 22px;
}
.product-page--redesign .product-buy-card__pricing .old-price .value {
    font-size: 16px;
    color: var(--pc-text-muted);
    text-decoration: line-through;
}
.product-page--redesign .product-buy-card__pricing .old-price .rub {
    font-size: 13px;
}
.product-page--redesign .discounts {
    margin-top: 4px;
    text-align: center;
}
.product-page--redesign .view-discount > a {
    font-size: 13px;
    color: var(--pc-text-muted);
    text-decoration: none;
}
.product-page--redesign .view-discount > a:hover {
    text-decoration: underline;
    color: #555;
}

/* Discontinued */
.product-page--redesign .product-buy-card__discontinued {
    text-align: center;
    padding: 20px 0;
    color: var(--pc-text-muted);
}

/* CTA */
.product-page--redesign .product-buy-card__cart {
    margin-bottom: 10px;
}
.product-page--redesign .product-buy-card__buy-btn {
    display: block !important;
    width: 100%;
    text-align: center;
    background: var(--pc-accent) !important;
    border-color: var(--pc-accent) !important;
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 0;
    text-decoration: none;
    box-sizing: border-box;
    line-height: 1.4;
    cursor: pointer;
}
.product-page--redesign .product-buy-card__buy-btn:hover {
    background: var(--pc-accent-hover) !important;
    border-color: var(--pc-accent-hover) !important;
    color: #fff !important;
    text-decoration: none;
}

/* Footer: code + controls */
.product-page--redesign .product-buy-card__footer {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: var(--pc-text-muted);
    padding-top: 10px;
    margin-top: auto;
}
.product-page--redesign .product-buy-card__footer .product-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}
.product-page--redesign .product-buy-card__footer .wishlist-form button,
.product-page--redesign .product-buy-card__footer .comparison-form button {
    font-size: 12px;
    color: var(--pc-accent);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}
.product-page--redesign .product-buy-card__footer .wishlist-form button:hover,
.product-page--redesign .product-buy-card__footer .comparison-form button:hover {
    color: var(--pc-accent-hover);
}

.product-page--redesign .in-bookmark:before {
    background: url(../../images/desktop/icons/bookmark-red-o.png);
    width: 14px;
}

.product-page--redesign .in-bookmark.active:before, .product-page--redesign .in-bookmark:hover:before {
    background: url(../../images/desktop/icons/bookmark-red.png);
}

/* ================================================
   BLOCK 2: Tabs — Description / Characteristics / Reviews
   ================================================ */

.product-page--redesign .product-tabs {
    margin-top: 28px;
    margin-bottom: 28px;
}

/* Nav bar */
.product-page--redesign .product-tabs__nav {
    display: flex;
    border-bottom: 1px solid var(--pc-border);
    margin-bottom: 0;
    gap: 0;
}
.product-page--redesign .product-tabs__tab {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 12px 28px;
    font-size: 15px;
    cursor: pointer;
    color: var(--pc-text-muted);
    font-weight: 400;
    margin-bottom: -1px;
    transition: color .15s, border-color .15s;
    outline: none;
    white-space: nowrap;
}
.product-page--redesign .product-tabs__tab:hover {
    color: #333;
}
.product-page--redesign .product-tabs__tab.active {
    color: var(--pc-accent);
    border-bottom-color: var(--pc-accent);
    font-weight: 600;
}

/* Panels */
.product-page--redesign .product-tabs__panel {
    display: none;
    padding: 20px 0;
}
.product-page--redesign .product-tabs__panel.active {
    display: block;
}

/* Characteristics table — horizontal scroll on overflow */
.product-page--redesign .product-params {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.product-page--redesign .product-params table {
    min-width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    table-layout: auto;
}

/* Keep rows as normal table rows — don't force flex (breaks 3+ column tables) */
.product-page--redesign .product-params table tr {
    border-bottom: 1px solid var(--pc-border);
}
.product-page--redesign .product-params table tr:nth-child(even) {
    background: var(--pc-zebra);
}
/* All cells: nowrap forces the table to its natural width;
   container overflow-x:auto provides horizontal scroll */
.product-page--redesign .product-params table td,
.product-page--redesign .product-params table th {
    padding: 10px 16px;
    vertical-align: middle;
    line-height: 1.5;
    white-space: nowrap;
}

/* First cell: label — muted */
.product-page--redesign .product-params table td:first-child,
.product-page--redesign .product-params table th:first-child {
    color: var(--pc-text-muted);
    padding-right: 24px;
}

/* Second cell: value — bold dark */
.product-page--redesign .product-params table td:nth-child(2),
.product-page--redesign .product-params table th:nth-child(2) {
    font-weight: 600;
    color: #333;
}

/* Extra cells (3+): lighter gray — e.g. ETIM codes */
.product-page--redesign .product-params table td:nth-child(n+3),
.product-page--redesign .product-params table th:nth-child(n+3) {
    color: var(--pc-text-muted);
    font-size: 12px;
}

/* Hidden rows (show-all) */
.product-page--redesign .product-params table tr.pc-params-hidden {
    display: none;
}
.product-page--redesign .product-params.is-expanded table tr.pc-params-hidden {
    display: table-row;
}

/* Show-all button */
.product-page--redesign .product-params__show-all {
    display: none; /* shown by JS when needed */
    margin: 16px auto 0;
    background: none;
    border: none;
    color: var(--pc-accent);
    text-decoration: underline;
    font-size: 14px;
    cursor: pointer;
    padding: 4px 0;
    text-align: center;
}
.product-page--redesign .product-params__show-all:hover {
    color: var(--pc-accent-hover);
}

/* Reviews panel */
.product-page--redesign .product-tabs__reviews .reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--pc-border);
}
.product-page--redesign .product-tabs__reviews .reviews-title {
    display: none; /* title moved to tabs nav */
}


/* ================================================
   BLOCK 3: Related products
   ================================================ */

.product-page--redesign .product-related {
    margin-top: 36px;
    margin-bottom: 24px;
}
.product-page--redesign .product-related-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 36px;
}
.product-page--redesign .product-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Card */
.product-page--redesign .product-related-card {
    background: #fff;
    border: 1px solid var(--pc-border);
    padding: 12px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
}

/* Image area */
.product-page--redesign .product-related-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--pc-border);
    height: 160px;
    overflow: hidden;
    margin-bottom: 10px;
    background: #fff;
    text-decoration: none;
}
.product-page--redesign .product-related-card__image img {
    max-height: 150px;
    max-width: 100%;
    object-fit: contain;
}

/* Title */
.product-page--redesign .product-related-card__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    margin-bottom: 6px;
    line-height: 1.4;
    min-height: 2.8em;
}
.product-page--redesign .product-related-card__title:hover {
    color: var(--pc-accent);
    text-decoration: none;
}

/* Stock badge */
.product-page--redesign .product-related-card__stock {
    margin-bottom: 6px;
}
.product-page--redesign .product-related-card__stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 10px;
    background: var(--pc-zebra);
    color: var(--pc-text-muted);
}
.product-page--redesign .product-related-card__stock-badge--in-stock {
    background: var(--pc-stock-bg);
    color: var(--pc-stock-text);
}
.product-page--redesign .product-related-card__stock-badge--in-stock::before {
    content: '';
    background: url(../../images/desktop/icons/check-mark-alt.svg);
    width: 11px;
    height: 11px;
    font-size: 11px;
    font-weight: 700;
    margin-top: -1px;
}

/* Short description */
.product-page--redesign .product-related-card__description {
    font-size: 12px;
    color: var(--pc-text-muted);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    line-height: 1.4;
}
.product-page--redesign .product-related-card__footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
/* Prices */
.product-page--redesign .product-related-card__prices {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: space-around;
    flex-direction: row-reverse;
}
.product-page--redesign .product-related-card__price {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}
.product-page--redesign .product-related-card__price .rub {
    font-size: 14px;
}
.product-page--redesign .product-related-card__price-old {
    font-size: 14px;
    color: #B4B4B4;
    text-decoration: line-through;
    order: -1;
}

/* Cart button */
.product-page--redesign .product-related-card__cart {
    margin-top: auto;
}
.product-page--redesign .product-related-card__cart button.add-cart-ajax,
.product-page--redesign .product-related-card__cart .btn.add-cart-ajax {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    background: var(--pc-accent) !important;
    border-color: var(--pc-accent) !important;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 12px;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    cursor: pointer;
    border: none;
    line-height: 1.4;
    border-radius: 0;
}
.product-page--redesign .product-related-card__cart button.add-cart-ajax:hover,
.product-page--redesign .product-related-card__cart .btn.add-cart-ajax:hover {
    background: var(--pc-accent-hover) !important;
    border-color: var(--pc-accent-hover) !important;
    color: #fff !important;
    text-decoration: none;
}
.product-page--redesign .product-related-card__more {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 13px;
    margin-top: auto;
    background: var(--pc-accent) !important;
    border-color: var(--pc-accent) !important;
    color: #fff !important;
    text-decoration: none;
    padding: 9px 12px;
    box-sizing: border-box;
    line-height: 1.4;
    border-radius: 0;
}
.product-page--redesign .product-related-card__more:hover {
    background: var(--pc-accent-hover) !important;
    color: #fff !important;
    text-decoration: none;
}


/* ================================================
   Buy card — precision fixes to match design reference
   ================================================ */

/* --- Delivery block: icon + "Доставка" label + lines --- */
.product-page--redesign .product-buy-card__delivery {
    align-items: flex-start;
}
.product-page--redesign .product-buy-card__delivery-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.product-page--redesign .product-buy-card__delivery-label {
    font-weight: 600;
    font-size: 13px;
    color: #333;
    line-height: 1.3;
    font-family: "Roboto-Medium", serif;
}
.product-page--redesign .product-buy-card__delivery-lines {
    color: var(--pc-text-muted);
    font-size: 13px;
    line-height: 1.6;
}
.product-page--redesign .product-buy-card__delivery-lines div {
    padding: 0;
    font-weight: 400;
    line-height: 240%;
}

/* Align delivery icon with the "Доставка" label */
.product-page--redesign .product-buy-card__delivery .icon {
    margin-top: -3px;
    flex-shrink: 0;
}

/* --- Pickup points link --- */
.product-page--redesign .product-map-preview__points {
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.4;
    color: #636363;
    text-align: center;
}
.product-page--redesign .product-map-preview__points-count {
    font-size: 15px;
    font-weight: 700;
}
.product-page--redesign .product-map-preview__points-pvz {
    text-decoration: underline;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--pc-accent);
}
.product-page--redesign .product-map-preview__points:hover {
    color: var(--pc-accent-hover);
}

/* --- "Ваша скидка" — style as plain text, not a styled link --- */
.product-page--redesign .view-discount > a {
    color: var(--pc-text-muted);
    font-size: 13px;
    text-decoration: none;
    cursor: default;
    pointer-events: none;
    display: block;
    margin-top: 2px;
}

/* --- Footer: "В закладки" bookmark button --- */
.product-page--redesign .product-buy-card__footer .wishlist-form button.in-bookmark {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--pc-accent);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
}
.product-page--redesign .product-buy-card__footer .wishlist-form button.in-bookmark::before {
    content: '';
    display: inline-block;
    width: 13px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 16' fill='none'%3E%3Cpath d='M1 1h11v13.5l-5.5-3.5L1 14.5V1z' stroke='%23E30613' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}
.product-page--redesign .product-buy-card__footer .wishlist-form button.in-bookmark.active {
    color: var(--pc-text-muted);
}
.product-page--redesign .product-buy-card__footer .wishlist-form button.in-bookmark.active::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 16' fill='%23888'%3E%3Cpath d='M1 1h11v13.5l-5.5-3.5L1 14.5V1z' stroke='%23888' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.product-page--redesign .product-buy-card__footer .wishlist-form button.in-bookmark:hover {
    color: var(--pc-accent-hover);
}

/* Hide comparison form in buy-card footer (not in reference design) */
.product-page--redesign .product-buy-card__footer .comparison-form {
    display: none;
}

/* --- Meta row: clean label / value layout --- */
.product-page--redesign .product-buy-card__meta-row {
    font-size: 13px;
    color: var(--pc-text-muted);
}
.product-page--redesign .product-buy-card__meta-row a,
.product-page--redesign .product-buy-card__meta-row span {
    color: #222;
    font-weight: 600;
}

/* --- Services separator lines --- */
.product-page--redesign .product-buy-card__service {
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.product-page--redesign .product-buy-card__services .product-buy-card__delivery {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.icon.icon-payment{
    background: url(../icons/free-icon-font-credit-card.svg) 100% 100% no-repeat;
    width: 19px;
    height: 19px;
    margin-right: 10px;
    margin-top: -4px;
}
.icon.icon-delivery-2{
    background: url(../icons/free-icon-font-box-alt.svg) 100% 100% no-repeat;
    width: 19px;
    height: 19px;
    margin-right: 10px;
    margin-top: -4px;
}


/* ================================================
   Responsive
   ================================================ */

@media (max-width: 1200px) {
    .product-page--redesign .product-related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .product-page--redesign .product-body {
        flex-direction: column;
    }
    .product-page--redesign .product-body .gallery {
        flex: none;
        width: 100% !important;
    }
    .product-page--redesign .product-body .product-buy-card {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
    .product-page--redesign .product-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-page--redesign .product-tabs__tab {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .product-page--redesign .product-related-grid {
        grid-template-columns: 1fr;
    }
    .product-page--redesign .product-map-preview__image {
        width: 100%;
    }
    .product-page--redesign .product-tabs__tab {
        padding: 8px 12px;
        font-size: 13px;
    }
    .product-page--redesign .product-buy-card__pricing .price {
        font-size: 24px !important;
    }
}
