/**
 * Baskı Sipariş Sistemi - CSS
 */

/* Hero Section */
.baski-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Product Cards */
.product-card {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.product-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.cursor-pointer {
    cursor: pointer;
}

/* Upload Area */
.upload-area {
    border: 2px dashed #dee2e6;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #f8f9fa;
}

.upload-area:hover {
    border-color: #667eea;
    background-color: #f8f9ff;
}

.upload-area.dragover {
    border-color: #667eea;
    background-color: #f0f2ff;
    transform: scale(1.02);
}

.upload-area.has-file {
    border-color: #198754;
    background-color: #f8fff9;
}

/* Form Elements */
.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Result Section */
.result-details {
    font-size: 0.95rem;
}

.result-details .row {
    padding: 5px 0;
}

.result-details hr {
    margin: 15px 0;
    opacity: 0.3;
}

/* Responsive */
@media (max-width: 768px) {
    .product-card {
        margin-bottom: 15px;
    }
}

