/**
 * Triporia Transfer - Modern Custom CSS
 * Tailwind'siz, WordPress çakışmasız, tamamen özel tasarım
 * @version 7.2.0 (Fixed Time Picker & Extra Buttons)
 */

/* ============================================
   RESET & BASE
   ============================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.tp-app {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #374151;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   LAYOUT
   ============================================ */
.tp-app {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.tp-app .grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .tp-app .grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* ============================================
   PROGRESS BAR
   ============================================ */
.tp-steps {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.tp-steps > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.tp-steps > div::before {
    content: '';
    position: absolute;
    top: 1.75rem;
    left: 0;
    right: 0;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}

#tp-progress-line {
    position: absolute;
    top: 1.75rem;
    left: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.5s ease-out;
    z-index: 1;
}

.tp-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.tp-step-num {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #e5e7eb;
    color: #9ca3af;
    font-weight: bold;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    transition: all 0.3s;
}

.tp-step.active .tp-step-num {
    background: #d4af37;
    color: white;
}

.tp-step span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #9ca3af;
    display: none;
}

.tp-step.active span {
    color: #111827;
}

@media (min-width: 640px) {
    .tp-step span {
        display: block;
    }
}

/* ============================================
   CARDS
   ============================================ */
.tp-view {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 2rem;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 2rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

/* ============================================
   TABS
   ============================================ */
.tp-tabs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.tp-tab {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    background: #f3f4f6;
    color: #374151;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.tp-tab:hover {
    background: #e5e7eb;
}

.tp-tab.active {
    background: #111827;
    color: white;
}

/* ============================================
   FORMS
   ============================================ */
label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
    height: 3rem;
}

/* Input ile icon varsa padding ekle */
.input-group input,
.input-group select {
    padding-left: 3rem !important;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: #9ca3af;
}

/* Input Icons */
.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group > i:first-of-type {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
    z-index: 10;
    font-size: 1.1rem;
}

/* Label varsa ikonun konumunu ayarla */
.input-group label + i:first-of-type {
    top: calc(50% + 14px);
    transform: translateY(-50%);
}

/* Select için ikinci icon (chevron) */
.input-group.select > i.fa-chevron-down {
    position: absolute;
    right: 1rem;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: #9ca3af;
    pointer-events: none;
    z-index: 1;
}

/* Select */
select {
    appearance: none;
    background-image: none;
    cursor: pointer;
    padding-right: 2.75rem;
}

/* Textarea */
textarea {
    padding: 0.75rem 1rem;
    min-height: 100px;
    resize: vertical;
    height: auto;
}

/* Grid */
.form-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
button {
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    width: 100%;
    background: #111827;
    color: white;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background: #000;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
    padding: 0.75rem 1.5rem;
    border: 1px solid #d1d5db;
    background: white;
    color: #374151;
    font-weight: 600;
    border-radius: 0.75rem;
}

.btn-secondary:hover {
    background: #f9fafb;
}

.btn-success {
    background: #10b981;
    color: white;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
}

.btn-success:hover {
    background: #059669;
}

.btn-group {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

.btn-group .btn-secondary {
    flex: 1;
}

.btn-group .btn-primary,
.btn-group .btn-success {
    flex: 2;
}

/* ============================================
   VEHICLE CARDS
   ============================================ */
.tp-v-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 1rem;
}

.tp-v-item:hover {
    border-color: #d4af37;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tp-v-item.selected {
    border-color: #d4af37 !important;
    background: #fffbeb !important;
}

.tp-v-item .v-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .tp-v-item .v-content {
        flex-direction: row;
    }
}

.tp-v-item .v-image {
    flex: 2;
}

.tp-v-item .v-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.75rem;
}

.tp-v-item .v-details {
    flex: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tp-v-item h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.tp-v-item .v-specs {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.tp-v-item .v-specs span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.tp-v-item .v-specs i {
    color: #d4af37;
}

.tp-v-item .v-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.tp-v-item .v-price {
    font-size: 1.875rem;
    font-weight: bold;
    color: #d4af37;
}

.tp-v-item .v-select {
    padding: 0.5rem 1rem;
    background: #111827;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
}

/* ============================================
   EXTRAS (DÜZELTİLDİ: +/- İKONLARI)
   ============================================ */
.extra-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s;
}

.extra-item:hover {
    border-color: #d1d5db;
}

.extra-item h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.extra-item .price {
    font-size: 0.875rem;
    font-weight: 600;
    color: #d4af37;
}

.extra-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.extra-controls button {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background: white;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    font-size: 1.25rem;
    color: #111827;
    line-height: 1;
}

/* Eğer FontAwesome yüklenmezse veya buton boşsa CSS ile +/- ekle */
.extra-controls button:first-child:empty::before,
.extra-controls button:first-child i:empty::before {
    content: '-';
    display: block;
    font-weight: bold;
}

.extra-controls button:last-child:empty::before,
.extra-controls button:last-child i:empty::before {
    content: '+';
    display: block;
    font-weight: bold;
}

/* İkon renk düzeltmesi */
.extra-controls button i {
    color: #111827 !important;
    font-style: normal;
}

.extra-controls button:hover {
    background: #f9fafb;
}

.extra-controls input {
    width: 2.5rem;
    text-align: center;
    font-weight: 600;
    color: #111827;
    border: none;
    background: transparent;
    padding: 0;
    height: auto;
}

/* ============================================
   PAYMENT METHODS
   ============================================ */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-method {
    position: relative;
}

.payment-method input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-method label {
    display: block;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-method label:hover {
    background: #f9fafb;
}

.payment-method input:checked + label {
    border-color: #d4af37;
    background: #fffbeb;
}

.payment-method i {
    display: block;
    font-size: 2rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.payment-method input:checked + label i {
    color: #d4af37;
}

.payment-method .method-name {
    font-weight: 600;
    color: #111827;
}

/* ============================================
   CHECKBOXES
   ============================================ */
.checkbox-wrapper {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.checkbox-label:hover {
    border-color: #d4af37;
    background: #fafafa;
}

.checkbox-label input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #d1d5db;
    border-radius: 0.375rem;
    cursor: pointer;
    flex-shrink: 0;
    appearance: none;
    background: white;
    position: relative;
    margin: 0;
    padding: 0;
}

.checkbox-label input[type="checkbox"]:checked {
    background: #d4af37;
    border-color: #d4af37;
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.875rem;
    font-weight: bold;
}

.checkbox-label .label-text {
    flex: 1;
    font-weight: 600;
    color: #111827;
    font-size: 0.875rem;
}

.checkbox-label .badge {
    padding: 0.25rem 0.75rem;
    background: #fef3c7;
    color: #92400e;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

/* ============================================
   SIDEBAR
   ============================================ */
.tp-sidebar {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 1.5rem;
    position: sticky;
    top: 2rem;
}

.tp-sidebar h3 {
    font-weight: bold;
    color: #111827;
    font-size: 1.125rem;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sidebar-section {
    margin-bottom: 1.5rem;
}

.sidebar-item {
    margin-bottom: 1rem;
}

.sidebar-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.sidebar-value {
    font-weight: 600;
    color: #111827;
}

.sidebar-badge {
    padding: 0.5rem 0.75rem;
    background: #dbeafe;
    color: #1e40af;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-details {
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-label {
    color: #6b7280;
}

.detail-value {
    font-weight: 600;
    color: #111827;
}

.sidebar-divider {
    border-top: 1px solid #f3f4f6;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.price-label {
    color: #6b7280;
}

.price-value {
    font-weight: 600;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px dashed #e5e7eb;
    margin-top: 1.5rem;
}

.total-label {
    font-weight: bold;
    color: #111827;
}

.total-value {
    font-size: 1.875rem;
    font-weight: bold;
    color: #d4af37;
}

/* ============================================
   MOBILE BAR
   ============================================ */
.tp-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 1rem;
    box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
    z-index: 50;
}

@media (max-width: 1023px) {
    .tp-mobile-bar {
        display: block;
    }
    
    .tp-sidebar {
        display: none;
    }
}

.tp-mobile-bar .bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 768px;
    margin: 0 auto;
}

.mobile-price-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
}

.mobile-price-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d4af37;
}

.mobile-btn {
    padding: 0.75rem 1.5rem;
    background: #111827;
    color: white;
    font-weight: 600;
    border-radius: 0.75rem;
}

/* ============================================
   ALERTS & MESSAGES
   ============================================ */
.alert {
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.alert-error i {
    margin-right: 0.5rem;
}

.alert-info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
}

/* Flight Code Box */
.flight-box {
    padding: 1rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.flight-box label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flight-box input {
    background: white;
    border-color: #93c5fd;
}

.flight-box input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Success Message */
.success-box {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.success-icon {
    width: 5rem;
    height: 5rem;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon i {
    font-size: 2.5rem;
    color: #10b981;
}

.success-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.5rem;
}

.success-text {
    color: #6b7280;
}

/* ============================================
   LOADER
   ============================================ */
#tp-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#tp-loader .spinner {
    position: relative;
    width: 4rem;
    height: 4rem;
}

#tp-loader .spinner-ring {
    position: absolute;
    width: 4rem;
    height: 4rem;
    border: 4px solid #e5e7eb;
    border-radius: 50%;
}

#tp-loader .spinner-active {
    position: absolute;
    width: 4rem;
    height: 4rem;
    border: 4px solid #d4af37;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.gap-2 {
    gap: 0.5rem;
}

/* ============================================
   FLATPICKR MODERN THEME (TAMAMEN YENİLENDİ)
   ============================================ */
.flatpickr-calendar {
    background: white !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 1rem !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
    font-family: inherit !important;
    z-index: 99999 !important;
    padding-bottom: 1rem !important;
}

.flatpickr-calendar.open {
    display: block !important;
}

/* HEADER & NAVIGATION */
.flatpickr-months {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: white !important;
    padding: 1.5rem 1rem 1rem 1rem !important;
    border-bottom: 1px solid #f3f4f6 !important;
    position: relative !important;
}

/* Prev/Next Arrows - Konumlandırma */
.flatpickr-prev-month,
.flatpickr-next-month {
    position: static !important;
    padding: 0.5rem !important;
    height: 2.5rem !important;
    width: 2.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 0.5rem !important;
    transition: all 0.2s !important;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    background: #f3f4f6 !important;
    color: #111827 !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    width: 14px !important;
    height: 14px !important;
    fill: #374151 !important;
}

/* Month/Year Container - Hizalama */
.flatpickr-current-month {
    position: static !important;
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    padding: 0 !important;
    height: auto !important;
}

/* Ay Seçimi */
.flatpickr-current-month .flatpickr-monthDropdown-months {
    appearance: none !important;
    background: transparent !important;
    border: none !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #111827 !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    width: auto !important;
}

/* Yıl Inputu */
.flatpickr-current-month input.cur-year {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #111827 !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 4ch !important;
    height: auto !important;
    display: inline-block !important;
}

/* Okları gizle (Sadece Ay başlığında) */
.flatpickr-current-month .numInputWrapper {
    width: auto !important;
}
.flatpickr-current-month .numInputWrapper span { display: none !important; }

/* WEEKDAYS */
.flatpickr-weekdays {
    background: white !important;
    height: auto !important;
    padding: 0.75rem 0 0.5rem 0 !important;
}

.flatpickr-weekdaycontainer {
    display: flex !important;
    padding: 0 1rem !important;
}

.flatpickr-weekday {
    background: transparent !important;
    color: #9ca3af !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    flex: 1 !important;
}

/* DAYS GRID */
.flatpickr-days {
    width: 100% !important;
    background: white !important;
    padding: 0 !important;
}

.flatpickr-rContainer {
    padding: 0 1rem !important;
    width: 100% !important;
}

.dayContainer {
    width: 100% !important;
    min-width: 100% !important;
    max-width: none !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-around !important;
    padding-bottom: 0.5rem !important;
}

/* GÜNLER */
.flatpickr-day {
    color: #374151 !important;
    background: white !important;
    border-radius: 0.5rem !important;
    border: 1px solid transparent !important;
    font-weight: 500 !important;
    height: 2.75rem !important;
    width: 14.28% !important;
    max-width: 2.75rem !important;
    line-height: 2.75rem !important;
    margin: 4px 0 !important;
    cursor: pointer !important;
}

.flatpickr-day:hover:not(.flatpickr-disabled):not(.selected) {
    background: #f3f4f6 !important;
    color: #111827 !important;
    border-color: transparent !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #d4af37 !important;
    border-color: #d4af37 !important;
    color: white !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3) !important;
}

.flatpickr-day.today {
    border: 1px solid #d4af37 !important;
    color: #d4af37 !important;
}

.flatpickr-day.today.selected {
    color: white !important;
    border-color: #d4af37 !important;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #d1d5db !important;
    background: transparent !important;
}

.flatpickr-day.disabled {
    color: #e5e7eb !important;
    cursor: not-allowed !important;
}

/* TIME PICKER (DÜZELTİLDİ: OKLAR VE HİZALAMA) */
.flatpickr-time {
    border-top: 1px solid #e5e7eb !important;
    padding: 1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    max-height: none !important;
    gap: 0.5rem !important;
}

.flatpickr-time .numInputWrapper {
    width: 3.5rem !important;
    height: 3rem !important;
    flex: 0 0 auto !important;
}

.flatpickr-time input {
    font-size: 1.25rem !important;
    font-weight: bold !important;
    color: #111827 !important;
    background: #f9fafb !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 0.5rem !important;
    height: 3rem !important;
    width: 100% !important;
    padding: 0 !important;
    text-align: center !important;
}

.flatpickr-time input:hover,
.flatpickr-time input:focus {
    background: white !important;
    border-color: #d4af37 !important;
}

.flatpickr-time .flatpickr-time-separator {
    color: #374151 !important;
    font-weight: bold !important;
    padding: 0 !important;
    font-size: 1.5rem !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
}

.flatpickr-time .flatpickr-am-pm {
    background: #f9fafb !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 0.5rem !important;
    font-weight: bold !important;
    height: 3rem !important;
    width: 3.5rem !important;
    margin-left: 0.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Okları görünür yap (Time picker için) */
.flatpickr-time .numInputWrapper span {
    opacity: 1 !important;
    border: none !important;
    right: 2px !important;
    width: 14px !important;
    padding: 0 !important;
    display: block !important;
}

.flatpickr-time .numInputWrapper span:after {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.flatpickr-time .numInputWrapper span.arrowUp {
    top: 2px !important;
    bottom: 50% !important;
}

.flatpickr-time .numInputWrapper span.arrowDown {
    top: 50% !important;
    bottom: 2px !important;
}

/* PRINT */
@media print {
    .tp-mobile-bar,
    button,
    .tp-steps {
        display: none !important;
    }
}