/* EricaPrints Mockup Creator Styles */

body {
    background-color: #f5f5f5;
}

/* Step Indicator */
.step-indicator .step {
    padding: 8px 16px;
    border-radius: 20px;
    background: #e9ecef;
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
}

.step-indicator .step.active {
    background: #0d6efd;
    color: white;
}

.step-indicator .step.done {
    background: #198754;
    color: white;
}

.step-num {
    font-weight: 700;
    margin-right: 4px;
}

/* Drop Zone */
.drop-zone {
    border: 3px dashed #ccc;
    border-radius: 12px;
    padding: 60px 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.drop-zone:hover,
.drop-zone.drag-over {
    border-color: #0d6efd;
    background: #f0f7ff;
}

/* Crop Container */
#crop-container {
    background: #1a1a1a;
    border-radius: 4px;
    height: 70vh;
    overflow: hidden;
}

#crop-container img {
    display: block;
    max-width: 100%;
}

/* Ratio Buttons */
.ratio-btn.active {
    font-weight: 700;
}

/* Mockup Gallery Cards */
.mockup-card {
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    border: 1px solid #dee2e6;
}

.mockup-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mockup-card img {
    aspect-ratio: 1;
    object-fit: contain;
    background: #f8f8f8;
    padding: 4px;
}

/* Progress */
.progress {
    height: 24px;
}

/* Lightbox */
#lightboxModal .modal-content {
    border: none;
}

#lightbox-img {
    max-height: 90vh;
}

/* Price Table */
#price-table {
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .step-indicator .step {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    #crop-container {
        height: 50vh;
    }
}
