/* Slaytların sayfa açılırken üst üste binmesini engelleyen düzenleme */
.o-hero-2-active:not(.swiper-initialized) .swiper-slide:not(:first-child) {
    display: none;
}

/* İlk slaytın her zaman görünür ve hizalı kalmasını sağlar */
.o-hero-2-active:not(.swiper-initialized) .swiper-slide:first-child {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Slayt içeriğinin (metinlerin) birbirine girmemesi için temel hizalama */
.o-hero-2-active .swiper-wrapper {
    display: flex;
}

.o-hero-2-active:not(.swiper-initialized) .swiper-wrapper {
    display: block;
}

/* Page Loader Stilleri */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: visible;
    opacity: 1;
    animation: fadeOutLoader 0.6s ease-in-out 0.7s forwards;
    pointer-events: all;
}

.loader-content img {
    max-width: 280px;
    height: auto;
    animation: pulseLoader 1.5s ease-in-out infinite alternate;
}

@keyframes fadeOutLoader {
    0% {
        opacity: 1;
        visibility: visible;
    }

    99% {
        opacity: 0;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

@keyframes pulseLoader {
    from {
        transform: scale(1);
        opacity: 0.8;
    }

    to {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Bölüm Geçiş Yumuşatma Stilleri */
.tour-section {
    background-attachment: fixed !important;
    /* Premium Paralaks Geçiş */
    overflow: visible !important;
    /* Kartların olduğu alanları değil, sadece blok birleşim yerlerini yumuşatır */
    box-shadow:
        inset 0 120px 120px -120px rgba(0, 0, 0, 0.08),
        inset 0 -120px 120px -120px rgba(0, 0, 0, 0.08) !important;
    transition: background-position 0.1s linear;
}

/* ==========================================================================
   WooCommerce Tur Rezervasyon Modülü Stilleri
   ========================================================================== */

/* niceSelect düzenlemeleri */
.nice-select {
    width: 100% !important;
    float: none !important;
    margin-bottom: 20px !important;
    border: 1px solid #ccc !important;
    border-radius: 5px !important;
    font-size: 17px !important;
}

.nice-select .list {
    width: 100% !important;
    border-radius: 5px !important;
    position: absolute !important;
    z-index: 9999 !important;
}

/* adet seçici stilleri */
.o-quantity-selector {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.qty-btn {
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    line-height: 30px !important;
    border-radius: 50% !important;
    border: 1px solid #ccc !important;
    background-color: #fff !important;
    cursor: pointer;
    font-size: 18px !important;
    font-weight: bold !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    color: #555;
}

.qty-btn:hover:not(:disabled) {
    background-color: #007cba !important;
    color: #fff !important;
    border-color: #007cba !important;
}

.qty-btn:disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
    background-color: #f5f5f5 !important;
    color: #ccc !important;
    border-color: #ddd !important;
}

.qty-input {
    width: 70px !important;
    border: none !important;
    background: transparent !important;
    pointer-events: none !important;
    text-align: center !important;
    font-size: 17px !important;
    padding-right: 10px !important;
}

/* Rezervasyon Kutusu Tasarımı */
.o-tour-booking-container {
    border: 1px solid #ddd;
    padding: 25px !important;
    border-radius: 10px;
    background-color: #fff;
    margin-bottom: 25px;
}

.o-tour-booking-title {
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
    font-size: 18px;
}

.o-tour-booking-label {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    display: block;
    font-weight: bold;
}

.o-tour-date-select-native {
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 17px;
    height: auto;
}

.o-tour-dynamic-price-box {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 16px;
    border-radius: 5px;
}

.o-tour-price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 16px;
}

.o-tour-price-total {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    color: #007cba !important;
    font-size: 17px;
}

.o-tour-error-notice {
    font-size: 15px;
    border-radius: 5px;
}

.o-tour-submit-btn {
    font-weight: 600;
    border-radius: 5px;
    font-size: 18px;
    background-color: #007cba;
    border: none;
    color: #fff;
    cursor: pointer;
    display: block;
    text-align: center;
}

.o-tour-submit-btn:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
}

.o-tour-policy-container {
    border: 1px solid #ddd;
    padding: 25px !important;
    border-radius: 10px;
    background-color: #fff;
    margin-top: 25px;
}

/* ==========================================================================
   Checkout Katılımcı Bilgileri Stilleri (Zarif ve Premium Görünüm)
   ========================================================================== */
.passenger-details-wrapper {
    margin-top: 25px;
    margin-bottom: 25px;
    background: #ffffff !important;
    border: 1px solid #eef2f6 !important;
    border-radius: 8px !important;
    padding: 20px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02) !important;
}

.passenger-details-heading {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin-bottom: 4px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.passenger-details-desc {
    margin-bottom: 20px !important;
    font-size: 13px !important;
    color: #777777 !important;
}

.tour-passengers-group {
    border: none !important;
    padding: 0 !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
}

.tour-passengers-group-title {
    border-bottom: 1px solid #f0f4f8 !important;
    padding-bottom: 8px !important;
    margin-bottom: 15px !important;
    color: #222222 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.passenger-row {
    margin-bottom: 15px !important;
    padding: 12px 15px !important;
    border: 1px solid #eef2f6 !important;
    background-color: #fafbfd !important;
    border-radius: 6px !important;
}

.passenger-row:last-child {
    margin-bottom: 0 !important;
}

.passenger-row-title {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #007cba !important;
    margin-bottom: 8px !important;
}

.passenger-grid {
    display: grid !important;
    grid-template-columns: 1.5fr 1.2fr 0.8fr !important;
    gap: 10px !important;
}

@media (max-width: 768px) {
    .passenger-grid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
}

.passenger-grid .form-group {
    margin-bottom: 0 !important;
}

/* Giriş alanları ve etiket stilleri en alttaki ortak form tasarımında tanımlanmıştır. */

.passenger-grid .required {
    color: #e53e3e !important;
    font-weight: bold !important;
}



/* ==========================================================================
   Rezervasyonu İptal Et ve Silme Bağlantıları Stilleri
   ========================================================================== */
.o-cancel-booking-btn {
    display: inline-flex !important;
    align-items: center;
    padding: 8px 16px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #e53e3e !important;
    border: 1px solid #fed7d7 !important;
    background-color: #fff5f5 !important;
    border-radius: 5px !important;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out !important;
}

.o-cancel-booking-btn:hover {
    color: #ffffff !important;
    background-color: #e53e3e !important;
    border-color: #e53e3e !important;
}

.o-checkout-remove-item-link {
    display: inline-block !important;
    color: #e53e3e !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    margin-top: 4px !important;
    transition: all 0.2s ease !important;
}

.o-checkout-remove-item-link:hover {
    color: #c53030 !important;
    text-decoration: underline !important;
}

/* Yardımcı Sınıflar ve Eklemeler */
.o-hidden {
    display: none !important;
}

.o-tour-price-detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 16px;
}

.o-tour-divider {
    margin: 10px 0;
    border: 0;
    border-top: 1px solid #dee2e6;
}

.o-quantity-selector .selector-label span.fw-bold {
    font-size: 16px !important;
    color: #333 !important;
}

.o-quantity-selector .selector-label span.text-muted {
    font-size: 15px !important;
}

/* ==========================================================================
   WooCommerce Ödeme Sayfası Sipariş Butonları
   ========================================================================== */

/* Klasik Ödeme (Shortcode) Butonu */
.woocommerce-checkout #place_order {
    font-weight: 600 !important;
    border-radius: 5px !important;
    font-size: 19px !important;
    background-color: #007cba !important;
    border: none !important;
    color: #fff !important;
    cursor: pointer !important;
    display: inline-block !important;
    text-align: center !important;
    padding: 15px 30px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.15) !important;
    width: 100% !important;
}

.woocommerce-checkout #place_order:hover {
    background-color: #005a87 !important;
    box-shadow: 0 6px 20px rgba(0, 90, 135, 0.25) !important;
}

/* Blok Ödeme (Gutenberg Checkout Block) Butonu */
.wc-block-components-checkout-place-order-button {
    font-weight: 600 !important;
    border-radius: 5px !important;
    font-size: 19px !important;
    background-color: #007cba !important;
    border: none !important;
    color: #fff !important;
    padding: 15px 30px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.15) !important;
}

.wc-block-components-checkout-place-order-button:hover {
    background-color: #005a87 !important;
    box-shadow: 0 6px 20px rgba(0, 90, 135, 0.25) !important;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button {
    font-weight: 500 !important;
}

/* ==========================================================================
   WooCommerce Ödeme Sayfası Tek Kolon Düzeni
   ========================================================================== */
.woocommerce-checkout .col2-set {
    width: 100% !important;
    float: none !important;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
    width: 100% !important;
    float: none !important;
    margin-bottom: 25px !important;
}

.woocommerce-checkout #order_review,
.woocommerce-checkout #order_review_heading {
    width: 100% !important;
    float: none !important;
    clear: both !important;
}

/* ==========================================================================
   WooCommerce & Katılımcı Formu Ortak Tasarım Dili (Tam Uyumlu Premium Yapı)
   ========================================================================== */

/* 1. Ortak Giriş Alanları (Input, Select, Textarea) */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea,
.woocommerce-checkout form.checkout input.input-text,
.woocommerce-checkout form.checkout select,
.woocommerce-checkout form.checkout textarea,
.passenger-grid input {
    width: 100% !important;
    height: 40px !important;
    padding: 10px 14px !important;
    border: 1px solid #dcdcdc !important;
    border-radius: 5px !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    box-sizing: border-box !important;
    background-color: #ffffff !important;
    color: #333333 !important;
    transition: all 0.2s ease-in-out !important;
    outline: none !important;
    font-family: inherit !important;
    box-shadow: none !important;
}

/* Textarea yüksekliği */
.woocommerce form .form-row textarea,
.woocommerce-checkout form.checkout textarea {
    height: 90px !important;
}

/* 2. Ortak Odaklanma (Focus) Stilleri */
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce-checkout form.checkout input.input-text:focus,
.woocommerce-checkout form.checkout select:focus,
.woocommerce-checkout form.checkout textarea:focus,
.passenger-grid input:focus {
    border-color: #007cba !important;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1) !important;
    outline: none !important;
}

/* 3. Ortak Etiketler (Label) */
.woocommerce form .form-row label,
.woocommerce-checkout form.checkout label,
.passenger-grid label {
    display: block !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    margin-bottom: 6px !important;
    color: #333333 !important;
    font-family: inherit !important;
}

/* 4. Ortak Placeholder (İpucu Metinleri) Tasarımı */
.woocommerce form .form-row input.input-text::placeholder,
.woocommerce form .form-row textarea::placeholder,
.woocommerce-checkout form.checkout input.input-text::placeholder,
.woocommerce-checkout form.checkout textarea::placeholder,
.passenger-grid input::placeholder {
    color: #999999 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    opacity: 1 !important;
}

/* Webkit ve Mozilla tarayıcıları için placeholder desteği */
.woocommerce form .form-row input.input-text::-webkit-input-placeholder,
.woocommerce form .form-row textarea::-webkit-input-placeholder,
.woocommerce-checkout form.checkout input.input-text::-webkit-input-placeholder,
.woocommerce-checkout form.checkout textarea::-webkit-input-placeholder,
.passenger-grid input::-webkit-input-placeholder {
    color: #999999 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
}

.woocommerce form .form-row input.input-text::-moz-placeholder,
.woocommerce form .form-row textarea::-moz-placeholder,
.woocommerce-checkout form.checkout input.input-text::-moz-placeholder,
.woocommerce-checkout form.checkout textarea::-moz-placeholder,
.passenger-grid input::-moz-placeholder {
    color: #999999 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
}

/* 5. WooCommerce Form Düzeni Satır Yapıları */
.woocommerce-checkout form.checkout .form-row {
    margin-bottom: 15px !important;
    padding: 0 !important;
}

.woocommerce-checkout form.checkout .form-row-first,
.woocommerce-checkout form.checkout .form-row-last {
    width: 48% !important;
    float: left !important;
}

.woocommerce-checkout form.checkout .form-row-first {
    margin-right: 4% !important;
}

.woocommerce-checkout form.checkout .form-row-wide {
    clear: both !important;
    width: 100% !important;
}

/* Select2 Bileşeni WooCommerce Uyumluluğu */
.woocommerce-checkout .select2-container--default .select2-selection--single {
    height: 40px !important;
    border: 1px solid #dcdcdc !important;
    border-radius: 5px !important;
    display: flex !important;
    align-items: center !important;
    background-color: #ffffff !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px !important;
    font-size: 16px !important;
    padding-left: 14px !important;
    color: #333333 !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px !important;
    right: 8px !important;
}

/* Fatura ve Kargo detay alanlarının kart görünümü */
.woocommerce-checkout #customer_details {
    background: #ffffff !important;
    border: 1px solid #eef2f6 !important;
    border-radius: 8px !important;
    padding: 25px !important;
    margin-bottom: 25px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02) !important;
}

.woocommerce-checkout #customer_details h3,
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3 {
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin-bottom: 20px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-bottom: 1px solid #f0f4f8 !important;
    padding-bottom: 10px !important;
}

/* Sipariş İnceleme Tablosundaki Kişi Dağılımını (Variation/Item Data) Yan Yana Listeleme */
#order_review dl.variation {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px 10px !important;
    margin: 6px 0 0 0 !important;
    padding: 0 !important;
    font-size: 14px !important;
}

#order_review dl.variation dt,
#order_review dl.variation dd {
    display: inline-block !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14px !important;
}

#order_review dl.variation dt {
    font-weight: 600 !important;
    color: #555555 !important;
}

#order_review dl.variation dd {
    margin-right: 15px !important;
    color: #333333 !important;
}

#order_review dl.variation dd p {
    margin: 0 !important;
    display: inline !important;
}

#order_review dl.variation dd:last-child {
    margin-right: 0 !important;
}

/* ==========================================================================
   WooCommerce Hesabım (My Account) Sayfası Premium Tasarım Dili
   ========================================================================== */

/* 1. Giriş ve Kayıt Ekranı Düzeni (Login / Register Page) */
.woocommerce-account #customer_login {
    display: flex !important;
    gap: 40px !important;
    max-width: 1000px !important;
    margin: 40px auto !important;
}

.woocommerce-account #customer_login .col-1,
.woocommerce-account #customer_login .col-2 {
    flex: 1 !important;
    background: #ffffff !important;
    border: 1px solid #eef2f6 !important;
    border-radius: 8px !important;
    padding: 30px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02) !important;
}

.woocommerce-account #customer_login h2 {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin-bottom: 25px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-bottom: 1px solid #f0f4f8 !important;
    padding-bottom: 12px !important;
}

.woocommerce-account #customer_login .col-1:only-child {
    max-width: 500px !important;
    margin: 0 auto !important;
}

/* Beni Hatırla ve Şifremi Unuttunuz Alanı */
.woocommerce-form-login__rememberme {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    color: #555555 !important;
    cursor: pointer !important;
    margin-top: 8px !important;
    margin-bottom: 8px !important;
}

.woocommerce-form-login__rememberme input[type="checkbox"] {
    margin: 0 !important;
    width: 16px !important;
    height: 16px !important;
    border: 1px solid #dcdcdc !important;
    border-radius: 3px !important;
    cursor: pointer !important;
}

.woocommerce-account .lost_password {
    margin-top: 15px !important;
    margin-bottom: 0 !important;
    font-size: 14px !important;
}

.woocommerce-account .lost_password a {
    color: #007cba !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: color 0.2s ease !important;
}

.woocommerce-account .lost_password a:hover {
    color: #005a87 !important;
    text-decoration: underline !important;
}

/* 2. Hesabım Paneli Genel Düzeni (Dashboard Layout) */
.woocommerce-account .woocommerce {
    display: flex !important;
    gap: 40px !important;
    align-items: flex-start !important;
    margin-top: 30px !important;
    margin-bottom: 50px !important;
}

/* Sol Menü (Sidebar Navigation) */
.woocommerce-account .woocommerce-MyAccount-navigation {
    flex: 0 0 280px !important;
    width: 280px !important;
    background: #ffffff !important;
    border: 1px solid #eef2f6 !important;
    border-radius: 8px !important;
    padding: 15px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02) !important;
    float: none !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin-bottom: 8px !important;
    padding: 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation li:last-child {
    margin-bottom: 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
    display: block !important;
    padding: 12px 16px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #555555 !important;
    border-radius: 6px !important;
    transition: all 0.2s ease-in-out !important;
    text-decoration: none !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
    background: #fafbfd !important;
    color: #111111 !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
    background: #007cba !important;
    color: #ffffff !important;
    font-weight: 600 !important;
}

/* Sağ İçerik Paneli (Content Box) */
.woocommerce-account .woocommerce-MyAccount-content {
    flex: 1 !important;
    background: #ffffff !important;
    border: 1px solid #eef2f6 !important;
    border-radius: 8px !important;
    padding: 30px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02) !important;
    float: none !important;
}

.woocommerce-account .woocommerce-MyAccount-content p {
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #4a5568 !important;
    margin-bottom: 20px !important;
}

/* 3. Butonların Premium Tasarımı */
.woocommerce-account .woocommerce button.button,
.woocommerce-account .woocommerce a.button,
.woocommerce-account .woocommerce input.button {
    background-color: #007cba !important;
    color: #ffffff !important;
    border-radius: 5px !important;
    padding: 12px 24px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease-in-out !important;
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.15) !important;
    display: inline-block !important;
    text-align: center !important;
    text-decoration: none !important;
}

.woocommerce-account .woocommerce button.button:hover,
.woocommerce-account .woocommerce a.button:hover,
.woocommerce-account .woocommerce input.button:hover {
    background-color: #005a87 !important;
    box-shadow: 0 6px 16px rgba(0, 90, 135, 0.25) !important;
    color: #ffffff !important;
}

/* 4. Siparişler ve Diğer Tablolar (shop_table) */
.woocommerce-account table.shop_table {
    width: 100% !important;
    border-collapse: collapse !important;
    border: 1px solid #eef2f6 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.woocommerce-account table.shop_table th {
    background-color: #fafbfd !important;
    border-bottom: 1px solid #eef2f6 !important;
    padding: 14px 18px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #2d3748 !important;
    text-align: left !important;
}

.woocommerce-account table.shop_table td {
    padding: 14px 18px !important;
    border-bottom: 1px solid #eef2f6 !important;
    font-size: 14px !important;
    color: #4a5568 !important;
    vertical-align: middle !important;
}

.woocommerce-account table.shop_table tr:last-child td {
    border-bottom: none !important;
}

.woocommerce-account table.shop_table .button {
    padding: 8px 14px !important;
    font-size: 13px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

/* 5. Adres Kartları (Billing / Shipping Addresses) */
.woocommerce-account .addresses {
    display: flex !important;
    gap: 25px !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.woocommerce-account .addresses .col-1,
.woocommerce-account .addresses .col-2 {
    flex: 1 !important;
    background: #fafbfd !important;
    border: 1px solid #eef2f6 !important;
    border-radius: 6px !important;
    padding: 20px !important;
    margin: 0 !important;
    float: none !important;
    width: auto !important;
}

.woocommerce-account .addresses .title {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-bottom: 1px solid #eef2f6 !important;
    padding-bottom: 10px !important;
    margin-bottom: 15px !important;
}

.woocommerce-account .addresses .title h3 {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin: 0 !important;
}

.woocommerce-account .addresses .title .edit {
    font-size: 14px !important;
    color: #007cba !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

.woocommerce-account .addresses address {
    font-style: normal !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #555555 !important;
}

.woocommerce-MyAccount-content .u-column1.col-1.woocommerce-Address {
    width: 100% !important;
}

/* 6. WooCommerce Bildirimler (Notices) */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
    padding: 15px 20px !important;
    margin-bottom: 25px !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    list-style: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 15px !important;
}

.woocommerce-error {
    background-color: #fff5f5 !important;
    border: 1px solid #fed7d7 !important;
    color: #c53030 !important;
    border-left: 4px solid #e53e3e !important;
}

.woocommerce-message {
    background-color: #f0fff4 !important;
    border: 1px solid #c6f6d5 !important;
    color: #22543d !important;
    border-left: 4px solid #38a169 !important;
}

.woocommerce-info {
    background-color: #ebf8ff !important;
    border: 1px solid #bee3f8 !important;
    color: #2b6cb0 !important;
    border-left: 4px solid #3182ce !important;
}

.woocommerce-error li,
.woocommerce-message li,
.woocommerce-info li {
    list-style: none !important;
}

.woocommerce-error .button,
.woocommerce-message .button,
.woocommerce-info .button {
    padding: 6px 12px !important;
    font-size: 12px !important;
    text-transform: none !important;
}

/* Mobil Cihazlar İçin Yerleşim Ayarları */
@media (max-width: 768px) {
    .woocommerce-account #customer_login {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }

    .woocommerce-account .woocommerce {
        flex-direction: column !important;
        gap: 25px !important;
        padding: 0 15px !important;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation {
        flex: 1 1 100% !important;
        width: 100% !important;
    }

    .woocommerce-account .addresses {
        flex-direction: column !important;
        gap: 15px !important;
    }
}

.woocommerce-terms-and-conditions-wrapper {
    padding: 15px;
}

.woocommerce-terms-and-conditions-checkbox-text a {
    text-decoration: underline;
}

.single_add_to_cart_button {
    background: #007cba !important;
    font-size: 16px !important;
}

.single_add_to_cart_button:hover {
    background: #000000 !important;
    color: #fff !important;
}

/* Kendi Şartlar ve Koşullar Kutusunu Göster */
.o-custom-terms-box {
    display: block !important;
    max-height: 250px;
    overflow-y: auto;
    border: 1px solid #e2e8f0;
    padding: 15px;
    margin-bottom: 20px;
    background: #ffffff;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: #4a5568;
}

/* WooCommerce'in kendi AJAX ile getirdiği kutuyu tamamen gizle */
.woocommerce-terms-and-conditions-wrapper .woocommerce-terms-and-conditions {
    display: none !important;
}

.woocommerce-error {
    display: block !important;
}

.checkout-inline-error-message {
    font-size: 15px !important;
}

.woocommerce-error::before {
    display: none;
}

.woocommerce-checkout-review-order-table {
    font-size: 16px !important;
}