/* ============================================
       Product Showcase Styles
       ============================================ */
    .product-showcase {
        padding: 3rem 0;
        background: var(--color-off-white);
    }

    .showcase-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        gap: 2rem;
        align-items: center;
    }

    /* ============================================
       Thumbnail Gallery - Left Side Vertical
       ============================================ */
    .thumbnail-gallery {
        position: relative;
        width: 140px;
        flex-shrink: 0;
        opacity: 0;
        animation: fadeInLeft 0.6s ease 0.2s forwards;
    }

    .gallery-scroll {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        max-height: 450px;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 0.5rem;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        align-items: center;
    }

    .gallery-scroll::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .thumbnail-item {
        position: relative;
        width: 60px;
        height: 60px;
        border-radius: 12px;
        overflow: hidden;
        cursor: pointer;
        transition: transform var(--transition-fast), box-shadow var(--transition-fast);
        border: 3px solid transparent;
        background: var(--color-white);
        flex-shrink: 0;
    }

    .thumbnail-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition-base);
    }

    .thumbnail-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        opacity: 0;
        transition: opacity var(--transition-fast);
        pointer-events: none;
    }

    .thumbnail-item:hover {
        transform: translateX(5px);
        box-shadow: var(--shadow-md);
    }

    .thumbnail-item:hover img {
        transform: scale(1.1);
    }

    .thumbnail-item:hover .thumbnail-overlay {
        opacity: 1;
    }

    .thumbnail-item.active {
        border-color: var(--color-primary);
        box-shadow: 0 4px 20px rgba(108, 99, 255, 0.3);
        transform: translateX(5px);
    }

    .thumbnail-item.active .thumbnail-overlay {
        opacity: 0;
    }

    /* Gallery Navigation - Vertical */
    .gallery-nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--color-white);
        border: 2px solid var(--color-primary);
        color: var(--color-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all var(--transition-fast);
        box-shadow: var(--shadow-sm);
        z-index: 10;
    }

    .gallery-nav:hover {
        background: var(--color-primary);
        color: var(--color-white);
        transform: translateX(-50%) scale(1.1);
    }

    .gallery-nav.prev {
        top: -50px;
    }

    .gallery-nav.next {
        bottom: -50px;
    }

    .gallery-nav:disabled {
        opacity: 0.3;
        cursor: not-allowed;
        pointer-events: none;
    }

    /* ============================================
       Main Image Section - Right Side
       ============================================ */
    .main-image-section {
        flex: 1;
        position: relative;
        opacity: 0;
        animation: fadeInRight 0.6s ease forwards;
        justify-items: center;
    }

    .image-container {
        position: relative;
        width: fit-content;
        background: var(--color-white);
        border-radius: 20px;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        cursor: zoom-in;
        transition: box-shadow var(--transition-base);
    }

    .image-container:hover {
        box-shadow: 0 12px 48px rgba(108, 99, 255, 0.15);
    }

    .main-image {
        /* width: 100%;
        height: auto; */
        max-width: 800px;
        max-height: 500px;
        display: block;
        border-radius: 12px;
        transition: transform var(--transition-base);
    }

    .image-container:hover .main-image {
        transform: scale(1.02);
    }

    /* Zoom Lens */
    .zoom-lens {
        position: absolute;
        width: 150px;
        height: 150px;
        border: 3px solid var(--color-primary);
        border-radius: 50%;
        cursor: none;
        display: none;
        pointer-events: none;
        background-repeat: no-repeat;
        box-shadow: 0 8px 32px rgba(108, 99, 255, 0.3);
        z-index: 10;
        backdrop-filter: blur(0px);
    }

    /* Image Badge */
    .image-badge {
        position: absolute;
        top: 2.5rem;
        right: 2.5rem;
        background: rgba(108, 99, 255, 0.95);
        color: var(--color-white);
        padding: 0.75rem 1.25rem;
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        font-weight: 500;
        box-shadow: var(--shadow-md);
        opacity: 0;
        animation: fadeIn 0.6s ease 0.3s forwards;
        z-index: 5;
    }

    .image-badge i {
        font-size: 1rem;
    }

    /* ============================================
       Animations
       ============================================ */
    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    /* Pulse animation for active thumbnail */
    @keyframes pulse {
        0%, 100% {
            box-shadow: 0 4px 20px rgba(108, 99, 255, 0.3);
        }
        50% {
            box-shadow: 0 4px 30px rgba(108, 99, 255, 0.5);
        }
    }

    .thumbnail-item.active {
        animation: pulse 2s ease-in-out infinite;
    }

    /* ============================================
       Responsive Design
       ============================================ */
    @media (max-width: 968px) {
        .showcase-container {
            gap: 1.5rem;
        }

        .thumbnail-gallery {
            width: 100px;
        }

        .thumbnail-item {
            width: 90px;
            height: 90px;
        }

        .gallery-nav {
            width: 35px;
            height: 35px;
        }

        .gallery-nav.prev {
            top: -45px;
        }

        .gallery-nav.next {
            bottom: -45px;
        }
    }

    @media (max-width: 768px) {
        .product-showcase {
            padding: 2rem 0;
        }

        .showcase-container {
            flex-direction: column;
            padding: 0 1rem;
            gap: 2rem;
        }

        .thumbnail-gallery {
            width: 100%;
            order: 2;
        }

        .gallery-scroll {
            flex-direction: row;
            max-height: none;
            overflow-x: auto;
            overflow-y: hidden;
            padding: 0.5rem;
            justify-content: flex-start;
        }

        .thumbnail-item {
            width: 90px;
            height: 90px;
        }

        .thumbnail-item:hover,
        .thumbnail-item.active {
            transform: translateY(-5px) !important;
        }

        .gallery-nav {
            display: none;
        }

        .main-image-section {
            order: 1;
            width: 100%;
        }

        .image-container {
            padding: 1.5rem;
            border-radius: 16px;
        }

        .main-image {
            border-radius: 8px;
        }

        .zoom-lens {
            width: 100px;
            height: 100px;
        }

        .image-badge {
            top: 2rem;
            right: 2rem;
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
        }
    }

    @media (max-width: 480px) {
        .image-container {
            padding: 1rem;
        }

        .image-badge {
            top: 1.5rem;
            right: 1.5rem;
            padding: 0.4rem 0.8rem;
            font-size: 0.8rem;
        }

        .image-badge span {
            display: none;
        }

        .thumbnail-item {
            width: 70px;
            height: 70px;
            min-width: 70px;
        }

        .zoom-lens {
            width: 80px;
            height: 80px;
        }

        .gallery-scroll {
            gap: 0.75rem;
        }
    }

    /* ============================================
       Loading Animation
       ============================================ */
    .main-image.loading {
        opacity: 0.5;
        transition: opacity var(--transition-base);
    }