/**
 * WooCommerce Özel Stilleri - Webixmo Tema
 * @package webixmo
 * Ana Renk: #0098da (Turkuaz Mavi)
 */

/* ========================================
   WooCommerce Hesap Sayfası (My Account)
   ======================================== */

/* Hesap Sayfası Genel */
.woocommerce-account .woocommerce {
    padding: 40px 0;
}

/* Navigation Sidebar */
.woocommerce-MyAccount-navigation {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    min-height: 400px;
}

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

.woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: none;
}

.woocommerce-MyAccount-navigation ul li:hover {
    background: rgba(0, 152, 218, 0.05);
}

.woocommerce-MyAccount-navigation ul li.is-active {
    background: linear-gradient(135deg, #0098da, #0078ba);
}

.woocommerce-MyAccount-navigation ul li a {
    display: flex;
    align-items: center;
    padding: 24px 28px;
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    min-height: 60px;
}

.woocommerce-MyAccount-navigation ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #0098da;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.woocommerce-MyAccount-navigation ul li:hover a::before,
.woocommerce-MyAccount-navigation ul li.is-active a::before {
    opacity: 1;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
    color: #fff;
}

.woocommerce-MyAccount-navigation ul li:hover a {
    color: #5a5a5a;
    padding-left: 36px;
}
a.woocommerce-MyAccount-navigation-link.is-active:hover {
    color: white;
}
/* Hesap İçerik Alanı */
.woocommerce-MyAccount-content {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    min-height: 500px;
}

/* Hesap Sayfası Başlıkları */
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #0098da;
    position: relative;
}

.woocommerce-MyAccount-content h2::after,
.woocommerce-MyAccount-content h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #0098da;
}

/* Dashboard Widgets */
.woocommerce-MyAccount-content .woocommerce-Message,
.woocommerce-MyAccount-content .woocommerce-Info {
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    border: 1px solid #81c784;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    color: #2e7d32;
    font-weight: 600;
}

.woocommerce-MyAccount-content .woocommerce-Error {
    background: linear-gradient(135deg, #ffebee, #fce4ec);
    border: 1px solid #ef5350;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    color: #c62828;
    font-weight: 600;
}

/* Dashboard İstatistikleri */
.woocommerce-MyAccount-content .woocommerce-MyAccount-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.woocommerce-MyAccount-content .woocommerce-MyAccount-dashboard .dashboard-item {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.woocommerce-MyAccount-content .woocommerce-MyAccount-dashboard .dashboard-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 152, 218, 0.15);
    border-color: #0098da;
}

.woocommerce-MyAccount-content .woocommerce-MyAccount-dashboard .dashboard-item h4 {
    color: #0098da;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.woocommerce-MyAccount-content .woocommerce-MyAccount-dashboard .dashboard-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Form Elemanları */
.woocommerce-MyAccount-content .woocommerce-form-row {
    margin-bottom: 24px;
}

.woocommerce-MyAccount-content .woocommerce-form-row label {
    display: block;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.woocommerce-MyAccount-content .woocommerce-form-row input[type="text"],
.woocommerce-MyAccount-content .woocommerce-form-row input[type="email"],
.woocommerce-MyAccount-content .woocommerce-form-row input[type="password"],
.woocommerce-MyAccount-content .woocommerce-form-row textarea,
.woocommerce-MyAccount-content .woocommerce-form-row select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

.woocommerce-MyAccount-content .woocommerce-form-row input[type="text"]:focus,
.woocommerce-MyAccount-content .woocommerce-form-row input[type="email"]:focus,
.woocommerce-MyAccount-content .woocommerce-form-row input[type="password"]:focus,
.woocommerce-MyAccount-content .woocommerce-form-row textarea:focus,
.woocommerce-MyAccount-content .woocommerce-form-row select:focus {
    border-color: #0098da;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 152, 218, 0.1);
}

/* Butonlar */
.woocommerce-MyAccount-content .woocommerce-Button,
.woocommerce-MyAccount-content .button {
    background: linear-gradient(135deg, #0098da, #0078ba);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.woocommerce-MyAccount-content .woocommerce-Button:hover,
.woocommerce-MyAccount-content .button:hover {
    background: linear-gradient(135deg, #0078ba, #005a8a);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 152, 218, 0.3);
}

/* Sipariş Tablosu */
.woocommerce-MyAccount-content .woocommerce-orders-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.woocommerce-MyAccount-content .woocommerce-orders-table th,
.woocommerce-MyAccount-content .woocommerce-orders-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.woocommerce-MyAccount-content .woocommerce-orders-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 14px;
}

.woocommerce-MyAccount-content .woocommerce-orders-table td {
    color: #4a4a4a;
    font-size: 14px;
}

.woocommerce-MyAccount-content .woocommerce-orders-table tr:hover {
    background: rgba(0, 152, 218, 0.02);
}

/* Durum Badge'leri */
.woocommerce-MyAccount-content .woocommerce-orders-table .order-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.woocommerce-MyAccount-content .woocommerce-orders-table .order-status.completed {
    background: #e8f5e9;
    color: #2e7d32;
}

.woocommerce-MyAccount-content .woocommerce-orders-table .order-status.processing {
    background: #e3f2fd;
    color: #1976d2;
}

.woocommerce-MyAccount-content .woocommerce-orders-table .order-status.pending {
    background: #fff3e0;
    color: #f57c00;
}

.woocommerce-MyAccount-content .woocommerce-orders-table .order-status.cancelled {
    background: #ffebee;
    color: #c62828;
}

/* Responsive */
@media (max-width: 768px) {
    .woocommerce-MyAccount-content {
        padding: 24px;
    }
    
    .woocommerce-MyAccount-navigation ul li a {
        padding: 20px 24px;
        font-size: 15px;
        min-height: 50px;
    }
    
    .woocommerce-MyAccount-content .woocommerce-MyAccount-dashboard {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .woocommerce-MyAccount-content .woocommerce-orders-table {
        font-size: 12px;
    }
    
    .woocommerce-MyAccount-content .woocommerce-orders-table th,
    .woocommerce-MyAccount-content .woocommerce-orders-table td {
        padding: 12px 8px;
    }
}

/* Tablet için genişlik ayarı */
@media (max-width: 992px) {
    .col-lg-4 {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .col-lg-8 {
        width: 100%;
    }
}

/* ========================================
   WooCommerce Giriş/Kayıt/Şifre Sayfaları
   ======================================== */

/* Giriş/Kayıt Form Wrapper - Tailwind Style */
.woocommerce-login-form-wrapper,
.woocommerce-lost-password-form-wrapper,
.woocommerce-reset-password-form-wrapper {
    @apply bg-white rounded-3xl p-12 shadow-2xl border border-gray-100 mx-auto max-w-md;
    margin: 2rem 0;
    animation: slideInUp 0.6s ease-out;
}

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

/* Form Başlıkları - Tailwind Style */
.login-title,
.lost-password-title,
.reset-password-title {
    @apply text-3xl font-bold text-gray-900 mb-3 text-center relative;
}

.login-title::after,
.lost-password-title::after,
.reset-password-title::after {
    content: '';
    @apply absolute -bottom-2 left-1/2 transform -translate-x-1/2 w-16 h-1 bg-gradient-to-r from-blue-500 to-blue-600 rounded-full;
}

.login-subtitle,
.lost-password-subtitle,
.reset-password-subtitle {
    @apply text-gray-600 text-base text-center mb-8;
}

/* Tab Navigation - Tailwind Style */
.login-tabs {
    @apply mb-8;
}

.login-tabs .nav-tabs {
    @apply flex bg-gray-100 rounded-xl p-1 border-0;
}

.login-tabs .nav-tabs .nav-link {
    @apply flex-1 text-center py-3 px-6 rounded-lg font-semibold text-gray-600 transition-all duration-200 border-0 bg-transparent;
}

.login-tabs .nav-tabs .nav-link.active {
    @apply bg-blue-500 text-white shadow-lg transform scale-105;
}

.login-tabs .nav-tabs .nav-link:hover:not(.active) {
    @apply text-blue-500 bg-blue-50;
}

/* Form Elemanları - Tailwind Style */
.form-group {
    @apply mb-6;
}

.form-label {
    @apply block text-gray-700 font-semibold mb-2 text-sm;
}

.form-control {
    @apply w-full px-4 py-3 border-2 border-gray-200 rounded-xl text-gray-900 transition-all duration-200 bg-white;
    @apply focus:border-blue-500 focus:outline-none focus:ring-4 focus:ring-blue-100 focus:scale-105 focus:shadow-lg;
}

/* Checkbox - Tailwind Style */
.woocommerce-form__label-for-checkbox {
    @apply flex items-center cursor-pointer text-gray-600 text-sm;
}

.woocommerce-form__label-for-checkbox input[type="checkbox"] {
    @apply mr-3 w-5 h-5 text-blue-500 rounded border-gray-300 focus:ring-blue-500;
}

/* Remember Me Label - Simple Style */
.remember-me-label {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    cursor: pointer !important;
    color: #374151 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    background-color: #f9fafb !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    padding: 12px !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
    min-height: 48px !important;
}

.remember-me-label:hover {
    background-color: #f3f4f6 !important;
    border-color: #3b82f6 !important;
    color: #2563eb !important;
}

.remember-me-label input[type="checkbox"] {
    margin-right: 12px !important;
    width: 20px !important;
    height: 20px !important;
    accent-color: #3b82f6 !important;
    flex-shrink: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    vertical-align: middle !important;
}

.remember-me-text {
    color: #374151 !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    vertical-align: middle !important;
}

.remember-me-label:hover .remember-me-text {
    color: #2563eb !important;
}

/* Butonlar - Tailwind Style */
.btn-primary {
    @apply w-full py-4 px-6 bg-gradient-to-r from-blue-500 to-blue-600 text-white font-bold text-base rounded-xl;
    @apply transition-all duration-200 transform hover:scale-105 hover:shadow-xl hover:-translate-y-1;
    @apply focus:outline-none focus:ring-4 focus:ring-blue-200 active:scale-95;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    @apply bg-gradient-to-r from-blue-600 to-blue-700;
}

/* Link Stilleri - Tailwind Style */
.lost-password-link,
.back-to-login-link {
    @apply text-blue-500 font-semibold text-sm transition-all duration-200 hover:text-blue-600 hover:underline;
}

/* Required Indicator - Tailwind Style */
.required {
    @apply text-red-500 font-bold;
}

/* Error/Success Messages - Tailwind Style */
.woocommerce-error {
    @apply bg-red-50 border border-red-200 rounded-xl p-4 mb-6 text-red-700 font-semibold text-sm;
}

.woocommerce-message {
    @apply bg-green-50 border border-green-200 rounded-xl p-4 mb-6 text-green-700 font-semibold text-sm;
}

.woocommerce-info {
    @apply bg-blue-50 border border-blue-200 rounded-xl p-4 mb-6 text-blue-700 font-semibold text-sm;
}

/* Responsive - Tailwind Style */
@media (max-width: 768px) {
    .woocommerce-login-form-wrapper,
    .woocommerce-lost-password-form-wrapper,
    .woocommerce-reset-password-form-wrapper {
        @apply p-8 mx-4 max-w-sm;
        margin: 1rem 0;
    }
    
    .login-title,
    .lost-password-title,
    .reset-password-title {
        @apply text-2xl;
    }
    
    .login-subtitle,
    .lost-password-subtitle,
    .reset-password-subtitle {
        @apply text-sm;
    }
    
    .form-control {
        @apply py-2 px-3 text-sm;
    }
    
    .btn-primary {
        @apply py-3 px-4 text-sm;
    }
    
    .login-tabs .nav-tabs .nav-link {
        @apply py-2 px-4 text-sm;
    }
}

/* ========================================
   Header İkonları
   ======================================== */

/* Account Icon */
.header-account-icon {
    position: relative;
    display: inline-block;
}

.header-account-icon a {
    color: #4a4a4a;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 25px;
    background: transparent;
    white-space: nowrap;
}

.header-account-icon a:hover {
    color: #0098da;
    background: rgba(0, 152, 218, 0.1);
    transform: translateY(-2px);
}

.header-account-icon i {
    font-size: 16px;
    transition: all 0.3s ease;
}

.account-text {
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Cart Icon Enhancement */
.header-cart-icon a {
    color: #4a4a4a;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
}

.header-cart-icon a:hover {
    color: #0098da;
    background: rgba(0, 152, 218, 0.1);
    transform: scale(1.1);
}

.header-cart-icon i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.header-cart-icon:hover i {
    transform: rotate(-5deg);
}

/* Cart Count Badge */
.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #0098da;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 152, 218, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Search Icon Enhancement */
.header-search-icon a {
    color: #4a4a4a;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
}

.header-search-icon a:hover {
    color: #0098da;
    background: rgba(0, 152, 218, 0.1);
    transform: scale(1.1);
}

.header-search-icon i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.header-search-icon:hover i {
    transform: rotate(15deg);
}

/* Icon Container */
.header-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-account-icon a {
        padding: 6px 12px;
        gap: 6px;
    }
    
    .header-account-icon i {
        font-size: 14px;
    }
    
    .account-text {
        font-size: 12px;
    }
    
    .header-cart-icon a,
    .header-search-icon a {
        width: 35px;
        height: 35px;
    }
    
    .header-cart-icon i,
    .header-search-icon i {
        font-size: 16px;
    }
    
    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
}

/* ========================================
   Genel WooCommerce Stilleri
   ======================================== */

.woocommerce-page {
    font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}

/* WooCommerce Ana Renk Tanımlamaları */
.text-base-color {
    color: #0098da !important;
}

.bg-base-color {
    background-color: #0098da !important;
}

.border-base-color {
    border-color: #0098da !important;
}

/* ========================================
   Breadcrumb
   ======================================== */

.woocommerce-breadcrumb {
    font-size: 14px;
    color: #828282;
    padding: 15px 0;
}

.woocommerce-breadcrumb a {
    color: #232323;
    text-decoration: none;
    transition: all 0.3s ease;
}

.woocommerce-breadcrumb a:hover {
    color: #0098da;
}

/* ========================================
   Mağaza / Arşiv Sayfası
   ======================================== */

/* Shop Header */
.shop-header {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e4e4e4;
}

.shop-header h1 {
    font-size: 42px;
}

.shop-stats {
    display: inline-flex;
    align-items: center;
}


.woocommerce-result-count {
    font-size: 14px;
    color: #626262;
    margin: 0;
    font-weight: 600;
    line-height: 1;
}

.woocommerce-ordering {
    margin: 0;
}
.woocommerce .woocommerce-result-count, .woocommerce .woocommerce-ordering {
    margin:0 !important;
}
.woocommerce-ordering select {
   max-width: 200px;;
    border: 2px solid #e4e4e4;
    border-radius: 6px;
    padding: 8px 40px 8px 15px;
    font-size: 13px;
    color: #232323;
    background-color: #fff;
    transition: all 0.3s ease;
    font-weight: 600;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23232323' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px;
    appearance: none;
    line-height: 1;
}

.woocommerce-ordering select:focus {
    border-color: #0098da;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 152, 218, 0.1);
}

.woocommerce-ordering select:hover {
    border-color: #0098da;
}

/* ========================================
   Sidebar / Bileşen Alanı - Minimalist
   ======================================== */

.sticky-sidebar {
    position: sticky;
    top: 20px;
}

.shop-sidebar {
    padding-right: 20px;
}

/* Widget Container - Minimalist */
.shop-sidebar .widget {
    background: transparent;
    padding: 0 0 30px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #e8e8e8;
    transition: border-color 0.3s ease;
}

.shop-sidebar .widget:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

/* Widget Başlıkları - Minimalist */
.shop-sidebar .widget .widget-title,
.shop-sidebar .widget h5,
.shop-sidebar .widget h4,
.shop-sidebar .widget h3 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 18px;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Arama Kutusu - Minimalist */
.shop-sidebar .widget .search-form,
.shop-sidebar .widget .woocommerce-product-search {
    position: relative;
}

.shop-sidebar .widget input[type="search"],
.shop-sidebar .widget input[type="text"] {
    width: 100%;
    padding: 10px 40px 10px 0;
    border: none;
    border-bottom: 1px solid #d0d0d0;
    border-radius: 0;
    font-size: 13px;
    background: transparent;
    transition: border-color 0.3s ease;
}

.shop-sidebar .widget input[type="search"]:focus,
.shop-sidebar .widget input[type="text"]:focus {
    border-bottom-color: #0098da;
    outline: none;
}

.shop-sidebar .widget button[type="submit"],
.shop-sidebar .widget .search-submit {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #1a1a1a;
    border: none;
    padding: 5px;
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 16px;
}

.shop-sidebar .widget button[type="submit"]:hover,
.shop-sidebar .widget .search-submit:hover {
    color: #0098da;
}

/* Liste Öğeleri - Minimalist */
.shop-sidebar .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-sidebar .widget ul li {
    margin-bottom: 0;
    padding: 8px 0;
    border: none;
}

.shop-sidebar .widget ul li a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop-sidebar .widget ul li a:hover {
    color: #0098da;
}

/* Count Badge - Minimalist */
.shop-sidebar .widget .count {
    color: #999;
    font-size: 12px;
    font-weight: 400;
}

/* Kategori Widget - Minimalist */
.shop-sidebar .widget_categories .children,
.shop-sidebar .widget_product_categories .children {
    margin-top: 4px;
    margin-left: 12px;
}

.shop-sidebar .widget_categories .children li,
.shop-sidebar .widget_product_categories .children li {
    padding: 6px 0;
}

.shop-sidebar .widget_categories .children li a,
.shop-sidebar .widget_product_categories .children li a {
    font-size: 12px;
    color: #6a6a6a;
}

/* Fiyat Filtresi - Minimalist */
.shop-sidebar .widget_price_filter .price_slider_wrapper {
    padding: 10px 0;
}

.shop-sidebar .widget_price_filter .price_slider {
    margin-bottom: 16px;
    height: 2px;
    background: #e0e0e0;
    border-radius: 0;
}

.shop-sidebar .widget_price_filter .ui-slider-range {
    background: #0098da;
    border-radius: 0;
}

.shop-sidebar .widget_price_filter .ui-slider-handle {
    width: 14px;
    height: 14px;
    background: #0098da;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    top: -6px;
    transition: transform 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.shop-sidebar .widget_price_filter .ui-slider-handle:hover {
    transform: scale(1.15);
}

.shop-sidebar .widget_price_filter .price_slider_amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.shop-sidebar .widget_price_filter .price_label {
    font-weight: 400;
    color: #4a4a4a;
    font-size: 13px;
}

.shop-sidebar .widget_price_filter .button {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 6px 16px;
    border-radius: 0;
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shop-sidebar .widget_price_filter .button:hover {
    background: #0098da;
}

/* Rating Filter - Minimalist */
.shop-sidebar .widget_rating_filter ul li {
    display: flex;
    align-items: center;
}

.shop-sidebar .widget_rating_filter .star-rating {
    margin-right: 6px;
    color: #1a1a1a;
}

/* Aktif Filtreler - Minimalist */
.shop-sidebar .widget_layered_nav_filters ul li {
    background: transparent;
    padding: 4px 0;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    margin-right: 0;
    margin-bottom: 0;
}

.shop-sidebar .widget_layered_nav_filters ul li:last-child {
    border-bottom: none;
}

.shop-sidebar .widget_layered_nav_filters ul li a {
    color: #4a4a4a;
    font-size: 13px;
    padding: 0;
}

.shop-sidebar .widget_layered_nav_filters ul li a:hover {
    color: #0098da;
}

/* ========================================
   Form Elemanları - Checkbox & Radio
   ======================================== */

/* Checkbox ve Radio Button - Minimalist */
.shop-sidebar .widget input[type="checkbox"],
.shop-sidebar .widget input[type="radio"],
.wc-block-product-filter-checkbox-list__input,
.wc-block-components-checkbox__input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #d0d0d0;
    background: #fff;
    cursor: pointer;
    position: relative;
    margin-right: 10px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    padding: 0 !important;
}

.shop-sidebar .widget input[type="checkbox"],
.wc-block-product-filter-checkbox-list__input,
.wc-block-components-checkbox__input {
    border-radius: 2px;
}

.shop-sidebar .widget input[type="radio"] {
    border-radius: 50%;
}

/* Checkbox/Radio Hover */
.shop-sidebar .widget input[type="checkbox"]:hover,
.shop-sidebar .widget input[type="radio"]:hover,
.wc-block-product-filter-checkbox-list__input:hover,
.wc-block-components-checkbox__input:hover {
    border-color: #0098da;
}

/* Checkbox/Radio Checked */
.shop-sidebar .widget input[type="checkbox"]:checked,
.shop-sidebar .widget input[type="radio"]:checked,
.wc-block-product-filter-checkbox-list__input:checked,
.wc-block-components-checkbox__input:checked {
    background: #0098da;
    border-color: #0098da;
}

/* Checkbox Checkmark */
.shop-sidebar .widget input[type="checkbox"]:checked::after,
.wc-block-product-filter-checkbox-list__input:checked::after,
.wc-block-components-checkbox__input:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Radio Dot */
.shop-sidebar .widget input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

/* Label düzenleme */
.shop-sidebar .widget label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0;
}

/* WooCommerce Block Filters */
.wc-block-product-filter-checkbox-list__item,
.wc-block-components-checkbox {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.wc-block-product-filter-checkbox-list__item label,
.wc-block-components-checkbox label {
    display: flex;
    align-items: center;
    width: 100%;
    cursor: pointer;
    margin: 0;
}

.wc-block-product-filter-checkbox-list__text,
.wc-block-components-checkbox__label {
    color: #4a4a4a;
    font-size: 13px;
    font-weight: 400;
    flex: 1;
}

/* Label gap kaldırma */
.wc-block-product-filter-checkbox-list__label {
    gap: 0 !important;
}

.wc-block-product-filter-checkbox-list__item:hover .wc-block-product-filter-checkbox-list__text,
.wc-block-components-checkbox:hover .wc-block-components-checkbox__label {
    color: #0098da;
}

/* ========================================
   Ürün Kartları (Modern)
   ======================================== */

/* Remove default WooCommerce list styles */
.woocommerce ul.products {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: contents !important;
}

.woocommerce ul.products li.product {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 152, 218, 0.03), rgba(0, 120, 186, 0.03));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 152, 218, 0.2);
    border-color: rgba(0, 152, 218, 0.25);
}

/* Product Image */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    z-index: 2;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.1);
}

/* Sale Badge - Minimalist */
.sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff4757;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.sale-badge .badge {
    padding: 4px 8px;
    font-size: 10px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Stock Badge */
.stock-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 8px 14px;
    border-radius: 25px;
    font-size: 10px;
    font-weight: 700;
    z-index: 3;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.stock-badge .badge {
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quick Actions */
.product-quick-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 3;
}

.product-card:hover .product-quick-actions {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.quick-view-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    border: none;
    padding: 16px 28px;
    border-radius: 35px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.quick-view-btn:hover {
    background: #0098da;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 152, 218, 0.4);
}

/* Product Info */
.product-info {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

/* Product Category */
.product-category {
    color: #0098da;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    opacity: 0.9;
}

/* Product Title */
.product-title {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.4s ease;
}

.product-title:hover {
    color: #0098da;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.product-rating .star-rating {
    color: #ffc107;
    margin-right: 8px;
    font-size: 15px;
}

.product-rating .rating-count {
    color: #999;
    font-size: 13px;
    font-weight: 600;
}

/* Product Price */
.product-price {
    margin-bottom: 24px;
}

.product-price .price {
    font-size: 22px;
    font-weight: 800;
    color: #0098da;
    text-shadow: 0 1px 3px rgba(0, 152, 218, 0.1);
}

.product-price .price del {
    color: #999;
    font-size: 16px;
    font-weight: 600;
    margin-right: 12px;
    text-decoration: line-through;
}

/* Add to Cart Button */
.product-add-to-cart {
    margin-top: auto;
}

.product-add-to-cart .button {
    width: 100%;
    background: linear-gradient(135deg, #0098da, #0078ba);
    color: #fff;
    border: none;
    padding: 16px 28px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 152, 218, 0.25);
}

.product-add-to-cart .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.product-add-to-cart .button:hover::before {
    left: 100%;
}

.product-add-to-cart .button:hover {
    background: linear-gradient(135deg, #0078ba, #005a8a);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 152, 218, 0.4);
}

.product-add-to-cart .button:active {
    transform: translateY(-2px);
}

.product-category a {
    color: #828282;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-category a:hover {
    color: #0098da;
}

.product-title a {
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.product-title a:hover {
    color: #0098da;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
}

.product-rating .star-rating {
    font-size: 14px;
}

/* Product Price */
.product-price {
    font-size: 20px;
    font-weight: 700;
    color: #0098da;
}

.product-price del {
    font-size: 16px;
    color: #999;
    font-weight: 400;
    margin-right: 8px;
}

.product-price ins {
    text-decoration: none;
}

/* Add to Cart Button */
.product-add-to-cart .button {
    width: 100%;
    background: linear-gradient(135deg, #0098da 0%, #0078ba 100%);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.product-add-to-cart .button:hover {
    background: linear-gradient(135deg, #0078ba 0%, #005890 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 152, 218, 0.3);
}

.product-add-to-cart .button.loading {
    opacity: 0.7;
    pointer-events: none;
}

.product-add-to-cart .added_to_cart {
    width: 100%;
    background: #28a745;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.product-add-to-cart .added_to_cart:hover {
    background: #218838;
}

/* ========================================
   Tek Ürün Sayfası
   ======================================== */
   .woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
    float: left;
    width: 100%;
}
/* Product Images */
.product-images-wrapper {
    padding: 20px;
}

.sticky-product-images {
    position: sticky;
    top: 100px;
}

.woocommerce div.product .woocommerce-product-gallery {
    position: relative;
}

.woocommerce div.product .woocommerce-product-gallery img {
    border-radius: 6px;
    width: 100%;
    height: auto;
}

.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs li {
    list-style: none;
    margin: 0;
    padding: 0;
    width: calc(25% - 8px);
}

.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs li img {
    cursor: pointer;
    border: 2px solid #e4e4e4;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs li img:hover,
.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
    border-color: #0098da;
    opacity: 1;
}

/* Product Info */
.product-info-wrapper {
    height: 100%;
}

.woocommerce div.product .product_title {
    font-size: 36px;
    font-weight: 700;
    color: #232323;
    margin-bottom: 20px;
    line-height: 1.2;
}

.woocommerce div.product .woocommerce-product-rating {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.woocommerce div.product .woocommerce-product-rating .star-rating {
    font-size: 18px;
}

.woocommerce div.product .woocommerce-product-rating .woocommerce-review-link {
    color: #626262;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.woocommerce div.product .woocommerce-product-rating .woocommerce-review-link:hover {
    color: #0098da;
}

/* Price Section */
.product-price-wrapper {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 8px;
    border: 2px solid #e8ecff;
}

.woocommerce div.product p.price {
    font-size: 36px;
    font-weight: 700;
    color: #0098da;
    margin-bottom: 0;
    line-height: 1;
}

.woocommerce div.product p.price del {
    font-size: 22px;
    color: #828282;
    font-weight: 400;
    margin-right: 12px;
    text-decoration: line-through;
}

.woocommerce div.product p.price ins {
    text-decoration: none;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    font-size: 16px;
    line-height: 1.8;
    color: #626262;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
}

/* Sepete Ekle Formu */
.woocommerce div.product form.cart {
    margin-bottom: 35px;
    padding: 25px;
    background: #fff;
    border: 2px solid #e8ecff;
    border-radius: 8px;
}

.woocommerce div.product form.cart .quantity {
    display: inline-block;
    margin-right: 15px;
    vertical-align: middle;
}

.woocommerce div.product form.cart input.qty {
    width: 100px;
    height: 56px;
    padding: 0 15px;
    border: 2px solid #e4e4e4;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    font-weight: 700;
    color: #232323;
    transition: all 0.3s ease;
}

.woocommerce div.product form.cart input.qty:focus {
    border-color: #0098da;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 152, 218, 0.1);
}

.woocommerce div.product form.cart .button {
    background: linear-gradient(135deg, #0098da 0%, #0078ba 100%);
    color: #fff;
    border: none;
    padding: 16px 40px;
    height: 56px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    vertical-align: middle;
    box-shadow: 0 4px 15px rgba(0, 152, 218, 0.3);
}

.woocommerce div.product form.cart .button:hover {
    background: linear-gradient(135deg, #0078ba 0%, #005890 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 152, 218, 0.4);
}

.woocommerce div.product form.cart .button i {
    margin-right: 8px;
}

/* Ürün Meta */
.woocommerce div.product .product_meta {
    padding: 25px;
    margin-top: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
}

.woocommerce div.product .product_meta > span {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #626262;
    padding: 8px 0;
}

.woocommerce div.product .product_meta > span:last-child {
    margin-bottom: 0;
}

.woocommerce div.product .product_meta > span::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #0098da;
    border-radius: 50%;
    margin-right: 10px;
}

.woocommerce div.product .product_meta a {
    color: #232323;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    margin-left: 5px;
}

.woocommerce div.product .product_meta a:hover {
    color: #0098da;
}

/* Trust Badges */
.product-trust-badges {
    margin-top: 40px;
    padding-top: 40px;
}

.trust-badge {
    padding: 20px 10px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-3px);
}

.trust-badge:hover i {
    transform: scale(1.1);
}

/* Ürün Sekmeleri */
.woocommerce div.product .woocommerce-tabs {
    margin-top: 60px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    border: none;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 0;
    background: #f8f9fa;
    border-bottom: 2px solid #e4e4e4;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    flex: 1;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 18px 30px;
    background: transparent;
    color: #626262;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border-bottom: 3px solid transparent;
    font-size: 15px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    background: #fff;
    color: #0098da;
    border-bottom-color: #0098da;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    background: #fff;
    color: #0098da;
}

.woocommerce div.product .woocommerce-tabs .panel {
    padding: 40px;
    background: #fff;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
    font-size: 24px;
    font-weight: 700;
    color: #232323;
    margin-bottom: 20px;
}

.woocommerce div.product .woocommerce-tabs .panel p {
    font-size: 15px;
    line-height: 1.8;
    color: #626262;
}

/* ========================================
   Sepet Sayfası
   ======================================== */

.woocommerce table.shop_table {
    border: none;
}

.woocommerce table.shop_table td {
    border: none;
}

.woocommerce-cart-form__contents .cart-product-thumbnail img {
    border-radius: 4px;
    width: 100px;
    height: auto;
}

.woocommerce a.remove {
    color: #ff4a4a !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.woocommerce a.remove:hover {
    color: #d32f2f !important;
}

/* Miktar Input */
.woocommerce .quantity {
    position: relative;
}

.woocommerce .quantity input.qty {
    width: 80px;
    padding: 10px;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.woocommerce .quantity input.qty:focus {
    border-color: #0098da;
    outline: none;
}

/* Sepet Toplamı */
.cart_totals h2 {
    font-size: 20px;
    font-weight: 600;
    color: #232323;
    margin-bottom: 25px;
}

.cart_totals .shop_table {
    background: transparent;
}

/* ========================================
   Ödeme Sayfası
   ======================================== */

.woocommerce-checkout h3 {
    font-size: 20px;
    font-weight: 600;
    color: #232323;
    margin-bottom: 25px;
}

.woocommerce form .form-row {
    margin-bottom: 20px;
}

.woocommerce form .form-row label {
    font-weight: 600;
    color: #232323;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: #0098da;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 152, 218, 0.1);
}

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

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

/* Ödeme Yöntemleri */
.woocommerce-checkout #payment {
    background: transparent;
}

.woocommerce-checkout #payment ul.payment_methods {
    border: none;
    padding: 0;
    margin: 0;
    list-style: none;
}

.woocommerce-checkout #payment ul.payment_methods li {
    margin-bottom: 15px;
    padding: 15px;
    background: #f7f7f7;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method input[type=radio]:checked + label {
    font-weight: 600;
}

.woocommerce-checkout #payment ul.payment_methods li input[type=radio]:checked ~ * {
    background: #fff;
}

.woocommerce-checkout #payment ul.payment_methods li:hover,
.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method input[type=radio]:checked ~ * {
    border-color: #0098da;
}

.woocommerce-checkout #payment div.payment_box {
    background: #fff;
    border-radius: 4px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid #e4e4e4;
}

.woocommerce-checkout #payment div.payment_box::before {
    display: none;
}

/* Sipariş Ver Butonu */
.woocommerce #payment #place_order {
    width: 100%;
    background: #0098da;
    color: #fff;
    border: none;
    padding: 16px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.woocommerce #payment #place_order:hover {
    background: #232323;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 152, 218, 0.3);
}

/* ========================================
   Sidebar Widget'ları
   ======================================== */

.woocommerce-widget-layered-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-widget-layered-nav-list li {
    margin-bottom: 10px;
}

.woocommerce-widget-layered-nav-list li a {
    color: #626262;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.woocommerce-widget-layered-nav-list li a:hover,
.woocommerce-widget-layered-nav-list li.chosen a {
    color: #0098da;
    padding-left: 10px;
}

.woocommerce-widget-layered-nav-list li .count {
    float: right;
    color: #828282;
    font-size: 12px;
}

/* Fiyat Filtresi */
.widget_price_filter .price_slider {
    margin-bottom: 20px;
}

.widget_price_filter .price_slider_amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget_price_filter .price_slider_amount .button {
    background: #0098da;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.widget_price_filter .price_slider_amount .button:hover {
    background: #232323;
}

/* ========================================
   Mesajlar & Bildirimler
   ======================================== */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    border-left: 4px solid;
}

.woocommerce-message {
    background: #e8f5e9;
    border-color: #4caf50;
    color: #2e7d32;
}

.woocommerce-info {
    background: #e3f2fd;
    border-color: #2196f3;
    color: #1565c0;
}

.woocommerce-error {
    background: #ffebee;
    border-color: #f44336;
    color: #c62828;
}

.woocommerce-message::before,
.woocommerce-info::before {
    display: none;
}

.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   Pagination (Modern)
   ======================================== */

.woocommerce nav.woocommerce-pagination {
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
    border: none;
    display: inline-flex;
    gap: 10px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none;
    margin: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    min-width: 42px;
    height: 42px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    background: transparent;
    color: #626262;
    text-decoration: none;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: #f8f9ff;
    color: #0098da;
    border-color: #0098da;
    transform: translateY(-2px);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: linear-gradient(135deg, #0098da 0%, #0078ba 100%);
    color: #fff;
    border-color: #0098da;
    box-shadow: 0 4px 12px rgba(0, 152, 218, 0.3);
}

.woocommerce nav.woocommerce-pagination ul li .prev,
.woocommerce nav.woocommerce-pagination ul li .next {
    font-size: 16px;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
    float: inherit;
    width: 100%;
}
.woocommerce-account .woocommerce-MyAccount-content {
    float: inherit;
    width: 100%;
}
/* ========================================
   Responsive
   ======================================== */

@media (max-width: 991px) {
    /* Shop Header */
    .shop-header h1 {
        font-size: 32px;
    }
    
    .shop-stats {
        margin-top: 20px;
    }
    
    /* Sticky sidebar disable on tablet */
    .sticky-sidebar {
        position: relative;
        top: auto;
    }
    
    .shop-sidebar {
        padding-right: 15px;
        margin-bottom: 40px;
    }

    /* Widget tablet */
    .shop-sidebar .widget {
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
    
    /* Sticky images disable on tablet */
    .sticky-product-images {
        position: relative;
        top: auto;
    }
 
    .wc-block-product-filter-checkbox-list__input {
        padding:0;
    }
    /* Product title */
    .woocommerce div.product .product_title {
        font-size: 28px;
    }
    
    /* Product price */
    .woocommerce div.product p.price {
        font-size: 28px;
    }
    
    /* Product info wrapper */
    .product-info-wrapper {
        margin-top: 30px;
        margin-left: 0 !important;
    }
    
    /* Trust badges */
    .product-trust-badges .row {
        text-align: center;
    }
    
    /* Checkout form */
    .woocommerce form .form-row-first,
    .woocommerce form .form-row-last {
        width: 100%;
        float: none;
        margin-right: 0;
    }
    
    /* Tabs */
    .woocommerce div.product .woocommerce-tabs ul.tabs li a {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .woocommerce div.product .woocommerce-tabs .panel {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    /* Shop Header */
    .shop-header {
        padding: 30px 0 !important;
    }
    
    .shop-header h1 {
        font-size: 24px;
    }
    
    .shop-stats {
        display: block;
        text-align: center !important;
    }
    
    /* Shop Toolbar */
    .shop-toolbar {
        padding: 12px 15px !important;
    }
    
    .shop-toolbar .row {
        flex-direction: column;
        gap: 10px;
    }
    
    .shop-toolbar .col-md-6 {
        text-align: center !important;
    }
    
    .woocommerce-result-count {
        margin-bottom: 0;
        text-align: center;
    }
    
    .woocommerce-ordering {
        text-align: center;
    }
    
    .woocommerce-ordering select {
        width: 100%;
        max-width: 200px;
    }
    
    .shop-sidebar {
        padding-right: 15px;
        margin-bottom: 30px;
    }
    
    /* Widget mobil */
    .shop-sidebar .widget {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .shop-sidebar .widget .widget-title,
    .shop-sidebar .widget h5 {
        font-size: 13px;
        margin-bottom: 14px;
    }
    
    .shop-sidebar .widget ul li {
        padding: 6px 0;
    }
    
    .shop-sidebar .widget ul li a {
        font-size: 12px;
    }
    
    /* Product Cards */
    .product-title {
        font-size: 14px !important;
    }
    
    .product-price {
        font-size: 18px !important;
    }
    
    .quick-view-btn {
        width: 36px !important;
        height: 36px !important;
    }
    
    .quick-view-btn i {
        font-size: 16px !important;
    }
    
    /* Product list */
    .product-details h2,
    .product-details .woocommerce-loop-product__title {
        font-size: 14px;
    }
    
    .product-details .price {
        font-size: 16px;
    }
    
    /* Single product */
    .woocommerce div.product .product_title {
        font-size: 24px;
    }
    
    .woocommerce div.product p.price {
        font-size: 24px;
    }
    
    .woocommerce div.product p.price del {
        font-size: 18px;
    }
    
    /* Product images */
    .product-images-wrapper {
        padding: 15px;
    }
    
    /* Product info */
    .product-info-wrapper {
        padding: 30px 20px !important;
    }
    
    /* Cart form */
    .woocommerce div.product form.cart {
        padding: 20px;
    }
    
    .woocommerce div.product form.cart input.qty {
        width: 80px;
        height: 48px;
        font-size: 14px;
    }
    
    .woocommerce div.product form.cart .button {
        width: 100%;
        margin-top: 15px;
        height: 48px;
        padding: 12px 30px;
        font-size: 14px;
    }
    
    /* Product meta */
    .woocommerce div.product .product_meta {
        padding: 20px;
    }
    
    /* Tabs */
    .woocommerce div.product .woocommerce-tabs ul.tabs {
        flex-direction: column;
    }
    
    .woocommerce div.product .woocommerce-tabs ul.tabs li {
        border-bottom: 1px solid #e4e4e4;
    }
    
    .woocommerce div.product .woocommerce-tabs ul.tabs li a {
        padding: 12px 15px;
        text-align: left;
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    
    .woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
        border-left-color: #0098da;
        border-bottom: none;
    }
    
    .woocommerce div.product .woocommerce-tabs .panel {
        padding: 25px 15px;
    }
    
    /* Trust badges */
    .trust-badge {
        padding: 15px 5px;
    }
    
    .trust-badge i {
        font-size: 24px !important;
    }
    
    .trust-badge .fs-13 {
        font-size: 12px !important;
    }
    
    .trust-badge .fs-12 {
        font-size: 11px !important;
    }
    
    /* Price wrapper */
    .product-price-wrapper {
        padding: 20px;
    }
    
    /* Short description */
    .woocommerce div.product .woocommerce-product-details__short-description {
        padding: 15px;
        font-size: 14px;
    }
    
    /* Pagination Mobile */
    .woocommerce nav.woocommerce-pagination ul {
        gap: 6px;
        padding: 10px 15px;
    }
    
    .woocommerce nav.woocommerce-pagination ul li a,
    .woocommerce nav.woocommerce-pagination ul li span {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

/* ========================================
   Yıldız Derecelendirme
   ======================================== */

.woocommerce .star-rating {
    color: #ffc107;
}

.woocommerce .star-rating::before {
    color: #e0e0e0;
}

/* ========================================
   Loading State
   ======================================== */

.woocommerce .blockUI.blockOverlay::before,
.woocommerce .loader::before {
    border-color: #0038e3 transparent transparent;
}

/* ========================================
   Stok Durumu
   ======================================== */

.woocommerce .stock {
    font-weight: 700;
    font-size: 14px !important;
    padding: 4px 8px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}
.woocommerce-tabs.wc-tabs-wrapper {
    margin-top: 0 !important;
}

.woocommerce .stock.in-stock {
    color: #2e7d32 !important;
    background: #e8f5e9;

}

.woocommerce .stock.out-of-stock {
    color: #c62828 !important;
    background: #ffebee;
}

/* Gradient Badge */
.bg-gradient-red-orange {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    padding: 6px 14px;
    border-radius: 20px;
}

/* ========================================
   Sepet İkonu (Header için)
   ======================================== */

.header-cart-icon {
    position: relative;
    display: inline-block;
}

.header-cart-icon .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #0098da;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.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 {
    color: #ffffff;
    background-color: #0098da;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:hover {
    background-color: #0182ba;
    color: #ffffff;
}