  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #f2f3f7;
}

.page-shell {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 18px 50px;
}

/* Top Banner */
.top-banner {
  background: rgb(241, 152, 152);

            color: white;
            text-align: center;
            padding: 12px 20px;
            font-size: 14px;
            font-weight: 500;
        }

        /* Header */
        header {
            background: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            .logo-img {
                height: 100px; /* istediğin boyutu ayarla */
                width: auto;
            }


        nav ul {
            list-style: none;
            display: flex;
            gap: 35px;
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 25px;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #ff6b6b;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            min-width: 220px;
            padding: 10px 0;
            margin-top: 10px;
            border-radius: 8px;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .dropdown-content a {
            display: block;
            padding: 10px 20px;
            font-size: 14px;
        }

        .cart-icon {
            font-size: 24px;
            cursor: pointer;
            position: relative;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #ff6b6b;
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: bold;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #333;
        }

        /* Scrolling Text */
        .scrolling-banner {
            background: #000;
            color: white;
            padding: 12px 0;
            overflow: hidden;
            white-space: nowrap;
        }

        .scrolling-text {
            display: inline-block;
            animation: scroll 25s linear infinite;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Hero Slider */
.hero-slider {
    position: relative;
    height: 560px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 16px 34px rgba(0,0,0,0.14);
    margin-top: 16px;
}

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-content {
            text-align: center;
            color: white;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
            max-width: 800px;
            padding: 0 20px;
        }

        .slide-content h1 {
            font-size: 56px;
            margin-bottom: 15px;
            font-weight: 900;
            letter-spacing: 1px;
        }

        .slide-content p {
            font-size: 22px;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .btn {
            display: inline-block;
            padding: 16px 45px;
            background: #ff6b6b;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 15px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn:hover {
            background: #ee5a6f;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255,107,107,0.5);
        }

        /* Products Section (homepage grid) */
       
        /* Category Banner */
       /* Arka plan */

.category-section {
    padding: 70px 0 20px;
}

/* Section başlıkları */
.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 45px;
    font-weight: 900;
}

.category-intro {
    text-align: center;
    font-size: 17px;
    width: 65%;
    margin: 0 auto 50px;
    color: #444;
}

/* Grid yapı */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    max-width: 1180px;
    margin: 0 auto 10px;
    padding: 0 4px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 20px 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    height: 100%;
    overflow: hidden;
    gap: 12px;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.13);
}

.category-thumb {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 2px 12px;
}

.category-thumb img {
    width: 100%;
    max-width: 340px;
    height: 210px;
    object-fit: contain;
    filter: drop-shadow(0 14px 16px rgba(0,0,0,0.16));
}

.category-info {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.category-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    color: #3b3b3b;
    text-align: left;
    line-height: 1.3;
}

        /* Features */
        .features {
            display: flex;
            justify-content: space-around;
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
            gap: 40px;
            flex-wrap: wrap;
        }

        .feature {
            text-align: center;
            flex: 1;
            min-width: 250px;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: #f8f8f8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
        }

        .feature h4 {
            font-size: 15px;
            color: #333;
            margin-bottom: 5px;
            font-weight: 700;
        }

        .feature p {
            color: #777;
            font-size: 13px;
        }

        /* Newsletter */
        .newsletter {
         background: url('../images/image_1296.webp');
            background-size: cover;
            background-position: center;
            color:white;


            padding: 80px 20px;
            text-align: center;
          
        }

        .newsletter h2 {
            font-size: 42px;
            margin-bottom: 15px;
            font-weight: 900;
        }

        .newsletter p {
            font-size: 18px;
            margin-bottom: 35px;
        }

        .newsletter-form {
            max-width: 550px;
            margin: 0 auto;
            display: flex;
            gap: 12px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 16px 25px;
            border: none;
            border-radius: 50px;
            font-size: 15px;
        }

        .newsletter-form button {
            padding: 16px 40px;
            background: #ff6b6b;
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            font-size: 15px;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .newsletter-form button:hover {
            background: #ee5a6f;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }

        /* Footer */
        

        /* Responsive */
        @media (max-width: 1200px) {
            .page-shell { max-width: 1100px; padding: 0 16px 40px; }
            .header-container { padding: 14px 18px; gap: 18px; }
            nav ul { gap: 26px; }
            .hero-slider { height: 520px; }
            .slide-content h1 { font-size: 48px; }
            .slide-content p { font-size: 20px; }
            .section-title { font-size: 34px; }
            .category-intro { width: 72%; }
        }

        @media (max-width: 992px) {
            .page-shell { max-width: 960px; padding: 0 14px 36px; }
            .header-container { padding: 12px 16px; }
            nav ul { gap: 20px; }
            nav a { font-size: 20px; }
            .logo-img { height: 80px; }
            .hero-slider { height: 480px; }
            .slide-content h1 { font-size: 42px; }
            .slide-content p { font-size: 19px; }
            .category-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
            .category-thumb img { height: 190px; }
            .newsletter h2 { font-size: 36px; }
            .newsletter p { font-size: 16px; }
            .newsletter-form { max-width: 520px; }
        }

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }

            nav {
                display: none;
            }

            .hero-slider {
                height: 450px;
            }

            .slide-content h1 {
                font-size: 36px;
            }

            .slide-content p {
                font-size: 18px;
            }

            .section-title {
                font-size: 28px;
            }

            .featured-grid {
                grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
                gap: 20px;
            }

            .category-grid {
                grid-template-columns: 1fr;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .testimonial {
                min-width: 300px;
            }
        }

        @media (max-width: 600px) {
            .top-banner { padding: 10px 14px; font-size: 13px; }
            .header-container { padding: 10px 14px; gap: 12px; }
            .logo-img { height: 68px; }
            .hero-slider { height: 380px; }
            .slide-content h1 { font-size: 30px; }
            .slide-content p { font-size: 16px; }
            .btn { padding: 14px 34px; font-size: 14px; }
            .section-title { font-size: 24px; margin-bottom: 32px; }
            .category-intro { width: 90%; font-size: 15px; }
            .category-grid { gap: 18px; }
            .category-card { padding: 18px 16px 14px; }
            .category-thumb img { height: 170px; }
            .features { gap: 24px; }
            .feature { min-width: 220px; }
            .newsletter { padding: 60px 16px; }
            .newsletter h2 { font-size: 30px; }
            .newsletter p { font-size: 16px; }
            .newsletter-form input, .newsletter-form button { width: 100%; }
        }

        /* Genel taşma önlemleri */
img {
    max-width: 100%;
    height: auto;
}

body {
    overflow-x: hidden;
}

/* Header – mobilde hizalama bozulmasın */
@media (max-width: 768px) {
    .header-container {
        justify-content: space-between;
    }
}

/* Nav gizliyken boşluk oluşmasın */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 18px;
    }
}

/* Dropdown mobilde ekran dışına taşmasın */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        box-shadow: none;
        margin-top: 6px;
    }
}

/* Hero slider oran koruması */
@media (max-width: 768px) {
    .hero-slider {
        border-radius: 0;
    }
}

/* Slider yazıları küçük ekranda taşmasın */
@media (max-width: 600px) {
    .slide-content {
        padding: 0 14px;
    }

    .slide-content h1 {
        line-height: 1.2;
        word-break: break-word;
    }

    .slide-content p {
        line-height: 1.4;
    }
}

/* Category kartlar küçük ekranda tam genişlik */
@media (max-width: 768px) {
    .category-card {
        width: 100%;
    }
}

/* Category görselleri taşmasın */
@media (max-width: 600px) {
    .category-thumb img {
        max-width: 100%;
        object-fit: contain;
    }
}

/* Newsletter arka plan mobilde kırpılmasın */
@media (max-width: 768px) {
    .newsletter {
        background-position: center top;
    }
}

/* Features alanı mobilde dengeli */
@media (max-width: 768px) {
    .features {
        justify-content: center;
    }
}

/* Çok küçük ekran güvenliği */
@media (max-width: 420px) {
    .btn {
        white-space: nowrap;
    }
}

