/* ==================================== */
/* MODERN 2025 AUTH PAGES - SADE & DİKKAT ÇEKİCİ */
/* ==================================== */

/* 1. AUTH PAGE LAYOUT - Sade Arka Plan
-------------------------------------- */
.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 1rem;
    min-height: calc(100vh - 150px);
    position: relative;
    overflow: hidden;
}

.auth-container {
    width: 100%;
    max-width: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-page::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(239, 68, 68, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

:root[data-theme="dark"] .auth-page::before {
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(239, 68, 68, 0.08) 0%, transparent 50%);
}

:root[data-theme="dark"] .auth-card {
    box-shadow: var(--shadow-lg);
}

:root[data-theme="dark"] .auth-footer-link {
    border-top-color: var(--border-color);
}

:root[data-theme="dark"] .form-check-radio label::before {
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.08), transparent);
}


/* 2. MODERN AUTH CARD - Dikkat Çekici
-------------------------------------- */
.auth-card {
    max-width: 480px;
    width: 100%;
    background: var(--card-bg);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-radius: var(--border-radius-large);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    padding: 3rem;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}


.auth-card:hover {
    box-shadow: 0 25px 80px rgba(220, 38, 38, 0.25);
    transition: box-shadow var(--transition-normal);
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-large) var(--border-radius-large) 0 0;
}

.auth-card .card-title {
    margin-bottom: 0.5rem;
    text-align: center;
    font-size: 2.5rem;
    width: 100%;
    display: block;
}

.auth-subtext {
    color: var(--text-color-light);
    margin-bottom: 2.5rem;
    text-align: center;
    font-size: 1rem;
}

/* 3. MODERN FORM ELEMENTS
-------------------------------------- */
.auth-card .form-group {
}


.auth-card .form-input {
    border: 2px solid var(--border-color);
    background: var(--bg-color);
    color: var(--text-color);
}

.auth-card .form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15);
    background: var(--card-bg);
}


.auth-card .btn-primary {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 1.15rem 0 1rem;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 0 0.75rem;
    color: var(--text-color-light);
    background: var(--card-bg);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn-google {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 0;
    border: 1.5px solid var(--border-color) !important;
    background: #fff !important;
    color: #1f2937 !important;
    box-shadow: var(--shadow-md);
    font-family: var(--font-family-heading);
    font-size: 0.95rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

.btn-google:hover {
    background: #fff5f5 !important;
    border-color: rgba(220, 38, 38, 0.28) !important;
    color: #111827 !important;
}

.btn-google::before,
.btn-google::after {
    display: none !important;
}

.google-icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.google-icon svg {
    width: 100%;
    height: 100%;
}

:root[data-theme="dark"] .btn-google {
    background: rgba(15, 23, 42, 0.92) !important;
    border-color: rgba(148, 163, 184, 0.32) !important;
    color: #e2e8f0 !important;
}

:root[data-theme="dark"] .btn-google:hover {
    background: rgba(30, 41, 59, 0.95) !important;
}

:root[data-theme="dark"] .auth-divider span {
    background: rgba(15, 23, 42, 0.92);
}

.google-status-panel {
    margin: 0 0 1.25rem;
    padding: 1rem 1.1rem;
    border: 1px dashed rgba(220, 38, 38, 0.35);
    border-radius: var(--border-radius-small);
    background: linear-gradient(135deg, rgba(254, 242, 242, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.google-status-title {
    margin: 0 0 0.45rem;
    font-family: var(--font-family-heading);
    font-size: 0.95rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color-dark);
}

.google-status-text {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-color-light);
    line-height: 1.55;
}

:root[data-theme="dark"] .google-status-panel {
    background: rgba(15, 23, 42, 0.92);
    border-color: rgba(239, 68, 68, 0.45);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .auth-page {
        padding: 2rem 1rem;
        min-height: calc(100vh - 100px);
    }
    
    .auth-card {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    
    .auth-card .card-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .auth-page {
        padding: 1.5rem 0.75rem;
    }
    
    .auth-card {
        padding: 1.5rem 1rem;
        border-radius: var(--border-radius);
    }
    
    .auth-card .card-title {
        font-size: 1.75rem;
    }
    
    .auth-subtext {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
}

/* 4. AUTH FOOTER LINK
-------------------------------------- */
.auth-footer-link {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    font-size: 0.95rem;
}

.auth-footer-link p {
    color: var(--text-color-light);
    margin-bottom: 0.5rem;
}

.auth-footer-link a {
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.auth-footer-link a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.auth-footer-link a:hover::after {
    width: 100%;
}

.auth-footer-link a:hover {
    color: var(--primary-color-dark);
}

/* 5. MODERN ROLE SELECTOR - Dikkat Çekici
-------------------------------------- */
.role-selector {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.form-check-radio label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    background: var(--card-bg);
    position: relative;
    overflow: hidden;
}

.form-check-radio label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
}

.form-check-radio label:hover::before {
    left: 100%;
}

.form-check-radio label .icon {
    font-size: 2rem;
}

.form-check-radio label:hover .icon {
}


.form-check-radio input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(239, 68, 68, 0.1) 100%);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15);
}


.form-check-radio label:hover {
    border-color: var(--primary-color-dark);
    box-shadow: var(--shadow-md);
}

/* 6. DIVIDER
-------------------------------------- */
.divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 2rem 0;
}

/* 7. RESPONSIVE
-------------------------------------- */
@media (max-width: 768px) {
    .auth-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .auth-card .card-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .auth-card {
        padding: 1.5rem 1rem;
        border-radius: var(--border-radius);
    }
    
    .auth-card .card-title {
        font-size: 1.75rem;
    }
}
/* 8. SELLER DOCUMENTS - FINAL GLASSMORPHISM */
#seller-docs {
    background: rgba(30, 41, 59, 0.5) !important; /* Koyu ama şeffaf arka plan */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(220, 38, 38, 0.3) !important; /* Kırmızımsı zarif çerçeve */
    border-radius: 16px;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem !important;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Kırmızı Üst Rozet */
#seller-docs::after {
    content: 'GEREKLİ BELGELER';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #dc2626, #ef4444) !important;
    color: white !important;
    padding: 4px 16px;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.4);
    white-space: nowrap;
}

/* Başlık (Eğer hala duruyorsa gizleyelim, rozet yetiyor) */
#seller-docs h4 {
    display: none !important;
}

/* Belge İsimleri (Vergi Levhası vs.) */
#seller-docs .form-label {
    color: #e2e8f0 !important; /* Parlak gri/beyaz yazı */
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin-top: 1rem;
    margin-bottom: 0.6rem !important;
    display: block;
    text-align: left;
}

/* Dosya Seçme Alanı (Input) */
#seller-docs .form-input {
    background: rgba(15, 23, 42, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #94a3b8 !important;
    border-radius: 10px !important;
    padding: 6px !important;
    transition: all 0.3s ease;
}

#seller-docs .form-input:hover {
    border-color: #dc2626 !important;
    background: rgba(15, 23, 42, 1) !important;
}

/* Dosya Seç Butonu */
#seller-docs .form-input::file-selector-button {
    background: #dc2626 !important;
    color: white !important;
    border: none !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    margin-right: 10px;
    cursor: pointer;
}

/* Beni Hatırla satırı — toggle + etiket + link hizalaması */
.auth-card .form-group-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 0.25rem;      /* şifre alanı ile arası */
    margin-bottom: 1.25rem;   /* GİRİŞ YAP butonu ile arası */
    gap: 0.75rem;
}

.auth-card .form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.auth-card .form-check label {
    font-size: 0.9rem;
    color: var(--text-color-light);
    cursor: pointer;
    line-height: 1.4;
    white-space: normal;
    user-select: none;
    flex: 1;
}

.auth-card .form-link {
    font-size: 0.9rem;
    color: var(--text-color-light);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    transition: color 0.2s ease;
}

.auth-card .form-link:hover {
    color: var(--primary-color);
}

/* ==================================== */
/* BELGE YÜKLEME SAYFASI (register-documents) - 2026
-------------------------------------- */
.auth-page-documents .auth-container-documents {
    max-width: 640px;
}
.auth-card-documents {
    max-width: 100%;
    padding: 2rem 2.5rem;
}
.documents-page-header {
    margin-bottom: 2rem;
}
.documents-page-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}
.documents-hint {
    font-size: 0.85rem;
    color: var(--text-color-light);
    margin-top: 0.5rem;
    text-align: center;
}
.documents-form {
    margin-top: 0.5rem;
}
.documents-grid {
    display: grid;
    gap: 1.25rem;
}
.documents-grid-seller {
    grid-template-columns: repeat(2, 1fr);
}
.documents-grid-courier {
    grid-template-columns: repeat(2, 1fr);
    max-width: 480px;
    margin: 0 auto;
}
.doc-upload-item {
    min-height: 0;
    height: 100%;
}
.doc-upload-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius-medium);
    background: var(--bg-color);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    position: relative;
    min-height: 120px;
    height: 100%;
}
.doc-upload-box:hover {
    border-color: var(--primary-color-light);
    background: var(--primary-color-lighter);
}
.doc-upload-box input {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    font-size: 0;
}
.doc-upload-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}
.doc-upload-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
    text-align: center;
}
.doc-upload-hint {
    font-size: 0.8rem;
    color: var(--text-color-light);
    margin-top: 0.25rem;
}
.documents-submit-wrap {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}
.btn-documents-submit {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}
@media (max-width: 768px) {
    .documents-grid-seller,
    .documents-grid-courier {
        grid-template-columns: 1fr;
    }
    .auth-card-documents {
        padding: 1.5rem 1.25rem;
    }
}

/* ==================================== */
/* 9. SATICI ADRES BİLGİLERİ — CUSTOM DROPDOWN
-------------------------------------- */
.seller-address-section {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: 16px;
    padding: 2rem 1.5rem 1.5rem;
    margin: 2rem 0 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    animation: addressSectionFadeIn 0.5s ease-out;
}

@keyframes addressSectionFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.address-section-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.address-section-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
    animation: addressPinBounce 2s ease-in-out infinite;
}

@keyframes addressPinBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.address-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 0.35rem;
}

.address-section-desc {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.4;
}

/* === ADRES ADIMLARI === */
.address-step {
    margin-bottom: 1.25rem;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.address-step-locked {
    opacity: 0.4;
    pointer-events: none;
    transform: translateY(4px);
}

.address-step-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.55rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: #e2e8f0;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.35);
}

/* === CUSTOM DROPDOWN === */
.custom-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #94a3b8;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
    font-family: inherit;
}

.dropdown-trigger:hover:not(:disabled) {
    border-color: rgba(220, 38, 38, 0.5);
    background: rgba(15, 23, 42, 1);
}

.dropdown-trigger:focus:not(:disabled) {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.dropdown-trigger-disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.dropdown-trigger-selected {
    color: #f1f5f9;
    border-color: rgba(220, 38, 38, 0.4);
    background: rgba(220, 38, 38, 0.08);
}

.dropdown-trigger-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dropdown-trigger-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-arrow {
    flex-shrink: 0;
    transition: transform 0.25s ease;
    opacity: 0.6;
}

/* === DROPDOWN PANELİ === */
.dropdown-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(220, 38, 38, 0.3);
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05);
    z-index: 100;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.97);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.dropdown-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* === ARAMA KUTUSU === */
.dropdown-search-wrap {
    position: relative;
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dropdown-search-icon {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
}

.dropdown-search {
    width: 100%;
    padding: 0.55rem 0.75rem 0.55rem 2.2rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e2e8f0;
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.dropdown-search:focus {
    border-color: #dc2626;
}

.dropdown-search::placeholder {
    color: #64748b;
}

/* === LİSTE === */
.dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0.35rem 0;
    max-height: 220px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(220, 38, 38, 0.3) transparent;
}

.dropdown-list::-webkit-scrollbar {
    width: 6px;
}

.dropdown-list::-webkit-scrollbar-track {
    background: transparent;
}

.dropdown-list::-webkit-scrollbar-thumb {
    background: rgba(220, 38, 38, 0.3);
    border-radius: 3px;
}

.dropdown-list li {
    padding: 0.6rem 1rem;
    color: #cbd5e1;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.15s ease;
    border-left: 3px solid transparent;
}

.dropdown-list li:hover {
    background: rgba(220, 38, 38, 0.12);
    color: #f1f5f9;
    border-left-color: #dc2626;
}

.dropdown-loading {
    text-align: center;
    color: #64748b;
    padding: 1rem !important;
    cursor: default !important;
    font-style: italic;
}

.dropdown-empty {
    text-align: center;
    color: #64748b;
    padding: 1rem;
    font-size: 0.85rem;
}

/* === TEXT INPUT === */
.address-text-input {
    background: rgba(15, 23, 42, 0.8) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
    color: #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.92rem !important;
    transition: all 0.25s ease;
    width: 100%;
    box-sizing: border-box;
}

.address-text-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.address-text-input::placeholder {
    color: #64748b !important;
}

.address-text-input:focus:not(:disabled) {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
    background: rgba(15, 23, 42, 1) !important;
    outline: none;
}

.address-textarea {
    resize: vertical;
    min-height: 56px;
    max-height: 130px;
    line-height: 1.5;
    font-family: inherit;
}

/* === ADRES ÖZETİ === */
.address-summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding: 0.85rem 1.1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 10px;
    animation: summaryFadeIn 0.35s ease-out;
}

@keyframes summaryFadeIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

.address-summary-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.address-summary-text {
    font-size: 0.88rem;
    color: #a7f3d0;
    font-weight: 500;
    line-height: 1.4;
}

/* === LIGHT THEME === */
:root:not([data-theme="dark"]) .seller-address-section {
    background: rgba(248, 250, 252, 0.97);
    border-color: rgba(220, 38, 38, 0.18);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

:root:not([data-theme="dark"]) .address-section-title {
    color: #1e293b;
}

:root:not([data-theme="dark"]) .address-section-desc {
    color: #64748b;
}

:root:not([data-theme="dark"]) .address-step-label {
    color: #334155;
}

:root:not([data-theme="dark"]) .dropdown-trigger {
    background: #fff;
    border-color: #d1d5db;
    color: #6b7280;
}

:root:not([data-theme="dark"]) .dropdown-trigger-selected {
    color: #1e293b;
    border-color: rgba(220, 38, 38, 0.4);
    background: rgba(220, 38, 38, 0.04);
}

:root:not([data-theme="dark"]) .dropdown-trigger:hover:not(:disabled) {
    border-color: rgba(220, 38, 38, 0.5);
    background: #fafafa;
}

:root:not([data-theme="dark"]) .dropdown-panel {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(220, 38, 38, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

:root:not([data-theme="dark"]) .dropdown-search-wrap {
    border-bottom-color: #e5e7eb;
}

:root:not([data-theme="dark"]) .dropdown-search {
    background: #f8fafc;
    border-color: #e5e7eb;
    color: #1e293b;
}

:root:not([data-theme="dark"]) .dropdown-search::placeholder {
    color: #9ca3af;
}

:root:not([data-theme="dark"]) .dropdown-list li {
    color: #374151;
}

:root:not([data-theme="dark"]) .dropdown-list li:hover {
    background: rgba(220, 38, 38, 0.06);
    color: #1e293b;
}

:root:not([data-theme="dark"]) .address-text-input {
    background: #fff !important;
    border-color: #d1d5db !important;
    color: #1e293b !important;
}

:root:not([data-theme="dark"]) .address-text-input::placeholder {
    color: #9ca3af !important;
}

:root:not([data-theme="dark"]) .address-text-input:focus:not(:disabled) {
    background: #fff !important;
}

:root:not([data-theme="dark"]) .address-summary {
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.25);
}

:root:not([data-theme="dark"]) .address-summary-text {
    color: #059669;
}

:root:not([data-theme="dark"]) .dropdown-list::-webkit-scrollbar-thumb {
    background: rgba(220, 38, 38, 0.2);
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
    .seller-address-section {
        padding: 1.5rem 1rem 1rem;
    }
    .dropdown-list {
        max-height: 180px;
    }
}

