.product-detail-page {
    --orange: #e89f71;
    /*--primary: #b2935a;*/
    --primary: #948200;
    --primary-light: #948200;
    --primary-dark: #8b7346;
    --accent: #d4a574;
    --accent-light: #f5e6d3;
    --text-dark: #333;
    --text-gray: #666;
    --border-light: #e0e0e0;
    --bg-light: #f0f1f1;
    --success: #52c41a;
    --header-height: 104px;

    --radius-full: 12px;
    --radius-semi: 8px;
    --radius-quarter: 4px;
}

.product-detail-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.product-detail-page {

    color: var(--text-dark);
}

.product-detail-page .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}


.product-detail-page .product-wrapper {
    display: grid;
    grid-template-columns: minmax(400px, 500px) 1fr 320px;
    gap: 32px;
    margin-bottom: 40px;
    background: transparent;
    padding: 0;
}

.product-detail-page .product-gallery {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    display: flex;
    gap: 12px;
    max-height: 500px;
    align-self: start;
}

.product-detail-page .gallery-thumbs {
    width: 60px;
    height: 470px !important;
    overflow: hidden;
    box-sizing: border-box;
}

.product-detail-page .gallery-thumbs .swiper {
    height: 100%;
    padding: 0;
    margin: 0;
}

.product-detail-page .gallery-thumbs .swiper-slide {
    height: 70px !important;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    border-radius: var(--radius-quarter);;
    overflow: hidden;
    margin-bottom: 8px;
}

.product-detail-page .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--primary);
}

.product-detail-page .gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-page .gallery-main {
    flex: 1;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-semi);
    background: white;
}

.product-detail-page .gallery-main .swiper {
    width: 100%;
    height: 100%;
    padding-bottom: 40px;
}
.product-detail-page .gallery-main .swiper-pagination {
    bottom: 0 !important;
}
.product-detail-page .gallery-main .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.product-detail-page .gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-detail-page .discount-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--orange);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-quarter);
    font-size: 14px;
    font-weight: 500;
    z-index: 10;
}

/* Gallery Navigation */
.product-detail-page .gallery-main .swiper-button-next,
.product-detail-page .gallery-main .swiper-button-prev {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    color: var(--text-dark);
}

.product-detail-page .swiper-button-next:after,
.product-detail-page .swiper-button-prev:after {
    font-size: 16px;
}
span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #ebcc00 !important;
    opacity: 1 !important;
    width: 24px !important;
    border-radius: 5px !important;
    transition: all 0.3s
    ease;
}
.product-detail-page .swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
}

.product-detail-page .swiper-pagination-bullet-active {
    opacity: 1;
}

.product-detail-page .modal-gallery {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
}

.product-detail-page .modal-gallery.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-detail-page .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    z-index: 10001;
}

.product-detail-page .modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.product-detail-page .modal-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: var(--radius-full);;
}

.product-detail-page .modal-gallery-swiper {
    width: 90%;
    max-width: 1200px;
    height: 80vh;
}

.product-detail-page .modal-gallery-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-page .modal-gallery-swiper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-detail-page .modal-thumbs {
    width: 600px;
    max-width: 90%;
    height: 80px;
    margin-top: 20px;
}

.product-detail-page .modal-thumbs .swiper-slide {
    opacity: 0.6;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: var(--radius-quarter);
    overflow: hidden;
}

.product-detail-page .modal-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: white;
}

.product-detail-page .modal-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-page .product-info {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: var(--radius-full);
}

.product-detail-page .brand a {
    text-decoration: none;
    color: #242424;
    background-color: var(--bg-light);
    border-radius: var(--radius-semi);
    width: fit-content;
    margin-bottom: 8px;
    padding: 4px 4px 4px 8px;
    font-size: 14px;
    line-height: 20px;
    display: inline-flex;
}

.product-detail-page .product-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.product-detail-page .product-code {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-gray);
}

.product-detail-page .color-section,
.product-detail-page .size-section {
    margin-bottom: 24px;
}

.product-detail-page .section-label {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.product-detail-page .color-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-detail-page .color-option {
    width: 56px;
    height: 72px;
    border: 2px solid transparent;
    border-radius: var(--radius-semi);
    overflow: hidden;
    cursor: pointer;
}

.product-detail-page .color-option.active {
    border-color: var(--primary);
}

.product-detail-page .color-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-page .size-grid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-detail-page .size-option {
    min-width: 48px;
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: white;
    border-radius: var(--radius-semi);
    font-size: 14px;
    cursor: pointer;
    text-align: center;
}
.size-option.disabled {
    opacity: 0.4;
    pointer-events: none;
    background: #f0f0f0;
    color: #999;
    border: 1px solid #ddd;
    position: relative;
}
.product-detail-page .size-option.active {
    color: #000000;
    outline: 3px solid var(--primary);
    font-weight: 500;
}

.product-detail-page .price-column {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    height: fit-content;
}

.product-detail-page .price-card {
    background-color: #fff;
    border: 1px solid var(--border-color, #f4f5f6);
    border-radius: 20px;
    box-shadow: 0 6px 12px #e5e7e8;
    padding: 24px;
}
.price-card .price-wrapper{
    margin-bottom: 20px;
}
.finance-widget {
    margin-top: 12px;
    cursor: pointer;
    width: fit-content;
}

.finance-widget--split {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s ease;
}

.finance-widget--split:hover {
    opacity: 0.8;
}

.finance-widget__content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.finance-widget__badge {
    background-color: var(--bg-light);
    color: #212121;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
}

.finance-widget__label {
    font-size: 14px;
    color: #212121;
    line-height: 1.2;
}



.finance-widget--credit {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-credit-offer {
    background: none;
    border: none;
    font-size: 16px;
    color: #7d7d7d;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    border-bottom: 1px dashed;
}

.btn-credit-offer:hover {
    border-color: #000;
    background-color: #f9f9f9;
}

.btn-credit-offer__icon {
    width: 20px;
    height: 20px;
    color: #555;
}
.last-price-span {
    color: var(--gray);
    font-size: 20px;
    font-weight: 600;
}
.last-price-label {
    color: var(--gray);
    font-size: 16px;

}
.price-allprices.last-price{
    flex-direction: column;
    gap: 8px;
}
@media (max-width: 480px) {
    .finance-widget__label {
        font-size: 12px;
    }
}
.price-allprices{
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
}
.product-detail-page .current-price {
    font-size: 24px;
    font-weight: 500;
}

.product-detail-page .old-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.product-detail-page .btn {
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: var(--radius-semi);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.product-detail-page .btn-primary {
    background: var(--primary);
    color: white;
}

.product-detail-page .btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
}

.product-detail-page .service-cards-slider {
    margin-bottom: 40px;
}

.product-detail-page .service-cards-slider .swiper {
    padding-bottom: 30px;
}

.product-detail-page .service-cards-slider .swiper-pagination {
    bottom: 0 !important;
}

.product-detail-page .service-card {
    background: white;
    border-radius: var(--radius-full);
    padding: 24px;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color, #f4f5f6);
    border-radius: 20px;
    box-shadow: 0 2px 8px #e5e7e8;
}

.product-detail-page .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    border-color: var(--primary-light);
}

.product-detail-page .service-card__icon {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: var(--radius-semi);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    transition: background 0.3s, color 0.3s;
}

.product-detail-page .service-card:hover .service-card__icon {
    background: var(--primary);
    color: white;
}

.product-detail-page .service-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
}

.product-detail-page .service-card .service-card__title {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-detail-page .service-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
}

.product-detail-page .service-card__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}

.product-detail-page .service-card:hover .service-card__link {
    gap: 8px;
    color: var(--primary-dark);
}

.product-detail-page .service-cards-slider .swiper {
    padding: 10px 10px 40px 10px;
    margin: -10px -10px 0 -10px;
}
.product-detail-page .delivery-section {
    margin-bottom: 40px;
}

#deliverySwiper {
    padding: 10px 10px 50px 10px !important;
    margin: -10px -10px 0 -10px !important;
    align-items: stretch;
}

#deliverySwiper .swiper-pagination {
    bottom: 10px !important;
    left: 0;
    width: 100%;
}

#deliverySwiper .swiper-slide {
    height: auto !important;
    display: flex;
    box-sizing: border-box;
}

.product-detail-page .delivery-method {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: var(--radius-full);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color, #f4f5f6);
    box-shadow: 0 2px 8px #e5e7e8;
    box-sizing: border-box;
}

.product-detail-page .delivery-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    border-color: var(--primary-light);
}

.product-detail-page .delivery-method__icon {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: var(--radius-semi);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    transition: background 0.3s, color 0.3s;
    flex-shrink: 0;
}

.product-detail-page .delivery-method:hover .delivery-method__icon {
    background: var(--primary);
    color: white;
}

.product-detail-page .delivery-method__content {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-detail-page .delivery-method__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.product-detail-page .delivery-method__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-detail-page .delivery-method__list li {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 6px;
    position: relative;
    padding-left: 12px;
}

.product-detail-page .delivery-method__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
}

.product-detail-page .delivery-method__list li strong {
    color: var(--text-dark);
    font-weight: 600;
}
.product-detail-page .nav-section {
    margin-bottom: 30px;
    background: white;
    border-radius: var(--radius-semi);
}
.universal-form-trigger:hover{
    transform: none;
}
button.universal-form-trigger.js-popup-trigger.cheaper-found-btn:hover{
    background: transparent;
}
button.universal-form-trigger.js-popup-trigger.btn-secondary.btn:hover{
    color: var(--white) !important;;
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;;
    transform: none;
}
button.universal-form-trigger.js-popup-trigger.cheaper-found-btn {
    height: auto;
    padding: 0;
    margin-top: 15px;
    text-align: start;
    padding-left: 24px;
}
.product-detail-page .nav-links {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    border-bottom: 1px solid var(--border-light);
}

.product-detail-page .nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    white-space: nowrap;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.product-detail-page .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}
p.important__note {
    font-size: 12px;
    line-height: 16px;
    color: #767d83;
    font-style: italic;
    margin-bottom: 15px;
}
.product-detail-page .content-section {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.product-detail-page .section-block {
    background: white;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}
div#characteristics {
    margin-bottom: 40px;
}
.product-detail-page .section-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-dark);
}
.section-block > .section-title{
    font-size: 18px;
}
.product-detail-page .sidebar-card {
    background: white;
    border-radius: var(--radius-full);
    padding: 20px;
    margin-bottom: 20px;
}

.product-detail-page .brand-card {
    background: white;
    border-radius: var(--radius-full);
    padding: 20px;
    border: 1px solid #ebebeb;
    margin-bottom: 20px;
    text-align: center;
}

.product-detail-page .collections-section {
    background: white;
    border-radius: var(--radius-full);
    margin-bottom: 40px;
}
.collections-section > h2.section-title {
    font-size: 18px;
    margin-bottom: 12px;
}
.product-detail-page .collection-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.show-all-specs {
    padding: 16px 0 22px 0;
    border-bottom: 1px solid var(--bg-grey);
}
.show-all-specs > a.baloon-nav {
    font-size: 13px;
}
.baloon-nav {
    padding: 6px 14px;
    background: #f4f5f6;
    border-radius: var(--radius-full);;
    font-size: 14px;
    color: #242424;
    cursor: pointer;
    text-decoration: none;
}

.baloon-nav:hover {
    background: #dadcde;
}


@media (max-width: 1100px) {

    .product-detail-page .product-wrapper {
        display: grid;
        grid-template-columns: minmax(400px, 550px) 1fr 320px;
        gap: 32px;
        margin-bottom: 40px;
    }
}

.product-detail-page .copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.product-detail-page .copy-btn svg {
    width: 16px;
    height: 16px;
}

.product-detail-page .quick-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    padding: 24px;
}
.quick-action-btn:hover{
    color: var(--primary);
}
button{
    color: inherit
}
.product-detail-page .quick-action-btn {
    background: none;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
}
button.quick-action-btn.compare_btn.in_compare {
    color: var(--primary);
}
.product-detail-page .quick-action-btn svg {
    width: 20px;
    height: 20px;
}

.product-detail-page .action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
}

.product-detail-page .cheaper-found-btn {
    width: 100%;
    background: white;
    border: none;
    color: #7d7d7d;
    font-size: 13px;
    cursor: pointer;
}

.product-detail-page .details-table {
    width: 100%;
    border-collapse: collapse;
}

.product-detail-page .details-table th {
    width: 50%;
    padding: 4px 0;
    color: #8f8fa3;
    font-weight: normal;
    text-align: left;
    font-size: 14px;
}
.product-info > .details-table th{
    width: 60%;
}

.product-detail-page .details-table td {
    padding: 4px 0;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
}



.brand-country__image{
    max-height: 24px;
}
.brand-country{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.brand-wrapper img{
    max-width: 100px;
}
.brand-wrapper span{
    font-size: 16px;
    font-weight: 700;
}
.brand-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}
.brand-name{
    display: flex;
    gap: 4px;
    flex-direction: column;
    align-items: start;;
}
.details-table__span > span{
    background-color: #fff;
    z-index: 1;
    padding-right: 8px;
}
.details-table > tbody > tr > td {
    padding-left: 8px !important;
}
.details-table__span
{
    flex-direction: row;
    width: 100%;
    display: flex;
    position: relative;
}

.details-table__span:after{
    content: "";
    width: 100%;
    height: 20px;
    display: block;
    position: absolute;
    bottom: 4px;
    left: 0;
background-image: linear-gradient(90deg, #d3d4dd 50%, #fff 0%);
background-position: bottom;
background-repeat: repeat-x;
background-size: 2px 1px;}

.catalog-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 0 10px 0;
}

.catalog-nav__item {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    max-width: 100%;
}

.catalog-nav__item:hover {
    color: var(--primary-hover);
}

.catalog-nav__icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #9CA3AF;
    transition: color 0.2s ease;

    background-color: #EEF0F2;
    border-color: #E0E2E6;
    padding: 7px;
    border-radius: 8px;
}


.catalog-nav__icon {
    width: 22px;
    height: 22px;
}

.catalog-nav__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.catalog-nav__title {
    font-size: 14px;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 2px;
    transition: color 0.2s ease;
}

.catalog-nav__subtitle {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #6B7280;
    line-height: 1.2;
    font-weight: 400;
    transition: color 0.2s ease;
}

.catalog-nav__item:hover .catalog-nav__title,
.catalog-nav__item:hover .catalog-nav__subtitle {
    color: var(--primary-hover);
}
.catalog-nav__item:hover .catalog-nav__icon-wrapper {
    border-color: var(--primary-hover, #d93d3d);
}
.catalog-nav__item:hover .catalog-nav__icon path {
    stroke: var(--primary-hover, #d93d3d);
}

@media (max-width: 768px) {
    .product-detail-page .container {
        padding: 0;
    }
    .product-detail-page .gallery-main .swiper-slide {
        width: 100% !important;
    }

    .product-detail-page .action-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .product-detail-page .mobile-island {
        background: white;
        margin-bottom: 12px;
        padding: 16px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .product-detail-page .product-wrapper {
        gap: 0;
        padding: 0;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
    }

    .product-detail-page .product-gallery {
        position: static;
        height: 350px;
        margin: 0 0 12px 0;
        background: white;
        padding: 0;
        max-height: 350px;
    }

    .product-detail-page .gallery-thumbs {
        display: none;
    }

    .product-detail-page .gallery-main {
        height: 350px;
        border-radius: 0;
    }

    .product-detail-page .gallery-main img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .product-detail-page .product-info {
        order: 1;
        display: contents;
    }
    .product-info-nav {
        order: 4;
    }
    .product-info-specs {
        order: 3;
    }
    .catalog-nav {
        padding: 16px 0;
    }
    .catalog-nav__icon {
        width: 18px;
        height: 18px;
    }
    .catalog-nav__icon-wrapper {
        padding: 4px;
    }
    .product-detail-page .nav-section {
        margin: 16px 0;
    }
    .section-content {
        font-size: 14px;
    }
    .product-detail-page .quick-actions {
        padding: 0;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    .product-detail-page .quick-action-btn svg {
        width: 26px;
        height: 26px;
    }
    .product-detail-page .quick-action-btn {
        font-size: 16px;
    }
    button.universal-form-trigger.js-popup-trigger.cheaper-found-btn {
        display: flex;
        align-items: start;
        justify-content: start;
        padding: 0;
        margin: 24px 0;
        font-size: 14px;
    }
    .product-detail-page .price-column {
        order: 2;
        position: static;
        margin-bottom: 30px;
    }
    .price-column:after {
        content: "";
        width: 100%;
        position: absolute;
        border-bottom: 1px solid #e6e6e6;
        left: 0;
        background: #f1f1f1;
        height: 4px;
    }

    .product-detail-page .price-card{
        padding: 0;
        box-shadow: none;
        border:none;
    }
    .product-detail-page .content-section {
        grid-template-columns: 1fr;
        gap: 0;
        margin: 0;
    }



    .product-detail-page .brand-card {
        margin-bottom: 12px;
        padding: 16px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .product-detail-page .sidebar-card {
        padding: 0;
    }

    .product-detail-page .sidebar-card {
        margin-bottom: 30px;
    }
    .product-detail-page .service-cards-slider h2,
    .product-detail-page .delivery-section h2 {
        margin-bottom: 16px;
    }

    .product-detail-page .collection-tags {
        max-height: 80px;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    .product-detail-page .collection-tags.expanded {
        max-height: none;
    }

    .product-detail-page .expand-btn {
        margin-top: 12px;
        padding: 8px 16px;
        background: white;
        border: 1px solid var(--border-light);
        border-radius: var(--radius-semi);
        color: var(--primary);
        cursor: pointer;
        font-size: 14px;
    }
    .finance-widget.finance-widget--credit {
        justify-content: start;
        margin: 6px 0;
    }
}
