/* ===== URUNLER PREMIUM CSS ===== */

/* Hero Banner Section */
.hero-banner {
    position: relative;
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    letter-spacing: 2px;
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-breadcrumb a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
    color: #f4d03f;
}

.hero-breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* Filter Section */
.filter-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    border-bottom: 1px solid #dee2e6;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.search-container {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #dee2e6;
    border-radius: 50px;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.filter-chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.filter-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.filter-chip:hover {
    border-color: #d4af37;
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.filter-chip.active {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-color: #d4af37;
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.chip-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.filter-chip.active .chip-count {
    background: rgba(255, 255, 255, 0.3);
}

/* Products Grid Section */
.products-grid-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #d4af37;
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

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

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-diameter {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.badge-tse {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-info p {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #495057;
}

.spec-item i {
    color: #d4af37;
    width: 16px;
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: white;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.pagination-info {
    color: #6c757d;
    font-size: 0.95rem;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 25px;
    color: #495057;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pagination-btn:hover:not(:disabled) {
    border-color: #d4af37;
    color: #d4af37;
    transform: translateY(-2px);
}

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

.pagination-numbers {
    display: flex;
    gap: 5px;
}

.pagination-number {
    width: 40px;
    height: 40px;
    border: 2px solid #dee2e6;
    background: white;
    border-radius: 50%;
    color: #495057;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-number:hover {
    border-color: #d4af37;
    color: #d4af37;
}

.pagination-number.active {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-color: #d4af37;
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    /* Mobil Kayma ve Overflow Sorunları Çözümü */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    /* Container'ları sınırla */
    .container,
    .topbar-container,
    .navbar-container {
        max-width: 100%;
        overflow-x: hidden;
        padding: 0 15px;
    }
    
    /* Hero section düzeltmeleri */
    .products-hero {
        height: 60vh;
        min-height: 500px;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }
    
    .hero-content {
        padding: 0 15px;
        max-width: 100%;
        text-align: center;
    }
    
    .title-main {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .title-highlight {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Topbar ve Navbar */
    .topbar {
        height: 35px;
        width: 100%;
        max-width: 100vw;
    }
    
    .navbar {
        top: 35px;
        height: 65px;
        width: 100%;
        max-width: 100vw;
    }
    
    .navbar.scrolled {
        height: 60px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .filter-header {
        flex-direction: column;
        text-align: center;
    }
    
    .filter-header h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .filter-chips-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* Tablet için 3 sütun */
        gap: 15px;
        padding: 25px 20px;
    }
    
    .filter-chip {
        padding: 12px 18px;
        font-size: 13px;
        text-align: center;
        justify-content: center;
        min-height: 55px;
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 4px;
    }
    
    .pagination-container {
        flex-direction: column;
        text-align: center;
    }
    
    .pagination-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 120px 15px 0; /* Logo çakışmasını önlemek için daha fazla üst padding */
    }
    
    .title-main {
        font-size: 1.6rem; /* 2rem → 1.6rem - daha küçük ana başlık */
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .title-highlight {
        font-size: 1rem; /* 1.2rem → 1rem - daha küçük vurgu başlık */
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 12px; /* Daha az boşluk */
        margin-top: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem; /* Daha küçük istatistik numaraları */
        line-height: 1.2;
    }
    
    .stat-label {
        font-size: 0.8rem; /* Daha küçük istatistik etiketleri */
        line-height: 1.3;
    }
    
    .filter-chips-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 sütun */
        gap: 12px;
        padding: 20px 15px;
        max-height: none;
        overflow: visible;
    }
    
    .filter-chip {
        flex-shrink: 0;
        padding: 14px 16px; /* Daha büyük dokunma alanı */
        font-size: 13px;
        border-radius: 20px;
        text-align: center;
        justify-content: center;
        min-height: 50px; /* Minimum yükseklik */
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 4px;
    }
    
    .filter-chip i {
        font-size: 16px; /* İkon boyutu */
        margin-bottom: 2px;
    }
    
    .chip-count {
        font-size: 11px;
        padding: 2px 6px;
        border-radius: 10px;
        margin-top: 2px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-info h3 {
        font-size: 1.1rem;
    }
}

/* Loading States */
.product-card.loading {
    opacity: 0.6;
    pointer-events: none;
}

.product-card.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Filter Animation */
.product-card.filtered-out {

/* ===== ÜRÜNLERİMİZ SAYFA MOBİL DÜZELTMELERİ ===== */
@media (max-width: 768px) {
    /* Temel sayfa yapısı - Sağa kayma önle */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Tüm container'ları sınırla */
    .container,
    .topbar-container,
    .navbar-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }
    
    /* Hero banner düzeltmeleri */
    .hero-banner {
        height: 60vh !important;
        min-height: 400px !important;
        width: 100% !important;
        max-width: 100vw !important;
        overflow: hidden !important;
        margin-bottom: 0 !important;
    }
    
    .hero-content {
        padding: 0 25px !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }
    
    /* Hero başlık düzeltmeleri - ÜRÜNLERİMİZ yazısı */
    .hero-title {
        font-size: 1.4rem !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
        letter-spacing: 0px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
        letter-spacing: 0px !important;
        max-width: 100% !important;
    }
    
    .hero-description {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        padding: 0 10px !important;
        margin-bottom: 25px !important;
        max-width: 100% !important;
    }
    
    .hero-stats {
        gap: 15px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        padding: 0 10px !important;
        max-width: 100% !important;
    }
    
    /* Ürün kategorileri bölümü */
    .products-section {
        padding: 40px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .section-header {
        padding: 0 25px !important;
        margin-bottom: 30px !important;
        text-align: center !important;
    }
    
    .section-title {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }
    
    .section-subtitle {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        max-width: 100% !important;
    }
    
    /* Ürün grid düzeltmeleri */
    .products-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 20px !important;
        padding: 0 25px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Ürün kartları */
    .product-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    .product-image {
        width: 100% !important;
        height: 200px !important;
        object-fit: cover !important;
    }
    
    .product-info {
        padding: 15px !important;
    }
    
    .product-title {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }
    
    .product-description {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 15px !important;
    }
    
    /* Arama ve filtre */
    .search-filter-section {
        padding: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .search-box {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 15px !important;
        box-sizing: border-box !important;
    }
    
    .filter-buttons {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    .filter-btn {
        font-size: 0.85rem !important;
        padding: 8px 12px !important;
        white-space: nowrap !important;
    }
    
    /* Main content alt boşluk */
    .main-content {
        padding-bottom: 80px !important; /* Alt menü için boşluk */
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
}

/* Küçük mobil cihazlar */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.2rem !important;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 15px !important;
        padding: 0 15px !important;
    }
    
    .container,
    .topbar-container,
    .navbar-container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
        gap: 25px !important;
    }
}

