/* Modern Gaming Product Page */
    :root {
        --primary: #006fcd;
        --primary-dark: #0056b3;
        --primary-glow: rgba(0, 111, 205, 0.4);
        --secondary: #6c5ce7;
        --success: #00b894;
        --danger: #ff4757;
        --warning: #ffa502;
        --dark: #0a0a14;
        --darker: #05050a;
        --light: #ffffff;
        --glass-bg: rgba(20, 25, 35, 0.8);
        --glass-border: rgba(255, 255, 255, 0.1);
        --glass-glow: 0 8px 32px rgba(0, 0, 0, 0.4);
        --text-primary: rgba(255, 255, 255, 0.95);
        --text-secondary: rgba(255, 255, 255, 0.7);
        --text-muted: rgba(255, 255, 255, 0.5);
        --gradient-gaming: linear-gradient(135deg, var(--primary), var(--secondary));
        --gradient-sale: linear-gradient(135deg, var(--danger), #c0392b);
        --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.2);
        --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.25);
        --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.3);
        --border-radius-sm: 12px;
        --border-radius-md: 18px;
        --border-radius-lg: 24px;
    }

    body {
        background: radial-gradient(circle at 20% 20%, #0f172a, #020617);
        overflow-x: hidden;
        position: relative;
        color: var(--text-primary);
        font-family: 'Oxanium', 'Rajdhani', sans-serif;
        line-height: 1.6;
    }
    body::before {
        content: "";
        position: fixed;
        inset: 0;
        background: linear-gradient(
            120deg,
            rgba(0,111,205,0.2),
            rgba(16,124,16,0.2),
            rgba(255,71,87,0.2)
        );
        background-size: 300% 300%;
        animation: moveGradient 12s ease infinite;
        z-index: -2;
    }
    
    @keyframes moveGradient {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }
    
    .dynamic-bg {
    position: fixed;
    inset: 0;
    z-index: -3;

    background-size: cover;
    background-position: center;

    filter: blur(25px);
    transform: scale(1.1);
}

/* Layer تظليل فوق الصورة */
.dynamic-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.8)
    );
}
    
    .color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.color-option {
    flex: 0 0 auto;
    width: 85px;

    display: flex;
    flex-direction: column;
    align-items: center;

    cursor: pointer;
    transition: all 0.3s ease;
}
    
    .floating-bg {
        position: fixed;
        inset: 0;
        z-index: -1;
        overflow: hidden;
    }
    
    .floating-bg span {
        position: absolute;
        border-radius: 50%;
        filter: blur(90px);
        opacity: 0.5;
        animation: floatMove 20s infinite linear;
    }
    
    .floating-bg span:nth-child(1) {
        width: 350px;
        height: 350px;
        background: #006fcd;
        top: 10%;
        left: 10%;
    }
    
    .floating-bg span:nth-child(2) {
        width: 400px;
        height: 400px;
        background: #6c5ce7;
        top: 60%;
        left: 70%;
        animation-duration: 25s;
    }
    
    .floating-bg span:nth-child(3) {
        width: 250px;
        height: 250px;
        background: #ff4757;
        top: 40%;
        left: 30%;
        animation-duration: 18s;
    }
    
    @keyframes floatMove {
        0%   { transform: translateY(0px) translateX(0px); }
        50%  { transform: translateY(-60px) translateX(40px); }
        100% { transform: translateY(0px) translateX(0px); }
    }
    
    /* Breadcrumb */
    .gaming-breadcrumb {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 50px;
        padding: 0.75rem 1.5rem;
        margin-bottom: 2rem;
        display: inline-flex;
        align-items: center;
        box-shadow: var(--shadow-sm);
    }

    .gaming-breadcrumb a {
        color: var(--text-secondary);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.95rem;
    }

    .gaming-breadcrumb a:hover {
        color: var(--primary);
    }

    .gaming-breadcrumb i {
        margin: 0 10px;
        color: var(--text-muted);
        font-size: 0.7rem;
    }

    .gaming-breadcrumb .current {
        color: var(--primary);
        font-weight: 600;
    }

    /* Product Gallery - Premium */
    .product-gallery-premium {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: var(--border-radius-lg);
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        transition: all 0.3s ease;
    }

    .main-image-wrapper {
        background: linear-gradient(145deg, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
        border-radius: var(--border-radius-md);
        padding: 2rem;
        margin-bottom: 1.5rem;
        position: relative;
        height: 420px;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 400px;
        border: 1px solid var(--glass-border);
    }

    .main-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        max-width: 100%;
        max-height: 350px;
        transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
    }

    .main-image:hover {
        transform: scale(1.07) rotateZ(1deg);
    }

    .product-badge-container {
        position: absolute;
        top: 20px;
        left: 20px;
        right: 20px;
        display: flex;
        justify-content: space-between;
        z-index: 10;
    }

    .product-badge-premium {
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .badge-new-premium {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white;
    }

    .badge-used-premium {
        background: linear-gradient(135deg, #95a5a6, #7f8c8d);
        color: white;
    }

    .badge-sale-premium {
        background: var(--gradient-sale);
        color: white;
        animation: pulse 2s infinite;
    }

    .badge-out-of-stock {
        background: linear-gradient(135deg, #636e72, #2d3436);
        color: white;
    }

    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7); }
        70% { box-shadow: 0 0 0 10px rgba(255, 71, 87, 0); }
        100% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
    }

    /* Thumbnail Gallery */
    .thumbnail-gallery {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding: 10px 5px;
        scrollbar-width: thin;
        scrollbar-color: var(--primary) var(--glass-border);
    }

    .thumbnail-gallery::-webkit-scrollbar {
        height: 6px;
    }

    .thumbnail-gallery::-webkit-scrollbar-track {
        background: var(--glass-border);
        border-radius: 10px;
    }

    .thumbnail-gallery::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 10px;
    }

    .thumbnail-item {
        width: 90px;
        height: 90px;
        object-fit: cover;
        border-radius: var(--border-radius-sm);
        cursor: pointer;
        transition: all 0.3s ease;
        border: 3px solid transparent;
        background: rgba(0,0,0,0.3);
        padding: 5px;
    }

    .thumbnail-item:hover {
        transform: translateY(-5px);
        border-color: var(--primary);
    }

    .thumbnail-item.active {
        border-color: var(--primary);
        box-shadow: 0 0 20px var(--primary-glow);
    }

    /* Color Selector Section */
    .color-selector-section {
        margin-bottom: 1.5rem;
    }
    
    .color-selector-title {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-secondary);
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .color-selector-title i {
        color: var(--primary);
    }
    
    
    .color-option-thumb {
        width: 70px;
        height: 70px;
        border-radius: 12px;
        overflow: hidden;
        border: 2px solid var(--glass-border);
        transition: all 0.3s ease;
        background: rgba(0,0,0,0.3);
    }
    
    .color-option-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .color-option-name {
        font-size: 0.8rem;
        font-weight: 500;
        color: var(--text-secondary);
        transition: all 0.3s ease;
    }
    
    .color-option-stock {
        font-size: 0.7rem;
        color: var(--text-muted);
    }
    
    .color-option-stock.out {
        color: var(--danger);
    }
    
    .color-option.active .color-option-thumb {
        border-color: var(--primary);
        box-shadow: 0 0 15px var(--primary-glow);
        transform: scale(1.05);
    }
    
    .color-option.active .color-option-name {
        color: var(--primary);
        font-weight: 700;
    }
    
    .color-option:hover .color-option-thumb {
        transform: translateY(-3px);
        border-color: var(--primary);
    }
    
    /* Custom Fields Display */
    .custom-fields-section {
        background: rgba(255,255,255,0.03);
        border-radius: var(--border-radius-md);
        padding: 1rem;
        margin-bottom: 1.5rem;
        border: 1px solid var(--glass-border);
    }
    
    .special-price-badge {
        background: linear-gradient(135deg, #10b981, #059669);
        color: white;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        margin-left: 15px;
    }
    
    .custom-fields-title {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text-secondary);
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .custom-fields-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 0.75rem;
    }
    
    .custom-field-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0.75rem;
        background: rgba(255,255,255,0.05);
        border-radius: 10px;
        border-left: 3px solid var(--primary);
    }
    
    .custom-field-name {
        font-size: 0.8rem;
        color: var(--text-muted);
    }
    
    .custom-field-value {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text-primary);
    }

    /* Product Info - Premium */
    .item-page .product-info-premium {
        background: rgba(255,255,255,0.05);
        backdrop-filter: blur(25px);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 24px;
        padding: 2.5rem;
        box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        height: 100%;
    }

    .item-page .product-category-tag {
        display: inline-block;
        padding: 6px 16px;
        background: rgba(0, 111, 205, 0.15);
        border: 1px solid rgba(0, 111, 205, 0.3);
        border-radius: 30px;
        color: var(--primary);
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .item-page .product-title-premium {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        line-height: 1.2;
        background: linear-gradient(45deg, #fff, var(--primary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .item-page .product-rating {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 1.5rem;
    }

    .item-page .stars {
        color: #ffc107;
        letter-spacing: 2px;
    }

    .rating-count {
        color: var(--text-muted);
        font-size: 0.9rem;
    }

    .product-description-premium {
        color: var(--text-secondary);
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--glass-border);
    }
    
    .product-description-premium p,
    .product-description-premium div,
    .product-description-premium span,
    .product-description-premium ul,
    .product-description-premium ol {
        color: var(--text-secondary);
    }
    
    .product-description-premium img {
        max-width: 100%;
        height: auto;
        border-radius: var(--border-radius-sm);
        margin: 1rem 0;
    }
    
    .product-description-premium a {
        color: var(--primary);
        text-decoration: none;
    }
    
    .product-description-premium a:hover {
        text-decoration: underline;
    }

    /* Price Section - Premium */
    .price-section-premium {
        background: linear-gradient(145deg, rgba(0, 111, 205, 0.1), transparent);
        padding: 1.5rem;
        border-radius: var(--border-radius-md);
        margin-bottom: 2rem;
        border: 1px solid var(--glass-border);
    }

    /*.price-wrapper {*/
    /*    display: flex;*/
    /*    align-items: center;*/
    /*    gap: 20px;*/
    /*    flex-wrap: wrap;*/
    /*}*/

    /*.current-price {*/
    /*    font-size: 2.8rem;*/
    /*    font-weight: 800;*/
    /*    color: var(--primary);*/
    /*    line-height: 1;*/
    /*}*/

    /*.original-price {*/
    /*    font-size: 1.6rem;*/
    /*    text-decoration: line-through;*/
    /*    color: var(--text-muted);*/
    /*}*/

    .item-page .discount-badge {
        background: var(--gradient-sale);
        color: white;
        padding: 8px 16px;
        border-radius: 30px;
        font-size: 1rem;
        font-weight: 700;
    }

    /* Stock Status - Premium */
    .stock-status-premium {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 1.5rem;
    }

    .stock-indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        animation: blink 1.5s infinite;
    }

    .stock-indicator.in-stock {
        background: var(--success);
        box-shadow: 0 0 10px var(--success);
    }

    .stock-indicator.low-stock {
        background: var(--warning);
        box-shadow: 0 0 10px var(--warning);
    }

    .stock-indicator.out-of-stock {
        background: var(--danger);
        box-shadow: 0 0 10px var(--danger);
    }

    @keyframes blink {
        0% { opacity: 1; }
        50% { opacity: 0.5; }
        100% { opacity: 1; }
    }

    /* Product Details Grid */
    .item-page .product-details-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        margin-bottom: 2rem;
    }

    .detail-item {
        background: rgba(255,255,255,0.03);
        padding: 1rem;
        border-radius: var(--border-radius-sm);
        border: 1px solid var(--glass-border);
    }

    .detail-label {
        color: var(--text-muted);
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.3rem;
    }

    .detail-value {
        color: var(--text-primary);
        font-size: 1rem;
        font-weight: 600;
    }

    /* Quantity Selector - Premium */
    .quantity-selector-premium {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 2rem;
    }

    .quantity-label {
        color: var(--text-secondary);
        font-weight: 600;
    }

    .quantity-controls {
        display: flex;
        align-items: center;
        background: rgba(255,255,255,0.05);
        border-radius: 40px;
        border: 1px solid var(--glass-border);
        overflow: hidden;
    }

    .quantity-btn {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .quantity-btn:hover {
        background: var(--primary);
        color: white;
    }

    .quantity-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    #quantity {
        width: 70px;
        height: 45px;
        text-align: center;
        background: transparent;
        border: none;
        border-left: 1px solid var(--glass-border);
        border-right: 1px solid var(--glass-border);
        color: white;
        font-size: 1.1rem;
        font-weight: 600;
    }

    /* Add to Cart Button - Premium */
    .btn-add-to-cart-premium {
        background: var(--gradient-gaming);
        border: none;
        border-radius: 50px;
        padding: 1rem 2rem;
        color: white;
        font-size: 1.2rem;
        font-weight: 700;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        width: 100%;
        border: 1px solid rgba(255,255,255,0.2);
    }

    .btn-add-to-cart-premium::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s ease;
    }

    .btn-add-to-cart-premium:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 111, 205, 0.4);
    }

    .btn-add-to-cart-premium:hover::before {
        left: 100%;
    }

    .btn-add-to-cart-premium:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }
    
    .color-option-price {
        background: rgba(16, 185, 129, 0.15);
        padding: 2px 6px;
        border-radius: 20px;
        font-size: 0.65rem;
        font-weight: 600;
        color: #10b981;
        margin-top: 4px;
    }
    /* Action Buttons */
    .action-buttons {
        display: flex;
        gap: 15px;
        margin-top: 1.5rem;
    }

    .btn-wishlist-premium {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: rgba(255,255,255,0.05);
        border: 1px solid var(--glass-border);
        color: var(--text-secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

    .btn-wishlist-premium:hover {
        background: rgba(220, 53, 69, 0.15);
        border-color: var(--danger);
        color: var(--danger);
        transform: scale(1.1);
    }

    .btn-wishlist-premium.active {
        background: var(--danger);
        color: white;
        border-color: var(--danger);
    }

    .btn-share-premium {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: rgba(255,255,255,0.05);
        border: 1px solid var(--glass-border);
        color: var(--text-secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

    .btn-share-premium:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: white;
        transform: scale(1.1);
    }

    /* =============== CAROUSEL SLIDERS =============== */
    .item-page .recommendation-section-premium {
        margin-top: 5rem;
        padding: 3rem 0;
        position: relative;
        width: 100%;
    }

    .item-page .section-header-premium {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        padding: 0 5px;
    }

    .item-page .section-title-premium {
        text-shadow: 0 0 20px rgba(0,111,205,0.4);
        font-size: 2rem;
        font-weight: 800;
        background: linear-gradient(45deg, #fff, var(--primary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin: 0;
    }

    .item-page .section-subtitle-premium {
        color: var(--text-muted);
        font-size: 1rem;
        margin-top: 0.25rem;
    }

    .item-page .slider-controls {
        display: flex;
        gap: 10px;
    }

    .item-page .slider-arrow {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .item-page .slider-arrow:hover {
        background: var(--primary);
        border-color: var(--primary);
        transform: scale(1.1);
    }
    .carousel-container {
        overflow: hidden;
        width: 100%;
    }

    .carousel-container {
        position: relative;
        width: 100%;
        overflow: hidden;
        padding: 10px 0;
    }

    .carousel-track {
        display: flex;
        gap: 12px;
        padding: 10px 10px 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        margin: 0;
        width: 100%;
        white-space: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    body {
        overflow-x: hidden;
    }
    .carousel-track::-webkit-scrollbar {
        display: none;
    }
    .carousel-item {
        scroll-snap-align: start;
    }
    .carousel-item {
        flex: 0 0 auto;
        width: clamp(140px, 45vw, 220px);
    }
    @media (max-width: 576px) {
        .carousel-track {
            gap: 10px;
            padding: 10px 5px 15px;
        }
    
        .carousel-item {
            width: 75%;
            max-width: 160px;
        }
    }
    .item-page .carousel-item {
        flex: 0 0 auto !important;
        max-width: 220px !important;
        display: inline-block !important;
        margin: 0 !important;
        padding: 0 !important;
        float: none !important;
        clear: none !important;
    }

    .item-page .product-card-carousel {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: var(--border-radius-md);
        overflow: hidden;
        transition: all 0.3s ease;
        height: 100%;
        width: 100% !important;
        display: block !important;
    }

    .item-page .product-card-carousel:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 25px 70px rgba(0,0,0,0.6);
        border-color: var(--primary);
    }

    .item-page .product-card-carousel .card-image-wrapper {
        height: 180px;
        background: linear-gradient(145deg, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        position: relative;
    }

    .item-page .product-card-carousel .card-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        max-width: 100%;
        max-height: 130px;
        transition: transform 0.5s ease;
    }
    
    
    .item-page .sticky-cart-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(10,10,20,0.95);
        backdrop-filter: blur(15px);
        border-top: 1px solid rgba(255,255,255,0.1);
        padding: 10px 15px;
        z-index: 9999;
        display: none;
    }
    
    .sticky-cart-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .sticky-cart-btn {
        background: linear-gradient(135deg, #006fcd, #6c5ce7);
        border: none;
        padding: 10px 20px;
        border-radius: 30px;
        color: #fff;
        font-weight: bold;
    }

    .item-page .product-card-carousel:hover .card-image-wrapper img {
        transform: scale(1.1);
    }

    .item-page .product-card-carousel .card-badges {
        position: absolute;
        top: 10px;
        left: 10px;
        right: 10px;
        display: flex;
        justify-content: space-between;
        z-index: 2;
    }

    .item-page .product-card-carousel .card-badge {
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        background: linear-gradient(135deg, var(--primary), #0056b3);
        color: white;
    }

    .item-page .product-card-carousel .card-badge.sale {
        background: var(--gradient-sale);
    }

    .item-page .product-card-carousel .item-page .card-content {
        padding: 1.2rem;
    }

    .item-page .product-card-carousel .card-title {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: white;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 2.6rem;
        text-decoration: none;
    }

    .item-page .product-card-carousel .card-studio {
        color: var(--text-muted);
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .item-page .product-card-carousel .card-price {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .item-page .product-card-carousel .card-price-current {
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--primary);
    }

    .item-page .product-card-carousel .card-price-original {
        font-size: 0.9rem;
        text-decoration: line-through;
        color: var(--text-muted);
    }

    @media (max-width: 768px) {
        .item-page .carousel-item {
            width: 180px !important;
            min-width: 180px !important;
            max-width: 180px !important;
        }
        
        .item-page .product-card-carousel .card-image-wrapper {
            height: 160px;
        }
        
        .section-header-premium {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        
        .product-title-premium {
            font-size: 1.8rem;
        }
        
        .item-page .current-price {
            font-size: 2rem;
        }
        
        .color-option-thumb {
            width: 55px;
            height: 55px;
        }
    }
    
    
    
    .item-page .card-img-top {

        width: 100%;
    
        height: 100%;
    
        object-fit: scale-down;
    
        padding: 18px;
    }
    
    /* prevent ultra tall images */
    
    .item-page .image-container {
    
        min-height: 480px;
    
        max-height: 480px;
    
        overflow: hidden;
    }

    @media (max-width: 576px) {
        .item-page .carousel-item {
            width: 160px !important;
            min-width: 160px !important;
            max-width: 160px !important;
        }
        
        .section-title-premium {
            font-size: 1.5rem;
        }
        
        .custom-fields-grid {
            grid-template-columns: 1fr;
        }
    }
    
    
    /* =========================
   SLIDER CARD FIX
========================= */

.item-page .carousel-item .product-card{

    min-height: unset;

    height: 100%;
}

/* image wrapper */

.item-page .carousel-item .image-container{

    min-height: 400px;

    height: 410px;
}

/* image */

.item-page .carousel-item .card-img-top{

    width: 100%;

    height: 100%;

    object-fit: contain;

    padding: 18px;
}

/* content */

.item-page .carousel-item .card-content{

    padding:
        18px
        18px
        85px;
}