/* Interactive Product Showcase Section */
.interactive-showcase-section {
    padding: 80px 0;
    background-color: #f8f8f5;
    position: relative;
}

.interactive-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.interactive-showcase-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #5a3f2a;
    margin-bottom: 50px;
    font-weight: 500;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.showcase-products-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 800px;
}

.showcase-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.showcase-main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.product-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #5a3f2a;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.product-dot:hover {
    background: #5a3f2a;
    transform: scale(1.2);
}

.product-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #5a3f2a;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.product-dot:hover::after {
    background: #fff;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(90, 63, 42, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(90, 63, 42, 0);
    }
}

/* Product dot positions */
.dot-maang-tikka {
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
}

.dot-earrings {
    top: 27%;
    left: 34%;
}

.dot-necklace {
    top: 50%;
    left: 45%;
    transform: translateX(-50%);
}

.dot-bangle {
    bottom: 37%;
    right: 82%;
}

.showcase-product-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.showcase-product-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e5e0d5;
}

.showcase-product-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.showcase-product-thumb {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
}

.showcase-product-info {
    flex: 1;
}

.showcase-product-name {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.showcase-product-price {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #5a3f2a;
    font-weight: 700;
}

.showcase-product-original-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

/* Product link box below video */
.video-product-link {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-product-link:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.video-product-link-image {
    width: 45px;
    height: 45px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.video-product-link-text {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.video-product-link-arrow {
    font-size: 14px;
    color: #5a3f2a;
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.video-product-link:hover .video-product-link-arrow {
    transform: translateX(3px);
}

.add-set-to-bag-btn {
    width: 100%;
    background: #603000;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 30px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-set-to-bag-btn:hover {
    background: #4a2600;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(96, 48, 0, 0.3);
}

/* Product Popup Modal */
.product-popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.product-popup-modal.active {
    display: flex;
}

.product-popup-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.3s ease;
}

.popup-close-btn:hover {
    background: #f5f5f5;
    transform: rotate(90deg);
}

.popup-product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.popup-product-details {
    padding: 25px;
}

.popup-product-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.popup-product-price {
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    color: #5a3f2a;
    font-weight: 700;
    margin-bottom: 20px;
}

.popup-product-description {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.popup-action-buttons {
    display: flex;
    gap: 10px;
}

.popup-add-to-cart-btn,
.popup-view-details-btn {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-add-to-cart-btn {
    background: #5a3f2a;
    color: white;
}

.popup-add-to-cart-btn:hover {
    background: #4a2f1a;
}

.popup-view-details-btn {
    background: transparent;
    color: #5a3f2a;
    border: 2px solid #5a3f2a;
}

.popup-view-details-btn:hover {
    background: #5a3f2a;
    color: white;
}

/* Responsive Design */
@media (max-width: 968px) {
    .showcase-image-container {
        max-width: 100%;
    }

    .showcase-products-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .interactive-showcase-title {
        font-size: 2rem;
    }

    .product-dot {
        width: 25px;
        height: 25px;
    }

    .popup-product-name {
        font-size: 20px;
    }
}