/* Custom fixes for Kavraz Market theme */

/* Footer payment logos - n11 tarzı bankLogoArea */
.bankLogoArea {
    gap: 12px;
    flex-wrap: wrap;
}

.bankLogoItem {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #555;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition: all .2s ease;
}

.bankLogoItem img {
    max-height: 20px;
    display: block;
}

.bankLogoItem:hover {
    background: #fff;
    border-color: #d0d0d0;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
    transform: translateY(-1px);
}

.bankLogoPci {
    background: #222;
    color: #fff;
    border-color: #111;
}

.bankLogoBkm {
    background: #0070ba;
    color: #fff;
    border-color: #005899;
}

.bankLogoTroy {
    background: #e0f7fa;
    color: #00796b;
    border-color: #b2ebf2;
}

.bankLogoAmex {
    background: #1976d2;
    color: #fff;
    border-color: #115293;
}

.bankLogoVisa img {
    filter: grayscale(0.2);
}

.bankLogoMaster img {
    filter: grayscale(0.2);
}

/* Category Header Enhancements */
.category-icon img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
}

.category-icon img:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #4ecdc4;
}

.category-placeholder {
    transition: all 0.3s ease;
    animation: gradientShift 3s ease-in-out infinite;
}

.category-placeholder:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

@keyframes gradientShift {
    0%, 100% { background: linear-gradient(45deg, #ff6b6b, #4ecdc4); }
    50% { background: linear-gradient(45deg, #4ecdc4, #45b7d1); }
}

.title-flex-2 .badge {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

/* Mobile offcanvas menu above sticky header elements */
@media (max-width: 1199.98px) {
    /* Offcanvas menüyü daima OVERLAY olarak çalıştır */
    #primaryMenu.offcanvas,
    .offcanvas.offcanvas-collapse#primaryMenu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        height: 100vh !important;
        width: 300px !important;
        max-width: 85vw !important;
        background: #fff !important;
        z-index: 2000 !important;
        box-shadow: 2px 0 16px rgba(0,0,0,0.15) !important;
    }

    .offcanvas-backdrop {
        z-index: 1999 !important;
        background-color: rgba(0,0,0,0.35) !important;
    }

    /* Overlay açıkken header'daki tüm elementleri gizle */
    body.offcanvas-open .header-2,
    body.offcanvas-open .header-notification {
        z-index: 1 !important;
    }
    
    body.offcanvas-open .navbar-top .web-logo,
    body.offcanvas-open .navbar-top .navbar-toggler,
    body.offcanvas-open .header-notification {
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Offcanvas açıkken backdrop header altında kalmasın */
    .offcanvas-backdrop.show {
        z-index: 1999 !important;
    }
}

.product-card-modern {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Product Slider - Temiz yapı */
.product-slider-main {
    position: relative;
}

.product-slider-main .product-slide-item {
    padding: 0 10px;
    box-sizing: border-box;
}

.product-slider-main .slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
}

.product-slider-main .slick-list {
    margin: 0 -10px;
}

.product-slider-main .slick-slide .product-card-modern {
    margin: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 575px) {
    .product-slider-main .product-slide-item {
        padding: 0 6px;
    }
    .product-slider-main .slick-list {
        margin: 0 -6px;
    }
}

.product-card-modern:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.product-card-modern.out-of-stock {
    opacity: 0.7;
}

.product-card-header {
    position: absolute;
    top: 10px;
    right: 10px;
    left: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
}

.btn-favorite {
    background: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.btn-favorite:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-favorite i {
    font-size: 20px;
}

/* favorite-btn - btn-favorite ile aynı stiller */
.favorite-btn {
    background: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.favorite-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.favorite-btn.active {
    background: #fff;
}

.favorite-btn.active i {
    color: #dc3545;
}

.favorite-btn i {
    font-size: 20px;
    transition: color 0.2s ease;
}

.badge-stock-out {
    background: #dc3545;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.product-image-link {
    display: block;
    text-decoration: none;
}

.product-image-wrapper {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.product-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.product-card-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.product-brand {
    color: #999;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
    transition: color 0.2s ease;
}

.product-title:hover {
    color: var(--theme-color);
}

.product-price-section {
    margin-top: auto;
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-main {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.price-old {
    color: #999;
    font-size: 14px;
    text-decoration: line-through;
    margin-top: 4px;
}

.product-unit {
    color: #666;
    font-size: 13px;
    margin-top: 4px;
}

.btn-add-to-cart {
    width: 100%;
    background: #28a745;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 12px;
}

.btn-add-to-cart:hover:not(.disabled) {
    background: #218838;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-add-to-cart.disabled {
    background: #6c757d;
    cursor: not-allowed;
}

/* Miktar Seçici */
.qty-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 10px;
    background: #fff;
}

.qty-btn {
    background: #f8f9fa;
    border: none;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #666;
}

.qty-btn:hover {
    background: #e9ecef;
    color: #333;
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-btn i {
    font-size: 12px;
}

.qty-selector .qty-input {
    border: none;
    width: 60px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 5px;
    background: #fff;
    color: #333;
    outline: none;
}

.qty-selector .qty-input:focus {
    outline: none;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .product-image-wrapper {
        height: 160px;
        padding: 15px;
    }
    
    .product-card-body {
        padding: 12px;
    }
    
    .product-title {
        font-size: 13px;
        min-height: 36px;
    }
    
    .price-main {
        font-size: 18px;
    }
    
    .btn-add-to-cart {
        padding: 10px;
        font-size: 13px;
    }
}

/* Mobil Kategori Accordion Stilleri */
.mobile-category-accordion {
    background: transparent !important;
}

.mobile-category-accordion .accordion-button {
    background: transparent !important;
    color: #222 !important;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 16px;
    border: none !important;
    box-shadow: none !important;
}

.mobile-category-accordion .accordion-button:not(.collapsed) {
    background: transparent !important;
    color: var(--theme-color) !important;
}

.mobile-category-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.mobile-category-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F68220'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.mobile-category-accordion .accordion-item {
    background: transparent !important;
    border: none !important;
}

.mobile-category-accordion .accordion-body {
    padding: 0 !important;
}

.mobile-category-accordion .list-group-item {
    background: transparent !important;
    font-size: 14px;
    padding: 10px 16px;
    color: #666;
    transition: all 0.2s ease;
}

.mobile-category-accordion .list-group-item:hover {
    background: #f8f9fa !important;
    color: var(--theme-color) !important;
}

.mobile-category-accordion .list-group-item.text-primary {
    color: var(--theme-color) !important;
}

.mobile-category-accordion .ps-4 { padding-left: 1rem !important; }
.mobile-category-accordion .ps-5 { padding-left: 2rem !important; }
.mobile-category-accordion .ps-6 { padding-left: 3rem !important; }

.title-flex-2 .btn {
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.title-flex-2 .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.title-flex-2 .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.title-flex-2 .btn:hover::before {
    left: 100%;
}

/* Minimal Category Header */
.category-header-minimal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 2px solid #f8f9fa;
    margin-bottom: 30px;
    position: relative;
}

.category-header-minimal::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #F68220, #28a745);
}

.category-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.category-icon-simple {
    width: 50px;

    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-icon-simple:hover {
    transform: translateY(-2px);
}

.category-icon-simple img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.category-text {
    flex: 1;
}

/* category-name - Sadece product section'lardaki kategori başlıkları için */
/* Navigation'daki category-name'i etkilememesi için çok spesifik scope kullanıyoruz */
.product-section .category-header-minimal .category-text .category-name {
    font-size: 2rem;
    font-weight: 700;
    color: #F68220;
    margin: 0;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(246, 130, 32, 0.1), rgba(224, 116, 28, 0.05));
    box-shadow: 0 2px 8px rgba(246, 130, 32, 0.15);
}

.product-section .category-header-minimal .category-text .category-name:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(246, 130, 32, 0.25);
    background: linear-gradient(135deg, rgba(246, 130, 32, 0.15), rgba(224, 116, 28, 0.08));
}

.category-right {
    flex-shrink: 0;
}

.btn-simple {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #F68220;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-simple:hover {
    background: #e0741c;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246,130,32,0.3);
}

.btn-simple i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-simple:hover i {
    transform: translateX(3px);
}

/* Responsive Minimal Header */
@media (max-width: 768px) {
    .category-header-minimal {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 20px 0;
    }
    
    .category-left {
        width: 100%;
    }
    
    .category-right {
        width: 100%;
    }
    
    .btn-simple {
        width: 100%;
        justify-content: center;
    }
    
    .product-section .category-header-minimal .category-text .category-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .category-header-minimal {
        padding: 15px 0;
    }
    
    .category-left {
        gap: 15px;
    }
    
    .category-icon-simple {
        width: 40px;
        height: 40px;
    }
    
    .product-section .category-header-minimal .category-text .category-name {
        font-size: 1.8rem;
        padding: 6px 12px;
        background: linear-gradient(135deg, rgba(246, 130, 32, 0.08), rgba(224, 116, 28, 0.04));
        box-shadow: 0 1px 5px rgba(246, 130, 32, 0.1);
    }
    
    .product-section .category-header-minimal .category-text .category-name:hover {
        transform: translateY(-1px);
        box-shadow: 0 2px 10px rgba(246, 130, 32, 0.2);
        background: linear-gradient(135deg, rgba(246, 130, 32, 0.12), rgba(224, 116, 28, 0.06));
    }
}

/* Slider Section Styles */
.slider-section {
    margin-bottom: 0;
}

.slider-contain {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
}

.slider-contain img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Slider */
@media (max-width: 768px) {
    .slider-contain {
        height: 300px;
    }
}

/* Slider Dots Styling */
.slider-section .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

.slider-section .slick-dots li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-section .slick-dots li.slick-active {
    background: #fff;
    transform: scale(1.2);
}

.slider-section .slick-dots li button {
    display: none;
}

/* Slider Fade Effect */
.slider-section .slick-slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-section .slick-slide.slick-active {
    opacity: 1;
}

@media (max-width: 576px) {
    .slider-contain {
        height: 250px;
    }
    
    .slider-title {
        font-size: 1.5rem;
    }
    
    .slider-subtitle {
        font-size: 1rem;
    }
}



/* Sepet Dropdown Z-Index */
.onhover-dropdown .onhover-div {
    z-index: 1050 !important;
}

.header-icon.bag-icon {
    z-index: 1;
}


.header-icon.user-icon {
    z-index: 1;
    color: #333 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Mobilde user icon görünürlüğü */
@media (max-width: 991px) {
    .header-icon.user-icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .option-list .onhover-dropdown {
        display: block !important;
    }
    
    /* Tüm ekran boyutlarında user icon görünür */
    .rightside-menu .option-list li.onhover-dropdown {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .rightside-menu .option-list li.onhover-dropdown a.header-icon.user-icon {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.header-icon.user-icon:hover {
    color: #F68220 !important;
}

/* Tüm ekran boyutlarında profil ikonu görünür */
.rightside-menu .option-list li.onhover-dropdown {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.rightside-menu .option-list li.onhover-dropdown a.header-icon.user-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #333 !important;
}

.rightside-menu .option-list li.onhover-dropdown a.header-icon.user-icon i {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Favoriler ikonunu sadece mobilde gizle */
@media (max-width: 768px) {
    .option-list li a.header-icon i.iconly-Heart,
    .option-list li a.header-icon.swap-icon,
    .option-list li.onhover-dropdown a.header-icon i.iconly-Heart,
    .option-list li.onhover-dropdown a.header-icon.swap-icon {
        display: none !important;
        visibility: hidden !important;
    }
    
    .option-list li.onhover-dropdown a.header-icon.swap-icon {
        display: none !important;
        visibility: hidden !important;
    }
}

/* Profil ikonu için en güçlü kurallar */
a.header-icon.user-icon,
.header-icon.user-icon,
.user-icon {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #333 !important;
    width: 40px !important;
    height: 40px !important;
    align-items: center !important;
    justify-content: center !important;
}

a.header-icon.user-icon i,
.header-icon.user-icon i,
.user-icon i {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 18px !important;
}

/* Kullanıcı iconu diğer iconlarla aynı stil - özel stilleri kaldır */

/* Login, Register ve Şifre Sıfırlama Sayfaları Stilleri */
.login-section, .register-section, .forgot-password-section, .reset-password-section {
    padding: 80px 0;
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.login-contain, .register-contain, .forgot-password-contain, .reset-password-contain {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 50px;
    height: 100%;
}

.log-in-box, .register-detail, .forgot-password-detail, .reset-password-detail {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-title, .register-title, .forgot-password-title, .reset-password-title {
    text-align: center;
    margin-bottom: 40px;
}

.login-title h3, .register-title h3, .forgot-password-title h3, .reset-password-title h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.login-title h4, .register-title h4, .forgot-password-title h4, .reset-password-title h4 {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

.theme-form-floating {
    margin-bottom: 20px;
}

.theme-form-floating .form-control {
    height: 60px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    padding: 20px 15px 5px;
    transition: all 0.3s ease;
}

.theme-form-floating .form-control:focus {
    border-color: #F68220;
    box-shadow: 0 0 0 0.2rem rgba(246, 130, 32, 0.25);
}

.theme-form-floating label {
    color: #666;
    font-weight: 500;
    padding: 15px;
}

.forgot-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.checkbox_animated {
    margin-right: 10px;
}

.btn-animation {
    background: linear-gradient(45deg, #F68220, #e0741c);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 16px;
    height: 60px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-animation:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    color: white;
}

.other-log-in {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.other-log-in h6 {
    color: #666;
    font-size: 14px;
    background: white;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.other-log-in h6::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
    z-index: -1;
}

.google-button {
    background: white;
    border: 2px solid #e9ecef;
    color: #333;
    font-weight: 500;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.google-button:hover {
    border-color: #F68220;
    color: #F68220;
    transform: translateY(-1px);
}

.google-button img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.sign-up-box {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.sign-up-box h4 {
    color: #333;
    font-size: 16px;
    margin-bottom: 10px;
}

.sign-up-box a {
    color: #F68220;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.sign-up-box a:hover {
    text-decoration: underline;
}

.login-detail-contain, .register-detail-contain, .forgot-password-detail-contain, .reset-password-detail-contain {
    margin-top: 40px;
}

.login-detail-box, .register-detail-box, .forgot-password-detail-box, .reset-password-detail-box {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.login-detail-box:hover, .register-detail-box:hover, .forgot-password-detail-box:hover, .reset-password-detail-box:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.login-detail-box-icon, .register-detail-box-icon, .forgot-password-detail-box-icon, .reset-password-detail-box-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #F68220, #e0741c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.login-detail-box-icon i, .register-detail-box-icon i, .forgot-password-detail-box-icon i, .reset-password-detail-box-icon i {
    font-size: 24px;
    color: white;
}

.login-detail-box-content h4, .register-detail-box-content h4, .forgot-password-detail-box-content h4, .reset-password-detail-box-content h4 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.login-detail-box-content h6, .register-detail-box-content h6, .forgot-password-detail-box-content h6, .reset-password-detail-box-content h6 {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .login-contain, .register-contain, .forgot-password-contain, .reset-password-contain {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .login-title h3, .register-title h3, .forgot-password-title h3, .reset-password-title h3 {
        font-size: 2rem;
    }
    
    .login-detail-box, .register-detail-box, .forgot-password-detail-box, .reset-password-detail-box {
        flex-direction: column;
        text-align: center;
    }
    
    .login-detail-box-icon, .register-detail-box-icon, .forgot-password-detail-box-icon, .reset-password-detail-box-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* User Dashboard Stilleri */
.user-dashboard-section {
    padding: 80px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.dashboard-left-sidebar {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 0;
    margin-bottom: 30px;
    position: sticky;
    top: 100px;
    overflow: hidden;
}

.close-button {
    display: none;
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
}

.close-sidebar {
    background: none;
    border: none;
    font-size: 18px;
    color: #666;
}

.profile-box {
    position: relative;
    margin-bottom: 0;
}

.cover-image {
    height: 120px;
    overflow: hidden;
}

.cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-contain {
    padding: 20px;
    text-align: center;
    position: relative;
}

.profile-image {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.profile-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cover-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #F68220;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cover-icon i {
    color: white;
    font-size: 14px;
}

.cover-icon input[type="file"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.profile-name h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.profile-name h6 {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.user-nav-pills {
    border-top: 1px solid #e9ecef;
    padding: 0;
    margin: 0;
}

.user-nav-pills .nav-item {
    width: 100%;
}

.user-nav-pills .nav-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #666;
    text-decoration: none;
    border: none;
    border-radius: 0;
    background: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.user-nav-pills .nav-link:hover {
    background: #f8f9fa;
    color: #F68220;
}

.user-nav-pills .nav-link.active {
    color: white;
}

.user-nav-pills .nav-link i {
    font-size: 18px;
    margin-right: 15px;
    width: 20px;
}

.dashboard-right-sidebar {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 40px;
}

.left-dashboard-show {
    display: none;
    background: #F68220;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.title {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.title h2 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    margin-right: 15px;
}

.title-leaf {
    width: 30px;
    height: 30px;
}

.dashboard-user-name {
    margin-bottom: 30px;
}

.dashboard-user-name h6 {
    color: #666;
    font-size: 16px;
    margin-bottom: 10px;
}

.dashboard-user-name p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.total-box {
    margin-bottom: 40px;
}

.total-contain {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.total-contain:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.total-contain img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.total-contain .img-1 {
    position: absolute;
    top: -10px;
    right: -10px;
    opacity: 0.1;
    width: 80px;
    height: 80px;
}

.total-detail h5 {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}

.total-detail h3 {
    color: #333;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.dashboard-title {
    margin-bottom: 25px;
}

.dashboard-title h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.dashboard-content-title {
    margin-bottom: 15px;
}

.dashboard-content-title h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-content-title a {
    color: #F68220;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.dashboard-detail h6 {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.dashboard-detail a {
    color: #F68220;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.dashboard-bg-box {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.profile-name-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.profile-name-detail h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.profile-name-detail a {
    color: #F68220;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.profile-rating {
    margin-left: 15px;
}

.profile-rating .rating {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.profile-rating .rating li {
    margin-right: 2px;
}

.profile-rating .rating i {
    color: #ffc107;
    font-size: 14px;
}

.location-profile ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-profile li {
    margin-bottom: 10px;
}

.location-box {
    display: flex;
    align-items: center;
}

.location-box i {
    color: #F68220;
    margin-right: 10px;
    font-size: 16px;
}

.location-box h6 {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.profile-description {
    margin-top: 20px;
}

.profile-description p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.profile-about .table {
    margin-bottom: 0;
}

.profile-about .table td {
    padding: 12px 0;
    border: none;
    color: #666;
    font-size: 14px;
}

.profile-about .table td:first-child {
    font-weight: 600;
    color: #333;
    width: 40%;
}

.profile-about .table td a {
    color: #F68220;
    text-decoration: none;
}

.profile-about .table td span {
    color: #F68220;
    font-size: 12px;
    margin-left: 10px;
    cursor: pointer;
}

.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Tab İçerik Stilleri - Hesabım Sayfası için */
.user-dashboard-section .product-box {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.user-dashboard-section .product-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.user-dashboard-section .product-image {
    margin-bottom: 15px;
}

.user-dashboard-section .product-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.user-dashboard-section .product-detail h6 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.user-dashboard-section .product-price {
    margin-bottom: 15px;
}

.user-dashboard-section .product-price .price {
    color: #F68220;
    font-size: 18px;
    font-weight: 700;
}

.user-dashboard-section .product-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.address-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.address-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.address-header h6 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.address-details p {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.address-details p:last-child {
    margin-bottom: 0;
}

.address-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.table th {
    background: #f8f9fa;
    color: #333;
    font-weight: 600;
    border: none;
    padding: 15px;
}

.table td {
    padding: 15px;
    border: none;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.badge {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
}

.bg-success {
    background-color: #28a745 !important;
}

.bg-warning {
    background-color: #ffc107 !important;
    color: #000 !important;
}

.bg-secondary {
    background-color: #6c757d !important;
}

.bg-primary {
    background-color: #F68220 !important;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.btn-outline-primary {
    color: #F68220;
    border-color: #F68220;
}

.btn-outline-primary:hover {
    background-color: #F68220;
    border-color: #F68220;
    color: white;
}

.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
}

/* User Dashboard Tab Stilleri */
.title-leaf-gray {
    opacity: 0.7;
}

.order-contain {
    margin-bottom: 30px;
}

.order-box {
    margin-bottom: 30px;
}

.order-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.order-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.order-icon i {
    color: #F68220;
    font-size: 20px;
}

.order-detail h4 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.order-detail h4 span {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.success-bg {
    background-color: #28a745;
    color: white;
}

.warning-bg {
    background-color: #ffc107;
    color: #000;
}

.secondary-bg {
    background-color: #6c757d;
    color: white;
}

.product-order-detail {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.order-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.order-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-wrap h3 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-size {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-size li {
    margin-bottom: 8px;
}

.size-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.size-box h6 {
    color: #666;
    font-size: 14px;
    margin: 0;
    min-width: 80px;
}

.size-box h5 {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

/* ===== Hesabım sayfası metin/durum düzeltmeleri (scope'lu) ===== */
.user-dashboard-section *,
.user-dashboard-section a,
.user-dashboard-section .btn,
.user-dashboard-section .badge,
.user-dashboard-section .table td,
.user-dashboard-section .table th,
.user-dashboard-section span,
.user-dashboard-section h1,
.user-dashboard-section h2,
.user-dashboard-section h3,
.user-dashboard-section h4,
.user-dashboard-section h5,
.user-dashboard-section h6,
.user-dashboard-section p,
.user-dashboard-section div {
    text-transform: none !important;
    text-decoration: none !important;
}

.user-dashboard-section .badge, 
.user-dashboard-section .badge *,
.user-dashboard-section .table td, 
.user-dashboard-section .table td * {
    text-transform: none !important;
    text-decoration: none !important;
}

.user-dashboard-section .dashboard-bg-box * {
    text-transform: none !important;
    text-decoration: none !important;
}

/* ===== Hesabım Dashboard Stilleri ===== */
.user-dashboard-section .status-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    background: #f8f9fa;
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.user-dashboard-section .status-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.user-dashboard-section .status-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

.user-dashboard-section .status-detail {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.user-dashboard-section .status-detail h6 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    text-align: center;
}

.user-dashboard-section .status-detail span {
    font-size: 20px;
    font-weight: bold;
    color: #495057;
    text-align: center;
}

.user-dashboard-section .dashboard-bg-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.user-dashboard-section .dashboard-bg-box:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.user-dashboard-section .dashboard-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.user-dashboard-section .dashboard-title h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
}

.user-dashboard-section .table th {
    background: #f8f9fa;
    border: none;
    font-weight: 600;
    color: #495057;
    padding: 15px 12px;
    font-size: 14px;
}

.user-dashboard-section .table td {
    border: none;
    padding: 15px 12px;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
    text-transform: none;
    text-decoration: none;
}

.user-dashboard-section .table tbody tr:hover {
    background-color: #f8f9fa;
}

.user-dashboard-section .badge {
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 500;
    text-transform: none !important;
    text-decoration: none !important;
}

.user-dashboard-section .badge span {
    text-transform: none !important;
    text-decoration: none !important;
}

.user-dashboard-section .badge, 
.user-dashboard-section .badge span, 
.user-dashboard-section .badge * {
    text-transform: none !important;
    text-decoration: none !important;
    font-variant: normal !important;
    font-style: normal !important;
}

.user-dashboard-section .total-contain {
    transition: all 0.3s ease;
    border-radius: 10px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.user-dashboard-section .total-contain:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.user-dashboard-section .total-contain img {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.user-dashboard-section .total-contain .img-1 {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    opacity: 0.3;
}

.user-dashboard-section .total-detail {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.user-dashboard-section .total-detail h5 {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
    text-align: center;
}

.user-dashboard-section .total-detail h3 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

/* Account Info Cards */
.user-dashboard-section .account-info-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e9ecef;
    height: 100%;
    transition: all 0.3s ease;
}

.user-dashboard-section .account-info-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.user-dashboard-section .account-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.user-dashboard-section .account-info-header h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
}

.user-dashboard-section .account-info-content {
    padding: 0;
}

.user-dashboard-section .info-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
}

.user-dashboard-section .info-item:last-child {
    border-bottom: none;
}

.user-dashboard-section .info-item i {
    width: 20px;
    margin-right: 12px;
    font-size: 16px;
}

.user-dashboard-section .info-item span {
    color: #495057;
    font-size: 14px;
    font-weight: 500;
}

.user-dashboard-section .info-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.user-dashboard-section .info-actions .btn {
    font-size: 12px;
    padding: 6px 12px;
}

/* Address Cards */
.user-dashboard-section .address-section {
    margin-top: 20px;
}

.user-dashboard-section .address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.user-dashboard-section .address-header h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
}

.user-dashboard-section .address-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e9ecef;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.user-dashboard-section .address-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
    border-color: #007bff;
}

.user-dashboard-section .address-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f8f9fa;
}

.user-dashboard-section .address-card-header i {
    font-size: 22px;
    margin-right: 12px;
}

.user-dashboard-section .address-card-header h5 {
    margin: 0;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    flex: 1;
}

.user-dashboard-section .address-actions {
    display: flex;
    gap: 8px;
}

.user-dashboard-section .address-actions .btn {
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 6px;
}

.user-dashboard-section .address-card-content h6 {
    color: #495057;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

.user-dashboard-section .address-card-content p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.user-dashboard-section .address-card-content p i {
    margin-right: 8px;
    width: 16px;
    color: #007bff;
}

.user-dashboard-section .address-badge {
    margin-top: 12px;
    text-align: right;
}

.user-dashboard-section .address-badge .badge {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 12px;
}

.user-dashboard-section .no-address {
    text-align: center;
    padding: 20px 0;
}

.user-dashboard-section .no-address i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.user-dashboard-section .no-address p {
    margin-bottom: 15px;
    font-size: 14px;
}

.user-dashboard-section .no-address .btn {
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .user-dashboard-section .status-item {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .user-dashboard-section .status-icon {
        width: 24px;
        height: 24px;
        font-size: 10px;
        margin-bottom: 6px;
    }
    
    .user-dashboard-section .status-detail h6 {
        font-size: 12px;
        text-align: center;
    }
    
    .user-dashboard-section .status-detail span {
        font-size: 16px;
        text-align: center;
    }
    
    .user-dashboard-section .dashboard-bg-box {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .user-dashboard-section .dashboard-title h3 {
        font-size: 16px;
    }
    
    .user-dashboard-section .total-detail h3 {
        font-size: 24px;
    }
    
    .user-dashboard-section .table th,
    .user-dashboard-section .table td {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .user-dashboard-section .account-info-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .user-dashboard-section .account-info-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .user-dashboard-section .info-item {
        padding: 10px 0;
    }
    
    .user-dashboard-section .info-item i {
        width: 18px;
        font-size: 14px;
    }
    
    .user-dashboard-section .info-item span {
        font-size: 13px;
    }
    
    .user-dashboard-section .address-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .user-dashboard-section .address-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .user-dashboard-section .address-card-header {
        margin-bottom: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .user-dashboard-section .address-card-header i {
        font-size: 18px;
    }
    
    .user-dashboard-section .address-card-header h5 {
        font-size: 14px;
    }
    
    .user-dashboard-section .address-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    .user-dashboard-section .no-address i {
        font-size: 36px;
    }
    
    .user-dashboard-section .address-card-content p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .user-dashboard-section .total-contain {
        padding: 15px;
    }
    
    .user-dashboard-section .total-contain img {
        width: 35px;
        height: 35px;
        margin-bottom: 12px;
    }
    
    .user-dashboard-section .total-contain .img-1 {
        width: 25px;
        height: 25px;
    }
    
    .user-dashboard-section .total-detail h3 {
        font-size: 20px;
    }
    
    .user-dashboard-section .total-detail h5 {
        font-size: 12px;
    }
    
    .user-dashboard-section .status-item {
        flex-direction: column;
        text-align: center;
    }
    
    .user-dashboard-section .status-icon {
        width: 22px;
        height: 22px;
        font-size: 9px;
        margin-bottom: 6px;
    }
    
    .user-dashboard-section .status-detail h6 {
        text-align: center;
    }
    
    .user-dashboard-section .status-detail span {
        text-align: center;
    }
}

/* ========== Hesabım > Siparişlerim - Modern Grid & Kartlar ========== */
.order-header { margin-bottom: 30px; }

.order-controls {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.search-box { position: relative; }
.search-box input { padding-right: 40px; }
.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

.orders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

@supports not (display: grid) {
    .orders-grid { display: flex; flex-wrap: wrap; margin: -10px; }
    .orders-grid .order-card { flex: 0 0 calc(50% - 20px); margin: 10px; }
}

.order-card { background: #fff; border-radius: 12px; border: 1px solid #e9ecef; overflow: hidden; transition: all 0.3s ease; box-shadow: 0 2px 4px rgba(0,0,0,0.08); }
.order-card:hover { transform: translateY(-4px); box-shadow: 0 8px 22px rgba(0,0,0,0.12); border-color: #007bff; }

.order-card-header { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: #fff; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; }
.order-info h5 { margin: 0; font-size: 16px; font-weight: 600; }
.order-date { font-size: 13px; opacity: .95; }
.order-status .badge { font-size: 12px; padding: 6px 12px; border-radius: 20px; }

.order-card-body { padding: 16px 20px; }
.order-summary { margin-bottom: 16px; }
.summary-item { display: flex; align-items: center; margin-bottom: 10px; padding: 6px 0; border-bottom: 1px solid #f0f0f0; }
.summary-item:last-child { border-bottom: none; margin-bottom: 0; }
.summary-item i { width: 18px; margin-right: 10px; color: #007bff; font-size: 14px; }
.summary-item .label { flex: 1; font-size: 13px; color: #6c757d; }
.summary-item .value { font-weight: 600; color: #2c3e50; font-size: 13px; }

.order-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.order-actions .btn { flex: 1; min-width: 120px; border-radius: 8px; font-size: 13px; padding: 8px 12px; }

@media (max-width: 1200px) { .orders-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .orders-grid { grid-template-columns: 1fr; gap: 15px; }
    .order-controls .row { margin: 0; }
    .order-controls .col-md-4, .order-controls .col-md-3, .order-controls .col-md-2 { margin-bottom: 15px; }
    .order-card-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .order-actions { flex-direction: column; }
    .order-actions .btn { min-width: auto; }
}
@media (max-width: 480px) {
    .orders-grid { grid-template-columns: 1fr; gap: 10px; }
}

/* Wishlist Stilleri */
.product-box-3 {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-box-3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.theme-bg-white {
    background: white;
}

.product-header {
    position: relative;
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-box-3:hover .product-image img {
    transform: scale(1.05);
}

.product-header-top {
    position: absolute;
    top: 10px;
    right: 10px;
}

.wishlist-button {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc3545;
    font-size: 14px;
    transition: all 0.3s ease;
}

.wishlist-button:hover {
    background: #dc3545;
    color: white;
}

.product-footer {
    padding: 20px;
}

.span-name {
    color: #F68220;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-detail .name {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin: 8px 0;
    line-height: 1.4;
}

.product-content {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

.unit {
    color: #666;
    font-size: 12px;
    margin: 8px 0;
}

.price {
    margin: 10px 0;
}

.theme-color {
    color: #F68220;
    font-size: 18px;
    font-weight: 700;
}

.price del {
    color: #999;
    font-size: 14px;
    margin-left: 8px;
}

.add-to-cart-box {
    margin-top: 15px;
}

.btn-add-cart {
    background: #F68220;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-add-cart:hover {
    background: #e0741c;
    color: white;
}

.add-icon {
    margin-left: 8px;
}

/* Address Stilleri */
.title-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}



.address-box {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.address-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.form-check {
    margin-bottom: 15px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 0;
}

.label label {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.address-table .table {
    margin-bottom: 0;
}

.address-table td {
    padding: 8px 0;
    border: none;
    font-size: 14px;
}

.address-table td:first-child {
    color: #666;
    font-weight: 500;
    width: 30%;
}

.address-table td:last-child {
    color: #333;
}

.button-group {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.add-button {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.add-button:hover {
    background: #F68220;
    color: white;
    border-color: #F68220;
}

.add-button i {
    font-size: 12px;
}

/* Responsive */
@media (max-width: 991px) {
    .dashboard-left-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        z-index: 1100;
        transition: left 0.3s ease;
    }
    
    .dashboard-left-sidebar.show {
        left: 0;
    }
    
    .close-button {
        display: flex;
    }
    
    .left-dashboard-show {
        display: block;
    }
}

@media (max-width: 768px) {
    .user-dashboard-section {
        padding: 40px 0;
    }
    
    .dashboard-right-sidebar {
        padding: 20px;
    }
    
    .dashboard-bg-box {
        padding: 20px;
    }
    
    .profile-name-detail {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .profile-rating {
        margin-left: 0;
        margin-top: 10px;
    }
}

/* Kullanıcı dropdown menü stilleri */
.option-list .onhover-dropdown .onhover-div {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    background: white !important;
    border: 1px solid #e9ecef !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    min-width: 180px !important;
    z-index: 1060 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s ease !important;
}

.option-list .onhover-dropdown:hover .onhover-div {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.option-list .onhover-dropdown .onhover-div ul {
    list-style: none !important;
    padding: 8px 0 !important;
    margin: 0 !important;
}

.option-list .onhover-dropdown .onhover-div ul li {
    margin: 0 !important;
}

.option-list .onhover-dropdown .onhover-div ul li a {
    display: flex !important;
    align-items: center !important;
    padding: 10px 16px !important;
    color: #333 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
}

.option-list .onhover-dropdown .onhover-div ul li a:hover {
    background: #f8f9fa !important;
    color: #F68220 !important;
}

.option-list .onhover-dropdown .onhover-div ul li a i {
    font-size: 16px !important;
    width: 20px !important;
}

.option-list .btn.btn-sm.btn-outline-primary {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 4px;
    margin-left: 8px;
    border-color: #F68220;
    color: #F68220;
}

.option-list .btn.btn-sm.btn-outline-primary:hover {
    background-color: #F68220;
    color: white;
    border-color: #F68220;
}

/* Sepet Sayfası Ürün Adı Düzeltmeleri */
.cart-section .product-detail .name a {
    display: block;
    max-width: 200px;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    font-size: 14px;
    line-height: 1.4;
    hyphens: auto;
}

.cart-section .product-detail ul li {
    margin-bottom: 5px;
}

.cart-section .product-detail ul li.name {
    margin-bottom: 8px;
}

/* Cart Table Sütun Genişlikleri */
.cart-section .table td.quantity {
    width: 120px;
    min-width: 120px;
}

.cart-section .table td.quantity .cart_qty .input-group {
    width: 90px;
}

.cart-section .table td.quantity .cart_qty .input-group .btn {
    padding: 4px 6px !important;
    font-size: 12px !important;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
}

.cart-section .table td.quantity .cart_qty .input-group .btn i {
    font-size: 10px !important;
}

.cart-section .table td.quantity .cart_qty .input-group .form-control {
    padding: 4px 6px !important;
    font-size: 12px !important;
    height: 28px !important;
    text-align: center;
    width: 34px !important;
}

.cart-section .table td.subtotal {
    width: 100px;
    min-width: 100px;
}

.cart-section .table td.save-remove {
    width: 100px;
    min-width: 100px;
}

.cart-section .table td.price {
    width: 150px;
    min-width: 150px;
    font-size: 12px;
}

.cart-section .table td.subtotal {
    width: 100px;
    min-width: 100px;
    font-size: 14px;
}

/* Responsive düzeltmeler */
@media (max-width: 768px) {
    .cart-section .product-detail .name a {
        max-width: 150px;
        font-size: 13px;
    }
    
    .cart-section .table-responsive-xl {
        font-size: 12px;
    }
    
    .cart-section .table td.quantity,
    .cart-section .table td.subtotal,
    .cart-section .table td.save-remove {
        width: 80px;
        min-width: 80px;
    }
    
    .cart-section .table td.price,
    .cart-section .table td.subtotal {
        font-size: 12px;
    }
    
    .cart-section .table td.quantity .cart_qty .input-group {
        width: 70px;
    }
    
    .cart-section .table td.quantity .cart_qty .input-group .btn {
        padding: 2px 4px !important;
        font-size: 10px !important;
        width: 22px !important;
        height: 22px !important;
        min-width: 22px !important;
    }
    
    .cart-section .table td.quantity .cart_qty .input-group .btn i {
        font-size: 8px !important;
    }
    
    .cart-section .table td.quantity .cart_qty .input-group .form-control {
        padding: 2px 4px !important;
        font-size: 10px !important;
        height: 22px !important;
        width: 26px !important;
    }
}


/* Title and arrows layout fix */
.title-flex-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.title-flex-2 h2 {
    margin: 0;
    flex: 1;
}

.title-flex-2 .btn {
    margin-left: 20px;
    white-space: nowrap;
}

/* ===== MOBİL FİLTRE DRAWER - MİGROS TARZI ===== */
.mobile-filter-drawer {
    width: 90% !important;
    max-width: 400px !important;
    z-index: 1051 !important;
    pointer-events: auto !important;
}

.mobile-filter-drawer.show {
    z-index: 1051 !important;
    pointer-events: auto !important;
}

/* Offcanvas backdrop drawer'ın altında kalmalı */
.offcanvas-backdrop {
    z-index: 1050 !important;
}

.offcanvas-backdrop.show {
    z-index: 1050 !important;
    pointer-events: auto !important;
}

.mobile-filter-drawer .offcanvas-header {
    padding: 0 !important;
    background: #fff !important;
    border-bottom: none !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 10 !important;
    flex-shrink: 0 !important;
}

/* Geri Butonu */
.mobile-filter-back {
    padding: 1rem 1.25rem !important;
    border-bottom: 1px solid #e9ecef !important;
}

.mobile-filter-back .btn-back-filter {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    color: #333 !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
}

.mobile-filter-back .btn-back-filter:hover {
    color: #F68220 !important;
}

/* Filtre Başlık ve Sekmeler */
.mobile-filter-header {
    padding: 1rem 1.25rem !important;
    border-bottom: 1px solid #e9ecef !important;
}

.mobile-filter-header h5 {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin: 0 !important;
}

/* Tümünü / Temizle Sekmeleri */
.mobile-filter-tabs {
    margin-top: 1rem !important;
    border-bottom: 2px solid #e9ecef !important;
}

.mobile-filter-tab {
    background: none !important;
    border: none !important;
    padding: 0.75rem 1rem !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: #666 !important;
    position: relative !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.mobile-filter-tab.active {
    color: #F68220 !important;
}

.mobile-filter-tab.active::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    right: 0 !important;
    height: 2px !important;
    background: #F68220 !important;
}

.mobile-filter-tab:hover {
    color: #F68220 !important;
}

.mobile-filter-drawer .offcanvas-title {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #333 !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
}

.mobile-filter-drawer.offcanvas-end {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 1051 !important;
    pointer-events: auto !important;
    transform: translateX(0) !important;
}

.mobile-filter-drawer.offcanvas-end.show {
    transform: translateX(0) !important;
    pointer-events: auto !important;
}

/* Drawer içindeki tüm interaktif elementler tıklanabilir olmalı */
.mobile-filter-drawer * {
    pointer-events: auto !important;
}

/* Backdrop drawer'ın altında kalmalı */
body:has(.mobile-filter-drawer.show) .offcanvas-backdrop {
    z-index: 1050 !important;
    pointer-events: auto !important;
}

.mobile-filter-drawer .offcanvas-body {
    padding: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 1 !important;
}

.mobile-filter-content {
    background: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.mobile-filter-body {
    padding: 0 !important;
    flex: 1 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
}

.mobile-filter-drawer .accordion {
    margin: 0 !important;
}

.mobile-filter-drawer .accordion-item {
    border: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
    margin: 0 !important;
}

.mobile-filter-drawer .accordion-button {
    padding: 1rem 1.25rem !important;
    font-weight: 500 !important;
    background: #fff !important;
    border: none !important;
    box-shadow: none !important;
    font-size: 1rem !important;
    color: #333 !important;
}

.mobile-filter-drawer .accordion-button:not(.collapsed) {
    background: #f8f9fa !important;
    color: #F68220 !important;
}

.mobile-filter-drawer .accordion-button:focus {
    box-shadow: none !important;
    border-color: transparent !important;
}

.mobile-filter-drawer .accordion-button::after {
    margin-left: auto !important;
}

.mobile-filter-drawer .accordion-body {
    padding: 0.75rem 1.25rem !important;
    background: #fff !important;
}

.mobile-filter-drawer .category-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.mobile-filter-drawer .category-list li {
    padding: 0.75rem 0 !important;
    border-bottom: 1px solid #f8f9fa !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 10 !important;
}

.mobile-filter-drawer .category-list li:last-child {
    border-bottom: none !important;
}

.mobile-filter-drawer .category-list li * {
    pointer-events: auto !important;
}

.mobile-filter-drawer .category-list-box {
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
    width: 100% !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 10 !important;
}

.mobile-filter-drawer .form-check-label {
    cursor: pointer !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 10 !important;
    user-select: none !important;
}

.mobile-filter-drawer input[type="checkbox"] {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 11 !important;
    opacity: 1 !important;
}

.mobile-filter-drawer .accordion-body {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 10 !important;
}

.mobile-filter-drawer .mobile-filter-body {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 10 !important;
}

.mobile-filter-drawer .mobile-filter-content {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 10 !important;
}

.mobile-filter-drawer .offcanvas-body {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Label'a tıklandığında checkbox'ı tetikle */
.mobile-filter-drawer .form-check-label {
    pointer-events: auto !important;
}

.mobile-filter-drawer .form-check-label:active {
    opacity: 0.7 !important;
}

.mobile-filter-footer {
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1) !important;
    position: sticky !important;
    bottom: 0 !important;
    background: #fff !important;
    z-index: 10 !important;
    padding: 1rem 1.25rem !important;
    flex-shrink: 0 !important;
    border-top: 1px solid #e9ecef !important;
    margin-top: auto !important;
}

.mobile-filter-drawer .mobile-filter-footer .btn {
    padding: 0.75rem 1rem !important;
    font-weight: 500 !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    flex: 1 !important;
    white-space: nowrap !important;
}

.mobile-filter-drawer .mobile-filter-footer .btn-primary {
    background: #F68220 !important;
    border-color: #F68220 !important;
    color: #fff !important;
}

.mobile-filter-drawer .mobile-filter-footer .btn-primary:hover,
.mobile-filter-drawer .mobile-filter-footer .btn-primary:focus {
    background: #e0741c !important;
    border-color: #e0741c !important;
    color: #fff !important;
}

.mobile-filter-drawer .mobile-filter-footer .btn-outline-secondary {
    border-color: #dee2e6 !important;
    color: #6c757d !important;
}

.mobile-filter-drawer .mobile-filter-footer .btn-outline-secondary:hover {
    background: #f8f9fa !important;
    border-color: #dee2e6 !important;
    color: #6c757d !important;
}

.mobile-filter-drawer .mobile-filter-footer .btn-primary {
    width: 100% !important;
    padding: 0.875rem 1rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
}

.mobile-filter-drawer .mobile-filter-footer .dropdown {
    flex: 1 !important;
    text-align: right !important;
}

.mobile-filter-drawer .mobile-filter-footer .dropdown-toggle {
    min-width: 150px !important;
    text-align: left !important;
}

/* Mobilde sidebar'ı tamamen gizle */
@media (max-width: 991.98px) {
    .col-custom-3 {
        display: none !important;
    }
    
    .col-custom- {
        width: 100% !important;
    }
    
    /* Filtre butonu mobilde */
    .filter-button a {
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        padding: 0.5rem 1rem !important;
        background: #F68220 !important;
        color: #fff !important;
        border-radius: 6px !important;
        text-decoration: none !important;
        font-weight: 500 !important;
    }
    
    .filter-button a:hover {
        background: #e0741c !important;
        color: #fff !important;
    }
    
    .mobile-filter-drawer {
        width: 90% !important;
    }
}

@media (max-width: 575.98px) {
    .mobile-filter-drawer {
        width: 95% !important;
    }
    
    .mobile-filter-drawer .offcanvas-header {
        padding: 0.875rem 1rem !important;
    }
    
    .mobile-filter-drawer .offcanvas-title {
        font-size: 1.125rem !important;
    }
    
    .mobile-filter-drawer .accordion-button {
        padding: 0.875rem 1rem !important;
        font-size: 0.9375rem !important;
    }
    
    .mobile-filter-drawer .accordion-body {
        padding: 0.5rem 1rem !important;
    }
    
    .mobile-filter-footer {
        padding: 0.875rem 1rem !important;
    }
    
    .mobile-filter-drawer .mobile-filter-footer .btn {
        padding: 0.625rem 0.875rem !important;
        font-size: 0.9375rem !important;
    }
    
    .mobile-filter-drawer .mobile-filter-footer .btn i {
        font-size: 0.875rem !important;
    }
}

/* Arrow slider positioning */
.arrow-slider {
    position: relative;
}

.arrow-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.arrow-slider .slick-arrow:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.arrow-slider .slick-prev {
    left: 10px;
}

.arrow-slider .slick-next {
    right: 10px;
}

.arrow-slider .slick-arrow:before {
    font-size: 16px;
    color: #333;
}

/* Responsive design */
@media (max-width: 768px) {
    .title-flex-2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .title-flex-2 .btn {
        margin-left: 0;
        align-self: flex-end;
    }
    
    .arrow-slider .slick-arrow {
        width: 35px;
        height: 35px;
    }
    
    .arrow-slider .slick-prev {
        left: 5px;
    }
    
    .arrow-slider .slick-next {
        right: 5px;
    }
    
    /* ===== MOBİL HEADER DÜZELTMELERİ ===== */
    
    /* Mobilde navbar-top flexbox düzeni */
    @media (max-width: 767px) {
        header .top-nav .navbar-top {
            position: relative;
            z-index: 10;
        }
        
        /* Navbar toggler z-index */
        header .top-nav .navbar-top .navbar-toggler {
            position: relative;
            z-index: 11;
        }
        
        /* Rightside-box z-index ve positioning */
        header .top-nav .navbar-top .rightside-box {
            position: relative;
            z-index: 11;
            margin-left: auto;
        }
        
        /* Right-side-menu flexbox düzeni */
        header .top-nav .navbar-top .rightside-box .right-side-menu {
            display: flex !important;
            align-items: center;
            justify-content: flex-end;
        }
        
        /* Son child (hesabım iconu) görünür ve doğru konumda */
        header .top-nav .navbar-top .rightside-box .right-side-menu .right-side:last-child {
            display: block !important;
            position: relative;
            z-index: 11;
        }
        
        /* Delivery-login-box mobilde sadece icon göster */
        header .top-nav .navbar-top .rightside-box .right-side-menu .right-side:last-child .delivery-login-box {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }
        
        header .top-nav .navbar-top .rightside-box .right-side-menu .right-side:last-child .delivery-login-box .delivery-detail {
            display: none !important;
        }
        
        header .top-nav .navbar-top .rightside-box .right-side-menu .right-side:last-child .delivery-login-box .delivery-icon {
            margin-right: 0;
        }
        
        /* ===== ARAMA BUTONU - SAYFAYA YÖNLENDİRME (MOBİL VE DESKTOP) ===== */
        /* Tüm arama butonları link olarak çalışıyor, direkt arama sayfasına gidiyor */
        .mobile-search-link,
        .desktop-search-link {
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: inherit;
            width: 100%;
            height: 100%;
        }
        
        .mobile-search-link:hover,
        .desktop-search-link:hover {
            color: inherit;
            text-decoration: none;
        }
        
        .mobile-search-link i,
        .desktop-search-link i {
            pointer-events: none;
        }
        
        /* Desktop arama butonu için ek stil */
        .search-box .desktop-search-link {
            padding: 10px;
            cursor: pointer;
        }
    }
}

/* Çerez bildirimi z-index düzeltmesi */
.cookie-bar-box {
    z-index: 1090 !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: #fff !important;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1) !important;
    border-top: 1px solid #e0e0e0 !important;
}

.cookie-bar-box .cookie-box {
    display: flex !important;
    align-items: center !important;
    padding: 15px 20px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.cookie-bar-box .cookie-image {
    margin-right: 15px !important;
}

.cookie-bar-box .cookie-image img {
    width: 40px !important;
    height: 40px !important;
}

.cookie-bar-box .cookie-image h2 {
    font-size: 16px !important;
    margin: 0 !important;
    color: #333 !important;
}

.cookie-bar-box .cookie-contain {
    flex: 1 !important;
    margin-right: 15px !important;
}

.cookie-bar-box .cookie-contain h5 {
    margin: 0 !important;
    font-size: 14px !important;
    color: #666 !important;
}

.cookie-bar-box .button-group {
    display: flex !important;
    gap: 10px !important;
}

.cookie-bar-box .button-group .btn {
    padding: 8px 16px !important;
    font-size: 14px !important;
    border-radius: 4px !important;
}

.cookie-bar-box .privacy-button {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.cookie-bar-box .ok-button {
    background: #007bff !important;
    color: #fff !important;
    border: 1px solid #007bff !important;
}

.cookie-bar-box .ok-button:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
}

/* Mobilde Logo Ortalama */
@media (max-width: 768px) {
    .navbar-top {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .navbar-top .web-logo {
        position: absolute;
        left: 50%;
        top: 2px;
        transform: translateX(-50%);
        z-index: 1;
    }
    
    .navbar-top .web-logo img {
        max-width: 70px !important;
        height: auto !important;
    }
    
    .navbar-top .navbar-toggler {
        position: absolute;
        left: 0;
        z-index: 1;
    }
    
    .navbar-top .search-full {
        position: absolute;
        right: 0;  
        z-index: 99;
    }
}

/* ========== KATEGORİ DROPDOWN HİYERARŞİK TASARIM ========== */
/* Temanın orijinal yapısını koruyarak özelleştirme */

.category-dropdown .onhover-category-box .list-1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block !important; /* grid yerine block kullan */
}

.category-dropdown .onhover-category-box .list-1 ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.category-dropdown .onhover-category-box .list-1 ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.category-dropdown .onhover-category-box .list-1 ul li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.category-dropdown .onhover-category-box .list-1 ul li a:hover {
    color: #F68220;
}

/* Alt kategoriler (Seviye 3) */
.category-dropdown .onhover-category-box .list-1 ul li ul {
    list-style: none;
    padding-left: 20px;
    margin-top: 5px;
}

.category-dropdown .onhover-category-box .list-1 ul li ul li {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 5px;
}

.category-dropdown .onhover-category-box .list-1 ul li ul li a {
    font-weight: normal;
    font-size: 13px;
    color: #666;
}

/* Alt kategoriler (Seviye 3) - Inline style'ları CSS'e taşıdık */
.category-dropdown .onhover-category-box .list-1 ul li ul {
    padding-left: 20px;
    margin-top: 5px;
}

.category-dropdown .onhover-category-box .list-1 ul li ul li {
    margin-bottom: 5px;
}

.category-dropdown .onhover-category-box .list-1 ul li ul li .badge {
    font-size: 10px;
}

.category-dropdown .bg-theme {
    background: #F68220 !important;
    color: white !important;
}

/* Navigation'daki category-name'in product section stillerinden etkilenmemesi için */
/* style.css'de zaten .header-2 .header-nav-left .category-dropdown .category-list li .category-name tanımlı */
/* Product section scope'u navigation'ı etkilememeli */
.header-2 .header-nav-left .category-dropdown .category-list li a.category-name,
header .header-nav .header-nav-left .category-dropdown .category-list li a.category-name,
.category-dropdown .category-list li a.category-name {
    /* Product section stillerini override et */
    font-size: unset !important;
    font-weight: unset !important;
    padding: unset !important;
    border-radius: unset !important;
    background: unset !important;
    box-shadow: unset !important;
    margin: unset !important;
    line-height: unset !important;
    position: unset !important;
    display: flex !important;
    align-items: center !important;
    color: #4a5568 !important;
    text-decoration: none !important;
}

.header-2 .header-nav-left .category-dropdown .category-list li a.category-name:hover,
header .header-nav .header-nav-left .category-dropdown .category-list li a.category-name:hover,
.category-dropdown .category-list li a.category-name:hover {
    transform: unset !important;
    box-shadow: unset !important;
    background: unset !important;
    color: #4a5568 !important;
}

/* Navigation category-name içindeki h6 için */
.header-2 .header-nav-left .category-dropdown .category-list li a.category-name h6,
header .header-nav .header-nav-left .category-dropdown .category-list li a.category-name h6,
.category-dropdown .category-list li a.category-name h6 {
    font-size: 17px !important;
    font-weight: 500 !important;
    margin: 0 !important;
    margin-left: 10px !important;
    color: inherit !important;
}

/* Ana Sayfa Kategori Grid - index.blade.php */
.km-cat-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 18px;
}

@media (max-width: 1600px) {
    .km-cat-grid {
        grid-template-columns: repeat(9, 1fr);
    }
}

@media (max-width: 1400px) {
    .km-cat-grid {
        grid-template-columns: repeat(7, 1fr);
    }
}

@media (max-width: 1200px) {
    .km-cat-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 992px) {
    .km-cat-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 768px) {
    .km-cat-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .km-cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.km-cat-item {
    text-align: center;
}

.km-cat-thumb {
    width: 100%;
    max-width: 90px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f6f7f9;
}

.km-cat-thumb img {
    width: 55%;
    height: 100%;
    display: block;
}

.km-cat-name {
    font-size: 13px;
    line-height: 1.2;
    min-height: 32px;
}
