/* ============================================
   Product Details Page Container
   ============================================ */
   .product-details-container {
    margin-bottom: 40px;
    min-height: auto !important;
}

/* Status Badges */
.badge-product-status {
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    display: inline-block;
}

.badge-product-status.badge-warning {
    background: #fff3cd;
    color: #856404;
}

.badge-product-status.badge-danger {
    background: #f8d7da;
    color: #721c24;
}

/* ============================================
   Breadcrumb - Product Page
   ============================================ */
   #wrapper > .container > .row > .col-12 > .nav-breadcrumb,
   #wrapper > .container > .row > .col-12 > .apple-breadcrumb {
    padding: 15px 0;
}

#wrapper .breadcrumb-products {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 13px;
    height: auto !important;
    line-height: 1.5;
}

#wrapper .breadcrumb-products .breadcrumb-item a {
    color: var(--apple-link, #06c);
    text-decoration: none;
    text-transform: none;
}

#wrapper .breadcrumb-products .breadcrumb-item a:hover {
    text-decoration: underline;
}

#wrapper .breadcrumb-products .breadcrumb-item.active {
    color: var(--apple-charcoal, #424245);
}

/* ============================================
   Product Image Gallery - Mobile First
   ============================================ */
   .product-slider-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
    margin-bottom: 20px;
}

.product-slider-container .left {
    width: 100%;
    display: block;
    float: none;
}

.product-slider-container .right {
    width: 100%;
    display: block;
    float: none;
}

.product-slider-content {
    position: relative;
    background: var(--apple-light-gray, #f5f5f7);
    border-radius: 16px;
    overflow: hidden;
}

.product-slider .item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--apple-light-gray, #f5f5f7);
    min-height: 300px;
}

.product-slider .item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product-slider .img-product-slider {
    max-height: 400px;
    width: auto !important;
    max-width: 100%;
    padding: 20px;
}

.product-slider .img-bg {
    display: none !important;
}

/* Thumbnails */
.product-thumbnails-slider {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.product-thumbnails-slider::-webkit-scrollbar {
    display: none;
}

.product-thumbnails-slider .item {
    flex: 0 0 70px;
    scroll-snap-align: start;
}

.product-thumbnails-slider .item .item-inner {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--apple-white, #fff);
}

.product-thumbnails-slider .item.slick-current .item-inner,
.product-thumbnails-slider .item:hover .item-inner {
    border-color: var(--apple-black, #1d1d1f);
}

.product-thumbnails-slider .item .img-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none !important;
    border-radius: 8px;
    padding: 5px;
    background: var(--apple-light-gray, #f5f5f7);
}

/* Slider Navigation */
.product-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
    z-index: 10;
}

.product-slider-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--apple-black, #1d1d1f);
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-slider-nav button:hover {
    background: var(--apple-white, #fff);
    transform: scale(1.05);
}

.product-thumbnails-slider-nav {
    display: none;
}

/* Slick Dots Styling */
.product-slider .slick-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex !important;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.product-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}

.product-slider .slick-dots li button {
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-slider .slick-dots li button::before {
    display: none;
}

.product-slider .slick-dots li.slick-active button {
    background: var(--apple-black, #1d1d1f);
    width: 24px;
    border-radius: 4px;
}

/* Video/Audio Preview Buttons */
.btn-video-preview {
    background: var(--apple-black, #1d1d1f) !important;
    color: var(--apple-white, #fff) !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 12px 24px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin: 15px 5px 0 !important;
    transition: all 0.2s ease !important;
}

.btn-video-preview:hover {
    background: var(--apple-charcoal, #424245) !important;
    transform: translateY(-2px);
}

.btn-video-preview i {
    margin-right: 8px;
}

/* ============================================
   Product Content Details - Mobile First
   ============================================ */
   .product-content-details {
    padding: 0;
}

.product-content-details .product-title {
    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    color: var(--apple-black, #1d1d1f) !important;
    margin: 0 0 12px 0 !important;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
    letter-spacing: -0.02em;
}

.product-content-details .product-short-description {
    font-size: 15px;
    color: var(--apple-dark-gray, #86868b);
    line-height: 1.5;
    margin-bottom: 16px;
}

/* Meta Info (Reviews, Views, Wishlist) */
.product-content-details .meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--apple-medium-gray, #e8e8ed);
}

.product-content-details .meta span {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: var(--apple-dark-gray, #86868b);
    float: none;
    margin: 0;
}

.product-content-details .meta span i {
    margin-right: 6px;
    font-size: 14px;
}

.product-content-details .product-details-review {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
}

.product-content-details .product-details-review .rating {
    float: none;
    height: auto;
    line-height: 1;
}

.product-content-details .product-details-review .rating i {
    font-size: 14px !important;
}

/* Price Section */
.product-content-details .price {
    margin-bottom: 24px;
    min-height: auto;
}

#product_details_price_container {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;
}

.product-content-details .price .lbl-price {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: var(--apple-black, #1d1d1f) !important;
    line-height: 1 !important;
    float: none;
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
}

.product-content-details .price .discount-original-price {
    font-size: 18px !important;
    color: var(--apple-dark-gray, #86868b) !important;
    text-decoration: line-through;
    font-weight: 400 !important;
}

.product-content-details .price .discount-rate {
    background: var(--apple-red, #ff3b30) !important;
    padding: 5px 10px !important;
    border-radius: 6px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    float: none !important;
}

.product-content-details .lbl-sold {
    color: var(--apple-red, #ff3b30) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.product-content-details .lbl-free {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: var(--apple-success, #34c759) !important;
}

/* Product Details List */
.product-content-details .details {
    background: var(--apple-snow, #fbfbfd);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

.product-content-details .details .item-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--apple-medium-gray, #e8e8ed);
    margin: 0;
    float: none;
}

.product-content-details .details .item-details:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.product-content-details .details .item-details:first-child {
    padding-top: 0;
}

.product-content-details .details .item-details .left {
    display: block;
    width: auto;
}

.product-content-details .details .item-details .left label {
    font-size: 13px;
    color: var(--apple-dark-gray, #86868b);
    font-weight: 500;
    margin: 0;
    min-width: auto;
    float: none;
}

.product-content-details .details .item-details .right {
    display: block;
    text-align: right;
}

.product-content-details .details .item-details .right span {
    font-size: 14px;
    color: var(--apple-black, #1d1d1f);
    font-weight: 500;
    float: none;
}

.status-in-stock.text-success {
    color: var(--apple-success, #34c759) !important;
    font-weight: 600;
}

.status-in-stock.text-danger {
    color: var(--apple-red, #ff3b30) !important;
    font-weight: 600;
}

/* ============================================
   Product Variations
   ============================================ */
   .product-variations {
    margin-bottom: 20px;
}

.row-product-variation {
    gap: 0;
}

.variation-option-container,
.col-product-variation {
    margin-bottom: 20px;
}

.variation-option-container .lbl-variation,
.label-product-variation {
    font-size: 14px;
    font-weight: 600;
    color: var(--apple-black, #1d1d1f);
    margin-bottom: 10px;
    display: block;
}

/* Radio Button Variations */
.custom-control-variation {
    display: inline-flex;
    padding: 0;
    margin-right: 8px;
    margin-bottom: 8px;
}

.custom-control-variation .custom-control-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.custom-control-variation .custom-control-label {
    position: relative;
    padding: 10px 16px;
    border: 2px solid var(--apple-gray, #d2d2d7);
    border-radius: 10px;
    background: var(--apple-white, #fff);
    color: var(--apple-black, #1d1d1f);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 50px;
    text-align: center;
}

.custom-control-variation .custom-control-label::before,
.custom-control-variation .custom-control-label::after {
    display: none;
}

.custom-control-variation .custom-control-label:hover {
    border-color: var(--apple-dark-gray, #86868b);
}

.custom-control-variation .custom-control-input:checked + .custom-control-label {
    border-color: var(--apple-black, #1d1d1f);
    background: var(--apple-black, #1d1d1f);
    color: var(--apple-white, #fff);
}

/* Image Variations */
.custom-control-variation .custom-control-label-image {
    padding: 5px;
    border-radius: 12px;
}

.custom-control-variation .custom-control-label-image .img-cnt {
    display: block;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 8px;
}

.custom-control-variation .custom-control-label-image .img-variation-option {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Color Variations */
.custom-control-variation .label-variation-color {
    padding: 4px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-control-variation .label-variation-color .variation-color-box {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.custom-control-variation .custom-control-input:checked + .label-variation-color {
    background: transparent;
    box-shadow: 0 0 0 2px var(--apple-white, #fff), 0 0 0 4px var(--apple-black, #1d1d1f);
}

/* Out of Stock Option */
.custom-control-variation .option-out-of-stock {
    opacity: 0.5;
    cursor: not-allowed;
    position: relative;
}

.custom-control-variation .option-out-of-stock::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 5px;
    right: 5px;
    height: 2px;
    background: var(--apple-dark-gray, #86868b);
    transform: rotate(-45deg);
}

.variation-option-container .variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.variation-option-container .variation-options .btn-variation {
    min-width: 50px;
    padding: 10px 16px;
    border: 2px solid var(--apple-gray, #d2d2d7);
    border-radius: 10px;
    background: var(--apple-white, #fff);
    color: var(--apple-black, #1d1d1f);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.variation-option-container .variation-options .btn-variation:hover {
    border-color: var(--apple-dark-gray, #86868b);
}

.variation-option-container .variation-options .btn-variation.active,
.variation-option-container .variation-options .btn-variation.btn-variation-selected {
    border-color: var(--apple-black, #1d1d1f);
    background: var(--apple-black, #1d1d1f);
    color: var(--apple-white, #fff);
}

/* Color Variations */
.variation-options .color-option {
    width: 36px;
    height: 36px;
    min-width: 36px;
    padding: 0;
    border-radius: 50%;
    border-width: 3px;
}

.variation-options .color-option.active,
.variation-options .color-option.btn-variation-selected {
    box-shadow: 0 0 0 2px var(--apple-white, #fff), 0 0 0 4px var(--apple-black, #1d1d1f);
}

/* Variation Dropdown Select */
.variation-option-container .select2-container {
    width: 100% !important;
}

.variation-option-container .select2-container--default .select2-selection--single {
    height: 48px;
    border: 2px solid var(--apple-gray, #d2d2d7);
    border-radius: 12px;
    background: var(--apple-white, #fff);
    padding: 10px 16px;
    transition: all 0.2s ease;
}

.variation-option-container .select2-container--default .select2-selection--single:hover {
    border-color: var(--apple-dark-gray, #86868b);
}

.variation-option-container .select2-container--default .select2-selection--single:focus {
    border-color: var(--apple-black, #1d1d1f);
    outline: none;
}

.variation-option-container .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 26px;
    padding-left: 0;
    color: var(--apple-black, #1d1d1f);
    font-size: 14px;
}

.variation-option-container .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
    right: 12px;
}

.select2-dropdown {
    border: 1px solid var(--apple-gray, #d2d2d7);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.select2-results__option {
    padding: 12px 16px;
    font-size: 14px;
    transition: background 0.15s ease;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: var(--apple-light-gray, #f5f5f7);
    color: var(--apple-black, #1d1d1f);
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background: var(--apple-black, #1d1d1f);
    color: var(--apple-white, #fff);
}

/* Variation Dropdown Form Group */
.col-product-variation .form-group {
    margin-bottom: 0;
}

.col-product-variation .form-group .control-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--apple-black, #1d1d1f);
    margin-bottom: 10px;
    display: block;
}

.col-product-variation .form-group .custom-select,
.col-product-variation .form-group .form-control {
    height: 48px;
    border: 2px solid var(--apple-gray, #d2d2d7);
    border-radius: 12px;
    background: var(--apple-white, #fff);
    padding: 10px 40px 10px 16px;
    font-size: 14px;
    color: var(--apple-black, #1d1d1f);
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231d1d1f' d='M6 8.825L1.175 4 2.238 2.938 6 6.7l3.763-3.762L10.825 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.col-product-variation .form-group .custom-select:hover,
.col-product-variation .form-group .form-control:hover {
    border-color: var(--apple-dark-gray, #86868b);
}

.col-product-variation .form-group .custom-select:focus,
.col-product-variation .form-group .form-control:focus {
    border-color: var(--apple-black, #1d1d1f);
    box-shadow: none;
    outline: none;
}

/* ============================================
   Quantity Selector & Add to Cart
   ============================================ */
   .product-add-to-cart-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.number-spinner {
    width: auto !important;
    flex-shrink: 0;
    margin: 0 !important;
}

.number-spinner .input-group {
    border: 2px solid var(--apple-gray, #d2d2d7);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.number-spinner .btn-default {
    background: var(--apple-light-gray, #f5f5f7);
    border: none;
    color: var(--apple-black, #1d1d1f);
    font-size: 18px;
    font-weight: 600;
    width: 44px;
    height: 44px;
    padding: 0;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-spinner .btn-default:hover {
    background: var(--apple-medium-gray, #e8e8ed);
}

.number-spinner .form-control {
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--apple-black, #1d1d1f);
    height: 44px;
    width: 50px;
    padding: 0 5px;
}

.number-spinner .form-control:focus {
    box-shadow: none;
}

/* Button Container */
.product-add-to-cart-container .button-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
    margin: 0;
    float: none;
}

/* Add to Cart Button */
.btn-product-cart,
.btn-add-cart {
    flex: 1;
    min-width: 160px;
    padding: 14px 20px !important;
    background: var(--apple-black, #1d1d1f) !important;
    color: var(--apple-white, #fff) !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    height: 48px;
}

.btn-product-cart:hover,
.btn-add-cart:hover {
    background: var(--apple-charcoal, #424245) !important;
    transform: translateY(-2px);
}

.btn-product-cart:disabled {
    background: var(--apple-gray, #d2d2d7) !important;
    cursor: not-allowed;
    transform: none !important;
}

/* WhatsApp Button */
.btn-whatsapp {
    flex: 0 0 auto;
    padding: 14px 20px !important;
    background: #25D366 !important;
    color: var(--apple-white, #fff) !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
    white-space: nowrap;
    height: 48px;
}

.btn-whatsapp:hover {
    background: #128C7E !important;
    color: var(--apple-white, #fff) !important;
}

.btn-whatsapp i {
    font-size: 18px;
}

/* Live Preview Button */
.btn-live-preview {
    width: 100%;
    padding: 14px 24px !important;
    background: transparent !important;
    color: var(--apple-black, #1d1d1f) !important;
    border: 2px solid var(--apple-black, #1d1d1f) !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
}

.btn-live-preview:hover {
    background: var(--apple-black, #1d1d1f) !important;
    color: var(--apple-white, #fff) !important;
}

/* Instant Download */
.label-instant-download,
.btn-instant-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--apple-success, #34c759);
    color: var(--apple-white, #fff) !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    border: none;
    text-decoration: none;
}

.btn-instant-download:hover {
    background: #2da44e;
    color: var(--apple-white, #fff);
}

/* Already Purchased */
.product-already-purchased {
    background: rgba(52, 199, 89, 0.1);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

/* ============================================
   Product Share
   ============================================ */
   .product-share,
   .product-share-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--apple-medium-gray, #e8e8ed);
    margin-top: 20px;
}

.product-share label,
.product-share-container span {
    font-size: 13px;
    color: var(--apple-dark-gray, #86868b);
    font-weight: 500;
    margin: 0;
}

.product-share ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-share ul li a,
.product-share-container a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--apple-light-gray, #f5f5f7);
    border-radius: 50%;
    color: var(--apple-charcoal, #424245);
    transition: all 0.2s ease;
    text-decoration: none;
}

.product-share ul li a:hover,
.product-share-container a:hover {
    background: var(--apple-black, #1d1d1f);
    color: var(--apple-white, #fff);
}

.product-share ul li a i {
    font-size: 14px;
}

/* ============================================
   Product Description Tabs
   ============================================ */
   .product-description {
    margin-top: 40px;
}

.nav-tabs-horizontal {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    border-bottom: 1px solid var(--apple-medium-gray, #e8e8ed);
    gap: 0;
    padding-bottom: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.nav-tabs-horizontal::-webkit-scrollbar {
    display: none;
}

.nav-tabs-horizontal .nav-item {
    flex-shrink: 0;
}

.nav-tabs-horizontal .nav-link {
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--apple-dark-gray, #86868b);
    border: none;
    border-bottom: 3px solid transparent;
    background: transparent;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.nav-tabs-horizontal .nav-link:hover {
    color: var(--apple-black, #1d1d1f);
}

.nav-tabs-horizontal .nav-link.active {
    color: var(--apple-black, #1d1d1f);
    border-bottom-color: var(--apple-black, #1d1d1f);
    background: transparent;
}

/* Tab Content */
.product-description .tab-content {
    padding-top: 24px;
}

.product-description .tab-pane .card {
    border: none;
    box-shadow: none;
    background: transparent;
}

.product-description .tab-pane .card-header {
    display: none;
}

.product-description .collapse-description-content {
    display: block !important;
    height: auto !important;
}

.product-description .description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--apple-charcoal, #424245);
}

.product-description .description p {
    margin-bottom: 16px;
}

.product-description .description img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 16px 0;
}

/* Additional Information Table */
.table-product-additional-information,
.table-product-shipping {
    margin: 0;
}

.table-product-additional-information tbody tr,
.table-product-shipping tbody tr {
    border-bottom: 1px solid var(--apple-medium-gray, #e8e8ed);
}

.table-product-additional-information tbody tr:last-child,
.table-product-shipping tbody tr:last-child {
    border-bottom: none;
}

.table-product-additional-information td,
.table-product-shipping td {
    padding: 14px 0;
    border: none;
    vertical-align: top;
}

.table-product-additional-information .td-left,
.table-product-shipping .td-left {
    font-size: 14px;
    font-weight: 500;
    color: var(--apple-dark-gray, #86868b);
    width: 40%;
}

.table-product-additional-information .td-right,
.table-product-shipping .td-right {
    font-size: 14px;
    color: var(--apple-black, #1d1d1f);
}

/* Report Link */
.link-abuse-report {
    font-size: 13px;
    color: var(--apple-dark-gray, #86868b) !important;
    text-decoration: none;
}

.link-abuse-report:hover {
    color: var(--apple-red, #ff3b30) !important;
}

/* ============================================
   Reviews Section
   ============================================ */
   .review-total {
    text-align: center;
    padding: 30px;
    background: var(--apple-snow, #fbfbfd);
    border-radius: 16px;
    margin-bottom: 30px;
}

.review-total .label-total {
    font-size: 48px;
    font-weight: 700;
    color: var(--apple-black, #1d1d1f);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.review-total .rating {
    margin-bottom: 10px;
}

.review-total .total-reviews {
    font-size: 14px;
    color: var(--apple-dark-gray, #86868b);
}

/* Review Item */
.review-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--apple-medium-gray, #e8e8ed);
}

.review-item:last-child {
    border-bottom: none;
}

.review-item .user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-right: 12px;
}

.review-item .username {
    font-weight: 600;
    color: var(--apple-black, #1d1d1f);
    font-size: 14px;
}

.review-item .review-date {
    font-size: 12px;
    color: var(--apple-dark-gray, #86868b);
}

.review-item .review-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--apple-charcoal, #424245);
    margin-top: 10px;
}

/* Review Form */
.review-form-container {
    background: var(--apple-snow, #fbfbfd);
    border-radius: 16px;
    padding: 24px;
    margin-top: 30px;
}

.review-form-container .form-control {
    border: 1px solid var(--apple-gray, #d2d2d7);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
}

.review-form-container .form-control:focus {
    border-color: var(--apple-link, #06c);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* ============================================
   Related Products
   ============================================ */
   .section-related-products {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--apple-medium-gray, #e8e8ed);
}

.section-related-products .title {
    font-size: 22px;
    font-weight: 600;
    color: var(--apple-black, #1d1d1f);
    margin-bottom: 24px;
}

.section-related-products .title a {
    color: var(--apple-link, #06c);
}

.link-see-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--apple-link, #06c);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-top: 20px;
}

.link-see-more:hover {
    text-decoration: underline;
}

/* ============================================
   Mobile Accordion (Hidden on Desktop)
   ============================================ */
   @media (min-width: 768px) {
    .product-description .tab-pane .card-header {
        display: none !important;
    }
    
    .product-description .collapse-description-content {
        display: block !important;
        height: auto !important;
    }
}

/* ============================================
   Tablet Styles
   ============================================ */
   @media (min-width: 768px) {
    .product-slider-container {
        flex-direction: row;
        gap: 20px;
    }
    
    .product-slider-container .left {
        width: 80px;
        order: -1;
    }
    
    .product-slider-container .right {
        flex: 1;
    }
    
    .product-thumbnails-slider {
        flex-direction: column;
        overflow-y: auto;
        overflow-x: hidden;
        max-height: 450px;
        scroll-snap-type: y mandatory;
    }
    
    .product-slider .item {
        min-height: 400px;
    }
    
    .product-slider .img-product-slider {
        max-height: 500px;
    }
    
    /* Tablet: keep horizontal layout */
    .product-add-to-cart-container {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .product-add-to-cart-container .number-spinner {
        width: auto !important;
    }
    
    .product-add-to-cart-container .button-container {
        flex-direction: row;
        flex: 1;
        flex-wrap: wrap;
    }
    
    .btn-product-cart,
    .btn-add-cart {
        width: auto !important;
        min-width: 180px;
        flex: 1;
    }
    
    .btn-whatsapp {
        width: auto !important;
        flex: 0 0 auto;
    }
}

/* ============================================
   Desktop Styles
   ============================================ */
   @media (min-width: 992px) {
    .product-content-details .product-title {
        font-size: 32px !important;
    }
    
    .product-slider .item {
        min-height: 500px;
    }
    
    .product-slider .img-product-slider {
        max-height: 600px;
        padding: 0;
    }
    
    .product-slider-container .left {
        width: 100px;
    }
    
    .product-thumbnails-slider .item {
        flex: 0 0 90px;
    }
    
    .product-thumbnails-slider .item .item-inner {
        width: 90px;
        height: 90px;
    }
}

/* ============================================
   Large Desktop Styles
   ============================================ */
   @media (min-width: 1200px) {
    .product-content-details .product-title {
        font-size: 36px !important;
    }
    
    .product-content-details .price .lbl-price {
        font-size: 32px !important;
    }
}

/* ============================================
   Comments Section
   ============================================ */
   .comments-container {
    padding: 20px 0;
}

.comment-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--apple-medium-gray, #e8e8ed);
}

.comment-item:last-child {
    border-bottom: none;
}

.col-comments-inner {
    background: var(--apple-snow, #fbfbfd);
    border-radius: 16px;
    padding: 24px;
}

.label-comment {
    font-size: 16px;
    font-weight: 600;
    color: var(--apple-black, #1d1d1f);
    margin-bottom: 16px;
}

#form_add_comment .form-control {
    border: 1px solid var(--apple-gray, #d2d2d7);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
}

#form_add_comment .form-control:focus {
    border-color: var(--apple-link, #06c);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

#form_add_comment .btn-custom {
    background: var(--apple-black, #1d1d1f);
    color: var(--apple-white, #fff);
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 600;
}

/* ============================================
   Video Preview Modal
   ============================================ */
   .modal-product-video .modal-content {
    background: var(--apple-black, #1d1d1f);
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.modal-product-video .close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 1;
    color: #fff;
}

.product-video-preview {
    border-radius: 16px;
    overflow: hidden;
}

.product-video-preview video {
    width: 100%;
    display: block;
}

/* ============================================
   Wishlist Button on Product Page
   ============================================ */
   .btn-wishlist-product {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--apple-light-gray, #f5f5f7);
    border: none;
    border-radius: 50%;
    color: var(--apple-charcoal, #424245);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-wishlist-product:hover {
    background: var(--apple-medium-gray, #e8e8ed);
}

.btn-wishlist-product.active {
    color: var(--apple-red, #ff3b30);
}

/* ============================================
   Mobile Sticky Add to Cart Bar
   ============================================ */
   .mobile-sticky-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-sticky-cart.visible {
    display: flex;
}

.mobile-sticky-cart .price-container {
    flex: 1;
    min-width: 0;
}

.mobile-sticky-cart .sticky-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--apple-black, #1d1d1f);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-sticky-cart .sticky-original-price {
    font-size: 13px;
    color: var(--apple-dark-gray, #86868b);
    text-decoration: line-through;
}

.mobile-sticky-cart .btn-sticky-cart {
    flex-shrink: 0;
    padding: 12px 24px;
    background: var(--apple-black, #1d1d1f);
    color: var(--apple-white, #fff);
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.mobile-sticky-cart .btn-sticky-cart:active {
    transform: scale(0.95);
}

/* Move scroll-to-top button when sticky cart is visible */
.mobile-sticky-cart.visible ~ .scrollup,
body:has(.mobile-sticky-cart.visible) .scrollup {
    bottom: 85px !important;
    transition: bottom 0.3s ease;
}

/* Add padding to bottom of page for sticky bar */
body:has(.mobile-sticky-cart.visible) #wrapper {
    padding-bottom: 80px;
}

/* ============================================
   Mobile Optimizations
   ============================================ */
   @media (max-width: 767px) {
    /* Product image swipe indicator */
    .product-slider-container::after {
        content: '';
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 4px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 2px;
        display: none; /* Show only when more than 1 image */
    }
    
    .product-slider-container.has-multiple-images::after {
        display: block;
    }
    
    /* Image indicator dots */
    .product-slider .slick-dots {
        bottom: 15px;
        display: flex !important;
        justify-content: center;
        gap: 8px;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    
    .product-slider .slick-dots li {
        width: 8px;
        height: 8px;
        margin: 0;
    }
    
    .product-slider .slick-dots li button {
        width: 8px;
        height: 8px;
        padding: 0;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.3);
        border: none;
    }
    
    .product-slider .slick-dots li button::before {
        display: none;
    }
    
    .product-slider .slick-dots li.slick-active button {
        background: var(--apple-black, #1d1d1f);
    }
    
    /* Hide nav arrows on mobile, use swipe */
    .product-slider-nav {
        /* display: none; */
    }
    
    /* Compact meta on mobile */
    .product-content-details .meta {
        gap: 10px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    
    .product-content-details .meta span {
        font-size: 12px;
    }
    
    /* Price adjustment */
    .product-content-details .price .lbl-price {
        font-size: 24px !important;
    }
    
    /* Compact details section */
    .product-content-details .details {
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .product-content-details .details .item-details {
        padding: 8px 0;
    }
    
    /* Mobile button layout */
    .product-add-to-cart-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .product-add-to-cart-container .number-spinner {
        width: 100% !important;
        max-width: none;
    }
    
    .product-add-to-cart-container .number-spinner .input-group {
        justify-content: center;
    }
    
    .product-add-to-cart-container .number-spinner .form-control {
        flex: 1;
        max-width: 80px;
    }
    
    .product-add-to-cart-container .button-container {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-product-cart,
    .btn-add-cart {
        width: 100% !important;
        min-width: unset !important;
        flex: unset !important;
    }
    
    .btn-whatsapp {
        width: 100% !important;
        flex: unset !important;
    }
    
    .btn-live-preview {
        width: 100% !important;
    }
    
    /* Tab improvements for mobile */
    .nav-tabs-horizontal {
        margin: 0 -15px;
        padding: 0 15px;
    }
    
    .nav-tabs-horizontal .nav-link {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    /* Accordion style for mobile */
    .product-description .tab-pane .card-header {
        display: block !important;
        background: var(--apple-light-gray, #f5f5f7);
        padding: 16px;
        margin: -1px;
        border-radius: 12px;
        margin-bottom: 8px;
    }
    
    .product-description .tab-pane .card-header a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--apple-black, #1d1d1f);
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
    }
    
    .product-description .tab-pane .card-header a i {
        font-size: 12px;
    }
    
    .product-description .tab-pane .card-header a i.icon-arrow-up {
        display: none;
    }
    
    .product-description .tab-pane .card-header a[aria-expanded="true"] i.icon-arrow-down {
        display: none;
    }
    
    .product-description .tab-pane .card-header a[aria-expanded="true"] i.icon-arrow-up {
        display: inline;
    }
    
    .product-description .collapse-description-content {
        display: none !important;
    }
    
    .product-description .collapse-description-content.show {
        display: block !important;
        padding: 16px 0;
    }
    
    /* Related products mobile */
    .section-related-products {
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .section-related-products .title {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    /* Comments mobile optimization */
    .comments-container .row {
        flex-direction: column-reverse;
    }
    
    .col-comments-inner {
        margin-bottom: 20px;
    }
}

/* ============================================
   Touch-friendly interactions
   ============================================ */
   @media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .product-thumbnails-slider .item .item-inner {
        min-height: 70px;
    }
    
    .variation-option-container .variation-options .btn-variation {
        min-height: 48px;
        min-width: 48px;
    }
    
    .number-spinner .btn-default {
        min-width: 48px;
        min-height: 48px;
    }
    
    /* Remove hover effects */
    .btn-product-cart:hover,
    .btn-add-cart:hover,
    .btn-whatsapp:hover {
        transform: none;
    }
}

/* ============================================
   Image Zoom on Desktop
   ============================================ */
   @media (min-width: 992px) {
    .product-slider .item a {
        cursor: zoom-in;
    }
    
    .product-slider-content {
        position: relative;
        overflow: hidden;
    }
    
    .product-slider .img-product-slider {
        transition: transform 0.3s ease;
    }
}

/* ============================================
   Print Styles
   ============================================ */
   @media print {
    .mobile-sticky-cart,
    .product-slider-nav,
    .product-thumbnails-slider-nav,
    .btn-video-preview,
    .btn-whatsapp,
    .product-share-container,
    .nav-tabs-horizontal,
    .section-related-products {
        display: none !important;
    }
    
    .product-content-details .product-title {
        font-size: 24px !important;
    }
}

/* ============================================
   Product Badges - Apple Minimal Style
   ============================================ */
   .product-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.product-badge svg {
    flex-shrink: 0;
}

/* Video Badge */
.badge-video {
    background: #5856d6;
    color: #fff;
}

/* Fast Shipping Badge */
.badge-fast-shipping {
    background: #34c759;
    color: #fff;
}

/* Lowest Price Badge */
.badge-lowest-price {
    background: #ff3b30;
    color: #fff;
}

/* ============================================
   Sales Count in Meta
   ============================================ */
   .meta-sales {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #86868b;
    font-weight: 500;
}

.meta-sales svg {
    fill: currentColor;
}

/* ============================================
   Delivery Info Box - Apple Style
   ============================================ */
   .delivery-info-box {
    background: #f5f5f7;
    border: 1px solid #e8e8ed;
    border-radius: 12px;
    padding: 16px;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.delivery-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.delivery-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #1d1d1f;
    border-radius: 10px;
    flex-shrink: 0;
}

.delivery-icon svg {
    stroke: #fff;
}

.delivery-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.delivery-label {
    font-size: 12px;
    color: #86868b;
    font-weight: 500;
}

.delivery-value {
    font-size: 14px;
    color: #1d1d1f;
    font-weight: 600;
}

.delivery-value.highlight {
    color: #1d1d1f;
    font-size: 15px;
    font-weight: 700;
}

/* Delivery Date Item */
.delivery-info-item.delivery-date .delivery-icon {
    background: #0071e3;
}

/* Fast Shipping Badge in Delivery Box */
.delivery-info-item.fast-shipping-badge .delivery-icon {
    background: #34c759;
}

.delivery-info-item.fast-shipping-badge .delivery-value {
    color: #34c759;
}

/* Tablet and Desktop Layout */
@media (min-width: 768px) {
    .delivery-info-box {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 20px;
        gap: 24px;
    }
    
    .delivery-info-item {
        flex: 0 0 auto;
    }
    
    .delivery-info-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -12px;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 40px;
        background: #e8e8e8;
    }
    
    .delivery-info-item {
        position: relative;
        padding-right: 24px;
    }
    
    .delivery-info-item:last-child {
        padding-right: 0;
    }
    
    .delivery-info-item:last-child::after {
        display: none;
    }
}

/* ============================================
   Product Badges - Mobile Responsive
   ============================================ */
   @media (max-width: 575.98px) {
    .product-badges-container {
        margin-bottom: 12px;
    }
    
    .product-badge {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .delivery-info-box {
        padding: 12px;
        margin: 12px 0;
        gap: 10px;
    }
    
    .delivery-icon {
        width: 32px;
        height: 32px;
    }
    
    .delivery-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .delivery-label {
        font-size: 11px;
    }
    
    .delivery-value {
        font-size: 13px;
    }
    
    .delivery-value.highlight {
        font-size: 14px;
    }
}

/* ============================================
   Product Card Badges (for listing pages)
   ============================================ */
   .product-item-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
}

.product-item-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
}

.product-item-badge.badge-video {
    background: #5856d6;
    color: #fff;
}

.product-item-badge.badge-fast-shipping {
    background: #34c759;
    color: #fff;
}

.product-item-badge.badge-discount {
    background: #ff3b30;
    color: #fff;
}

/* Product Card Sales Info */
.product-item-sales {
    font-size: 11px;
    color: #86868b;
    font-weight: 500;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-item-sales svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

/* Product Card Delivery Info */
.product-item-delivery {
    font-size: 11px;
    color: #34c759;
    font-weight: 500;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-item-delivery svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    fill: none;
}

/* ============================================
   Animation for Badges - Removed for Apple Style
   ============================================ */
/* Apple prefers subtle, non-animated designs */
.badge-fast-shipping {
    /* No animation */
}

/* ============================================
   Dark Mode Support for Badges
   ============================================ */
   @media (prefers-color-scheme: dark) {
    .delivery-info-box {
        background: #1d1d1f;
        border-color: #424245;
    }
    
    .delivery-label {
        color: #86868b;
    }
    
    .delivery-value {
        color: #f5f5f7;
    }
    
    .delivery-info-item:not(:last-child)::after {
        background: #424245;
    }
}

/* ============================================
   Live Viewers Counter
   ============================================ */
   .live-viewers-container {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f5f5f7;
    border: 1px solid #e8e8ed;
    border-radius: 10px;
    margin: 12px 0;
}

.live-indicator {
    width: 8px;
    height: 8px;
    background: #ff3b30;
    border-radius: 50%;
    animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.viewers-text {
    font-size: 13px;
    color: #86868b;
}

.viewers-text strong {
    color: #1d1d1f;
    font-weight: 600;
}

/* ============================================
   Trust Badges
   ============================================ */
   .trust-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0;
    padding: 16px;
    background: var(--apple-light-gray, #f5f5f7);
    border-radius: 12px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #86868b;
    font-weight: 500;
}

.trust-badge svg {
    stroke: #34c759;
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 575.98px) {
    .live-viewers-container {
        padding: 8px 12px;
        margin: 10px 0;
    }
    
    .live-indicator {
        width: 6px;
        height: 6px;
    }
    
    .viewers-text {
        font-size: 12px;
    }
    
    .trust-badges-container {
        padding: 12px;
        gap: 10px;
    }
    
    .trust-badge {
        font-size: 11px;
        flex: 0 0 100%;
    }
    
    .trust-badge svg {
        width: 14px;
        height: 14px;
    }
}

@media (min-width: 576px) {
    .trust-badge {
        flex: 0 0 auto;
    }
}

/* ============================================
   Stock Alert
   ============================================ */
   .stock-alert-container {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f5f5f7;
    border: 1px solid #e8e8ed;
    border-radius: 10px;
    margin: 12px 0;
}

.stock-alert-icon {
    width: 20px;
    height: 20px;
    color: #ff9500;
}

.stock-alert-text {
    font-size: 13px;
    color: #1d1d1f;
    font-weight: 500;
}

/* ============================================
   Price History Tooltip
   ============================================ */
   .price-history-info {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #34c759;
    font-weight: 500;
    margin-top: 4px;
    cursor: help;
}

.price-history-info svg {
    width: 12px;
    height: 12px;
}

@media screen and (min-width:1200px){

    .product-slider-container.has-multiple-images .right {
        width: calc(100% - 120px);
    }
    .product-slider-container .product-slider-content {
        min-height: 700px;
        overflow: hidden;
        position: relative;
    }
}
