/* Custom fixes for Kavraz Market theme */

/* 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); }
}

.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;
    height: 50px;
    border-radius: 12px;
    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 {
    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);
}

.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;
    }
    
    .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;
    }
    
    .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);
    }
    
    .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;
    }
}


/* Sticky Header */
.sticky-header {
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
}

.sticky-header.sticky-active {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.header-icon.bag-icon {
    z-index: 10001 !important;
}


.header-icon.user-icon {
    z-index: 10001 !important;
    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 */
.product-box {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

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

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

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

.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;
}

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

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

.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: 9999;
        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: 10002 !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;
    }
}

.sticky-header .header-notification {
    display: none; /* Notification'ı gizle sticky modda */
}

/* Body padding for sticky header */
body.sticky-header-active {
    padding-top: 80px; /* Header yüksekliği kadar padding */
}

/* Sticky header animation */
.sticky-header {
    transform: translateY(0);
    opacity: 1;
}

.sticky-header.hide {
    transform: translateY(-100%);
    opacity: 0;
}

/* 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;
}

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

.arrow-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    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 YENİDEN TASARIM ===== */
    
    /* Mobilde sadece profil ikonu görünür - uyumlu yaklaşım */
    .rightside-menu .option-list ul {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    
    /* Tüm ikonları gizle */
    .rightside-menu .option-list li {
        display: none;
    }
    
    /* Sadece profil ikonunu göster - son 2 li elementi (auth/else durumları) */
    .rightside-menu .option-list li:nth-last-child(1),
    .rightside-menu .option-list li:nth-last-child(2) {
        display: block;
    }
    
    /* Profil ikonu stilleri */
    .rightside-menu .option-list li:nth-last-child(1) .user-icon,
    .rightside-menu .option-list li:nth-last-child(2) .user-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 18px;
        color: #333;
        text-decoration: none;
    }
    
    .rightside-menu .option-list li:nth-last-child(1) .user-icon i,
    .rightside-menu .option-list li:nth-last-child(2) .user-icon i {
        font-size: 18px;
    }
    
    /* Mobil header genel düzenlemeleri */
    .rightside-menu {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    
    /* Profil ikonu hover efekti */
    .rightside-menu .option-list li:nth-last-child(1) .user-icon:hover,
    .rightside-menu .option-list li:nth-last-child(2) .user-icon:hover {
        color: #007bff;
        transform: scale(1.1);
        transition: all 0.3s ease;
    }
}

/* Çerez bildirimi z-index düzeltmesi */
.cookie-bar-box {
    z-index: 9999 !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: 10;
    }
    
    .navbar-top .web-logo img {
        max-width: 70px !important;
        height: auto !important;
    }
    
    .navbar-top .navbar-toggler {
        position: absolute;
        left: 0;
        z-index: 11;
    }
    
    .navbar-top .search-full {
        position: absolute;
        right: 0;
        z-index: 11;
    }
}
