/* ============================================
   E-Ticaret Site Stilleri
   ============================================ */

:root {
    --primary-color: #fff;
    --secondary-color: #6c757d;
    --accent-color: #fff;
    --text-primary: #333333;
    --text-secondary: #6c757d;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e9ecef;
    --border-radius: 0.5rem;
    --box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --box-shadow-lg: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-white);
}

/* Header Stilleri */
.main-header {
    z-index: 1000;
}

.top-bar {
    font-size: 0.875rem;
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
    color: var(--text-primary) !important;
}

.navbar-nav .nav-link:hover {
    color: #333 !important;
    opacity: 0.8;
}

.navbar-nav .nav-link:focus {
    color: var(--text-primary) !important;
}

.navbar-nav .nav-link.active {
    color: var(--text-primary) !important;
}

.search-box input {
    width: 300px;
    border-radius: 25px;
    padding-left: 1rem;
    padding-right: 2.5rem;
}

/* Slider Stilleri */
.main-slider {
    margin-top: 0;
}

.heroSwiper {
    height: 500px;
}

.slider-item {
    height: 100%;
    display: flex;
    align-items: center;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.slider-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.slider-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.slider-item:hover .slider-background img {
    transform: scale(1.15);
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.slider-item .container {
    position: relative;
    z-index: 2;
}

.min-vh-50 {
    min-height: 500px;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Kategori Kartları - Modern Slider Tasarımı */
.categories {
    position: relative;
}

.categories .container {
    position: relative;
    padding-left: 0;
    padding-right: 0;
}

.categorySwiper {
    padding: 20px 50px 40px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.categorySwiper .swiper-wrapper {
    align-items: stretch;
    justify-content: center;
}

.category-card-modern {
    text-decoration: none;
    display: block;
    height: 100%;
}

.category-card-content {
    border-radius: 12px;
    padding: 18px;
    height: 160px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: transparent !important;
}

.category-card-modern:hover .category-card-content {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.category-card-header {
    position: relative;
    z-index: 3;
}

.category-card-title {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.category-card-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    border-radius: 12px;
    background: transparent;
}

.category-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform: scale(1);
    transition: transform 0.3s ease;
    display: block !important;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent !important;
    max-width: 100%;
    max-height: 100%;
}

.category-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    border-radius: 12px;
    pointer-events: none;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.3s ease;
    display: block;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

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

/* Fallback - görsel yüklenemezse gradient göster */
.category-card-image:empty::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
}

.category-card-icon {
    position: relative;
    z-index: 3;
    text-align: center;
    margin: 10px 0;
}

.category-card-icon i {
    font-size: 2.2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.category-card-footer {
    position: relative;
    z-index: 3;
    text-align: center;
}

.category-card-footer span {
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.category-nav-next,
.category-nav-prev {
    color: var(--primary-color);
    background: transparent;
    width: 40px;
    height: 40px;
    border-radius: 0;
    box-shadow: none;
    margin-top: -20px;
    z-index: 10;
    position: absolute;
    top: 50%;
    border: none;
}

.category-nav-next {
    right: 10px;
}

.category-nav-prev {
    left: 10px;
}

.category-nav-next:after,
.category-nav-prev:after {
    font-size: 24px;
    font-weight: bold;
}

.category-nav-next:hover,
.category-nav-prev:hover {
    background: transparent;
    color: var(--accent-color);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .categorySwiper {
        padding: 15px 20px 35px;
    }
    
    /* Mobilde kategori slider oklarını gizle */
    .category-nav-next,
    .category-nav-prev {
        display: none !important;
    }
    
    .category-card-content {
        height: 140px;
        min-height: 140px;
        padding: 12px;
    }
    
    .category-card-icon i {
        font-size: 1.8rem;
    }
    
    .category-card-title {
        font-size: 0.8rem;
    }
    
    .category-card-footer span {
        font-size: 0.75rem;
    }
}

/* Ürün Kartları - Sade ve Şık Tasarım */
.product-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: none !important;
    transition: none !important;
}

.product-card:hover {
    box-shadow: none !important;
    transform: none !important;
}

.product-card .position-relative {
    background: transparent;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.product-image-container {
    background: transparent;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.product-images-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: 100%;
    display: block;
    background: transparent;
    object-fit: cover;
    padding: 0;
}

.product-main-image {
    width: 100%;
    height: 100%;
    display: block;
    background: transparent;
    object-fit: cover;
    padding: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    opacity: 1;
}

.product-secondary-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
}

.product-card img:hover {
    transform: none !important;
}

.product-card .card-body {
    padding: 12px 16px;
    text-align: left;
    background: transparent;
}

.product-card .card-title {
    font-size: 0.875rem;
    font-weight: 400;
    color: #000;
    margin: 0 0 4px 0;
    line-height: 1.4;
    padding: 0;
}

.product-card .card-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-card .card-title a:hover {
    color: #666;
}

/* Favori Butonu */
.btn-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: #333;
    font-size: 18px;
    transition: color 0.2s ease;
}

.btn-favorite:hover {
    color: #ff6b6b;
}

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

/* Fiyat */
.product-price {
    margin: 0;
    padding: 0;
}

.product-price .fw-bold {
    font-size: 0.875rem;
    font-weight: 400;
    color: #000;
    display: block;
}

.product-price small {
    display: none;
}

/* Section Title */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    color: white;
    transform: scale(1.1);
    box-shadow: 3px 3px 5px #666;
}

.whatsapp-float i {
    margin-top: 5px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Ürün Detay Sayfası */
.product-images .main-image {
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.thumbnail-images .thumbnail-img {
    cursor: pointer;
    transition: border-color 0.3s;
    border: 2px solid transparent;
}

.thumbnail-images .thumbnail-img:hover {
    border-color: var(--primary-color);
}

.thumbnail-images .thumbnail-img.active {
    border-color: var(--primary-color);
    border-width: 2px;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
}

.product-price {
    font-size: 1.5rem;
}

/* Ürün Detay Sayfası - Profesyonel Tasarım */
.product-variations {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.product-variations .form-select {
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
    background-color: #ffffff;
}

.product-variations .form-select:focus {
    border-color: #333;
    box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1);
    outline: none;
}

.product-variations .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}

.product-variations .form-label span {
    color: #ff9800;
    margin-left: 3px;
}

/* Beden Seçimi - Profesyonel Tasarım */
.product-variations .btn-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-variations .btn-group .btn-check {
    display: none;
}

.product-variations .btn-group .btn-size {
    min-width: 45px;
    height: 42px;
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid #dee2e6;
    background: #ffffff;
    color: #6c757d;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-variations .btn-group .btn-size:hover {
    border-color: #ff9800;
    background: #ffffff;
    color: #ff9800;
}

.product-variations .btn-group .size-radio:checked + .btn-size {
    background: #ffffff;
    color: #ff9800;
    border-color: #ff9800;
    border-width: 2px;
}

/* Renk Seçimi - Dropdown Menü Tasarımı */
.color-selector-wrapper {
    position: relative;
}

.color-selector-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #ffffff;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s;
}

.color-selector-btn:hover {
    border-color: #333;
    background: #f8f9fa;
}

.color-selector-btn.active {
    border-color: #333;
    box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1);
}

.selected-color-preview {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #e9ecef;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.selected-color-text {
    flex: 1;
    text-align: left;
}

.color-selector-btn i {
    transition: transform 0.3s;
    color: #6c757d;
}

.color-selector-btn.active i {
    transform: rotate(180deg);
}

.color-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-10px);
}

.color-dropdown.show {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
}

.color-options-list {
    padding: 0.5rem;
    max-height: 380px;
    overflow-y: auto;
}

.color-radio {
    display: none;
}

.color-option-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 0.25rem;
}

.color-option-item:hover {
    background: #f8f9fa;
}

.color-option-item:last-child {
    margin-bottom: 0;
}

.color-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #e9ecef;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.color-name {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
}

.color-check-icon {
    color: #333;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.color-radio:checked + .color-option-item {
    background: #f0f0f0;
}

.color-radio:checked + .color-option-item .color-check-icon {
    opacity: 1;
}

.color-radio:checked + .color-option-item .color-circle {
    border-color: #333;
    border-width: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Dropdown scrollbar */
.color-options-list::-webkit-scrollbar {
    width: 6px;
}

.color-options-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.color-options-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.color-options-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Adet ve Sepete Ekle - Profesyonel Tasarım */
.product-actions {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    margin-bottom: 1.5rem;
}

.product-actions .form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-actions .input-group {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #dee2e6;
}

.product-actions .input-group .btn {
    border: none;
    background: #f8f9fa;
    color: #495057;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
}

.product-actions .input-group .btn:hover {
    background: #e9ecef;
    color: #333;
}

.product-actions .input-group .form-control {
    border: none;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem;
}

.product-actions .input-group .form-control:focus {
    box-shadow: none;
    border-color: transparent;
}

.product-actions .add-to-cart {
    background: #333;
    border: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(51, 51, 51, 0.2);
}

.product-actions .add-to-cart:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(51, 51, 51, 0.3);
}

.product-actions .add-to-cart i {
    margin-right: 0.5rem;
}

/* Ürün Özellikleri - Profesyonel Tasarım */
.product-features {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.product-features .d-flex {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.product-features .d-flex:last-child {
    border-bottom: none;
}

.product-features i {
    color: #333;
    font-size: 1.25rem;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-features small {
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
}

/* Paylaş Butonları - Profesyonel Tasarım */
.product-share {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.product-share .form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.product-share .btn {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border-width: 2px;
    font-size: 1.1rem;
}

.product-share .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-share .btn-outline-primary:hover {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #ffffff;
}

.product-share .btn-outline-info:hover {
    background: #0dcaf0;
    border-color: #0dcaf0;
    color: #ffffff;
}

.product-share .btn-outline-danger:hover {
    background: #dc3545;
    border-color: #dc3545;
    color: #ffffff;
}

.product-share .btn-outline-success:hover {
    background: #198754;
    border-color: #198754;
    color: #ffffff;
}

/* Sepet Sayfası */
.cart-item {
    transition: background-color 0.3s;
}

.cart-item:hover {
    background-color: var(--light-color);
}

/* Ödeme Sayfası */
.payment-option {
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option:hover {
    background-color: var(--light-color);
    border-color: var(--primary-color) !important;
}

.payment-option input[type="radio"]:checked + label {
    background-color: rgba(26, 26, 26, 0.05);
    border-color: var(--primary-color) !important;
}

/* Footer */
.main-footer {
    margin-top: auto;
}

.main-footer a {
    transition: color 0.3s;
}

.main-footer a:hover {
    color: white !important;
}

.social-links a {
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--accent-color);
}

/* Badge */
.badge {
    font-weight: 500;
    padding: 0.5em 0.75em;
    font-size: 0.75rem;
}

.badge.bg-danger {
    background-color: var(--primary-color) !important;
}

.badge.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Butonlar */
.btn {
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: all 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-primary);
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-primary);
    background-color: #f5f5dc;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-primary);
}

/* Form Elemanları */
.form-control,
.form-select {
    border-radius: var(--border-radius);
    border: 1px solid #dee2e6;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 26, 26, 0.1);
}

/* Card */
.card {
    border-radius: var(--border-radius);
    transition: box-shadow 0.3s;
}

.card:hover {
    box-shadow: var(--box-shadow-lg);
}

/* Pagination */
.pagination .page-link {
    border-radius: var(--border-radius);
    margin: 0 2px;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.pagination .page-link:hover {
    background-color: var(--bg-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-primary);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .heroSwiper {
        height: 300px;
    }
    
    .min-vh-50 {
        min-height: 300px;
    }
    
    /* Mobilde ana slider oklarını gizle */
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .search-box {
        display: none;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    
    .product-card img {
        padding: 0;
    }
    
    .product-card .position-relative {
        aspect-ratio: 1 / 1;
    }
    
    .product-card .card-body {
        padding: 10px 12px;
    }
    
    .product-card .card-title {
        font-size: 0.8rem;
    }
    
    .product-price .fw-bold {
        font-size: 0.8rem;
    }
    
    .btn-favorite {
        width: 32px;
        height: 32px;
        top: 10px;
        right: 10px;
    }
    
    .btn-favorite i {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .heroSwiper {
        height: 250px;
    }
    
    .min-vh-50 {
        min-height: 250px;
    }
    
    .display-4 {
        font-size: 1.5rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    /* Mobilde ana slider butonlarını küçült */
    .main-slider .btn-lg {
        font-size: 0.9rem;
        padding: 0.45rem 1.25rem;
    }
}

/* Professional Image Placeholders */
.campaign-card img,
.category-card img {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    object-fit: cover;
}

.product-card img {
    background: #ffffff;
    object-fit: contain;
}

.product-card img[src=""],
.product-card img:not([src]),
.campaign-card img[src=""],
.campaign-card img:not([src]) {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card img[src=""]:after,
.product-card img:not([src]):after {
    content: "Görsel Yükleniyor...";
    color: #999;
    font-size: 0.875rem;
}

/* Professional Badge Styles */
.badge-discount {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%) !important;
    color: var(--text-light) !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.4rem 0.7rem;
    border-radius: 4px;
    font-size: 0.75rem;
    box-shadow: 0 2px 6px rgba(255, 107, 107, 0.25);
    z-index: 5;
}

/* Category Icons - Neutral */
.category-icon i {
    color: var(--text-primary);
    transition: var(--transition);
}

.category-card:hover .category-icon i {
    color: var(--accent-color);
}

/* Utility Classes */
.text-decoration-line-through {
    text-decoration: line-through;
}

.shadow-sm {
    box-shadow: var(--box-shadow);
}

.shadow {
    box-shadow: var(--box-shadow-lg);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #333;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s;
}

.scroll-to-top:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

.scroll-to-top.show {
    display: flex;
}

/* Sepet Sayfası - Trendyol Benzeri Tasarım */
.cart-page-modern {
    background: #f5f5f5;
    min-height: calc(100vh - 200px);
}

/* Alert Stilleri */
.alert-warning-light {
    background-color: #fff8e1;
    border: 1px solid #ffcc02;
    color: #856404;
    border-radius: 8px;
}

.alert-success-light {
    background-color: #e8f5e9;
    border: 1px solid #4caf50;
    color: #2e7d32;
    border-radius: 8px;
}

.alert-orange-light {
    background-color: #fff3e0;
    border: 1px solid #ff9800;
    color: #e65100;
    border-radius: 8px;
}

.alert-info-light {
    background-color: #e3f2fd;
    border: 1px solid #2196f3;
    color: #1565c0;
    border-radius: 8px;
}

/* Sepet Ürün Kartı */
.cart-item-modern .card {
    border-radius: 12px;
    transition: all 0.3s;
}

.cart-item-modern .card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.cart-product-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.seller-info {
    display: flex;
    align-items: center;
}

/* Miktar Seçici */
.quantity-selector .input-group {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
}

.quantity-selector .btn {
    border: none;
    background: #f8f9fa;
    color: #495057;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
}

.quantity-selector .btn:hover {
    background: #e9ecef;
}

.quantity-selector .form-control {
    border: none;
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    font-weight: 600;
}

/* Fiyat Bölümü */
.price-section {
    text-align: left;
}

/* Sepet Özeti */
.cart-summary-modern .card {
    border-radius: 12px;
}

.cart-summary-modern .card-header {
    border-radius: 12px 12px 0 0;
    padding: 1rem 1.25rem;
}

.cart-summary-modern .card-body {
    padding: 1.25rem;
}

.summary-item {
    font-size: 0.95rem;
    color: #495057;
}

.summary-item span:last-child {
    font-weight: 500;
}

/* İndirim Kodu Butonu */
.btn-outline-secondary {
    border: 1px solid #dee2e6;
    color: #495057;
    transition: all 0.3s;
}

.btn-outline-secondary:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
}

/* Ürünler Sayfası Butonları - Beyaz Arka Plan */
.products-page .btn-primary {
    background-color: #fff !important;
    border-color: #dee2e6 !important;
    color: var(--text-primary) !important;
}

.products-page .btn-primary:hover {
    background-color: #f8f9fa !important;
    border-color: #adb5bd !important;
    color: var(--text-primary) !important;
}

.products-page .btn-outline-secondary {
    background-color: #fff !important;
    border-color: #dee2e6 !important;
    color: #495057 !important;
}

.products-page .btn-outline-secondary:hover {
    background-color: #f8f9fa !important;
    border-color: #adb5bd !important;
}

.products-page .btn-outline-secondary.active {
    background-color: #f8f9fa !important;
    border-color: #adb5bd !important;
}

.products-page .btn-light {
    background-color: #fff !important;
    border-color: #dee2e6 !important;
    color: #495057 !important;
}

.products-page .btn-light:hover {
    background-color: #f8f9fa !important;
    border-color: #adb5bd !important;
}

/* Sepeti Onayla Butonu */
.btn-warning {
    background: #ff9800;
    border-color: #ff9800;
    color: #ffffff;
    transition: all 0.3s;
}

.btn-warning:hover {
    background: #f57c00;
    border-color: #f57c00;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

/* Hesabım Sayfası - Sade Tasarım */
.account-page {
    background: #f5f5f5;
    min-height: calc(100vh - 200px);
}

/* Welcome Header */
.account-header-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.account-avatar .avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #6c757d;
    border: 2px solid #e9ecef;
}

.account-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

/* Sidebar */
.account-sidebar {
    background: #ffffff;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.account-menu-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.account-menu-item:hover {
    background: #f8f9fa;
    color: #333;
}

.account-menu-item.active {
    background: #f8f9fa;
    color: #333;
    border-left: 3px solid #333;
}

.account-menu-item.active .menu-icon {
    background: #e9ecef;
    color: #333;
}

.account-menu-item i.bi-chevron-right {
    color: #adb5bd;
    font-size: 0.875rem;
}

.menu-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #6c757d;
    transition: all 0.3s;
}

/* Account Cards */
.account-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
}

.card-header-modern {
    background: #ffffff;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.card-header-modern h5 {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

.card-body-modern {
    padding: 2rem;
}

.form-control-modern,
.form-select.form-control-modern {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s;
    background: #ffffff;
}

.form-control-modern:focus,
.form-select.form-control-modern:focus {
    border-color: #333;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
    outline: none;
}

.btn-primary-modern {
    background: #333;
    border: none;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary-modern:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-primary-modern.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 3rem;
    color: #adb5bd;
}

/* Settings */
.settings-section {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.notification-item {
    background: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
}

.notification-item .form-check-label {
    cursor: pointer;
}

.form-switch .form-check-input {
    width: 3rem;
    height: 1.5rem;
    cursor: pointer;
}

.form-switch .form-check-input:checked {
    background-color: #333;
    border-color: #333;
}

.account-section {
    animation: fadeIn 0.3s ease;
}

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

/* Responsive */
@media (max-width: 991px) {
    .account-header-card .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .account-avatar {
        margin: 0 auto 1rem;
    }
    
    .account-stats {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .cart-summary-modern {
        position: static !important;
    }
    
    .cart-product-image {
        width: 100px;
        height: 100px;
    }
}
