/* Additional custom styles */
.step-indicator .step {
    transition: all 0.3s ease;
}

.step-indicator .step.active {
    background-color: #9333ea;
    border-color: #9333ea;
    color: white;
}

.step-indicator .step.completed {
    background-color: #9333ea;
    border-color: #9333ea;
    color: white;
}

.step-indicator .step-label.active {
    color: #9333ea;
    font-weight: 600;
}

.gallery-thumbnail {
    transition: all 0.2s ease;
}

.gallery-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.gallery-thumbnail.active {
    border-color: #9333ea;
}

.tab-button.active {
    border-bottom: 3px solid #9333ea;
    color: #9333ea;
    font-weight: 600;
}

.gadget-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.rating-star.active {
    color: #f59e0b;
}

.file-upload {
    position: relative;
    overflow: hidden;
}

.file-upload input {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}

.gadget-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.filter-option.active {
    background-color: #9333ea;
    color: white;
}

.favorite-btn.active i {
    color: #ef4444;
}

/* Add smooth transition for the popup */
#itemPopup {
    transition: opacity 0.3s ease;
}

/* Style for the popup content */
#itemPopup > div:last-child {
    transition: transform 0.3s ease;
}

#itemPopup.hidden {
    opacity: 0;
    pointer-events: none;
}

#itemPopup.hidden > div:last-child {
    transform: translateY(-20px);
}
