/**
 * WooCommerce Özel CSS
 * Cart, Checkout, My Account ve diğer WooCommerce sayfaları için özel stiller
 */

/* ============================================
   CART SAYFASI STİLLERİ
   ============================================ */

/* Cart sayfası container */
.woocommerce-cart main {
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
    min-height: 60vh;
}

/* Cart sayfası VC Row genişliği - stretch row için */
.woocommerce-cart .vc_row,
.woocommerce-cart .vc_row.wpb_row,
.woocommerce-cart .vc_row-fluid,
.woocommerce-cart section.wpb-content-wrapper,
.woocommerce-cart .wpb_wrapper,
.woocommerce-cart .vc_column-inner {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Desktop grid layout - sadece 769px ve üzeri için */
@media (min-width: 769px) {
    /* Grid container */
    body.woocommerce-cart .woocommerce,
    body.woocommerce-cart main .woocommerce,
    body.woocommerce-cart article .woocommerce,
    .woocommerce-cart .woocommerce,
    .woocommerce-cart main .woocommerce,
    .woocommerce-cart article .woocommerce,
    .woocommerce-cart main article .woocommerce,
    .woocommerce-cart main article > .woocommerce {
        display: grid !important;
        grid-template-columns: 1fr 420px !important;
        grid-template-rows: auto auto !important;
        column-gap: 60px !important;
        row-gap: 60px !important;
        padding: 60px 20px !important;
        align-items: start !important;
    }

    /* Cart form - sol kolon */
    .woocommerce-cart .woocommerce-cart-form {
        grid-column: 1 !important;
        grid-row: 1 !important;
        padding-left: 20px !important;
    }

    /* Cart totals - sağ kolon */
    .woocommerce-cart .cart-collaterals {
        grid-column: 2 !important;
        grid-row: 1 !important;
        padding-right: 20px !important;
    }
    
    /* Recommended Services - grid'den çık, tam genişlik, gap'ten etkilenmesin */
    .woocommerce-cart .cart-addons-section {
        grid-column: 1 / -1 !important;
        grid-row: 2 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 30px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        clear: both !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .woocommerce-cart .cart-addons-container {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
        box-sizing: border-box !important;
    }
}

/* Boş sepet wrapper */
.wc-empty-cart-wrapper {
    grid-column: 1 / -1; /* Bu, öğenin tüm grid sütunlarını kaplamasını sağlar */
    grid-row: 1 / -1;    /* Bu, öğenin tüm grid satırlarını kaplamasını sağlar */
    width: 100%;
    max-width: 800px;
    margin: 100px auto 0 auto; /* Added margin-top to push it down */
}

.wc-empty-cart-content {
    text-align: center;
    padding: 0 15px;
    max-width: 600px; /* Added for centering on larger screens */
    margin: 0 auto;   /* Added for centering on larger screens */
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 30px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.12), 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(9, 44, 116, 0.12);
    position: relative;
}

.wc-empty-cart-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #092C74 0%, #073eac 50%, #0a4fd4 100%);
}

/* Sepet ikonu */
.wc-empty-cart-icon {
    margin-bottom: 40px;
}

.wc-empty-cart-icon i {
    font-size: 120px;
    color: #092C74;
    opacity: 0.25;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Boş sepet mesajı */
.wc-empty-cart-message {
    margin-bottom: 45px;
}

.cart-empty.woocommerce-info {
    font-size: 32px;
    color: #092C74;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    margin: 0 auto 30px auto; /* Margin top 0 auto 30px auto*/
    line-height: 1.6;
    letter-spacing: 0.5px;
    /* Yeni stiller */
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(9, 44, 116, 0.12);
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    text-align: center;
    /* Mavi kutucuğu kaldırmak için */
    position: relative;
}

.cart-empty.woocommerce-info::before,
.cart-empty.woocommerce-info::after {
    display: none !important;
    content: none !important;
}

/* Return to shop butonu */
.return-to-shop {
    margin-top: 50px;
}

.return-to-shop a.button.wc-backward {
    /* Normal durum */
    background-color: #ffffff; /* İçi beyaz */
    color: #092C74; /* Yazı mavi */
    border: 2px solid #092C74; /* Çevresi mavi */
    
    /* Ortak stiller */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 12px 30px; /* "Add to Cart" butonuna benzer padding */
    font-size: 16px; /* "Add to Cart" butonuna benzer font boyutu */
    font-weight: 600; /* "Add to Cart" butonuna benzer font ağırlığı */
    text-decoration: none;
    border-radius: 5px; /* Hafif yuvarlak köşeler */
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.return-to-shop a.button.wc-backward:hover {
    /* Hover durum */
    background-color: #092C74; /* Kutucuk mavi */
    color: #ffffff; /* Yazı beyaz */
    border-color: #092C74; /* Hover'da border rengini koru */
}

.return-to-shop a.button.wc-backward i {
    font-size: 16px; /* İkon boyutu metinle uyumlu olsun */
    line-height: 1; /* İkonun dikey hizalamasını ayarla */
    transition: transform 0.3s ease;
    color: #092C74; /* Normal durumda ikon rengi mavi */
}

.return-to-shop a.button.wc-backward:hover i {
    transform: translateX(-8px);
    color: #ffffff; /* Hover'da ikon rengi beyaz */
}

/* ============================================
   CART SAYFASI - DOLU SEPET TASARIMI
   ============================================ */

/* Cart Form Container - Modern Tasarım */
.woocommerce-cart .woocommerce-cart-form {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: none !important;
    border: 0px solid rgba(9, 44, 116, 0.08);
    padding: 40px;
    overflow: hidden;
    position: relative;
}

.woocommerce-cart .woocommerce-cart-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #092C74 0%, #073eac 50%, #0a4fd4 100%);
}

/* Cart Table - Modern Tasarım */
.woocommerce-cart .woocommerce-cart-form table.shop_table {
    border: none;
    border-collapse: separate;
    border-spacing: 0;
}

/* Table Header - Modern ve Şık */
.woocommerce-cart .woocommerce-cart-form table.shop_table thead {
    background: #ffffff !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border: none !important;
}

.woocommerce-cart .woocommerce-cart-form table.shop_table thead th {
    background: #ffffff !important;
    color: #092C74;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(9, 44, 116, 0.12);
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 20px 15px;
    position: relative;
}

.woocommerce-cart .woocommerce-cart-form table.shop_table thead th:first-child {
    padding-left: 0;
}

.woocommerce-cart .woocommerce-cart-form table.shop_table thead th:last-child {
    padding-right: 0;
    text-align: right;
}

/* Cart Items Rows - Sadece görsel tasarım */
.woocommerce-cart .woocommerce-cart-form table.shop_table tbody tr {
    border-bottom: 1px solid rgba(9, 44, 116, 0.08);
    transition: background 0.3s ease;
}

.woocommerce-cart .woocommerce-cart-form table.shop_table tbody tr:hover {
    background: rgba(9, 44, 116, 0.02);
}

.woocommerce-cart .woocommerce-cart-form table.shop_table tbody td {
    font-family: "Poppins", sans-serif;
    border: none;
}

/* Product Thumbnail - Modern ve Şık */
.woocommerce-cart .woocommerce-cart-form table.shop_table .product-thumbnail {
    width: 100px;
}

.woocommerce-cart .woocommerce-cart-form table.shop_table .product-thumbnail a {
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid rgba(9, 44, 116, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 4px;
}

.woocommerce-cart .woocommerce-cart-form table.shop_table .product-thumbnail a:hover {
    border-color: rgba(9, 44, 116, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(9, 44, 116, 0.15);
}

.woocommerce-cart .woocommerce-cart-form table.shop_table .product-thumbnail img {
    border-radius: 10px;
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.woocommerce-cart .woocommerce-cart-form table.shop_table .product-thumbnail a:hover img {
    transform: scale(1.05);
}

/* Product Name - Modern ve Okunabilir */
.woocommerce-cart .woocommerce-cart-form table.shop_table .product-name {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #092C74;
    line-height: 1.5;
}

.woocommerce-cart .woocommerce-cart-form table.shop_table .product-name a {
    color: #092C74;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
    display: inline-block;
}

.woocommerce-cart .woocommerce-cart-form table.shop_table .product-name a:hover {
    color: #073eac;
    transform: translateX(3px);
}

/* Product Price - Modern ve Belirgin */
.woocommerce-cart .woocommerce-cart-form table.shop_table .product-price {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #092C74;
    white-space: nowrap;
}

/* Quantity Input - Modern ve Kullanıcı Dostu */
.woocommerce-cart .woocommerce-cart-form table.shop_table .quantity {
    display: inline-flex;
    align-items: center;
}

.woocommerce-cart .woocommerce-cart-form table.shop_table .quantity .qty {
    width: 70px;
    padding: 12px;
    border: 2px solid rgba(9, 44, 116, 0.15);
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #092C74;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    appearance: textfield;
    -moz-appearance: textfield;
}

.woocommerce-cart .woocommerce-cart-form table.shop_table .quantity .qty::-webkit-outer-spin-button,
.woocommerce-cart .woocommerce-cart-form table.shop_table .quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.woocommerce-cart .woocommerce-cart-form table.shop_table .quantity .qty:focus {
    outline: none;
    border-color: #092C74;
    box-shadow: 0 0 0 4px rgba(9, 44, 116, 0.1);
    background: #f8f9fa;
    transform: scale(1.02);
}

/* Product Subtotal - Belirgin ve Modern */
.woocommerce-cart .woocommerce-cart-form table.shop_table .product-subtotal {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #092C74;
    white-space: nowrap;
}

/* Remove Button - Modern ve Dikkat Çekici */
.woocommerce-cart .woocommerce-cart-form table.shop_table .product-remove {
    width: 50px;
    text-align: center;
}

.woocommerce-cart .woocommerce-cart-form table.shop_table .product-remove a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.15) 100%);
    color: #dc3545;
    border-radius: 12px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
    border: 2px solid rgba(220, 53, 69, 0.2);
}

.woocommerce-cart .woocommerce-cart-form table.shop_table .product-remove a:hover {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #ffffff;
    /* transform: scale(1.1) rotate(90deg); */
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    border-color: #dc3545;
}

/* Cart Actions - Modern ve Düzenli */
.woocommerce-cart .woocommerce-cart-form .actions {
    border-top: 2px solid rgba(9, 44, 116, 0.1);
    margin-top: 30px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.woocommerce-cart .woocommerce-cart-form .actions .coupon label {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #092C74;
}

.woocommerce-cart .woocommerce-cart-form .actions .coupon input[type="text"] {
    border: 2px solid rgba(9, 44, 116, 0.15);
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #092C74;
}

.woocommerce-cart .woocommerce-cart-form .actions .coupon input[type="text"]:focus {
    outline: none;
    border-color: #092C74;
    box-shadow: 0 0 0 4px rgba(9, 44, 116, 0.1);
    background: #f8f9fa;
}

.woocommerce-cart .woocommerce-cart-form .actions .coupon .button {
    background: linear-gradient(135deg, #092C74 0%, #073eac 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(9, 44, 116, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.woocommerce-cart .woocommerce-cart-form .actions .coupon .button:hover {
    background: linear-gradient(135deg, #073eac 0%, #0a4fd4 100%);
    box-shadow: 0 8px 25px rgba(9, 44, 116, 0.4);
    transform: translateY(-2px);
}

.woocommerce-cart .woocommerce-cart-form .actions .button.update-cart {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.25), 0 2px 6px rgba(108, 117, 125, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
}

.woocommerce-cart .woocommerce-cart-form .actions .button.update-cart:hover:not(:disabled) {
    background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.35), 0 3px 8px rgba(108, 117, 125, 0.2);
    transform: translateY(-2px);
}

.woocommerce-cart .woocommerce-cart-form .actions .button.update-cart:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.25);
}

.woocommerce-cart .woocommerce-cart-form .actions .button.update-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* UPDATE CART - SADECE gerçek buton (name="update_cart"), boyuta dokunmadan tasarım */
.woocommerce-cart .woocommerce-cart-form .actions button[name="update_cart"] {
    background: linear-gradient(135deg, #092C74 0%, #073eac 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    font-family: "Poppins", sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    box-shadow: 0 8px 25px rgba(9, 44, 116, 0.35) !important;
}

.woocommerce-cart .woocommerce-cart-form .actions button[name="update_cart"]:hover:not(:disabled) {
    background: linear-gradient(135deg, #073eac 0%, #0a4fd4 100%) !important;
    box-shadow: 0 10px 30px rgba(9, 44, 116, 0.45) !important;
}

.woocommerce-cart .woocommerce-cart-form .actions button[name="update_cart"]:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    background: linear-gradient(135deg, #092C74 0%, #073eac 100%) !important;
}

/* Cart Totals - Tamamen Yeniden Yazıldı - Güçlü Selector'lar */
body.woocommerce-cart .cart-collaterals,
.woocommerce-cart .cart-collaterals,
.woocommerce .cart-collaterals {
    margin-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    width: 100% !important;
    max-width: 420px !important;
    float: none !important;
    clear: none !important;
}

body.woocommerce-cart .cart_totals,
.woocommerce-cart .cart_totals,
.woocommerce .cart_totals {
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(9, 44, 116, 0.1) !important;
    padding: 26px 22px !important;
    min-width: 380px !important;
    position: relative !important;
}

body.woocommerce-cart .cart_totals::before,
.woocommerce-cart .cart_totals::before,
.woocommerce .cart_totals::before {
    display: none !important;
    content: none !important;
}

body.woocommerce-cart .cart_totals h2,
.woocommerce-cart .cart_totals h2,
.woocommerce .cart_totals h2 {
    font-family: "Poppins", sans-serif !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #092C74 !important;
    margin: 0 0 20px 0 !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid rgba(9, 44, 116, 0.15) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.6px !important;
    line-height: 1.4 !important;
}

body.woocommerce-cart .cart_totals h2::after,
.woocommerce-cart .cart_totals h2::after,
.woocommerce .cart_totals h2::after {
    display: none !important;
    content: none !important;
}

body.woocommerce-cart .cart_totals table,
.woocommerce-cart .cart_totals table,
.woocommerce .cart_totals table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-bottom: 20px !important;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
}

/* Tüm table elementlerinde border yok */
body.woocommerce-cart .cart_totals table *,
.woocommerce-cart .cart_totals table *,
.woocommerce .cart_totals table * {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
}

body.woocommerce-cart .cart_totals table tbody,
.woocommerce-cart .cart_totals table tbody,
.woocommerce .cart_totals table tbody {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
}

/* Cart Totals Table - Montserrat Font ve Tüm Nested Elementler - TÜM BORDER'LAR KALDIRILDI */
body.woocommerce-cart .cart_totals table.shop_table,
body.woocommerce-cart .cart_totals table,
.woocommerce-cart .cart_totals table.shop_table,
.woocommerce-cart .cart_totals table,
.woocommerce .cart_totals table.shop_table,
.woocommerce .cart_totals table {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
}

body.woocommerce-cart .cart_totals table th,
body.woocommerce-cart .cart_totals table td,
body.woocommerce-cart .cart_totals table th *,
body.woocommerce-cart .cart_totals table td *,
body.woocommerce-cart .cart_totals table th span,
body.woocommerce-cart .cart_totals table td span,
body.woocommerce-cart .cart_totals table th bdi,
body.woocommerce-cart .cart_totals table td bdi,
body.woocommerce-cart .cart_totals table th strong,
body.woocommerce-cart .cart_totals table td strong,
.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td,
.woocommerce-cart .cart_totals table th *,
.woocommerce-cart .cart_totals table td *,
.woocommerce-cart .cart_totals table th span,
.woocommerce-cart .cart_totals table td span,
.woocommerce-cart .cart_totals table th bdi,
.woocommerce-cart .cart_totals table td bdi,
.woocommerce-cart .cart_totals table th strong,
.woocommerce-cart .cart_totals table td strong,
.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td,
.woocommerce .cart_totals table th *,
.woocommerce .cart_totals table td *,
.woocommerce .cart_totals table th span,
.woocommerce .cart_totals table td span,
.woocommerce .cart_totals table th bdi,
.woocommerce .cart_totals table td bdi,
.woocommerce .cart_totals table th strong,
.woocommerce .cart_totals table td strong {
    font-family: "Montserrat", sans-serif !important;
}

body.woocommerce-cart .cart_totals table th,
body.woocommerce-cart .cart_totals table td,
body.woocommerce-cart .cart_totals table.shop_table th,
body.woocommerce-cart .cart_totals table.shop_table td,
.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td,
.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td,
.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td,
.woocommerce .cart_totals table.shop_table th,
.woocommerce .cart_totals table.shop_table td {
    padding: 18px 0 !important;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    vertical-align: middle !important;
    line-height: 1.6 !important;
}

body.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table th,
.woocommerce .cart_totals table th {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #666 !important;
    text-align: left !important;
    padding-left: 0 !important;
}

body.woocommerce-cart .cart_totals table td,
.woocommerce-cart .cart_totals table td,
.woocommerce .cart_totals table td {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #092C74 !important;
    text-align: right !important;
    padding-right: 0 !important;
    padding-left: 12px !important;
}

/* Cart Subtotal - Özel Stil - TÜM BORDER'LAR KALDIRILDI */
body.woocommerce-cart .cart_totals table tr.cart-subtotal,
body.woocommerce-cart .cart_totals table tbody tr.cart-subtotal,
body.woocommerce-cart .cart_totals table.shop_table tr.cart-subtotal,
.woocommerce-cart .cart_totals table tr.cart-subtotal,
.woocommerce-cart .cart_totals table tbody tr.cart-subtotal,
.woocommerce-cart .cart_totals table.shop_table tr.cart-subtotal,
.woocommerce .cart_totals table tr.cart-subtotal,
.woocommerce .cart_totals table tbody tr.cart-subtotal,
.woocommerce .cart_totals table.shop_table tr.cart-subtotal {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    background: transparent !important;
    background-color: transparent !important;
}

body.woocommerce-cart .cart_totals table tr.cart-subtotal th,
body.woocommerce-cart .cart_totals table tr.cart-subtotal td,
body.woocommerce-cart .cart_totals table tr.cart-subtotal th *,
body.woocommerce-cart .cart_totals table tr.cart-subtotal td *,
.woocommerce-cart .cart_totals table tr.cart-subtotal th,
.woocommerce-cart .cart_totals table tr.cart-subtotal td,
.woocommerce-cart .cart_totals table tr.cart-subtotal th *,
.woocommerce-cart .cart_totals table tr.cart-subtotal td *,
.woocommerce .cart_totals table tr.cart-subtotal th,
.woocommerce .cart_totals table tr.cart-subtotal td,
.woocommerce .cart_totals table tr.cart-subtotal th *,
.woocommerce .cart_totals table tr.cart-subtotal td * {
    font-family: "Montserrat", sans-serif !important;
    padding: 18px 0 !important;
}

/* Order Total - TÜM BORDER'LAR KALDIRILDI, Daha Fazla Spacing */
body.woocommerce-cart .cart_totals table tr.order-total,
body.woocommerce-cart .cart_totals table tbody tr.order-total,
body.woocommerce-cart .cart_totals table.shop_table tr.order-total,
.woocommerce-cart .cart_totals table tr.order-total,
.woocommerce-cart .cart_totals table tbody tr.order-total,
.woocommerce-cart .cart_totals table.shop_table tr.order-total,
.woocommerce .cart_totals table tr.order-total,
.woocommerce .cart_totals table tbody tr.order-total,
.woocommerce .cart_totals table.shop_table tr.order-total {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    background: transparent !important;
    background-color: transparent !important;
    margin-top: 20px !important;
}

body.woocommerce-cart .cart_totals table tr.order-total th,
body.woocommerce-cart .cart_totals table tr.order-total td,
body.woocommerce-cart .cart_totals table tr.order-total th *,
body.woocommerce-cart .cart_totals table tr.order-total td *,
body.woocommerce-cart .cart_totals table tr.order-total th span,
body.woocommerce-cart .cart_totals table tr.order-total td span,
body.woocommerce-cart .cart_totals table tr.order-total th bdi,
body.woocommerce-cart .cart_totals table tr.order-total td bdi,
body.woocommerce-cart .cart_totals table tr.order-total th strong,
body.woocommerce-cart .cart_totals table tr.order-total td strong,
.woocommerce-cart .cart_totals table tr.order-total th,
.woocommerce-cart .cart_totals table tr.order-total td,
.woocommerce-cart .cart_totals table tr.order-total th *,
.woocommerce-cart .cart_totals table tr.order-total td *,
.woocommerce-cart .cart_totals table tr.order-total th span,
.woocommerce-cart .cart_totals table tr.order-total td span,
.woocommerce-cart .cart_totals table tr.order-total th bdi,
.woocommerce-cart .cart_totals table tr.order-total td bdi,
.woocommerce-cart .cart_totals table tr.order-total th strong,
.woocommerce-cart .cart_totals table tr.order-total td strong,
.woocommerce .cart_totals table tr.order-total th,
.woocommerce .cart_totals table tr.order-total td,
.woocommerce .cart_totals table tr.order-total th *,
.woocommerce .cart_totals table tr.order-total td *,
.woocommerce .cart_totals table tr.order-total th span,
.woocommerce .cart_totals table tr.order-total td span,
.woocommerce .cart_totals table tr.order-total th bdi,
.woocommerce .cart_totals table tr.order-total td bdi,
.woocommerce .cart_totals table tr.order-total th strong,
.woocommerce .cart_totals table tr.order-total td strong {
    font-family: "Montserrat", sans-serif !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #092C74 !important;
    padding-top: 24px !important;
    padding-bottom: 18px !important;
    border-bottom: none !important;
    border-top: none !important;
    background: transparent !important;
    background-color: transparent !important;
}

body.woocommerce-cart .cart_totals table tr.order-total td,
body.woocommerce-cart .cart_totals table tr.order-total td *,
.woocommerce-cart .cart_totals table tr.order-total td,
.woocommerce-cart .cart_totals table tr.order-total td *,
.woocommerce .cart_totals table tr.order-total td,
.woocommerce .cart_totals table tr.order-total td * {
    font-size: 19px !important;
    padding-left: 12px !important;
}

/* Checkout Button - Güçlü Selector'lar */
body.woocommerce-cart .wc-proceed-to-checkout,
.woocommerce-cart .wc-proceed-to-checkout,
.woocommerce .wc-proceed-to-checkout {
    margin-top: 20px !important;
}

body.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce .wc-proceed-to-checkout .checkout-button,
.woocommerce .wc-proceed-to-checkout a.checkout-button {
    display: block !important;
    width: 100% !important;
    padding: 14px 24px !important;
    background: #092C74 !important;
    background-color: #092C74 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    font-family: "Poppins", sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.6px !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 3px 8px rgba(9, 44, 116, 0.2) !important;
    text-decoration: none !important;
    text-align: center !important;
    line-height: 1.5 !important;
}

body.woocommerce-cart .wc-proceed-to-checkout .checkout-button::before,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button::before,
.woocommerce .wc-proceed-to-checkout .checkout-button::before {
    display: none !important;
    content: none !important;
}

body.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce .wc-proceed-to-checkout .checkout-button:hover {
    background: #073eac !important;
    background-color: #073eac !important;
    box-shadow: 0 3px 7px rgba(9, 44, 116, 0.25) !important;
    transform: translateY(-1px) !important;
}

/* ============================================
   MY ACCOUNT SAYFASI STİLLERİ
   ============================================ */

.woocommerce-account main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* My Account container */
.woocommerce-account .woocommerce {
    display: block;
}

.woocommerce-myaccount-wrapper {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 50px;
    align-items: start;
    max-width: 1800px;
    margin: 0 auto;
    padding: 50px 30px;
}

/* Navigation Menü */
.woocommerce-MyAccount-navigation {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 35px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(9, 44, 116, 0.1);
    position: sticky;
    top: 120px;
    min-width: 0;
    width: 100%;
    min-width: 420px;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-MyAccount-navigation-link {
    margin: 0;
    border-bottom: 1px solid rgba(9, 44, 116, 0.05);
}

.woocommerce-MyAccount-navigation-link:last-child {
    border-bottom: none;
}

.woocommerce-MyAccount-navigation-link a {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 35px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    transition: all 0.3s ease;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
    flex: 1;
    min-width: 0;
}

.woocommerce-MyAccount-navigation-link a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #092C74 0%, #073eac 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.woocommerce-MyAccount-navigation-link a::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 18px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
    width: 22px;
    text-align: center;
    order: -1;
    margin-right: 6px;
}

/* Navigation ikonları */
.woocommerce-MyAccount-navigation-link--dashboard a::after {
    content: '\f015';
}

.woocommerce-MyAccount-navigation-link--orders a::after {
    content: '\f07a';
}

.woocommerce-MyAccount-navigation-link--downloads a::after {
    content: '\f019';
}

.woocommerce-MyAccount-navigation-link--edit-address a::after {
    content: '\f3c5';
}

.woocommerce-MyAccount-navigation-link--edit-account a::after {
    content: '\f007';
}

.woocommerce-MyAccount-navigation-link--customer-logout a::after {
    content: '\f2f5';
}

.woocommerce-MyAccount-navigation-link a:hover,
.woocommerce-MyAccount-navigation-link.is-active a {
    background: rgba(9, 44, 116, 0.08);
    color: #092C74;
    padding-left: 40px;
    padding-right: 35px;
}

.woocommerce-MyAccount-navigation-link a:hover::after,
.woocommerce-MyAccount-navigation-link.is-active a::after {
    opacity: 1;
    color: #092C74;
}

.woocommerce-MyAccount-navigation-link.is-active a::before {
    opacity: 1;
}

/* İçerik Alanı */
.woocommerce-MyAccount-content-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(9, 44, 116, 0.1);
}

.woocommerce-MyAccount-content {
    font-family: "Poppins", sans-serif;
}

.woocommerce-MyAccount-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
}

.woocommerce-MyAccount-content a {
    color: #092C74;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.woocommerce-MyAccount-content a:hover {
    color: #073eac;
    text-decoration: underline;
}

/* Dashboard Welcome */
.woocommerce-dashboard-welcome {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 45px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 6px solid #092C74;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.woocommerce-dashboard-welcome p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.woocommerce-dashboard-welcome p:last-child {
    margin-bottom: 0;
}

.woocommerce-dashboard-welcome strong {
    color: #092C74;
    font-weight: 700;
    font-size: 19px;
}

.woocommerce-dashboard-welcome a {
    color: #092C74;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.woocommerce-dashboard-welcome a:hover {
    color: #073eac;
    text-decoration: underline;
}


/* ============================================
   CHECKOUT SAYFASI STİLLERİ
   (Sadece checkout sayfasına özel - diğer sayfaları etkilemez)
   ============================================ */

/* Checkout sayfası container - Sadece checkout için */
body.woocommerce-checkout main,
body.woocommerce-checkout .woocommerce {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 30px 20px !important;
    min-height: 60vh !important;
}

/* Checkout container - Desktop Grid layout - Sadece checkout için */
@media (min-width: 769px) {
    /* Form'un kendisi grid - Desktop layout */
    body.woocommerce-checkout form.checkout.woocommerce-checkout,
    body.woocommerce-checkout form.woocommerce-checkout,
    body.woocommerce-checkout .woocommerce form.checkout,
    body.woocommerce-checkout form[name="checkout"] {
        display: grid !important;
        grid-template-columns: 1fr 450px !important;
        grid-template-rows: auto auto !important;
        gap: 30px !important;
        align-items: start !important;
    }
    
    /* Sol üst - Billing details (col-1) */
    body.woocommerce-checkout form.checkout #customer_details,
    body.woocommerce-checkout form.woocommerce-checkout #customer_details,
    body.woocommerce-checkout form.checkout .col2-set,
    body.woocommerce-checkout form.woocommerce-checkout .col2-set {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }
    
    /* Sağ üst - Your order */
    body.woocommerce-checkout form.checkout #order_review_heading,
    body.woocommerce-checkout form.woocommerce-checkout #order_review_heading,
    body.woocommerce-checkout form.checkout #order_review,
    body.woocommerce-checkout form.woocommerce-checkout #order_review {
        grid-column: 2 !important;
        grid-row: 1 !important;
    }
    
    /* Sol alt - Additional information (col-2) */
    body.woocommerce-checkout form.checkout .woocommerce-additional-fields,
    body.woocommerce-checkout form.woocommerce-checkout .woocommerce-additional-fields {
        grid-column: 1 !important;
        grid-row: 2 !important;
    }
    
    /* Order review sticky */
    body.woocommerce-checkout form.checkout #order_review,
    body.woocommerce-checkout form.woocommerce-checkout #order_review {
        position: sticky !important;
        top: 20px !important;
        align-self: start !important;
    }
}

/* Form başlıkları - Sadece checkout için */
body.woocommerce-checkout form.checkout h3,
body.woocommerce-checkout form.woocommerce-checkout h3,
body.woocommerce-checkout .woocommerce-billing-fields h3,
body.woocommerce-checkout .woocommerce-additional-fields h3,
body.woocommerce-checkout #order_review_heading {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #092c74 !important;
    margin: 0 0 25px 0 !important;
    padding: 18px 24px !important;
    background: linear-gradient(135deg, #e8ecf5 0%, #e0e6f0 100%) !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-left: 4px solid #092c74 !important;
    font-family: "Poppins", sans-serif !important;
}

/* Form alanları container - Sadece checkout için */
body.woocommerce-checkout form.checkout .col2-set,
body.woocommerce-checkout #customer_details {
    margin-bottom: 40px !important;
}

/* Billing ve Additional fields container'ları - border-radius ve border kaldır */
body.woocommerce-checkout .woocommerce-billing-fields,
body.woocommerce-checkout .woocommerce-additional-fields,
body.woocommerce-checkout form.checkout .woocommerce-billing-fields,
body.woocommerce-checkout form.woocommerce-checkout .woocommerce-billing-fields,
body.woocommerce-checkout form.checkout .woocommerce-additional-fields,
body.woocommerce-checkout form.woocommerce-checkout .woocommerce-additional-fields,
body.woocommerce-checkout #customer_details,
body.woocommerce-checkout #customer_details .woocommerce-billing-fields,
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border: none !important;
}

/* Form row'ları - Sadece checkout için */
body.woocommerce-checkout form.checkout .form-row {
    margin-bottom: 20px !important;
}

body.woocommerce-checkout form.checkout .form-row label {
    display: block !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #092c74 !important;
    margin-bottom: 8px !important;
    font-family: "Poppins", sans-serif !important;
}

body.woocommerce-checkout form.checkout .form-row label .required {
    color: #e60023 !important;
    font-weight: 700 !important;
}

/* Input alanları - Sadece checkout için */
body.woocommerce-checkout form.checkout input[type="text"],
body.woocommerce-checkout form.checkout input[type="email"],
body.woocommerce-checkout form.checkout input[type="tel"],
body.woocommerce-checkout form.checkout input[type="number"],
body.woocommerce-checkout form.checkout select,
body.woocommerce-checkout form.checkout textarea {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 2px solid rgba(9, 44, 116, 0.15) !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    font-family: "Poppins", sans-serif !important;
    color: #333 !important;
    background: #ffffff !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
}

body.woocommerce-checkout form.checkout input[type="text"]:focus,
body.woocommerce-checkout form.checkout input[type="email"]:focus,
body.woocommerce-checkout form.checkout input[type="tel"]:focus,
body.woocommerce-checkout form.checkout input[type="number"]:focus,
body.woocommerce-checkout form.checkout select:focus,
body.woocommerce-checkout form.checkout textarea:focus {
    outline: none !important;
    border-color: #092c74 !important;
    box-shadow: 0 4px 12px rgba(9, 44, 116, 0.15) !important;
}

body.woocommerce-checkout form.checkout textarea {
    min-height: 100px !important;
    resize: vertical !important;
}

/* Select2 dropdown - Sadece checkout için */
body.woocommerce-checkout .select2-container--default .select2-selection--single {
    height: auto !important;
    border: 2px solid rgba(9, 44, 116, 0.15) !important;
    border-radius: 10px !important;
    padding: 10px 16px !important;
    background: #ffffff !important;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single:focus,
body.woocommerce-checkout .select2-container--default .select2-selection--single:focus-within {
    border-color: #092c74 !important;
    box-shadow: 0 4px 12px rgba(9, 44, 116, 0.15) !important;
}

/* Order Review - Sadece checkout için */
body.woocommerce-checkout #order_review {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    padding: 25px 20px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    border: none !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    max-width: 100% !important;
}

body.woocommerce-checkout #order_review_heading {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #092c74 !important;
    margin: 0 0 25px 0 !important;
    padding: 18px 24px !important;
    background: linear-gradient(135deg, #e8ecf5 0%, #e0e6f0 100%) !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-left: 4px solid #092c74 !important;
    font-family: "Poppins", sans-serif !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

/* Order table - Sadece checkout için */
body.woocommerce-checkout .shop_table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    margin-bottom: 25px !important;
}

body.woocommerce-checkout .shop_table thead {
    background: linear-gradient(135deg, #092c74 0%, #0b3d8f 100%) !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border: none !important;
}

body.woocommerce-checkout .shop_table thead th {
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
}

body.woocommerce-checkout .shop_table tbody,
body.woocommerce-checkout .shop_table tbody tr,
body.woocommerce-checkout .shop_table tbody td,
body.woocommerce-checkout .shop_table tfoot,
body.woocommerce-checkout .shop_table tfoot tr,
body.woocommerce-checkout .shop_table tfoot th,
body.woocommerce-checkout .shop_table tfoot td {
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
}

body.woocommerce-checkout .shop_table thead th {
    padding: 16px 20px !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-family: "Poppins", sans-serif !important;
    border: none !important;
}

body.woocommerce-checkout .shop_table tbody tr {
    border-bottom: 1px solid rgba(9, 44, 116, 0.1) !important;
}

body.woocommerce-checkout .shop_table tbody tr:last-child {
    border-bottom: none !important;
}

body.woocommerce-checkout .shop_table tbody td {
    padding: 18px 20px !important;
    font-size: 15px !important;
    color: #333 !important;
    font-family: "Poppins", sans-serif !important;
    background: #ffffff !important;
}

body.woocommerce-checkout .shop_table tbody .product-name {
    font-weight: 600 !important;
    color: #092c74 !important;
}

body.woocommerce-checkout .shop_table tbody .product-quantity {
    color: #666 !important;
    font-weight: 500 !important;
}

body.woocommerce-checkout .shop_table tbody .product-total {
    font-weight: 700 !important;
    color: #092c74 !important;
    text-align: right !important;
}

/* Order totals - Sadece checkout için */
body.woocommerce-checkout .shop_table tfoot tr {
    border-top: 2px solid rgba(9, 44, 116, 0.15) !important;
}

body.woocommerce-checkout .shop_table tfoot th {
    padding: 18px 20px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #092c74 !important;
    font-family: "Poppins", sans-serif !important;
    background: #f8f9fa !important;
}

body.woocommerce-checkout .shop_table tfoot td {
    padding: 18px 20px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #092c74 !important;
    text-align: right !important;
    font-family: "Poppins", sans-serif !important;
    background: #f8f9fa !important;
}

body.woocommerce-checkout .shop_table tfoot .order-total th,
body.woocommerce-checkout .shop_table tfoot .order-total td {
    font-size: 20px !important;
    font-weight: 700 !important;
    padding: 22px 20px !important;
    background: linear-gradient(135deg, #e8ecf5 0%, #e0e6f0 100%) !important;
    border-top: 3px solid #092c74 !important;
}

/* Payment methods - Sadece checkout için */
body.woocommerce-checkout #payment,
body.woocommerce-checkout .woocommerce-checkout-payment {
    margin-top: 30px !important;
    padding-top: 30px !important;
    border-top: 2px solid rgba(9, 44, 116, 0.15) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.woocommerce-checkout .wc_payment_methods {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 25px 0 !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

body.woocommerce-checkout .wc_payment_methods li {
    margin-bottom: 15px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

body.woocommerce-checkout .wc_payment_methods label,
body.woocommerce-checkout #payment .wc_payment_methods label,
body.woocommerce-checkout .wc_payment_method.payment_method_bacs label,
body.woocommerce-checkout label[for="payment_method_bacs"] {
    display: flex !important;
    align-items: center !important;
    padding: 14px 18px !important;
    background: #ffffff !important;
    border: 2px solid rgba(9, 44, 116, 0.15) !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #092c74 !important;
    font-family: "Poppins", sans-serif !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

body.woocommerce-checkout .wc_payment_methods input[type="radio"]:checked + label,
body.woocommerce-checkout .wc_payment_methods li.wc_payment_method > input:checked + label,
body.woocommerce-checkout #payment .wc_payment_methods input[type="radio"]:checked + label,
body.woocommerce-checkout #payment_method_bacs:checked + label[for="payment_method_bacs"] {
    background: #ffffff !important;
    border-color: #092c74 !important;
    box-shadow: 0 1px 3px rgba(9, 44, 116, 0.1) !important;
}

/* Payment box - Tüm varyasyonlar için güçlü selector'lar - Sadece checkout için */
body.woocommerce-checkout .payment_box,
body.woocommerce-checkout #payment .payment_box,
body.woocommerce-checkout .payment_box.payment_method_bacs,
body.woocommerce-checkout #payment .payment_box.payment_method_bacs,
body.woocommerce-checkout div.payment_box.payment_method_bacs,
body.woocommerce-checkout .wc_payment_method.payment_method_bacs .payment_box {
    margin: 15px 0 0 0 !important;
    padding: 16px 20px !important;
    padding-left: 20px !important;
    background: #ffffff !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border: none !important;
    position: relative !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #555 !important;
    font-family: "Poppins", sans-serif !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

/* Payment box ::before kaldırıldı - Sadece checkout için */
body.woocommerce-checkout .payment_box::before,
body.woocommerce-checkout #payment .payment_box::before,
body.woocommerce-checkout .payment_box.payment_method_bacs::before,
body.woocommerce-checkout #payment .payment_box.payment_method_bacs::before,
body.woocommerce-checkout div.payment_box.payment_method_bacs::before,
body.woocommerce-checkout .wc_payment_method.payment_method_bacs .payment_box::before {
    display: none !important;
    content: none !important;
}

/* Payment box içindeki paragraflar - Sadece checkout için */
body.woocommerce-checkout .payment_box p,
body.woocommerce-checkout #payment .payment_box p,
body.woocommerce-checkout .payment_box.payment_method_bacs p {
    margin: 0 !important;
    padding: 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
}

/* Payment method bacs container - Güçlü selector'lar - Sadece checkout için */
body.woocommerce-checkout .wc_payment_method.payment_method_bacs,
body.woocommerce-checkout #payment .wc_payment_method.payment_method_bacs,
body.woocommerce-checkout li.wc_payment_method.payment_method_bacs,
body.woocommerce-checkout .wc_payment_methods li.payment_method_bacs {
    box-sizing: border-box !important;
    overflow: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 0 15px 0 !important;
}

/* Place order button - Sadece checkout için */
body.woocommerce-checkout #place_order {
    width: 100% !important;
    padding: 18px 40px !important;
    background: #5da557 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    font-family: "Poppins", sans-serif !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 6px 20px rgba(93, 165, 87, 0.3) !important;
    margin-top: 25px !important;
}

body.woocommerce-checkout #place_order:hover {
    background: #4D9562 !important;
    box-shadow: 0 8px 25px rgba(93, 165, 87, 0.4) !important;
    transform: translateY(-2px) !important;
}

body.woocommerce-checkout #place_order:active {
    transform: translateY(0) !important;
}

/* Terms and conditions - Sadece checkout için */
body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
    margin-bottom: 20px !important;
    padding: 16px 20px !important;
    padding-left: 20px !important;
    background: #ffffff !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border: none !important;
    position: relative !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #555 !important;
    font-family: "Poppins", sans-serif !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

/* Terms wrapper sol çizgi - ::before ile temiz çizgi - Sadece checkout için */
body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 3px !important;
    background: #092c74 !important;
    border-radius: 10px 0 0 10px !important;
}

/* Privacy policy text - Terms wrapper içindeki text - Sadece checkout için */
body.woocommerce-checkout .woocommerce-privacy-policy-text {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #555 !important;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text p {
    margin: 0 !important;
    padding: 0 !important;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text a {
    color: #092c74 !important;
    text-decoration: underline !important;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text a:hover {
    color: #073eac !important;
}

/* Responsive - Mobil - Sadece checkout için */
@media (max-width: 768px) {
    body.woocommerce-checkout main {
        padding: 40px 15px !important;
    }
    
    body.woocommerce-checkout h3,
    body.woocommerce-checkout #order_review_heading {
        font-size: 18px !important;
        padding: 14px 18px !important;
    }
    
    body.woocommerce-checkout #order_review {
        position: relative !important;
        top: 0 !important;
        margin-top: 30px !important;
        padding: 25px 20px !important;
    }
    
    body.woocommerce-checkout .shop_table thead th,
    body.woocommerce-checkout .shop_table tbody td,
    body.woocommerce-checkout .shop_table tfoot th,
    body.woocommerce-checkout .shop_table tfoot td {
        padding: 12px 15px !important;
        font-size: 14px !important;
    }
    
    body.woocommerce-checkout #place_order {
        padding: 16px 30px !important;
        font-size: 15px !important;
    }
}

/* ============================================
   RESPONSIVE (TABLET & MOBİL)
   ============================================ */

/* Mobil */
@media (max-width: 768px) {
    /* Cart sayfası container - gri arka plan yok */
    body.woocommerce-cart,
    body.woocommerce-cart main,
    body.woocommerce-cart article,
    body.woocommerce-cart .woocommerce,
    .woocommerce-cart main,
    .woocommerce-account main,
    .woocommerce-checkout main {
        padding: 40px 15px;
        min-height: 50vh;
        background: transparent !important;
        background-color: transparent !important;
    }
    
    .wc-empty-cart-wrapper {
        max-width: 100%;
    }
    
    .wc-empty-cart-content {
        padding: 60px 30px;
        border-radius: 20px;
    }
    
    .wc-empty-cart-icon {
        margin-bottom: 30px;
    }
    
    .wc-empty-cart-icon i {
        font-size: 90px;
    }
    
    .wc-empty-cart-message {
        margin-bottom: 35px;
    }
    
    .cart-empty.woocommerce-info {
        font-size: 24px;
        line-height: 1.5;
    }
    
    .return-to-shop {
        margin-top: 40px;
    }
    
    .return-to-shop .button {
        padding: 18px 35px;
        font-size: 16px;
        min-width: 100%;
        border-radius: 14px;
    }
    
    .return-to-shop .button i {
        font-size: 15px;
    }
    
    /* My Account Mobil */
    .woocommerce-myaccount-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .woocommerce-MyAccount-navigation {
        position: relative;
        top: 0;
        min-width: 100%;
    }
    
    .woocommerce-MyAccount-content-wrapper {
        padding: 25px 20px;
    }
    
    .woocommerce-dashboard-welcome {
        padding: 20px;
    }
    
    /* Cart sayfası mobil - tek kolon */
    body.woocommerce-cart .woocommerce,
    body.woocommerce-cart main .woocommerce,
    body.woocommerce-cart article .woocommerce,
    .woocommerce-cart .woocommerce,
    .woocommerce-cart main .woocommerce,
    .woocommerce-cart article .woocommerce,
    .woocommerce-cart main article .woocommerce,
    .woocommerce-cart main article > .woocommerce {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    /* Cart form mobil - card-based - Gri arka plan tamamen kaldırıldı */
    body.woocommerce-cart main,
    body.woocommerce-cart article,
    body.woocommerce-cart section,
    .woocommerce-cart main,
    .woocommerce-cart article,
    .woocommerce-cart section {
        background: transparent !important;
        background-color: transparent !important;
    }
    
    body.woocommerce-cart .woocommerce-cart-form,
    .woocommerce-cart .woocommerce-cart-form {
        grid-column: 1 !important;
        padding: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        background-color: transparent !important;
        box-shadow: none !important;
        border: none !important;
    }
    
    body.woocommerce-cart .woocommerce-cart-form::before,
    .woocommerce-cart .woocommerce-cart-form::before {
        display: none !important;
        content: none !important;
    }
    
    /* Mobilde table header gizle */
    body.woocommerce-cart .woocommerce-cart-form table.shop_table thead,
    .woocommerce-cart .woocommerce-cart-form table.shop_table thead {
        display: none !important;
        background: transparent !important;
        background-color: transparent !important;
    }
    
    /* Mobilde her ürün modern card olsun - Gri arka plan yok */
    body.woocommerce-cart .woocommerce-cart-form table.shop_table,
    .woocommerce-cart .woocommerce-cart-form table.shop_table {
        display: block !important;
        border: none !important;
        background: transparent !important;
        background-color: transparent !important;
    }
    
    body.woocommerce-cart .woocommerce-cart-form table.shop_table tbody,
    .woocommerce-cart .woocommerce-cart-form table.shop_table tbody {
        display: block !important;
        background: transparent !important;
        background-color: transparent !important;
    }
    
    body.woocommerce-cart .woocommerce-cart-form table.shop_table tbody tr,
    .woocommerce-cart .woocommerce-cart-form table.shop_table tbody tr {
        display: block !important;
        background: #ffffff !important;
        background-color: #ffffff !important;
        border-radius: 16px !important;
        padding: 20px !important;
        margin-bottom: 16px !important;
        box-shadow: none !important;
        border: 0px solid rgba(9, 44, 116, 0.1) !important;
        position: relative !important;
    }
    
    body.woocommerce-cart .woocommerce-cart-form table.shop_table tbody tr:hover,
    body.woocommerce-cart .woocommerce-cart-form table.shop_table tbody tr:focus,
    .woocommerce-cart .woocommerce-cart-form table.shop_table tbody tr:hover,
    .woocommerce-cart .woocommerce-cart-form table.shop_table tbody tr:focus {
        background: #ffffff !important;
        background-color: #ffffff !important;
    }
    
    body.woocommerce-cart .woocommerce-cart-form table.shop_table tbody tr td,
    .woocommerce-cart .woocommerce-cart-form table.shop_table tbody tr td {
        background: transparent !important;
        background-color: transparent !important;
    }
    
    .woocommerce-cart .woocommerce-cart-form table.shop_table tbody td {
        display: block !important;
        padding: 0 !important;
        border: none !important;
        text-align: left !important;
    }
    
    /* WooCommerce data-label'larını gizle - mobil görünümde */
    .woocommerce-cart .woocommerce-cart-form table.shop_table tbody td[data-title]::before {
        display: none !important;
        content: none !important;
    }
    
    /* Remove button - sağ üste */
    .woocommerce-cart .woocommerce-cart-form table.shop_table .product-remove {
        position: absolute !important;
        top: 12px !important;
        right: 12px !important;
        width: auto !important;
    }
    
    .woocommerce-cart .woocommerce-cart-form table.shop_table .product-remove a {
        width: 36px !important;
        height: 36px !important;
        font-size: 18px !important;
        border-radius: 10px !important;
    }
    
    /* Thumbnail - sol üstte - label yok */
    .woocommerce-cart .woocommerce-cart-form table.shop_table .product-thumbnail {
        width: 80px !important;
        float: left !important;
        margin-right: 16px !important;
        margin-bottom: 12px !important;
    }
    
    .woocommerce-cart .woocommerce-cart-form table.shop_table .product-thumbnail::before {
        display: none !important;
        content: none !important;
    }
    
    .woocommerce-cart .woocommerce-cart-form table.shop_table .product-thumbnail a {
        border-radius: 10px !important;
        padding: 2px !important;
    }
    
    .woocommerce-cart .woocommerce-cart-form table.shop_table .product-thumbnail a::before {
        display: none !important;
        content: none !important;
    }
    
    /* Product name */
    .woocommerce-cart .woocommerce-cart-form table.shop_table .product-name {
        font-size: 17px !important;
        font-weight: 700 !important;
        margin-bottom: 10px !important;
        padding-right: 40px !important;
        color: #092C74 !important;
    }
    
    .woocommerce-cart .woocommerce-cart-form table.shop_table .product-name a {
        color: #092C74 !important;
        font-weight: 700 !important;
    }
    
    /* Price */
    .woocommerce-cart .woocommerce-cart-form table.shop_table .product-price {
        font-size: 16px !important;
        font-weight: 600 !important;
        color: #555 !important;
        margin-bottom: 12px !important;
        display: block !important;
    }
    
    .woocommerce-cart .woocommerce-cart-form table.shop_table .product-price::before {
        content: "Price" !important;
        font-weight: 500 !important;
        color: #777 !important;
        margin-right: 8px !important;
    }
    
    /* Quantity */
    .woocommerce-cart .woocommerce-cart-form table.shop_table .product-quantity {
        margin-bottom: 12px !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }
    
    .woocommerce-cart .woocommerce-cart-form table.shop_table .product-quantity::before {
        content: "Quantity" !important;
        font-weight: 500 !important;
        font-size: 16px !important;
        color: #777 !important;
        margin-right: 0 !important;
        flex-shrink: 0 !important;
    }
    
    .woocommerce-cart .woocommerce-cart-form table.shop_table .quantity {
        display: inline-flex !important;
    }
    
    .woocommerce-cart .woocommerce-cart-form table.shop_table .quantity .qty {
        width: 50px !important;
        padding: 8px 6px !important;
        font-size: 14px !important;
        border-radius: 8px !important;
        text-align: center !important;
    }
    
    /* Subtotal */
    .woocommerce-cart .woocommerce-cart-form table.shop_table .product-subtotal {
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #092C74 !important;
        padding-top: 10px !important;
        border-top: 1px solid rgba(9, 44, 116, 0.1) !important;
        margin-top: 10px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .woocommerce-cart .woocommerce-cart-form table.shop_table .product-subtotal::before {
        content: "Subtotal" !important;
        font-weight: 600 !important;
        font-size: 14px !important;
        color: #555 !important;
    }
    
    /* Actions */
    .woocommerce-cart .woocommerce-cart-form .actions {
        padding-top: 20px !important;
        margin-top: 20px !important;
        display: block !important;
        border-top: none !important;
    }
    
    .woocommerce-cart .woocommerce-cart-form .actions .coupon {
        margin-bottom: 16px !important;
        display: block !important;
    }
    
    .woocommerce-cart .woocommerce-cart-form .actions .coupon input[type="text"] {
        width: 100% !important;
        margin-bottom: 10px !important;
        padding: 12px !important;
        font-size: 15px !important;
    }
    
    .woocommerce-cart .woocommerce-cart-form .actions .coupon .button {
        width: 100% !important;
        padding: 14px !important;
        font-size: 15px !important;
    }
    
    .woocommerce-cart .woocommerce-cart-form .actions .button.update-cart {
        width: 100% !important;
        padding: 14px !important;
        font-size: 15px !important;
        margin-top: 10px !important;
    }
    
    /* Cart Totals Mobil */
    .woocommerce-cart .cart-collaterals {
        grid-column: 1 !important;
        margin-top: 0 !important;
        position: relative !important;
        top: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Cart Totals Mobil - Güçlü Selector'lar */
    body.woocommerce-cart .cart_totals,
    .woocommerce-cart .cart_totals,
    .woocommerce .cart_totals {
        padding: 22px 18px !important;
        min-width: 100% !important;
        border-radius: 12px !important;
    }
    
    body.woocommerce-cart .cart_totals::before,
    .woocommerce-cart .cart_totals::before,
    .woocommerce .cart_totals::before {
        display: none !important;
        content: none !important;
    }
    
    body.woocommerce-cart .cart_totals h2,
    .woocommerce-cart .cart_totals h2,
    .woocommerce .cart_totals h2 {
        font-size: 17px !important;
        margin-bottom: 18px !important;
        padding-bottom: 10px !important;
        font-family: "Poppins", sans-serif !important;
        border-bottom: 2px solid rgba(9, 44, 116, 0.15) !important;
        font-weight: 700 !important;
        letter-spacing: 0.5px !important;
    }
    
    body.woocommerce-cart .cart_totals h2::after,
    .woocommerce-cart .cart_totals h2::after,
    .woocommerce .cart_totals h2::after {
        display: none !important;
        content: none !important;
    }
    
    /* Mobilde tablo - Montserrat Font ve Tüm Nested Elementler - TÜM BORDER'LAR KALDIRILDI */
    body.woocommerce-cart .cart_totals table.shop_table,
    body.woocommerce-cart .cart_totals table,
    .woocommerce-cart .cart_totals table.shop_table,
    .woocommerce-cart .cart_totals table,
    .woocommerce .cart_totals table.shop_table,
    .woocommerce .cart_totals table {
        margin-bottom: 18px !important;
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
        border-left: none !important;
        border-right: none !important;
    }
    
    /* Mobilde tüm table elementlerinde border yok */
    body.woocommerce-cart .cart_totals table *,
    .woocommerce-cart .cart_totals table *,
    .woocommerce .cart_totals table * {
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
        border-left: none !important;
        border-right: none !important;
    }
    
    body.woocommerce-cart .cart_totals table th,
    body.woocommerce-cart .cart_totals table td,
    body.woocommerce-cart .cart_totals table th *,
    body.woocommerce-cart .cart_totals table td *,
    body.woocommerce-cart .cart_totals table th span,
    body.woocommerce-cart .cart_totals table td span,
    body.woocommerce-cart .cart_totals table th bdi,
    body.woocommerce-cart .cart_totals table td bdi,
    body.woocommerce-cart .cart_totals table th strong,
    body.woocommerce-cart .cart_totals table td strong,
    .woocommerce-cart .cart_totals table th,
    .woocommerce-cart .cart_totals table td,
    .woocommerce-cart .cart_totals table th *,
    .woocommerce-cart .cart_totals table td *,
    .woocommerce-cart .cart_totals table th span,
    .woocommerce-cart .cart_totals table td span,
    .woocommerce-cart .cart_totals table th bdi,
    .woocommerce-cart .cart_totals table td bdi,
    .woocommerce-cart .cart_totals table th strong,
    .woocommerce-cart .cart_totals table td strong,
    .woocommerce .cart_totals table th,
    .woocommerce .cart_totals table td,
    .woocommerce .cart_totals table th *,
    .woocommerce .cart_totals table td *,
    .woocommerce .cart_totals table th span,
    .woocommerce .cart_totals table td span,
    .woocommerce .cart_totals table th bdi,
    .woocommerce .cart_totals table td bdi,
    .woocommerce .cart_totals table th strong,
    .woocommerce .cart_totals table td strong {
        font-family: "Montserrat", sans-serif !important;
    }
    
    body.woocommerce-cart .cart_totals table th,
    body.woocommerce-cart .cart_totals table td,
    body.woocommerce-cart .cart_totals table.shop_table th,
    body.woocommerce-cart .cart_totals table.shop_table td,
    .woocommerce-cart .cart_totals table th,
    .woocommerce-cart .cart_totals table td,
    .woocommerce-cart .cart_totals table.shop_table th,
    .woocommerce-cart .cart_totals table.shop_table td,
    .woocommerce .cart_totals table th,
    .woocommerce .cart_totals table td,
    .woocommerce .cart_totals table.shop_table th,
    .woocommerce .cart_totals table.shop_table td {
        padding: 16px 0 !important;
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
        border-left: none !important;
        border-right: none !important;
        line-height: 1.6 !important;
    }
    
    body.woocommerce-cart .cart_totals table th,
    .woocommerce-cart .cart_totals table th,
    .woocommerce .cart_totals table th {
        font-size: 14px !important;
        font-weight: 500 !important;
        color: #666 !important;
        text-align: left !important;
        padding-left: 0 !important;
    }
    
    body.woocommerce-cart .cart_totals table td,
    .woocommerce-cart .cart_totals table td,
    .woocommerce .cart_totals table td {
        font-size: 15px !important;
        font-weight: 600 !important;
        color: #092C74 !important;
        text-align: right !important;
        padding-right: 0 !important;
        padding-left: 10px !important;
    }
    
    /* Mobil Cart Subtotal - TÜM BORDER'LAR KALDIRILDI */
    body.woocommerce-cart .cart_totals table tr.cart-subtotal,
    body.woocommerce-cart .cart_totals table tbody tr.cart-subtotal,
    body.woocommerce-cart .cart_totals table.shop_table tr.cart-subtotal,
    .woocommerce-cart .cart_totals table tr.cart-subtotal,
    .woocommerce-cart .cart_totals table tbody tr.cart-subtotal,
    .woocommerce-cart .cart_totals table.shop_table tr.cart-subtotal,
    .woocommerce .cart_totals table tr.cart-subtotal,
    .woocommerce .cart_totals table tbody tr.cart-subtotal,
    .woocommerce .cart_totals table.shop_table tr.cart-subtotal {
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
        border-left: none !important;
        border-right: none !important;
        background: transparent !important;
        background-color: transparent !important;
    }
    
    body.woocommerce-cart .cart_totals table tr.cart-subtotal th,
    body.woocommerce-cart .cart_totals table tr.cart-subtotal td,
    body.woocommerce-cart .cart_totals table tr.cart-subtotal th *,
    body.woocommerce-cart .cart_totals table tr.cart-subtotal td *,
    .woocommerce-cart .cart_totals table tr.cart-subtotal th,
    .woocommerce-cart .cart_totals table tr.cart-subtotal td,
    .woocommerce-cart .cart_totals table tr.cart-subtotal th *,
    .woocommerce-cart .cart_totals table tr.cart-subtotal td *,
    .woocommerce .cart_totals table tr.cart-subtotal th,
    .woocommerce .cart_totals table tr.cart-subtotal td,
    .woocommerce .cart_totals table tr.cart-subtotal th *,
    .woocommerce .cart_totals table tr.cart-subtotal td * {
        font-family: "Montserrat", sans-serif !important;
        padding: 16px 0 !important;
    }
    
    /* Mobil Order Total - TÜM BORDER'LAR KALDIRILDI, Daha Fazla Spacing */
    body.woocommerce-cart .cart_totals table tr.order-total,
    body.woocommerce-cart .cart_totals table tbody tr.order-total,
    body.woocommerce-cart .cart_totals table.shop_table tr.order-total,
    .woocommerce-cart .cart_totals table tr.order-total,
    .woocommerce-cart .cart_totals table tbody tr.order-total,
    .woocommerce-cart .cart_totals table.shop_table tr.order-total,
    .woocommerce .cart_totals table tr.order-total,
    .woocommerce .cart_totals table tbody tr.order-total,
    .woocommerce .cart_totals table.shop_table tr.order-total {
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
        border-left: none !important;
        border-right: none !important;
        background: transparent !important;
        background-color: transparent !important;
        margin-top: 18px !important;
    }
    
    body.woocommerce-cart .cart_totals table tr.order-total th,
    body.woocommerce-cart .cart_totals table tr.order-total td,
    body.woocommerce-cart .cart_totals table tr.order-total th *,
    body.woocommerce-cart .cart_totals table tr.order-total td *,
    body.woocommerce-cart .cart_totals table tr.order-total th span,
    body.woocommerce-cart .cart_totals table tr.order-total td span,
    body.woocommerce-cart .cart_totals table tr.order-total th bdi,
    body.woocommerce-cart .cart_totals table tr.order-total td bdi,
    body.woocommerce-cart .cart_totals table tr.order-total th strong,
    body.woocommerce-cart .cart_totals table tr.order-total td strong,
    .woocommerce-cart .cart_totals table tr.order-total th,
    .woocommerce-cart .cart_totals table tr.order-total td,
    .woocommerce-cart .cart_totals table tr.order-total th *,
    .woocommerce-cart .cart_totals table tr.order-total td *,
    .woocommerce-cart .cart_totals table tr.order-total th span,
    .woocommerce-cart .cart_totals table tr.order-total td span,
    .woocommerce-cart .cart_totals table tr.order-total th bdi,
    .woocommerce-cart .cart_totals table tr.order-total td bdi,
    .woocommerce-cart .cart_totals table tr.order-total th strong,
    .woocommerce-cart .cart_totals table tr.order-total td strong,
    .woocommerce .cart_totals table tr.order-total th,
    .woocommerce .cart_totals table tr.order-total td,
    .woocommerce .cart_totals table tr.order-total th *,
    .woocommerce .cart_totals table tr.order-total td *,
    .woocommerce .cart_totals table tr.order-total th span,
    .woocommerce .cart_totals table tr.order-total td span,
    .woocommerce .cart_totals table tr.order-total th bdi,
    .woocommerce .cart_totals table tr.order-total td bdi,
    .woocommerce .cart_totals table tr.order-total th strong,
    .woocommerce .cart_totals table tr.order-total td strong {
        font-family: "Montserrat", sans-serif !important;
        padding-top: 20px !important;
        padding-bottom: 16px !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        border-bottom: none !important;
        border-top: none !important;
        background: transparent !important;
        background-color: transparent !important;
    }
    
    body.woocommerce-cart .cart_totals table tr.order-total td,
    body.woocommerce-cart .cart_totals table tr.order-total td *,
    .woocommerce-cart .cart_totals table tr.order-total td,
    .woocommerce-cart .cart_totals table tr.order-total td *,
    .woocommerce .cart_totals table tr.order-total td,
    .woocommerce .cart_totals table tr.order-total td * {
        font-size: 18px !important;
        padding-left: 10px !important;
    }
    
    /* Mobilde Checkout Butonu */
    body.woocommerce-cart .wc-proceed-to-checkout,
    .woocommerce-cart .wc-proceed-to-checkout,
    .woocommerce .wc-proceed-to-checkout {
        margin-top: 18px !important;
    }
    
    body.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
    body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
    .woocommerce-cart .wc-proceed-to-checkout .checkout-button,
    .woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
    .woocommerce .wc-proceed-to-checkout .checkout-button,
    .woocommerce .wc-proceed-to-checkout a.checkout-button {
        font-family: "Poppins", sans-serif !important;
        padding: 13px 22px !important;
        font-size: 13px !important;
        letter-spacing: 0.5px !important;
        border-radius: 10px !important;
        font-weight: 600 !important;
        box-shadow: 0 3px 8px rgba(9, 44, 116, 0.2) !important;
    }
    
    /* Mobilde Update Cart Butonu */
    .woocommerce-cart .woocommerce-cart-form .actions .button.update-cart {
        padding: 10px 20px;
        font-size: 12px;
        border-radius: 10px;
    }
}
