* {
    font-family: 'Montserrat', sans-serif !important;
}

body {
    padding-top: 120px;
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif !important;
}

/* Üst Bar */
.site-header .top-bar {
    background-color: #2d2d2d;
    padding: 0;
}

/* Ana Header */
.header-main {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid #e9ecef;
}

.header-main .vr {
    width: 1px;
    height: 20px;
    background-color: #dee2e6;
}

/* Logo */
.site-logo {
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

.site-logo:hover {
    opacity: 0.8;
}

/* Arama */
.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 250px;
    border-bottom: 1px solid #d0d0d0;
    padding-bottom: 5px;
    z-index: 1000;
}

.search-input {
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    padding: 0;
    font-size: 0.95rem;
    color: #666;
    font-family: 'Montserrat', sans-serif !important;
}

.search-input::placeholder {
    color: #999;
    font-size: 0.95rem;
}

.search-input:focus {
    color: #333;
}

.search-input-wrapper:focus-within {
    border-bottom-color: #333;
}

.search-button {
    background: none;
    border: none;
    padding: 0;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: color 0.2s ease;
}

.search-button:hover {
    color: #ff7f00;
}

.search-button i {
    font-size: 1.1rem;
    stroke-width: 1.5;
}

/* Arama Sonuçları Dropdown */
.search-results-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1050;
    margin-top: 0;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: #f8f9fa;
    text-decoration: none;
    color: #333;
}

.search-result-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 12px;
    flex-shrink: 0;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #2d3748;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-price {
    font-size: 0.85rem;
    color: #ff7f00;
    font-weight: 600;
}

.search-result-category {
    font-size: 0.75rem;
    color: #999;
    margin-top: 2px;
}

.search-results-empty {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.search-results-loading {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.search-results-loading i {
    animation: spin 1s linear infinite;
}

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

/* İkonlar */
.header-icons .header-icon-link {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.header-icons .header-icon-link:hover {
    color: #ff7f00;
}

.header-icons .header-icon-link i {
    display: block;
}

/* Badge */
.badge-circle {
    border-radius: 50%;
    padding: 0.35rem 0.55rem;
    font-size: 0.7rem;
    min-width: 20px;
    text-align: center;
}

/* Kategori Menüsü - Slider Üstü */
.category-nav-top {
    background: transparent;
    border-bottom: none;
    margin-top: 0;
    padding: 0;
}

.category-nav-list-top {
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.category-nav-list-top .nav-item {
    margin: 0;
}

.category-nav-list-top .nav-link {
    color: #333;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
    text-decoration: none;
}

.category-nav-list-top .nav-link:hover {
    color: #ff7f00;
    background: transparent;
}

.category-nav-list-top .nav-link.active {
    color: #ff7f00;
    background: transparent;
    border-bottom-color: #ff7f00;
    font-weight: 600;
}

/* Ürün Kartları */
.product-card {
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    border: none;
    background: transparent;
    position: relative;
    overflow: hidden;
}

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

/* Ürün kartı resimleri - Sabit boyut */
.product-card .card-img-top {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
}

/* Favori butonu - Ürün resminin sağ üst köşesi */
.favorite-btn-image {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 8px;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    z-index: 10;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    border-radius: 50%;
}

.favorite-btn-image:hover {
    color: #dc3545;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.favorite-btn-image.favorite-active {
    color: #dc3545 !important;
}

.favorite-btn-image:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Product detail sayfasındaki favori butonu */
.product-favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #666;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-favorite-btn:hover {
    background: #fff;
    color: #dc3545;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.product-favorite-btn.favorite-active:hover {
    background: #c82333;
}

.product-favorite-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.favorite-active {
    color: #dc3545 !important;
}

/* Slider */
.home-slider-wrapper {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 90px;
    padding-right: 90px;
    margin-top: 0;
}

.home-slider .carousel-item {
    max-height: 420px;
}

.home-slider .slider-img {
    object-fit: cover;
    height: 420px;
}

.home-slider .slider-placeholder {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    height: 420px;
}

.home-slider .carousel-caption {
    background: rgba(0, 0, 0, 0.45);
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
}

/* Mağaza Banner */
.store-banner-section {
    margin-top: 2rem;
}

.store-banner-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.store-banner-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: cover;
}

.store-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    border-radius: 0 0 12px 12px;
}

.store-banner-text {
    color: #fff;
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Responsive - Mağaza Banner */
@media (max-width: 767px) {
    .store-banner-section {
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .store-banner-image {
        max-height: 250px;
    }
    
    .store-banner-text {
        font-size: 0.9rem;
    }
    
    .store-banner-overlay {
        padding: 0.75rem 1rem !important;
    }
}

/* Responsive */
@media (max-width: 991px) {
    body {
        padding-top: 140px;
    }
    
    .header-main .col-md-4 {
        margin-bottom: 1rem;
    }
    
    .header-main .col-md-4:last-child {
        margin-bottom: 0;
    }
    
    .category-nav-list-top {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .category-nav-list-top .nav-link {
        white-space: nowrap;
        padding: 0.75rem 1rem;
    }
}

/* Ürün Detay Sayfası */
.product-detail-wrapper {
    padding: 2rem 0;
 }

.product-image-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.product-main-image-wrapper {
    width: 100%;
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.product-main-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    background: #f8f9fa;
}

.product-favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.product-favorite-btn:hover {
    background: #fff;
    transform: scale(1.1);
    color: #dc3545;
}

.product-favorite-btn.favorite-active {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.product-thumbnails-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 80px;
}

.thumbnail-list-wrapper {
    flex: 1;
    overflow: hidden;
    max-height: 500px;
}

.thumbnail-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
    scroll-behavior: smooth;
    padding: 0.25rem 0;
}

.thumbnail-list::-webkit-scrollbar {
    width: 4px;
}

.thumbnail-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.thumbnail-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}

.thumbnail-item {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail-item:hover {
    border-color: #667eea;
    transform: scale(1.05);
}

.thumbnail-item.active {
    border-color: #667eea;
    border-width: 3px;
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Yatay Thumbnail'lar (Ana Resmin Altında) */
.product-thumbnails-horizontal {
    width: 100%;
    margin-top: 1rem;
}

.thumbnail-list-horizontal {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.5rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.thumbnail-list-horizontal::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-list-horizontal::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.thumbnail-list-horizontal::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.thumbnail-list-horizontal::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.thumbnail-item-horizontal {
    width: 100px;
    height: 100px;
    min-width: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail-item-horizontal:hover {
    border-color: #ff7f00;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 127, 0, 0.2);
}

.thumbnail-item-horizontal.active {
    border-color: #ff7f00;
    border-width: 3px;
    box-shadow: 0 4px 12px rgba(255, 127, 0, 0.3);
}

.thumbnail-img-horizontal {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumbnail-nav-btn {
    width: 70px;
    height: 30px;
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.thumbnail-nav-btn:hover {
    background: #f8f9fa;
    border-color: #667eea;
    color: #667eea;
}

.thumbnail-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Ürün Bilgileri */
.product-info {
    padding-left: 2rem;
}

.product-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 0.5rem;
}

.product-category {
    font-size: 0.95rem;
}

.product-pricing {
    padding: 1.5rem 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.price-label {
    font-size: 1rem;
    color: #666;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2d2d2d;
}

.price-discount-info {
    margin-top: 0.5rem;
}

.discount-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: #ff6b6b;
    color: #fff;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-stock {
    font-size: 0.95rem;
}

.stock-available,
.stock-unavailable {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.product-actions {
    margin-top: 1.5rem;
}

.btn-add-to-cart {
    width: 100%;
    padding: 1rem 2rem;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.product-extras {
    padding: 1.5rem 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.extra-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: #555;
}

.extra-link {
    margin-left: auto;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.extra-link:hover {
    text-decoration: underline;
}

.product-description {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 1rem;
}

.description-content {
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .product-info {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .product-image-gallery {
        flex-direction: column;
    }
    
    .product-thumbnails-vertical {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }
    
    .thumbnail-list-wrapper {
        max-height: 100px;
    }
    
    .thumbnail-list {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    .thumbnail-nav-btn {
        display: none;
    }
}

@media (max-width: 767px) {
    /* Eski header mobil düzeni kaldırıldı, yeni mobil header aşağıdaki bölümlerde tanımlı */
}

/* Sosyal Medya Linkleri */
.social-links {
    display: inline-flex;
    gap: 0.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: #fff;
}

.social-link.bi-facebook:hover,
.social-link:has(.bi-facebook):hover {
    background: #1877f2;
}

.social-link.bi-instagram:hover,
.social-link:has(.bi-instagram):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.bi-twitter:hover,
.social-link:has(.bi-twitter):hover {
    background: #1da1f2;
}

.social-link.bi-youtube:hover,
.social-link:has(.bi-youtube):hover {
    background: #ff0000;
}

/* Footer Genel */
footer.bg-light {
    background-color: #f8fafc;
}

.footer-title {
    color: #2d3748;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.footer-section a {
    font-size: 0.9rem;
}

.footer-section i {
    color: #a0aec0;
}

/* Footer Mobil Uyumluluk */
@media (max-width: 767px) {
    footer.bg-light {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    footer .row.mb-4 {
        margin-bottom: 1.5rem !important;
    }

    .footer-section {
        background-color: #ffffff;
        border-radius: 12px;
        padding: 1rem 1.25rem;
        box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
        text-align: left;
    }

    .footer-section + .footer-section {
        margin-top: 0.75rem;
    }

    footer h6.footer-title {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    footer .text-muted {
        font-size: 0.85rem;
    }

    footer .social-links {
        justify-content: flex-start;
        margin-top: 0.25rem;
        flex-wrap: wrap;
    }

    footer .row.pt-3.border-top,
    footer .row.mt-3.pt-3.border-top {
        border-top: none !important;
        margin-top: 1.25rem !important;
        padding-top: 0 !important;
    }

    footer .row.mt-3.pt-3.border-top .text-muted.small {
        font-size: 0.8rem;
    }
}

/* ============================================
   MOBİL UYUMLULUK - KAPSAMLI RESPONSIVE
   ============================================ */

/* Tablet ve Küçük Ekranlar (991px ve altı) */
@media (max-width: 991px) {
    body {
        padding-top: 140px;
    }
    
    /* Header Mobil Düzenlemeleri */
    .header-main .col-md-4 {
        margin-bottom: 1rem;
    }
    
    .header-main .col-md-4:last-child {
        margin-bottom: 0;
    }
    
    .site-logo {
        max-height: 80px !important;
    }
    
    .top-bar {
        font-size: 0.75rem;
        padding: 0.25rem 0;
    }
    
    /* Arama Mobil */
    .header-search-form {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .search-input-wrapper {
        width: 100%;
    }
    
    /* Kategori Menüsü Mobil */
    .category-nav-list-top {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }
    
    .category-nav-list-top .nav-link {
        white-space: nowrap;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Slider Mobil (tablet ve küçük ekranlar) */
    .home-slider-wrapper {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .home-slider .slider-img {
        width: 100%;
        height: auto;
        aspect-ratio: 340 / 456; /* Mobil tasarım ölçüsü */
        object-fit: cover;
    }
    
    .home-slider .slider-placeholder {
        width: 100%;
        height: auto;
        aspect-ratio: 340 / 456;
    }
    
    /* Ürün Kartları Mobil */
    .product-card {
        margin-bottom: 1.5rem;
    }
    
    .product-card .card-img-top {
        height: 200px;
    }
    
    /* Features Section Mobil */
    .features-section {
        padding: 2rem 1rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
    
    /* Collections Section Mobil */
    .collections-section {
        padding: 2rem 1rem;
    }
    
    .collection-card {
        margin-bottom: 1.5rem;
    }
}

/* Mobil Cihazlar (767px ve altı) */
@media (max-width: 767px) {
    body {
        padding-top: 80px;
    }
    
    /* Header Mobil - Yeni Düzen */
    .header-main {
        padding: 0.5rem 0 !important;
    }
    
    .header-main .d-flex {
        padding: 0 5px;
        margin: 0 -10px;
    }
    
    .header-main .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .mobile-logo {
        max-height: 80px !important;
    }
    
    .mobile-menu-btn,
    .mobile-menu-btn i {
        font-size: 1.5rem !important;
    }
    
    /* Mobil Offcanvas Menü */
    .offcanvas-body .list-unstyled a {
        font-size: 1rem;
        padding: 0.75rem 0;
    }
    
    .offcanvas-body .list-unstyled a i {
        width: 24px;
    }
    
    /* Mobil Ürünler Menü Chevron */
    .mobile-products-chevron {
        transition: transform 0.3s ease;
    }
    
    .mobile-products-toggle[aria-expanded="true"] .mobile-products-chevron {
        transform: rotate(180deg);
    }
    
    /* Mobil Kategoriler Collapse */
    #mobileCategoriesCollapse {
        transition: height 0.3s ease;
    }
    
    #mobileCategoriesCollapse .list-unstyled li a {
        transition: all 0.2s ease;
    }
    
    #mobileCategoriesCollapse .list-unstyled li a:hover {
        padding-left: 0.5rem;
        color: #ff7f00 !important;
    }
    
    /* Top Bar Mobil */
    .top-bar {
        font-size: 0.7rem;
        padding: 0.3rem 0;
    }
    
    .top-bar .container {
        padding: 0 10px;
    }

    /* Header ile içerik arasındaki boşluğu azalt */
    main.container.my-4 {
        margin-top: 0.5rem;
    }
    
    /* Top Bar Mobil */
    .top-bar {
        font-size: 0.7rem;
        padding: 0.3rem 0;
    }
    
    .top-bar .container {
        padding: 0 10px;
    }
    
    /* Mobil Header Butonları */
    .header-main .btn-link {
        padding: 0.25rem;
        min-width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .header-main .btn-link i {
        font-size: 1.5rem;
    }
    
    /* Kategori Menüsü Mobil */
    .category-nav-top {
        padding: 0.75rem 0;
    }
    
    .category-nav-list-top {
        padding: 0 15px;
    }
    
    .category-nav-list-top .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    /* Slider Mobil - Telefonlar için tam genişlik, 340x456 oranı */
    .home-slider-wrapper {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0;
        margin-right: 0;
    }
    
    .home-slider .slider-img {
        width: 100%;
        height: auto;
        aspect-ratio: 340 / 456; /* Mobil tasarım ölçüsü */
        object-fit: cover;
    }
    
    .home-slider .slider-placeholder {
        width: 100%;
        height: auto;
        aspect-ratio: 340 / 456;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    /* Ürün Kartları Mobil */
    .product-card {
        margin-bottom: 1.25rem;
    }
    
    .product-card .card-img-top {
        height: 180px;
    }
    
    .product-card .card-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .product-card .product-price {
        font-size: 1.1rem;
    }

.product-price-old {
    font-size: 0.9rem;
    color: #a0aec0;
    text-decoration: line-through;
    margin-bottom: 0.1rem;
}

.product-price-new,
.product-price-single {
    color: #ffc107;
    font-weight: 700;
    font-size: 1.05rem;
}

.product-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}
    
    /* Features Section Mobil - Slider */
    .features-section {
        padding: 1.5rem 0;
    }
    
    .features-slider-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #ff7f00 transparent;
        padding-bottom: 0.5rem;
        margin: 0 0.75rem;
    }
    
    .features-slider-wrapper::-webkit-scrollbar {
        height: 4px;
    }
    
    .features-slider-wrapper::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .features-slider-wrapper::-webkit-scrollbar-thumb {
        background: #ff7f00;
        border-radius: 2px;
    }
    
    .features-slider {
        display: flex;
        gap: 1rem;
        padding: 0 0.5rem;
        min-width: max-content;
    }
    
    .features-slider .feature-card {
        flex: 0 0 calc(85vw - 2rem);
        max-width: calc(85vw - 2rem);
        min-width: calc(85vw - 2rem);
        padding: 1.25rem;
        margin-bottom: 0;
    }
    
    .feature-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
    
    /* Collections Section Mobil */
    .collections-section {
        padding: 1.5rem 0.75rem;
    }
    
    .collections-header {
        margin-bottom: 1.5rem;
    }
    
    .collections-title {
        font-size: 1.5rem;
    }
    
    .collections-subtitle {
        font-size: 0.9rem;
    }
    
    .collection-card {
        margin-bottom: 0.75rem;
    }
    
    .collection-image-wrapper {
        height: 140px;
    }
    
    .collection-name {
        font-size: 0.9rem;
        padding: 0.6rem;
    }
    
    /* Mobilde 2 kolon için gap ayarı */
    .collections-section .row {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 0.75rem;
    }
    
    /* Ürün Detay Sayfası Mobil */
    .product-detail-wrapper {
        padding: 1rem 0;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .product-image-gallery {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .product-thumbnails-vertical {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }
    
    .thumbnail-list-wrapper {
        max-height: 100px;
    }
    
    .thumbnail-list {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    .thumbnail-nav-btn {
        display: none;
    }
    
    /* Sepet Sayfası Mobil */
    .cart-page-wrapper {
        padding: 1rem 0;
    }
    
    .cart-item-card {
        flex-direction: column;
    }
    
    .cart-item-image {
        width: 100%;
        max-width: 150px;
        margin: 0 auto 1rem;
    }
    
    .cart-item-details {
        width: 100%;
        text-align: center;
    }
    
    .cart-summary-card {
        margin-top: 1.5rem;
    }
    
    /* Hesabım Sayfası Mobil */
    .account-sidebar {
        margin-bottom: 1.5rem;
    }
    
    .account-content-card {
        padding: 1rem;
    }
    
    /* Favoriler Sayfası Mobil */
    .favorites-header {
        padding: 1rem 0;
    }
    
    .favorites-product-card {
        flex-direction: column;
    }
    
    .favorites-product-image-wrapper {
        width: 100%;
        max-width: 200px;
        margin: 0 auto 1rem;
    }
    
    /* Footer Mobil */
    footer {
        padding: 2rem 0 1rem;
    }
    
    footer .row > div {
        margin-bottom: 1.5rem;
    }
    
    /* WhatsApp ve Instagram Butonları Mobil */
    .whatsapp-button,
    .instagram-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        font-size: 1.5rem;
    }
    
    .instagram-float {
        bottom: 80px;
    }
    
    /* Arama Sonuçları Dropdown Mobil */
    .search-results-dropdown {
        max-height: 300px;
        overflow-y: auto;
    }
    
    .search-result-item {
        padding: 0.75rem;
    }
    
    .search-result-image {
        width: 50px;
        height: 50px;
    }
    
    .search-result-name {
        font-size: 0.9rem;
    }
    
    .search-result-price {
        font-size: 0.85rem;
    }
}

/* Çok Küçük Mobil Cihazlar (575px ve altı) */
@media (max-width: 575px) {
    body {
        padding-top: 200px;
    }
    
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Header Çok Küçük Ekranlar */
    .site-logo {
        max-height: 80px !important;
    }
    
    .header-main .col-md-4:first-child {
        font-size: 0.75rem;
    }
    
    .header-main .col-md-4:first-child > div {
        margin: 0 0.25rem;
    }
    
    /* Slider Çok Küçük - Aynı oranı koru */
    .home-slider .slider-img {
        width: 100%;
        height: auto;
        aspect-ratio: 340 / 456;
    }
    
    .home-slider .slider-placeholder {
        width: 100%;
        height: auto;
        aspect-ratio: 340 / 456;
    }
    
    /* Ürün Kartları Çok Küçük */
    .product-card .card-img-top {
        height: 150px;
    }
    
    .product-card .card-title {
        font-size: 0.9rem;
    }
    
    .product-card .product-price {
        font-size: 1rem;
    }
    
    /* Features Çok Küçük */
    .features-section {
        padding: 1rem 0.5rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon {
        font-size: 1.25rem;
    }
    
    .feature-title {
        font-size: 0.9rem;
    }
    
    .feature-description {
        font-size: 0.8rem;
    }
    
    /* Collections Çok Küçük */
    .collections-section {
        padding: 1rem 0.5rem;
    }
    
    .collections-title {
        font-size: 1.25rem;
    }
    
    .collections-subtitle {
        font-size: 0.85rem;
    }
    
    .collection-image-wrapper {
        height: 110px;
    }
    
    .collection-name {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
    
    /* Çok küçük ekranlarda da 2 kolon koru */
    .collections-section .row {
        --bs-gutter-x: 0.5rem;
        --bs-gutter-y: 0.5rem;
    }
    
    /* Ürün Detay Çok Küçük */
    .product-title {
        font-size: 1.25rem;
    }
    
    .price-amount {
        font-size: 1.25rem;
    }
    
    .btn-add-to-cart {
        width: 100%;
        padding: 0.75rem;
    }
    
    /* Sepet Çok Küçük */
    .cart-item-image {
        max-width: 120px;
    }
    
    .cart-item-name {
        font-size: 0.9rem;
    }
    
    .cart-item-price {
        font-size: 0.9rem;
    }
    
    /* Sayfalama Mobil */
    .pagination {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .pagination .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* About Sayfası Mobil */
@media (max-width: 767px) {
    .about-hero {
        padding: 3rem 1rem !important;
        min-height: 250px !important;
    }
    
    .about-hero h1 {
        font-size: 2rem !important;
    }
    
    .about-hero p {
        font-size: 1rem !important;
    }
    
    .about-section {
        padding: 2rem 1rem !important;
    }
    
    .about-content-card {
        padding: 1.5rem !important;
    }
    
    .timeline {
        padding-left: 1.5rem !important;
    }
    
    .timeline-item {
        margin-bottom: 2rem !important;
    }
    
    .timeline-content {
        padding: 1rem !important;
    }
    
    .timeline-year {
        font-size: 1.25rem !important;
    }
    
    .quality-policy-section {
        padding: 2rem 1rem !important;
    }
    
    .quality-policy-card {
        padding: 1.5rem !important;
    }
    
    .quality-policy-title {
        font-size: 1.5rem !important;
    }
    
    .quality-policy-item {
        padding: 0.75rem !important;
    }
}

/* Checkout Sayfası Mobil */
@media (max-width: 767px) {
    .checkout-wrapper {
        padding: 1rem 0;
    }
    
    .checkout-form-card,
    .checkout-summary-card {
        margin-bottom: 1.5rem;
        padding: 1rem;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .form-control,
    .form-select {
        font-size: 0.9rem;
        padding: 0.6rem;
    }
    
    .btn-checkout {
        width: 100%;
        padding: 0.75rem;
        font-size: 1rem;
    }
    
    .address-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .payment-method-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
}

/* Yatay Mod (Landscape) Mobil */
@media (max-width: 991px) and (orientation: landscape) {
    body {
        padding-top: 120px;
    }
    
    .home-slider .slider-img {
        height: 200px;
    }
    
    .home-slider .slider-placeholder {
        height: 200px;
    }
}

/* Vitrin Ürünleri Bölümü */
.featured-products-section {
    padding: 3rem 0;
    background-color: transparent;
}

/* Kategori Filtreleri */
.featured-category-filters {
    margin-top: 1.5rem;
}

.featured-category-btn {
    padding: 0.6rem 1.5rem;
    border: 2px solid #e2e8f0;
    background-color: #fff;
    color: #2d3748;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.featured-category-btn:hover {
    border-color: #ff7f00;
    color: #ff7f00;
    background-color: #fff;
}

.featured-category-btn.active {
    background-color: #ff7f00;
    border-color: #ff7f00;
    color: #fff;
}

.featured-header {
    text-align: center;
}

.featured-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.featured-slider-wrapper {
    position: relative;
    padding: 0 50px;
}

.featured-carousel {
    position: relative;
}

.featured-product-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
    height: 100%;
}

.featured-product-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

/* Vitrin ürünü resimleri - Sabit boyut */
.featured-product-card .card-img-top {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
}

.featured-control-prev,
.featured-control-next {
    width: 45px;
    height: 45px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
}

.featured-control-prev {
    left: 0;
}

.featured-control-next {
    right: 0;
}

.featured-control-prev-icon,
.featured-control-next-icon {
    background-color: #2d3748;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.featured-control-prev:hover .featured-control-prev-icon,
.featured-control-next:hover .featured-control-next-icon {
    background-color: #ff7f00;
}

/* Vitrin Ürünleri Mobil */
@media (max-width: 991px) {
    .featured-products-section {
        padding: 2rem 0;
    }
    
    .featured-title {
        font-size: 1.5rem;
    }
    
    .featured-slider-wrapper {
        padding: 0 40px;
    }
    
    .featured-product-card .card-img-top {
        height: 200px !important;
    }
}

@media (max-width: 767px) {
    .featured-products-section {
        padding: 1.5rem 0;
    }
    
    .featured-title {
        font-size: 1.25rem;
    }
    
    .featured-slider-wrapper {
        padding: 0 35px;
    }
    
    .featured-control-prev,
    .featured-control-next {
        width: 35px;
        height: 35px;
    }
    
    .featured-control-prev-icon,
    .featured-control-next-icon {
        width: 20px;
        height: 20px;
    }
    
    .featured-product-card .card-img-top {
        height: 180px !important;
    }
    
    .featured-product-card .card-title {
        font-size: 0.95rem;
        min-height: 40px !important;
    }
    
    .featured-product-card .product-price {
        font-size: 1rem !important;
    }
}

/* Global fiyat stilleri (indirimli fiyatlar için) */
.product-price-old {
    font-size: 0.9rem;
    color: #a0aec0;
    text-decoration: line-through;
    margin-bottom: 0.1rem;
}

.product-price-new,
.product-price-single {
    color: #ffc107;
    font-weight: 700;
    font-size: 1.05rem;
}

/* ============================================
   KATEGORİLER SAYFASI STİLLERİ
   ============================================ */

/* Kategori Kartları */
.category-card {
    cursor: pointer;
    border: 2px solid #e9ecef !important;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #fff;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 127, 0, 0.15);
    border-color: #ff7f00 !important;
}

.category-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff7f00 0%, #ffa500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 127, 0, 0.2);
}

.category-icon-wrapper i {
    font-size: 2rem;
    color: #fff;
}

.category-card:hover .category-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 127, 0, 0.35);
    background: linear-gradient(135deg, #ff9500 0%, #ff7f00 100%);
}

.category-card-title {
    color: #2d3748;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.category-card:hover .category-card-title {
    color: #ff7f00;
}

.category-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, #ff7f00 0%, #ffa500 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 127, 0, 0.2);
    transition: all 0.3s ease;
}

.category-card:hover .category-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 127, 0, 0.3);
}

/* Breadcrumb Stilleri */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
}

.breadcrumb-item a {
    color: #ff7f00;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #ff9500;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #718096;
}

/* Sayfalama Stilleri */
.pagination .page-link {
    color: #ff7f00;
    border-color: #e9ecef;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.pagination .page-link:hover {
    background-color: #ff7f00;
    color: #fff;
    border-color: #ff7f00;
}

.pagination .page-item.active .page-link {
    background-color: #ff7f00;
    border-color: #ff7f00;
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    color: #cbd5e0;
    cursor: not-allowed;
}

/* Responsive - Kategoriler Sayfası */
@media (max-width: 767px) {
    .category-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .category-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .category-card-title {
        font-size: 1rem;
    }
}

/* Projeler Sayfası */
.project-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
}

.project-image {
    transition: transform 0.3s ease;
}

.project-overlay {
    background: rgba(255, 127, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

/* Proje Modal */
#projectModal .modal-content {
    border-radius: 12px;
    overflow: hidden;
}

#projectModal .modal-header {
    background: linear-gradient(135deg, #ff7f00 0%, #ffa500 100%);
}

#projectModal .modal-body img {
    max-height: 70vh;
    object-fit: contain;
    background: #f8f9fa;
}

/* Proje Modal Thumbnails */
.thumbnail-img:hover {
    border-color: #ff7f00 !important;
    opacity: 0.8;
}

/* Responsive - Projeler Sayfası */
@media (max-width: 767px) {
    .project-card {
        margin-bottom: 1rem;
    }
    
    .project-image-wrapper {
        height: 250px !important;
    }
    
    #projectModalThumbnails {
        padding: 0.75rem !important;
    }
    
    .thumbnail-img {
        width: 60px !important;
        height: 60px !important;
    }
}

/* Taksit Seçenekleri Tablosu */
.installment-options {
    margin-top: 1rem;
}

.installment-options .accordion-item {
    border: 1px solid #dee2e6 !important;
    border-radius: 8px !important;
    overflow: hidden;
}

.installment-options .accordion-button {
    box-shadow: none !important;
    padding: 1rem 1.25rem;
    font-size: 1rem;
}

.installment-options .accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #2d3748;
}

.installment-options .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232d3748'%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");
}

.installment-table {
    font-size: 0.9rem;
}

.installment-table thead th {
    background-color: #f8f9fa !important;
    color: #2d3748 !important;
    border: none;
    font-weight: 600;
}

.installment-table tbody tr {
    transition: background-color 0.2s ease;
}

.installment-table tbody tr:hover {
    background-color: #f8f9fa !important;
}

.installment-table tbody td {
    border-top: 1px solid #dee2e6;
    vertical-align: middle;
}

.installment-table tbody tr:first-child td {
    border-top: none;
}

.installment-table tbody tr.table-light {
    background-color: #f8f9fa;
}

.installment-table .badge {
    font-weight: 500;
    padding: 0.25rem 0.5rem;
}

/* Responsive - Taksit Tablosu */
@media (max-width: 767px) {
    .installment-table {
        font-size: 0.85rem;
    }
    
    .installment-table th,
    .installment-table td {
        padding: 0.5rem !important;
    }
    
    .installment-options .accordion-button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Ürünler Dropdown - Hover ile Açılma */
.dropdown#productsDropdown,
.dropdown#productsDropdown .dropdown-toggle {
    position: relative;
}

.dropdown#productsDropdown:hover .dropdown-menu {
    display: block !important;
    margin-top: 0;
}

.dropdown#productsDropdown .dropdown-menu {
    margin-top: 0.5rem;
}

.dropdown#productsDropdown .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #667eea;
    padding-left: 1.5rem;
}

.dropdown#productsDropdown .dropdown-item i {
    transition: transform 0.2s ease;
}

.dropdown#productsDropdown .dropdown-item:hover i {
    transform: translateX(3px);
}
