.category-filter {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.category-btn {
    padding: 0.7rem 1.3rem;
    border: none;
    background: #667eea;
    color: #fff;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    min-height: 44px;
}

.category-btn:hover,
.category-btn.active {
    background: #5568d3;
    transform: translateY(-2px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
    padding: 0.5rem 1rem;
    border: 2px solid #667eea;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #667eea;
}

.contact-btn {
    background: #667eea;
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
}

.mobile-menu {
    display: none;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem;
}

.mobile-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
    min-height: 44px;
}

.mobile-menu a:hover {
    background: rgba(102, 126, 234, 0.2);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('foto/hero-bg.jpg') no-repeat center center/cover;
}

.product-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: fit-content;
    animation: slideProducts 20s linear infinite;
}

@keyframes slideProducts {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.slider-item {
    min-width: 300px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0.15;
}

.slider-product {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transform: scale(0.8);
}

.slider-product-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.slider-product-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.slider-product-price {
    font-size: 2rem;
    font-weight: bold;
    color: #764ba2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.hero-content {
    z-index: 10;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-cta-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #667eea;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-height: 44px;
}

.hero-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    cursor: pointer;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 3px solid white;
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background: white;
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

#products-section,
#hakkimizda,
#yorumlar,
#sss {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: bold;
}

.products {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    justify-content: center;
    gap: 25px;
    grid-template-columns: repeat(4, minmax(250px, 1fr));
}

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 250px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.product-price {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: bold;
}

#hakkimizda {
    background: white;
}

#hakkimizda p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-container {
    overflow: hidden;
    position: relative;
}

.review-track {
    display: flex;
    gap: 2rem;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.review {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    min-width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
}

.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    background: #667eea;
    color: white;
    transition: background 0.3s;
    min-height: 44px;
}

.faq-question:hover {
    background: #5568d3;
}

.faq-answer {
    padding: 1.5rem;
    display: none;
    background: white;
}

.faq-item.active .faq-answer {
    display: block;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    margin: 3% auto;
    padding: 3rem;
    border-radius: 20px;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideIn {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    font-size: 2.5rem;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #333;
}

.modal h2 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.modal-product-icon {
    font-size: 5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.modal-product-image {
    width: 100%;
    max-height: 350px;
    background: #f0f0f0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.modal-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-product-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #667eea;
    margin: 1.5rem 0;
    text-align: center;
}

.modal-product-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.whatsapp-order-btn {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: #25D366;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: bold;
    transition: all 0.3s;
    min-height: 44px;
}

.whatsapp-order-btn:hover {
    background: #1ea952;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 30px auto;
    flex-wrap: wrap;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 20px;
    width: fit-content;
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    background: linear-gradient(135deg, #5865f2 0%, #4453d0 100%);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    border: none;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    min-width: 210px;
    box-shadow: 0 6px 18px rgba(88, 101, 242, 0.4);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    min-height: 44px;
}

.dropdown-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.5s;
}

.dropdown-btn:hover::after {
    left: 100%;
}

.dropdown-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(88, 101, 242, 0.6);
    background: linear-gradient(135deg, #4453d0 0%, #3642b8 100%);
}

.dropdown-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.dropdown.show .dropdown-btn {
    background: linear-gradient(135deg, #4453d0 0%, #5865f2 100%);
    box-shadow: 0 8px 25px rgba(68, 83, 208, 0.5);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 115%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 20px;
    width: 260px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    z-index: 100;
    border: 2px solid #f0f0f0;
}

.dropdown.show .dropdown-content {
    display: block;
    animation: dropdownSlide 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes dropdownSlide {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

.dropdown-item {
    padding: 16px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    border-left: 3px solid transparent;
    font-weight: 600;
    min-height: 44px;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #eef0ff 0%, transparent 100%);
    transition: width 0.3s ease;
    z-index: -1;
}

.dropdown-item:hover::before {
    width: 100%;
}

.dropdown-item:hover {
    color: #5865f2;
    border-left-color: #5865f2;
    padding-left: 25px;
    background: linear-gradient(90deg, #f5f7ff 0%, transparent 100%);
}

.dropdown-item:active {
    transform: scale(0.98);
}

.dropdown-item.active {
    background: linear-gradient(90deg, #eef0ff 0%, #f5f7ff 100%);
    color: #5865f2;
    border-left-color: #5865f2;
    font-weight: 700;
    position: relative;
}

.dropdown-item.active::after {
    content: '✓';
    position: absolute;
    right: 20px;
    font-size: 1.2rem;
    animation: checkmark 0.5s ease;
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.all-products-btn {
    padding: 14px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.4);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    min-width: 210px;
    min-height: 44px;
}

.all-products-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.all-products-btn:hover::before {
    width: 300px;
    height: 300px;
}

.all-products-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.6);
}

.all-products-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.all-products-btn.active {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 8px 25px rgba(118, 75, 162, 0.5);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(118, 75, 162, 0.5);
    }
    50% {
        box-shadow: 0 8px 25px rgba(118, 75, 162, 0.8),
                    0 0 30px rgba(118, 75, 162, 0.4);
    }
}

/* ==================== MOBİL UYUMLULUK ==================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .products {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
}

/* Tablet (768px ve altı) */
@media (max-width: 768px) {
    /* Header */
    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 0.5rem 0;
    }
    
    .logo {
        font-size: 1.2rem;
        padding: 0.3rem 0.8rem;
    }
    
    header img[alt="Logo"] {
        height: 60px !important;
        width: auto !important;
    }
    
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .contact-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Hero */
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    /* Slider */
    .slider-item {
        min-width: 200px;
    }
    
    .slider-product {
        padding: 1.5rem;
    }
    
    .slider-product-icon {
        font-size: 3rem;
    }
    
    .slider-product-name {
        font-size: 1rem;
    }
    
    .slider-product-price {
        font-size: 1.5rem;
    }
    
    /* Sections */
    #products-section,
    #hakkimizda,
    #yorumlar,
    #sss {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    /* Products Grid */
    .products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
        padding: 0 10px;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-name {
        font-size: 1.2rem;
    }
    
    .product-price {
        font-size: 1.3rem;
    }
    
    /* Filter Container */
    .filter-container {
        padding: 15px 10px;
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }
    
    .dropdown-btn,
    .all-products-btn {
        width: 100%;
        max-width: 320px;
        padding: 12px 20px;
        font-size: 0.95rem;
        min-width: auto;
    }
    
    .dropdown-content {
        width: 100%;
        max-width: 320px;
    }
    
    .dropdown-item {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    /* Modal */
    .modal-content {
        margin: 5% auto;
        padding: 2rem 1.5rem;
        max-width: 95%;
        max-height: 85vh;
    }
    
    .modal h2 {
        font-size: 1.5rem;
    }
    
    .modal-product-icon {
        font-size: 3.5rem;
    }
    
    .modal-product-image {
        max-height: 250px;
    }
    
    .modal-product-price {
        font-size: 2rem;
    }
    
    .close {
        right: 1rem;
        top: 1rem;
        font-size: 2rem;
    }
    
    .whatsapp-order-btn {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    /* Reviews */
    .review {
        min-width: 250px;
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    /* FAQ */
    .faq-question,
    .faq-answer {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    /* Footer */
    footer {
        padding: 2rem 0;
        font-size: 0.9rem;
    }
    
    footer h3 {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Mobil (480px ve altı) */
@media (max-width: 480px) {
    /* Hero */
    .hero {
        height: 60vh;
        min-height: 450px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .hero-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Products */
    .products {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .product-card {
        padding: 1.2rem;
    }
    
    .product-image {
        height: 180px;
    }
    
    /* Filter */
    .filter-container {
        padding: 10px 5px;
    }
    
    .dropdown-btn,
    .all-products-btn {
        max-width: 100%;
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    .dropdown-content {
        max-width: 100%;
    }
    
    /* Section Title */
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Modal */
    .modal-content {
        padding: 1.5rem 1rem;
    }
    
    .modal-product-price {
        font-size: 1.8rem;
    }
    
    .modal-product-description {
        font-size: 0.9rem;
    }
    
    /* Slider */
    .slider-item {
        min-width: 150px;
        padding: 1rem;
    }
    
    .slider-product {
        padding: 1rem;
    }
    
    .slider-product-icon {
        font-size: 2.5rem;
    }
    
    .slider-product-name {
        font-size: 0.9rem;
    }
    
    .slider-product-price {
        font-size: 1.2rem;
    }
    
    /* Reviews */
    .review {
        min-width: 200px;
        padding: 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Container */
    .container {
        padding: 0 10px;
    }
    
    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-indicator span {
        width: 25px;
        height: 40px;
    }
}

/* iPhone SE ve çok küçük ekranlar (375px ve altı) */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.3rem;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
    
    .dropdown-btn,
    .all-products-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .dropdown-item {
        padding: 12px 14px;
        font-size: 0.85rem;
    }
}

/* Landscape (Yatay) Mod - Mobil Cihazlar */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .slider-item {
        height: auto;
        min-height: 100vh;
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .products {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .filter-container {
        flex-direction: row;
        justify-content: center;
    }
    
    .dropdown-btn,
    .all-products-btn {
        max-width: 200px;
    }
}

/* Dark Mode için Media Query (Opsiyonel) */
@media (prefers-color-scheme: dark) {
    /* İsterseniz dark mode stilleri ekleyebilirsiniz */
}

/* Reduced Motion için (Erişilebilirlik) */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print için (Yazdırma) */
@media print {
    .hero,
    .product-slider,
    .scroll-indicator,
    header,
    footer,
    .filter-container,
    .modal {
        display: none !important;
    }
    
    .products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    body {
        background: white;
    }
}

.product-info-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 2rem auto 3rem auto;
    max-width: 1200px;
}

.info-box {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
    cursor: default;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.info-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .product-info-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .product-info-boxes {
        grid-template-columns: 1fr;
    }
}

/* ==================== EKSTRA MOBİL İYİLEŞTİRMELER ==================== */
/* Bu kodu style.css'in EN SONUNA ekleyin */

/* Info Boxes - Mobil Optimizasyon */
@media (max-width: 768px) {
    .product-info-boxes {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
        margin: 1.5rem auto 2rem auto;
        padding: 0 10px;
    }
    
    .info-box {
        padding: 1.2rem 1rem;
    }
    
    .info-icon {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }
    
    .info-text {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    /* Logo ekstra küçültme */
    header img[alt="Logo"] {
        height: 50px !important;
        width: auto !important;
    }
    
    /* Hamburger menü animasyonu */
    .mobile-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out, padding 0.3s ease;
        padding: 0 1rem;
    }
    
    .mobile-menu.show {
        max-height: 500px;
        padding: 1rem;
    }
    
    /* Dropdown içerik genişliği */
    .dropdown-content {
        width: 95vw !important;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .product-info-boxes {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }
    
    .info-box {
        padding: 1rem 0.8rem;
    }
    
    .info-text {
        font-size: 0.8rem;
    }
    
    /* Logo daha da küçük */
    header img[alt="Logo"] {
        height: 40px !important;
    }
    
    /* Scroll indicator daha yukarı */
    .scroll-indicator {
        bottom: 10px;
    }
    
    .scroll-indicator span {
        width: 20px;
        height: 35px;
        border-width: 2px;
    }
    
    .scroll-indicator span::before {
        width: 4px;
        height: 4px;
    }
    
    /* Dropdown tam genişlik */
    .dropdown-content {
        width: calc(100vw - 20px) !important;
        max-width: none !important;
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* FAQ optimizasyon */
    .faq-question,
    .faq-answer {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 0.9rem;
    }
    
    /* Modal içerik */
    .modal-product-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    /* Header compact */
    .header-content {
        padding: 0.3rem 0;
    }
    
    .contact-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 375px) {
    .info-icon {
        font-size: 1.8rem;
    }
    
    .info-text {
        font-size: 0.75rem;
    }
    
    header img[alt="Logo"] {
        height: 35px !important;
    }
}

/* Landscape mode - Info boxes */
@media (max-height: 500px) and (orientation: landscape) {
    .product-info-boxes {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        margin: 1rem auto;
    }
    
    .info-box {
        padding: 0.8rem 0.5rem;
    }
    
    .info-icon {
        font-size: 1.5rem;
    }
    
    .info-text {
        font-size: 0.75rem;
    }
}

/* Hamburger menü smooth açılış */
.mobile-menu a {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.show a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.show a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.show a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.show a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.show a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.show a:nth-child(5) { transition-delay: 0.3s; }

/* Touch feedback */
@media (hover: none) and (pointer: coarse) {
    .product-card:active {
        transform: scale(0.98);
        transition: transform 0.1s;
    }
    
    .dropdown-btn:active,
    .all-products-btn:active {
        transform: scale(0.95);
    }
    
    .dropdown-item:active {
        background: rgba(88, 101, 242, 0.1);
    }
}

/* Safe area için padding (iPhone X, 11, 12, 13, 14, 15) */
@supports (padding: max(0px)) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
    
    header {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
}

/* Yükleme performansı */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll; /* Parallax mobilde ağırlaştırır */
    }
    
    /* Animasyonları hafiflet */
    .slider-track {
        animation-duration: 30s; /* Daha yavaş = daha az CPU */
    }
}
