﻿main {
    margin: 0;
}
/*#region Slider*/
.container {
}

body {
}

h2 {
    line-height: 1.1;
}
























/* Slider genel ayar */
.swiper {
    width: 100%;
    height: auto;
    margin-top: 4.4rem;
}

.swiper-wrapper,
.swiper-slide {
    height: auto;
}

/* Slide hizalama */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    overflow: hidden;
}

    /* Görsellerin temel stili */
    .swiper-slide img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

/* Desktop için görüntülenen görseller */
.desktop-img {
    display: block;
}

/* Mobil görseller başlangıçta gizli */
.mobile-img {
    display: none;
}

/* Ekran 768px altına indiğinde */
@media (max-width: 768px) {
    .desktop-img {
        display: none;
    }

    .mobile-img {
        display: block;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 25px !important;
        height: 25px !important;
    }

        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 11px !important;
        }
}

/* Navigasyon stilleri */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background-color: rgba(0, 0, 0, 0.6);
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 20px;
    }

/* Sayfalama */
.swiper-pagination-bullet {
    background-color: white;
    opacity: 0.7;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background-color: #fff;
    opacity: 1;
}


















.theme-btn, .theme-btn-s2 {
    background-color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    color: #2b3b95;
    padding: 9px 32px;
    border: 0;
    border-radius: 3px;
    text-transform: uppercase;
    display: inline-block;
    line-height: initial;
    transition: all .4s ease;
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
}

.theme-btn-s2 {
    background-color: rgba(255, 255, 255, 0.9);
    color: #131e4a;
}

    .theme-btn:hover, .theme-btn-s2:hover, .theme-btn:focus, .theme-btn-s2:focus, .theme-btn:active, .theme-btn-s2:active {
        background-color: #2b3b95;
        color: #fff;
    }

.theme-btn-s3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
    text-transform: uppercase;
}

i.fa-chevron-circle-right {
    height: 22px;
    width: 22px;
}

a:hover {
    text-decoration: none;
}

.section-search {
    background: #ffeeee;
    padding: 3rem 0;
    margin-bottom: 5rem;
}

    .section-search > div {
        position: relative;
        max-width: 1200px;
        width: calc(100% - 2rem);
        align-items: center;
        display: flex;
        justify-self: center;
        gap: 1rem;
        padding: 1rem 0;
        z-index: 1;
    }

        .section-search > div > h2 {
            font-weight: 100;
            position: absolute;
            font-size: 24.8em;
            z-index: -1;
            left: 0;
            right: 0;
            bottom: -75px;
            -webkit-text-fill-color: transparent;
            -webkit-text-stroke-width: 1.5px;
            width: 100%;
            color: #ff59591c;
            font-family: fantasy;
        }

        .section-search > div > div:first-of-type img {
            width: 500px;
            height: 100%;
        }

        .section-search > div > div {
            width: 100%;
            position: relative;
            z-index: 1;
        }

            .section-search > div > div:last-of-type > h1 {
                font-size: 44px;
            }



            .section-search > div > div:last-of-type > p {
                color: gray;
                margin: 6px 0;
            }

            .section-search > div > div:last-of-type > label {
                display: flex;
                align-items: center;
                gap: 1rem;
                background: white;
                padding: 5px;
                border-radius: 10px;
                transition: box-shadow 0.2s ease;
            }

                .section-search > div > div:last-of-type > label:focus-within {
                    box-shadow: 0 0 8px rgb(211 80 80 / 30%);
                }

                .section-search > div > div:last-of-type > label > input {
                    border: 0;
                    height: 50px;
                    outline: none;
                }


                .section-search > div > div:last-of-type > label > button {
                    height: 100%;
                    height: 51px;
                }

            .section-search > div > div:last-of-type > div:first-of-type {
                font-size: 12px;
                margin: 1rem 0;
            }

                .section-search > div > div:last-of-type > div:first-of-type > p {
                    display: flex;
                    align-items: center;
                    gap: 1rem;
                }

                    .section-search > div > div:last-of-type > div:first-of-type > p > span {
                        border: 1px solid blue;
                        padding: 2px 10px;
                        background: #efefff;
                        border-radius: 20px;
                        cursor: pointer;
                    }

            .section-search > div > div:last-of-type > div:last-of-type {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

                .section-search > div > div:last-of-type > div:last-of-type > p {
                    display: flex;
                    flex-direction: column;
                    gap: 5px;
                    align-items: center;
                    font-size: 29px;
                    font-weight: 600;
                    color: red;
                }

                    .section-search > div > div:last-of-type > div:last-of-type > p > span {
                        font-size: 11px;
                        color: gray;
                        font-weight: normal;
                    }


/*#region about*/

.secion-about {
    margin: 2rem 0;
    margin-bottom: 5rem;
}

    .secion-about > div {
        display: flex;
        max-width: 1200px;
        width: 100%;
        align-self: center;
        justify-self: center;
        gap: 2rem;
    }

        .secion-about > div > div:first-of-type {
            display: flex;
            flex-direction: column;
            padding: 20px;
            background: #1f2937;
            border-radius: 10px;
            height: max-content;
            color: white;
            height: calc(350px - 40px);
            justify-content: center;
            width: 100%;
        }

            .secion-about > div > div:first-of-type h2 {
                margin-bottom: 10px;
            }

            .secion-about > div > div:first-of-type p {
                font-size: 13px;
                margin-bottom: 15px;
            }

            .secion-about > div > div:first-of-type a {
            }

        .secion-about > div > div:last-of-type {
            width: 100%;
        }

            .secion-about > div > div:last-of-type iframe {
            }


/*#endregion*/




.border-style {
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    margin-bottom: 2rem;
}

    .border-style:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 50px;
        height: 3px;
        background: #870000;
        border-radius: 2px;
    }

#blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

    #blog-container > div {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 1rem;
    }

        #blog-container > div > a {
            padding: 1rem;
            transition: all 0.3s ease;
            border-radius: 6px;
            border: 1px solid #0000001c;
        }

            #blog-container > div > a:hover {
                transform: translateY(-5px);
                box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
            }

            #blog-container > div > a > img {
                width: 100%;
                height: 250px;
                object-fit: contain;
                border-radius: 5px;
            }


            #blog-container > div > a > h5 {
                font-size: 1rem;
                font-weight: 600;
                white-space: nowrap;
                text-overflow: ellipsis;
                overflow: hidden;
                width: 100%;
                color: black;
            }

            #blog-container > div > a > p {
                color: black;
                font-size: 13px;
            }

            #blog-container > div > a > span {
                color: black;
                font-size: 13px;
                font-weight: 500;
                color: #870000;
                margin-bottom: 0.5rem;
                margin-top: 0.5rem;
            }

@media (max-width: 600px) {
    #blog-container > div {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}




/*#endregion */

@media (max-width: 768px) {
    nav > div > div > div > div > a,
    nav > div > div > div > a,
    nav > div > div > div > div > p {
        color: black;
    }
}


@media (max-width: 1200px) {
    .secion-about > div {
        flex-direction: column;
    }

    .secion-about > div {
        width: calc(100% - 2rem);
    }

        .secion-about > div > div:first-of-type {
            width: calc(100% - 40px);
        }

    .section-search > div > h2 {
        font-size: 23em;
        bottom: -75px;
    }
}

@media (max-width: 992px) {
    .secion-about > div > div:first-of-type {
        width: calc(100% - 40px);
    }

    .theme-btn, .theme-btn-s2, .theme-btn-s3 {
        font-size: 13px;
        padding: 15px 25px;
    }

    .section-search > div {
        width: calc(100% - 2rem);
        gap: 1rem;
        padding: 1rem 0;
        flex-direction: column;
    }

        .section-search > div > h2 {
            display: none;
        }

        .section-search > div > div {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 6px;
        }

            .section-search > div > div:last-of-type > label {
                width: calc(100% - 2rem);
            }

            .section-search > div > div:first-of-type img {
                display: none;
            }

            .section-search > div > div:last-of-type > div:last-of-type {
                width: calc(100% - 2rem);
            }

            .section-search > div > div:last-of-type > div:first-of-type {
                width: calc(100% - 2rem);
            }
}

@media (max-width: 768px) {
    .theme-btn, .theme-btn-s2 {
        padding: 13px 20px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .secion-about > div > div:first-of-type p {
        font-size: 11px;
    }

    .section-search > div > div:last-of-type > h1 {
        font-size: 25px;
    }

    .section-search > div > div:last-of-type > p {
        text-align: center;
        font-size: 12px;
    }

    .section-search > div > div:last-of-type > div:last-of-type > p {
        font-size: 20px;
    }

    .section-search > div > div:last-of-type > div:first-of-type > p > span {
        padding: 2px 7px;
        font-size: 10px;
        text-align: center;
    }

    .section-search > div > div:last-of-type > label > input {
        height: max-content;
    }

    .section-search > div > div:last-of-type > label > button {
        height: 35px;
    }
}
/*#region Slider*/


/* Section Categories */
.section-categories {
    padding: 2rem 0;
    display: flex;
    justify-content: center;
}

    .section-categories > div {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        max-width: 1200px;
        width: 100%;
        padding: 0 1rem;
        margin-bottom: 5rem;
    }

        .section-categories > div > div:first-of-type {
            display: flex;
            flex-direction: column;
            gap: 10px;
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
        }

            .section-categories > div > div:first-of-type h2 {
                font-size: 33px;
                margin-bottom: 0.5rem;
                font-weight: 700;
                position: relative;
                display: inline-block;
            }

                .section-categories > div > div:first-of-type h2::after {
                    position: absolute;
                    bottom: -10px;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 80px;
                    height: 4px;
                    background: linear-gradient(90deg, #4f46e5, #7c3aed);
                    border-radius: 2px;
                }

            .section-categories > div > div:first-of-type p {
                font-size: 14px;
            }

/* Products Grid */
.products-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(229px, 1fr));
    gap: 1.5rem;
    padding: 20px 0;
}

.categorie-cart-custom {
    padding: 1.5rem;
    display: block;
    height: 300px;
}



/* Responsive Design */
@media (max-width: 1200px) {
    .why-choose-us {
        width: calc(100% - 8rem);
    }
}

@media (max-width: 768px) {
    .section-categories > div > div:first-of-type h2 {
        font-size: 2rem;
    }

    .section-categories > div > div:first-of-type p {
        font-size: 1rem;
    }

    .categorie-cart {
        height: 300px;
        padding: 20px;
    }

        .categorie-cart img {
            width: 160px;
        }

        .categorie-cart h2 {
            font-size: 1.2rem;
        }
}

@media (max-width: 640px) {
    .section-categories > div > div:first-of-type h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {

    .categorie-cart {
        max-width: 100%;
        height: 280px;
    }

        .categorie-cart img {
            width: 140px;
        }

        .categorie-cart h2 {
            font-size: 1.1rem;
        }
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    justify-self: center;
    align-self: center;
}

    .why-choose-us::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--red);
    }

    .why-choose-us h1 {
        color: var(--red);
        text-align: center;
        margin-bottom: 2rem;
        font-size: 2.8rem;
        font-weight: 700;
        position: relative;
        padding-bottom: 1rem;
    }

        .why-choose-us h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--red);
            border-radius: 2px;
        }

    .why-choose-us b {
        display: block;
        text-align: center;
        margin-bottom: 2.5rem;
        font-size: 1.3rem;
        color: var(--black);
        font-weight: 600;
    }

    .why-choose-us h2 {
        text-align: center;
        margin: 2.5rem 0 1.5rem;
        color: var(--red);
        font-size: 2rem;
        font-weight: 600;
    }

    .why-choose-us h4, .why-choose-us h5 {
        color: var(--red);
        margin: 2rem 0 1rem;
        font-size: 1.1rem;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

        .why-choose-us h4::before, .why-choose-us h5::before {
            content: '✓';
            color: var(--red);
            margin-right: 10px;
            font-size: 1rem;
        }

    .why-choose-us p {
        background: white;
        padding: 1.6rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 1.5rem;
        border-left: 2px solid var(--red);
        transition: transform 0.3s ease;
        font-size: 0.9rem;
    }

        .why-choose-us p:hover {
            transform: translateX(5px);
        }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

, .why-choose-us {
    animation: fadeInUp 0.8s ease forwards;
}

.why-choose-us {
    animation-delay: 0.4s;
}

/* Responsive Design */


@media (max-width: 768px) {

    .why-choose-us {
        padding: 2.5rem 1.5rem;
    }

    .why-choose-us {
        width: calc(100% - 5rem);
    }

        .why-choose-us h1 {
            font-size: 2.2rem;
        }
}

@media (max-width: 576px) {

    .why-choose-us {
        padding: 2rem 1rem;
    }

    .why-choose-us {
        width: calc(100% - 4rem);
    }

        .why-choose-us h1 {
            font-size: 1.8rem;
        }
}

/* Scroll animations for content blocks */
.why-choose-us {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .why-choose-us.visible {
        opacity: 1;
        transform: translateY(0);
    }
 