/**
 * Single Product Page Styles
 * Responsive layout with image gallery and product details
 */

/* ==========================================================================
   MAIN CONTAINER & LAYOUT
   ========================================================================== */

/* Main product container */
.osiris-single-product {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    font-family: var(--theme-font-family) !important;
}

/* Two-column layout */
.product-layout {
    display: flex;
    gap: 40px;
    align-items: start;
}

/* ==========================================================================
   BREADCRUMB NAVIGATION
   ========================================================================== */

/* Breadcrumb container */
.osiris-breadcrumb {
    margin-bottom: -20px;
}

.breadcrumb-container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    text-wrap: nowrap;
    flex-wrap: wrap;
}

/* Breadcrumb links */
.breadcrumb-link {
    text-decoration: none;
    transition: color 0.3s ease;
    color: rgba(0, 0, 0, 0.5);
    font-family: "Ebony";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.breadcrumb-link:hover {
    color: rgba(220, 0, 57, 0.5);
}

/* Breadcrumb elements */
.breadcrumb-separator {
    color: rgb(153, 153, 153);
    font-weight: normal;
}

.breadcrumb-current {
    color: var(--e-global-color-text);
    font-weight: 500;
}

/* ==========================================================================
   PRODUCT GALLERY
   ========================================================================== */

/* Gallery container */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Main image */
.main-image-container {
    display: flex;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--e-global-color-accent);
}

.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.main-product-image.loading {
    opacity: 0.3;
}

/* Thumbnail carousel */
.thumbnail-carousel-container {
    display: flex;
    align-items: stretch;
    gap: 4px;
    min-height: 80px; /* Set a minimum height for the container */
}

.carousel-nav {
    background: var(--e-global-color-accent);
    border-radius: 4px;
    width: 40px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--e-global-color-text);
    border: none;
    padding: 0;
}

.carousel-nav:hover {
    background: var(--e-global-color-primary);
    color: var(--e-global-color-text);
}

.carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    color: var(--e-global-color-text);
}

.carousel-nav:disabled:hover {
    background: var(--e-global-color-accent);
    color: var(--e-global-color-text);
}

.thumbnail-gallery {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    cursor: grab;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.thumbnail-gallery::-webkit-scrollbar {
    display: none;
}

.thumbnail-gallery:active {
    cursor: grabbing;
}

.thumbnail-track {
    display: flex;
    gap: 10px;
    height: 100%;
}

.thumbnail-item {
    position: relative;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
    aspect-ratio: 1;
    flex: 0 0 150px; /* Fixed size - no calculation needed */
    background-color: var(--e-global-color-accent);
}

.thumbnail-item:hover {
    border-color: var(--e-global-color-primary);
}

.thumbnail-item.active {
    border-color: var(--e-global-color-primary);
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Product Details */
.product-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.product-gallery, .product-details{
    width: 50%;
}

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}
.product-details .product-title{
    /* H2 */
    font-size: var(--theme-font-size-h2);
    font-weight: var(--theme-font-weight-h2);
    line-height: var(--theme-line-height-h2);
    letter-spacing: var(--theme-letter-spacing-h2);
    color: var(--theme-color-text);
    font-family: var(--theme-font-family);
    text-transform: uppercase;
    /* margin-bottom: 16px !important; */
}

.product-details .product-sku {
    color: #000;
    font-family: "Ebony";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    padding: 0;
    border: none;
}

.product-details .product-sku span{
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 18.2px */
}
.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    color: #000 !important;

    /* H3 */
    font-family: var(--theme-font-family) !important;
    font-size: var(--theme-font-size-h3) !important;
    font-weight: var(--theme-font-weight-h3) !important;
    line-height: var(--theme-line-height-h5) !important;
    letter-spacing: var(--theme-letter-spacing-h3) !important;
    text-transform: uppercase !important;
}

.original-price {
    font-size: 18px !important;
    color: #999 !important;
    text-decoration: line-through !important;
}

.product-description {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.stock-status {
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.in-stock {
    color: #00A424 !important;
    /* H5 */
    font-family: var(--theme-font-family) !important;
    font-size: var(--theme-font-size-h5) !important;
    font-weight: var(--theme-font-weight-h5) !important;
    line-height: var(--theme-line-height-h5) !important;
    letter-spacing: var(--theme-letter-spacing-h5) !important;
    text-transform: uppercase !important;
}

/* Variation Selector */
.variation-selector {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.variation-group {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 8px;
}

.variation-group label {
    display: block;
    color: #000;
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.14px;
    text-transform: uppercase;
}

.single-product .custom-dropdown {
    position: relative;
    width: 100%;
}

.single-product .custom-dropdown .dropdown-selected {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    user-select: none;
    border-radius: 999px;
    background: var(--e-global-color-background);
    border-radius: 99px;
    border: 1px solid #000;
}

.single-product .custom-dropdown.open .dropdown-selected {
    border-radius: 16px 16px 0 0;
}

.single-product .custom-dropdown .selected-text {
    color: #000;
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
    width: 100%;
    text-decoration: none;
    text-transform: uppercase;
}

.single-product .custom-dropdown .selected-text.selected {
    color: #333;
}

.single-product .product-details .custom-dropdown .dropdown-arrow {
    font-size: 12px;
    color: #666;
    transition: transform 0.2s ease;
    transform: rotate(0deg);
}

.single-product .custom-dropdown .dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 16px 16px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
    box-shadow: 0;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    width: 100%;
}

.single-product .custom-dropdown.open .dropdown-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.single-product .custom-dropdown .dropdown-option {
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 16px;
    color: #333;
}

.single-product .custom-dropdown .dropdown-option:hover {
    background-color: #f5f5f5;
}

.single-product .custom-dropdown .dropdown-option:last-child {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.variation-input {
    display: none;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quantity-selector label {
    color: #000;
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 14px */
    letter-spacing: -0.14px;
    text-transform: uppercase;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border: 2px solid var(--e-global-color-accent);
    border-radius: 999px;
    padding: 0px;
}
.this-item-prefix {
    font-weight: 700; /* or 600 for medium bold */
    margin-right: 4px; /* optional spacing */
}

.quantity-btn {
    display: flex !important;
    background: transparent !important;
    cursor: pointer !important;
    font-size: 16px !important;
    line-height: 100% !important;
    font-weight: 300 !important;
    align-items: center;
    justify-content: center;
    border: none !important;
    padding: 8px !important;
    color: var(--e-global-color-text) !important;
}
.quantity-btn.minus {
    padding-left: 12px !important;
}
.quantity-btn.plus {
    padding-right: 12px !important;
}
.quantity-input {
    border: none !important;
    text-align: center;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 0px !important;
    width: min-content !important;
    display: flex;
    -moz-appearance: textfield; /* Firefox */
    appearance: textfield; /* Standard property */
}

/* Hide number input arrows/spinners in WebKit browsers */
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input:focus {
    outline: none;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.action-buttons .buttons {
    display: flex;
    flex-direction: row-reverse;
    gap: 16px;
    width: 100%;

}

/* Out of Stock Contact Section */
.out-of-stock-contact {
    width: 100%;
    background: #F8F8F8;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 24px;
}

.out-of-stock-badge-single {
    display: inline-block;
    background-color: var(--e-global-color-primary);
    color: #fff;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 16px;
}

.out-of-stock-contact .contact-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.out-of-stock-contact h3 {
    font-size: 20px;
    font-weight: 600;
    color: #23282d;
    margin: 0;
}

.out-of-stock-contact p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-sales-btn {
    background-color: var(--e-global-color-primary);
    color: #FFF;
    border: none;
    padding: 12px 24px;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    display: flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
}

.contact-sales-btn:hover {
    color: #FFF;
    background-color: #b8002f;
}

.contact-sales-btn svg:last-child {
    width: 9px;
    height: 9px;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.contact-email svg {
    width: 16px;
    height: 16px;
    color: var(--e-global-color-primary);
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--e-global-color-primary);
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background: var(--e-global-color-primary);
    color: white;
}

.btn-secondary {
    background: white;
    color: #e91e63;
    border: 2px solid #e91e63;
}

.btn-secondary:hover:not(:disabled) {
    background: #e91e63;
    color: white;
}

.wishlist-placeholder {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    padding: 10px 0;
}

.wishlist-placeholder:hover {
    color: #e91e63;
}

.wishlist-icon {
    font-size: 18px;
}

/* Product Meta */
.product-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.meta-item {
    font-size: 14px;
    color: #666;
}

.meta-item strong {
    color: #333;
}

.meta-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.meta-item a:hover {
    color: var(--e-global-color-primary);
}

/* Stock Warning */
.stock-warning {
    margin-top: 10px;
    background: #f44336;
    color: white;
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
    display: none;
}

.stock-warning.show {
    transform: translateY(0);
    opacity: 1;
    display: block;
}

.stock-warning.hide {
    transform: translateY(-20px);
    opacity: 0;
}
.add-to-cart-btn ,
.buy-now-btn{
    display: flex !important;
    padding: 16px 12px !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 24px !important;
    flex: 1 0 0 !important;
    border-radius: 999px !important;
    font-family: "Ebony" !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 100% !important; 
}

.add-to-cart-btn {
    background: var(--e-global-color-background) !important;
    color: var(--e-global-color-text) !important;
    border: 1px solid #000 !important;
    text-transform: uppercase !important;
}

.buy-now-btn {
    background: var(--e-global-color-primary) !important;
    color: var(--theme-color-text-inverse) !important;
    text-transform: uppercase !important;
}

.buy-now-btn:hover {
    background: rgb(173, 0, 46) !important;
    color: var(--theme-color-text-inverse) !important;
}
/* .add-to-cart-btn:hover{
    background: rgb(173, 0, 46) !important;
    color: var(--theme-color-text-inverse) !important;
    border-color: transparent !important;
} */
.add-to-cart-btn:hover{
    border: 1px solid var(--e-global-color-primary) !important;
    background:  rgb(173, 0, 46) !important;
    color: var(--theme-color-text-inverse) !important;
}
/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.main-product-image.loading {
    opacity: 0.3;
}

/* Delivery Ad */
.delivery-ad {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--e-global-color-accent);
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid var(--e-global-color-accent);
    width: 100%;
}

.delivery-ad .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    padding: 10px;
    background: #FFF;
    border-radius: 100%;
}

.delivery-ad .icon img {
    width: 32px;
    height: 32px;
    /* filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7151%) hue-rotate(356deg) brightness(91%) contrast(118%); */
}

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

.delivery-ad .texts span:first-child {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    line-height: 1.2;
}

.delivery-ad .texts span:last-child {
    /* Body (sm) */
    font-size: var(--theme-font-size-body-sm);
    font-weight: var(--theme-font-weight-body-sm);
    line-height: var(--theme-line-height-body-sm);
    letter-spacing: var(--theme-letter-spacing-body-sm);
    color: var(--theme-color-text);
}

/* Product Accordion */
.faq-details {
    width: 100%;
}

.product-accordion {
    width: 100%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
}

.faq-details .product-accordion {
    border: 1px solid #F5F5F5;
}

.accordion-tabs {
    display: flex;
    position: relative;
}

.accordion-tab {
    flex: 1;
    padding: 12px 32px;
    border: none !important;
    cursor: pointer !important;
    transition: color 0.3s ease !important;
    position: relative !important;
    z-index: 2 !important;

    color: var(--theme-color-text) !important;
    font-family: "Ebony" !important;
    font-size: 20px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 100% !important; /* 20px */
    background-color: var(--e-global-color-accent);
    filter: brightness(0.9);
    border-radius: 0px !important;
    transition: all 0.3s ease !important;
}
/* First tab */
.accordion-tab:first-child {
    border-top-left-radius: 16px !important;
}
/* Last tab */
.accordion-tab:last-child {
    border-top-right-radius: 16px !important;
}

.accordion-tab.active{
    background-color: var(--e-global-color-primary) !important;
    color: var(--theme-color-text-inverse) !important;
    filter: brightness(1);
}
.accordion-tab:hover{
    background-color: var(--e-global-color-primary) !important;
    color: var(--theme-color-text-inverse) !important;
    filter: brightness(0.9);
}
.tab-indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 33.333%;
    background: var(--e-global-color-primary);
    transition: transform 0.3s ease;
    z-index: 1;
}

.tab-indicator.tab-1 {
    transform: translateX(0%);
}

.tab-indicator.tab-2 {
    transform: translateX(100%);
}

.tab-indicator.tab-3 {
    transform: translateX(200%);
}

.product-accordion .accordion-content {
    background: var(--e-global-color-accent);
    min-height: 200px;
}

.tab-content {
    display: none;
    padding: 30px;
    animation: fadeIn 0.3s ease;
}

.tab-content:has(.shipping-content) {
    padding: 0;
}

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

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

.product-description,
.specifications-content,
.shipping-content {
    color: #000;
    /* Body */
    font-family: var(--theme-font-family-body);
    font-size: var(--theme-font-size-bod, 14px);
    font-weight: var(--theme-font-weight-body);
    line-height: var(--theme-line-height-body);
    letter-spacing: var(--theme-letter-spacing-body);

    /* Spacing */
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Shipping Table */
.shipping-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--e-global-color-accent);
    border-radius: 8px;
    overflow: hidden;
}

.shipping-row {
    display: flex;
    flex-direction: row;
    min-height: 60px;
    border-bottom: 1px solid var(--e-global-color-accent);
}

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

.shipping-label {
    background: transparent;
    padding: 16px 24px;
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--e-global-color-accent);
}

.shipping-label h2 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #23282d;
}

.shipping-value {
    background: #FFF;
    padding: 16px 24px;
    flex: 1;
    display: flex;
    align-items: center;
}

.shipping-value h2 {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .shipping-row {
        flex-direction: column;
        min-height: auto;
    }
    
    .shipping-label {
        flex: 1;
        padding: 12px 16px;
        border-right: none;
        border-bottom: 1px solid var(--e-global-color-accent);
    }
    
    .shipping-value {
        padding: 12px 16px;
    }
}
.product-description iframe, .product-description video{
    margin-top: 80px !important;
    border-radius: 16px !important;
}
.short-description {
    font-size: 16px;
}

.long-description {
    font-size: 14px;
}
.long-description a{
    color: var(--e-global-color-text);
    text-decoration: underline !important;
}
.long-description a:hover{
    color: var(--e-global-color-primary) !important;
}
.long-description blockquote{
    margin: 0;
}

.product-sku {
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    font-size: 14px;
    color: #666;
}

/* Transitions */
.thumbnail-item,
.main-product-image,
.btn,
.variation-select {
    transition: all 0.3s ease;
}

/* Cross-sell Section - Frequently Bought Together */
.cross-sell-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    gap: 16px;
}
.cross-sell-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
}
.cross-sell-header p {
    /* Overline */
    font-size: var(--theme-font-size-overline);
    font-weight: var(--theme-font-weight-overline);
    line-height: var(--theme-line-height-overline);
    letter-spacing: var(--theme-letter-spacing-overline);
    color: var(--theme-color-text);
    text-transform: uppercase;
}
.cross-sell-title {
    color: #000;
    font-family: "Ebony";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 32px */
    text-transform: uppercase;
}

.cross-sell-products {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.cross-sell-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    max-width: 430px;
    width: 100%;
    cursor: pointer;
}

.cross-sell-products .product-card {
    display: flex;
    padding: 12px;
    align-items: stretch;
    gap: 12px;
    flex: 1 0 0;
    border-radius: 12px;
    border: 1px solid #F3F3F3;
    background: #EFEFEF;
}

.cross-sell-products .product-card.current-product {
    background: var(--e-global-color-text);
    color: #fff !important;
}

.product-card.current-product .product-title, 
.product-card.current-product .product-price, 
.product-card.current-product .price-label {
    color: #fff !important;
}

.cross-sell-products .product-card .product-info {
    height: 100%;
}

.cross-sell-products .product-card-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    flex: 1;
}

.cross-sell-products .product-image {
    width: 93px;
    aspect-ratio: 12 / 13;
    background: lightgray;
    overflow: hidden;
    border-radius: 4.103px;
    flex-shrink: 0;
}

.cross-sell-products .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cross-sell-products .product-title-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cross-sell-products .product-title {
    color: #000;
    font-family: "Ebony";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 40px */
    letter-spacing: -0.4px;
}

.cross-sell-item .product-title{
    color: #000;
    font-family: "Ebony";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 18px */
}
.cross-sell-products .button-price-container {
    display: flex;
    gap: 6px;
    justify-content: space-between;
    align-items: flex-end;
}
.cross-sell-products .product-card .button-price-container svg path{
    fill: #000;
}
.cross-sell-products .product-card.current-product .button-price-container svg path{
    fill: #fff;
}

.cross-sell-products .product-price {
    color: #000;
    font-family: "Ebony";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 16px */
}

.cross-sell-products .add-to-order-btn,
.cross-sell-products .view-more-btn {
    background-color: transparent;
    border: none;
    padding: 12px 0 0 12px;
    border-radius: 9px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-align: center;
    color: #000;
    font-family: "Ebony";
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 12px */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}
.product-card.current-product .view-more-btn,
.product-card.current-product .add-to-order-btn {
    color: #fff;
}
.add-to-order-btn:hover,
.view-more-btn:hover {
    color: #b8002f !important;
    text-decoration: underline !important;
}

.add-to-order-btn:active,
.view-more-btn:active {
    transform: translateY(0);
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

.product-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.plus-icon {
    font-size: 24px;
    font-weight: bold;
    color: var(--e-global-color-text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-dumbells {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
    margin-top: 18px;
    gap: 12px;
}

.custom-dumbells .left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.custom-dumbells .right {
    display: flex;
    align-items: center;
    gap: 16px 24px;
}

.custom-dumbells h6 {
    /* H6 */
    color: #DC0039;
    font-family: var(--theme-font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 24px */
}

.custom-dumbells p {
    /* Body sm */
    color: var(--e-global-color-text);
    font-weight: var(--theme-font-weight-body-sm);
    font-size: var(--theme-font-size-body-sm);
    font-style: var(--theme-font-style-body-sm);
    line-height: var(--theme-line-height-body-sm);
    letter-spacing: var(--theme-letter-spacing-body-sm);
}

.get-in-touch-btn {
    background-color: var(--e-global-color-primary);
    color: #FFF;
    border: none;
    padding: 12px 24px;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 16px */   
    display: flex;
    align-items: center;
    gap: 8px;
}
.find-out-more-btn {
    background-color: transparent;
    color: var(--e-global-color-primary);
    border: 1px solid var(--e-global-color-primary);
    padding: 12px 24px;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 16px */   
    display: flex;
    align-items: center;
    gap: 8px;
    text-wrap: nowrap;
}

.get-in-touch-btn:hover {
    background-color: #b8002f;
}
.find-out-more-btn:hover {
    background-color: #b8002f;
    color: #FFF;

    svg path{
        fill: #FFF;
    }
}


/* Faq & Details Styling */
.long-description h2, .long-description h3, .long-description h4{
    font-size: 20px;
    font-weight: bold;
}

.tech-specs__kv{
    display: none;
}
/* Responsive Design */
/* Laptop (≤1366px) */
@media (max-width: 1366px) {
    .osiris-breadcrumb {
        margin-bottom: calc(12px - 60px);
    }
    .osiris-single-product {
        gap: 60px;
    }
}
/* Tablet (≤1024px) */
@media (max-width: 1024px) {
    .osiris-breadcrumb {
        margin-bottom: calc(12px - 40px);
    }
    .osiris-single-product {
        gap: 40px;
    }
    .product-layout {
        flex-direction: column;
        gap: 25px;
    }
    
    .thumbnail-track {
        gap: 6px;
    }
    
    .thumbnail-item {
        flex: 0 0 90px; /* Smaller fixed size on mobile */
    }
    
    .product-title {
        font-size: 22px;
    }
    
    .current-price {
        font-size: 18px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Cross-sell responsive styles */
    .cross-sell-products {
        flex-direction: column;
        gap: 8px;
    }
    
    .cross-sell-item {
        flex-direction: column;
        max-width: 100%;
    }
    
    .plus-icon {
        transform: rotate(90deg);
    }
    
    .product-card {
        min-width: 100%;
        max-width: 400px;
    }
    
    .cross-sell-title {
        font-size: 20px;
    }
    .product-gallery, .product-details{
        width: 100%;
    }
    .custom-dumbells {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .osiris-breadcrumb {
        margin-bottom: calc(12px - 24px);
    }
    .osiris-single-product {
        gap: 24px;
    }
    .custom-dumbells{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
}

/* Hide mobile accordions on desktop */
.mobile-accordion-item {
    display: none;
}

/* Mobile Accordion (≤767px) */
@media (max-width: 767px) {
    .tab-indicator {
        display: none;
    }
    
    /* Hide the original tab structure */
    .accordion-tabs {
        display: none;
    }
    
    .product-accordion .accordion-content {
        display: none;
    }
    
    /* Show mobile accordions */
    .mobile-accordion-item {
        display: block;
        border-radius: 16px;
        background: white;
        border: 1px solid #e0e0e0;
        overflow: hidden;
        margin-bottom: 16px;
    }
    
    .product-accordion {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .mobile-accordion-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        background: #F3F3F3;
        color: var(--e-global-color-text);
        cursor: pointer;
        font-family: "Ebony";
        font-size: 16px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .mobile-accordion-header:hover {
        background: var(--e-global-color-primary);
        color: white;
    }
    .mobile-accordion-header:hover svg path {
        fill: white;
    }
    .mobile-accordion-item.active .mobile-accordion-header {
        background: var(--e-global-color-primary);
        color: white;
    }
    .mobile-accordion-arrow {
        transition: transform 0.3s ease;
        font-size: 14px;
    }
    
    .mobile-accordion-item.active .mobile-accordion-arrow {
        transform: rotate(180deg);
    }
    .mobile-accordion-item.active .mobile-accordion-header svg path {
        fill: white;
    }
    .mobile-accordion-content {
        padding: 20px;
        background: #F3F3F3;
        display: none;
        animation: slideDown 0.3s ease;
    }
    
    .mobile-accordion-item.active .mobile-accordion-content {
        display: block;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            max-height: 0;
        }
        to {
            opacity: 1;
            max-height: 500px;
        }
    }

    .faq-details .product-accordion {    
        border: none;
    }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
    .product-card {
        padding: 15px;
    }
    
    .product-image img {
        height: 180px;
    }
    
    .cross-sell-products .product-title {
        font-size: 14px;
        min-height: 40px;
    }
    
    .add-to-order-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}
