/* =========================================
   PRODUCT DETAILS STYLES
   ========================================= */

.product-detail-main {
    padding-top: 40px;
    padding-bottom: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Спінер тримає висоту блоку товару, який вантажиться через JS. Без цього
   спінер (короткий) замінюється контентом (~604px), сторінка «виростає» й
   секції нижче (переваги, карта) стрибають — це й давало CLS 0.43.
   Значення ≈ виміряна висота блоку; галерея фіксована, тож розкид малий. */
#product-detail-loader {
    min-height: 610px;
}

/* Секція вкладок (Опис/Склад/…) теж з'являється після JS. Тримаємо її місце
   зарезервованим: під час завантаження блок присутній у розкладці, але
   невидимий; після появи контент займає приблизно ту саму висоту. */
#product-tabs-section {
    min-height: 620px;
}
#product-tabs-section.hidden {
    display: block !important;
    visibility: hidden !important;
}

@media (max-width: 768px) {
    #product-detail-loader {
        min-height: 980px;
    }
    #product-tabs-section {
        min-height: 900px;
    }
}

/* Product Detail Grid Layout */
.product-detail-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    align-items: flex-start;
}

/* Left Gallery Column */
.product-gallery-col {
    flex: 0 0 45%;
    width: 45%;
}

.product-gallery-wrap {
    position: relative;
    background: #FFF;
    border: 1px solid rgba(209, 184, 139, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.product-gallery-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-gallery-wrap:hover img {
    transform: scale(1.05);
}

/* Right Info Column */
.product-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info-brand {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    color: #8C8C8C;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.product-info-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    color: #050409;
    line-height: 1.3;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.product-info-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.product-info-rating .stars {
    display: flex;
    gap: 2px;
}

.product-info-rating .reviews-count {
    font-family: var(--font-main);
    font-size: 13px;
    color: #666;
}

/* Availability Badge */
.product-info-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 24px;
}

.product-info-status.in-stock {
    background: rgba(23, 178, 106, 0.1);
    color: #17B26A;
}

.product-info-status.out-of-stock {
    background: rgba(224, 169, 109, 0.1);
    color: #E0A96D;
}

/* Price block */
.product-info-price-block {
    background: rgba(253, 198, 103, 0.05);
    border: 1px dashed rgba(209, 184, 139, 0.35);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 30px;
    width: fit-content;
    min-width: 240px;
}

.product-info-old-price {
    font-family: var(--font-main);
    font-size: 15px;
    color: #8C8C8C;
    text-decoration: line-through;
    display: block;
    margin-bottom: 4px;
}

.product-info-price-current {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.product-info-price {
    font-family: var(--font-main);
    font-size: 36px;
    font-weight: 700;
    color: #050409;
}

.product-info-currency {
    font-family: var(--font-main);
    font-size: 18px;
    color: #050409;
    font-weight: 500;
}

/* Volume Options */
.product-info-volume-select {
    margin-bottom: 32px;
}

.product-info-volume-select .volume-title {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    color: #050409;
    display: block;
    margin-bottom: 10px;
}

.volume-options {
    display: flex;
    gap: 12px;
}

.volume-badge {
    padding: 8px 18px;
    border: 1px solid rgba(209, 184, 139, 0.4);
    background: transparent;
    color: #050409;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    cursor: default;
    transition: all 0.3s ease;
}

.volume-badge.active {
    background: #050409;
    color: #FFF;
    border-color: #050409;
}

/* Action Buttons */
.product-info-actions {
    display: flex;
    gap: 16px;
    width: 100%;
}

.btn-add-to-cart {
    flex: 1;
    background: #050409;
    color: #FFF;
    border: 1px solid #050409;
    padding: 16px 24px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.btn-add-to-cart:hover {
    background: #D1B88B;
    border-color: #D1B88B;
}

.btn-quick-order {
    background: transparent;
    color: #050409;
    border: 1.5px solid #D1B88B;
    padding: 16px 30px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-quick-order:hover {
    background: #D1B88B;
    color: #FFF;
}

/* =========================================
   TABS SECTION
   ========================================= */

.product-tabs-section {
    border-top: 1px solid rgba(209, 184, 139, 0.2);
    padding-top: 50px;
    margin-bottom: 80px;
}

.tabs-buttons-bar {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    gap: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: none;
    padding: 14px 0;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    color: #8C8C8C;
    cursor: pointer;
    position: relative;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.tab-btn:hover {
    color: #050409;
}

.tab-btn.active {
    color: #050409;
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #D1B88B;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease forwards;
    max-width: 900px;
    margin: 0 auto;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-rich-text {
    line-height: 1.7;
    font-family: var(--font-main);
    font-size: 15px;
    color: #444;
}

.tab-rich-text p {
    margin-bottom: 14px;
}

.empty-tab-txt {
    font-style: italic;
    color: #999;
}

/* Specs Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.spec-row {
    border-bottom: 1px dotted rgba(209, 184, 139, 0.35);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-key {
    padding: 14px 20px 14px 0;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
    color: #666;
    width: 35%;
}

.spec-value {
    padding: 14px 0 14px 20px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    color: #050409;
}

/* =========================================
   RECOMMENDATIONS SECTION
   ========================================= */

.recommendations-section {
    border-top: 1px solid rgba(209, 184, 139, 0.2);
    padding-top: 60px;
}

.recommendations-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    color: #050409;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.recommendations-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recommendations-cards-container {
    display: flex;
    gap: 24px;
    width: 100%;
    padding: 10px 4px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
}

.recommendations-cards-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.recommendations-cards-container .shop-card {
    scroll-snap-align: start;
    width: 380px; /* Force original width on recommendations */
    margin: 0;
}

.rec-carousel-btn {
    position: absolute;
    width: 44px;
    height: 44px;
    border: none;
    background: #FFF;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #050409;
    font-size: 16px;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.rec-carousel-btn:hover {
    transform: scale(1.1);
    background: #D1B88B;
    color: #FFF;
}

.rec-carousel-btn.left {
    left: -20px;
}

.rec-carousel-btn.right {
    right: -20px;
}

/* =========================================
   RESPONSIVENESS
   ========================================= */

@media (max-width: 992px) {
    .product-detail-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .product-gallery-col {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .product-info-col {
        width: 100%;
    }
    
    .info-banner-new {
        margin-top: 30px !important;
    }
    
    .product-info-title {
        font-size: 26px;
    }
    
    .tabs-buttons-bar {
        gap: 20px;
    }
    
    .rec-carousel-btn {
        display: none; /* Rely on swiping on mobile */
    }
}

@media (max-width: 576px) {
    .product-gallery-wrap {
        padding: 20px;
    }
    
    .product-info-title {
        font-size: 22px;
    }
    
    .product-info-price {
        font-size: 30px;
    }
    
    .product-info-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-add-to-cart, .btn-quick-order {
        width: 100%;
    }
    
    .tab-btn {
        font-size: 12px;
        padding: 10px 0;
    }
    
    .spec-key {
        width: 45%;
        font-size: 14px;
    }
    
    .spec-value {
        font-size: 14px;
    }
    
    .recommendations-title {
        font-size: 24px;
    }
}

/* =========================================
   NEW REDESIGNED STYLES FROM SCREENSHOTS
   ========================================= */

/* Body Overrides for light themed shop detail page */
body.product-details-page {
    background-color: #FAF8F5 !important;
    color: #050409 !important;
}

/* Force dark text for main details content elements (ignores header & footer) */
.product-details-page main,
.product-details-page main p,
.product-details-page main h1,
.product-details-page main h2,
.product-details-page main h3,
.product-details-page main h4,
.product-details-page main td,
.product-details-page main span,
.product-details-page main th,
.product-details-page main table {
    color: #050409 !important;
}

/* Breadcrumbs clearance and override */
.product-details-page .svc-breadcrumb {
    background: transparent !important;
    padding-top: 130px !important; /* Clears fixed header */
    padding-bottom: 12px !important;
    margin-bottom: 10px;
}

.product-details-page .svc-breadcrumb .container {
    padding: 0 20px !important;
    max-width: 1200px;
}

.product-details-page .svc-breadcrumb a,
.product-details-page .svc-breadcrumb span,
.product-details-page .svc-breadcrumb__current {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #8C8C8C !important;
    text-decoration: none !important;
}

.product-details-page .svc-breadcrumb a:hover {
    color: #D1B88B !important;
}

.product-details-page .svc-breadcrumb__sep {
    margin: 0 6px !important;
    color: #CCC !important;
}

/* Wishlist gallery button */
.product-wishlist-btn-gallery {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FFF !important;
    border: none !important;
    border-radius: 50% !important;
    width: 44px !important;
    height: 44px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 5 !important;
    color: #8C8C8C !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
}

.product-wishlist-btn-gallery:hover,
.product-wishlist-btn-gallery.active {
    color: #FF5A5F !important;
    transform: scale(1.05);
}

.product-wishlist-btn-gallery.active i {
    font-weight: 900 !important;
}

/* Align Rating and Status */
.product-info-rating-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.product-info-rating-row .product-info-rating {
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-info-rating-row .product-info-status {
    margin-bottom: 0 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 4px 12px !important;
    background: rgba(23, 178, 106, 0.1) !important;
    color: #17B26A !important;
    border-radius: 30px !important;
    border: none !important;
}

.product-info-rating-row .product-info-status.out-of-stock {
    background: rgba(224, 169, 109, 0.1) !important;
    color: #E0A96D !important;
}

/* Volume row */
.product-info-volume-select {
    margin-bottom: 24px !important;
}

.product-info-volume-select .volume-title {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #050409 !important;
    margin-bottom: 8px !important;
}

.product-info-volume-select .volume-badge.active {
    background: #050409 !important;
    color: #FFF !important;
    border-color: #050409 !important;
}

/* Price and Wishlist row */
.product-price-wishlist-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.product-price-wishlist-row .product-info-price-block {
    margin-bottom: 0 !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    min-width: auto !important;
    display: flex !important;
    align-items: baseline !important;
    gap: 8px !important;
}

.product-price-wishlist-row .product-info-price {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #050409 !important;
}

.product-price-wishlist-row .product-info-currency {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #050409 !important;
}

.product-price-wishlist-row .product-info-old-price {
    font-size: 18px !important;
    color: #8C8C8C !important;
    text-decoration: line-through !important;
    display: inline-block !important;
    margin-left: 8px !important;
}

/* Wishlist details button */
.btn-wishlist-new {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    border: 1.5px solid #FF5A5F !important;
    background: transparent !important;
    color: #FF5A5F !important;
    padding: 10px 20px !important;
    border-radius: 30px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.btn-wishlist-new:hover,
.btn-wishlist-new.active {
    background: #FF5A5F !important;
    color: #FFF !important;
}

.btn-wishlist-new.active i {
    font-weight: 900 !important;
}

/* Add to cart and Quantity row */
.product-info-actions-new {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    max-width: 420px;
}

.btn-add-to-cart-new {
    flex: 1 !important;
    height: 48px !important;
    border: 1.5px solid #17B26A !important;
    background: transparent !important;
    color: #17B26A !important;
    padding: 0 24px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    border-radius: 30px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
}

.btn-add-to-cart-new:hover {
    background: #17B26A !important;
    color: #FFF !important;
}

.quantity-selector-new {
    display: flex !important;
    align-items: center !important;
    border: 1.5px solid rgba(0, 0, 0, 0.15) !important;
    border-radius: 30px !important;
    overflow: hidden !important;
    height: 48px !important;
    width: 120px !important;
    background: #FFF !important;
    justify-content: space-between !important;
}

.quantity-selector-new .qty-btn {
    background: none !important;
    border: none !important;
    width: 35px !important;
    height: 100% !important;
    font-size: 16px !important;
    color: #666 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.3s !important;
}

.quantity-selector-new .qty-btn:hover {
    background: rgba(0, 0, 0, 0.05) !important;
}

.quantity-selector-new .qty-val {
    width: 40px !important;
    text-align: center !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    color: #050409 !important;
    user-select: none !important;
}

/* One-click purchase section */
.one-click-section-new {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    max-width: 420px;
}

.btn-one-click-new {
    background: #17B26A !important;
    color: #FFF !important;
    border: none !important;
    height: 48px !important;
    padding: 0 24px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    border-radius: 30px !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    transition: background 0.3s ease !important;
    white-space: nowrap !important;
    flex: 1.2 !important;
}

.btn-one-click-new:hover {
    background: #128C52 !important;
}

.one-click-phone-wrap {
    display: flex !important;
    align-items: center !important;
    border: 1.5px solid rgba(0, 0, 0, 0.15) !important;
    border-radius: 30px !important;
    padding: 0 16px !important;
    flex: 1 !important;
    height: 48px !important;
    background: #FFF !important;
}

.one-click-phone-wrap i {
    color: #8C8C8C !important;
    margin-right: 8px !important;
}

.one-click-phone-wrap input {
    border: none !important;
    background: none !important;
    outline: none !important;
    width: 100% !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #050409 !important;
}

/* Info Banner */
.info-banner-new {
    border: 1px solid rgba(209, 184, 139, 0.3) !important;
    background: #FAF8F5 !important;
    border-radius: 16px !important;
    padding: 24px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    max-width: 600px !important;
    margin: 40px auto !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
}

.info-banner-new p, 
.info-banner-new span,
.info-banner-new strong {
    color: #444 !important;
}

.info-banner-header {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-weight: 700 !important;
    margin-bottom: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.info-banner-header span {
    color: #050409 !important;
}

.info-banner-header i {
    font-size: 18px !important;
    color: #D1B88B !important;
}

.info-banner-content p {
    margin-bottom: 12px !important;
}

.info-banner-content p:last-child {
    margin-bottom: 0 !important;
}

.info-banner-content .free-shipping {
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #050409 !important;
}

.info-banner-content .min-order {
    color: #666 !important;
}

/* Centered Tabs main heading */
.tabs-main-heading-new {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-align: center !important;
    color: #050409 !important;
    margin-bottom: 35px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 0 20px !important;
}

/* Premium Tabs buttons */
.tabs-buttons-bar {
    display: flex !important;
    justify-content: center !important;
    gap: 16px !important;
    margin-bottom: 40px !important;
    border-bottom: none !important;
}

.product-tabs-section .tab-btn {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    background: #FAF8F5 !important;
    color: #3E3B54 !important;
    border-radius: 5px !important;
    padding: 14px 32px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: 'Montserrat', sans-serif !important;
    text-transform: uppercase !important;
    min-width: 220px !important;
    text-align: center !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02) !important;
}

.product-tabs-section .tab-btn:hover {
    color: #D1B88B !important;
    border-color: #D1B88B !important;
    background: #FFF !important;
}

.product-tabs-section .tab-btn.active {
    background: #3E3B54 !important;
    color: #D1B88B !important;
    border-color: #3E3B54 !important;
    box-shadow: 0 4px 10px rgba(62, 59, 84, 0.25) !important;
    font-weight: 600 !important;
}

.product-tabs-section .tab-btn.active::after {
    display: none !important; /* Hide bottom line */
}

@media (max-width: 992px) {
    .product-tabs-section .tab-btn {
        min-width: 170px !important;
        padding: 12px 20px !important;
        font-size: 13px !important;
    }
    .tabs-buttons-bar {
        gap: 12px !important;
    }
}

@media (max-width: 768px) {
    .product-tabs-section .tab-btn {
        min-width: calc(50% - 8px) !important;
        padding: 10px 10px !important;
        font-size: 12px !important;
    }
    .tabs-buttons-bar {
        gap: 8px !important;
        justify-content: center !important;
    }
}

/* Tab Rich Text styles */
.tab-rich-text,
.tab-rich-text p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: #444 !important;
}

.tab-rich-text h3 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #050409 !important;
    margin-top: 24px !important;
    margin-bottom: 12px !important;
}

.tab-rich-text p {
    margin-bottom: 14px !important;
}

.tab-rich-text ul {
    margin-bottom: 14px !important;
    padding-left: 20px !important;
}

.tab-rich-text li {
    list-style-type: disc !important;
    margin-bottom: 6px !important;
    color: #444 !important;
}

/* Specs Table */
.specs-table {
    border-collapse: collapse !important;
}

.spec-key {
    color: #666 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
}

.spec-value {
    color: #050409 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
}

.benefits-section-new {
    background: #1C1A29 !important;
    padding: 60px 0 !important;
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

.product-details-page main .benefits-title-new {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    color: #D1B88B !important;
    text-align: center !important;
    letter-spacing: 1px !important;
    margin-bottom: 20px !important;
}

.gold-dots-divider {
    width: 100% !important;
    max-width: 400px !important;
    height: 4px !important;
    background-image: radial-gradient(circle, #D1B88B 2px, transparent 3px) !important;
    background-size: 16px 100% !important;
    background-repeat: repeat-x !important;
    margin: 0 auto 40px auto !important;
}

.benefits-grid-new {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 24px 48px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.benefit-item-new {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
    gap: 12px !important;
    min-width: auto !important;
    max-width: none !important;
}

.benefit-item-new i.benefit-icon-fallback {
    font-size: 20px !important;
    color: #D1B88B !important;
    margin-bottom: 0 !important;
    width: 24px !important;
    height: 24px !important;
    display: inline-flex;
    align-items: center !important;
    justify-content: center !important;
}

.benefit-item-new .benefit-icon-img {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
    display: inline-block !important;
}

.product-details-page main .benefit-item-new span {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    color: #FFF !important;
}

/* Recommendations counter */
.recommendations-header-row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    margin-bottom: 10px !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.recommendations-header-row .recommendations-title {
    margin-bottom: 0 !important;
}

.recommendations-counter {
    position: absolute !important;
    right: 20px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #8C8C8C !important;
    letter-spacing: 1px !important;
}

/* CTA Block below recommendations */
.bottom-cta-wrap {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin-top: 50px !important;
    padding-bottom: 20px !important;
}

.bottom-cta-text {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #050409 !important;
    margin-bottom: 24px !important;
    letter-spacing: 0.3px !important;
}

.btn-cta-gold {
    display: inline-block !important;
    background: linear-gradient(135deg, #E0A96D 0%, #D1B88B 100%) !important;
    color: #050409 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 14px 36px !important;
    border-radius: 30px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(209, 184, 139, 0.35) !important;
    transition: all 0.3s ease !important;
}

.btn-cta-gold:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(209, 184, 139, 0.5) !important;
}

/* --- Галерея товару: мініатюри + підказка про збільшення --- */

.product-gallery-wrap {
    cursor: zoom-in;
}

.product-gallery-zoom-hint {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(209, 184, 139, 0.4);
    color: var(--accent-gold, #D1B88B);
    font-size: 15px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.product-gallery-wrap:hover .product-gallery-zoom-hint {
    opacity: 1;
}

.product-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.product-thumbs:empty {
    display: none;
}

.product-thumb {
    flex: 0 0 auto;
    width: 84px;
    height: 84px;
    padding: 8px;
    background: #FFF;
    border: 1px solid rgba(209, 184, 139, 0.25);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-thumb:hover {
    border-color: rgba(209, 184, 139, 0.7);
}

.product-thumb.active {
    border-color: var(--accent-gold, #D1B88B);
    box-shadow: 0 4px 14px rgba(209, 184, 139, 0.28);
}

.product-thumb:focus-visible {
    outline: 2px solid var(--accent-gold, #D1B88B);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .product-thumbs {
        justify-content: center;
        gap: 10px;
    }

    .product-thumb {
        width: 68px;
        height: 68px;
        padding: 6px;
    }

    /* На тач-екрані немає ховера — показуємо підказку одразу. */
    .product-gallery-zoom-hint {
        opacity: 1;
    }
}
