/* Aracını Hemen Sat Sayfası Özel Stilleri */

body {
    /* Ana sitedeki değişkenleri kullan */
    font-family: var(--font-main, 'Plus Jakarta Sans', sans-serif);
    background-color: #f4f7f9;
}

/* Hero biraz daha dar olsun, ana sayfadan bağımsız */
.hemen-sat-hero {
    padding: 110px 0 80px;
}

/* Kart ve layout */
.card {
    border: none;
    border-radius: 1rem;
    background-color: #ffffff;
}

.main-container,
#hemen-sat-form .container {
    max-width: 1200px;
    margin: auto;
}

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

.form-step {
    animation: fadeIn 0.4s ease-out;
}

.step-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 1rem;
}

.selection-item {
    border: 1px solid #dee2e6;
    border-radius: 0.75rem;
    padding: 1.1rem 0.9rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}

.selection-item:hover {
    border-color: var(--primary-blue, #0056D2);
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.selection-item .brand-logo {
    width: 50px;
    height: auto;
    margin: 0 auto 0.4rem;
    display: block;
}

/* Kaporta / Hasar tabloları */
.damage-tables-wrapper h6 {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.6rem 0.75rem;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.damage-tables-wrapper h6:first-of-type {
    margin-top: 0;
}

.damage-tables-wrapper .table th,
.damage-tables-wrapper .table td {
    font-size: 0.82rem;
    vertical-align: middle;
    text-align: center;
}

.damage-tables-wrapper .table td .btn-sm {
    font-size: 0.72rem;
    padding: 0.15rem 0.4rem;
}

.damage-tables-wrapper .table td:first-child {
    text-align: left;
    padding-left: 0.75rem;
}

/* Özet listesi */
.summary-list .list-group-item {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #f1f1f1 !important;
}

/* OTP */
.otp-input-group {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.otp-input {
    width: 50px;
    height: 60px;
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
}

/* Hero sağdaki kart */
.hemen-sat-hero-card {
    max-width: 380px;
}

/* Sağdaki özet kartı biraz dar görünmesin */
.hemen-sat-summary-card {
    border-radius: 1rem;
}

/* Mobil uyum dokunuşları */
@media (max-width: 991.98px) {
    .hemen-sat-hero {
        padding: 100px 0 60px;
    }
    .selection-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    .hemen-sat-summary-card {
        position: static !important;
        margin-top: 1.5rem;
    }
}
