a.WhatsApp1 {
    display: flex;
    font-size: 18px;
    background: #2EB843;
    font-weight: 600;
    width: 51px;
    height: 51px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    border-radius: 50%;
    -webkit-transition: all .1s ease-out 0s;
    -moz-transition: all .1s ease-out 0s;
    -ms-transition: all .1s ease-out 0s;
    -o-transition: all .1s ease-out 0s;
    transition: all .1s ease-out 0s;
    color: #fff;
    align-items: center;
    justify-content: center;
    animation: whatsapp infinite 2s linear;
    z-index: 9999
}

a.WhatsApp1 svg {
    width: 24px;
    height: 24px;
    fill: white;
}


@keyframes whatsapp {
    0% {
        box-shadow: 0 0 0 0 #2EB843
    }

    50% {
        box-shadow: 0 0 0 10px #015dc700
    }

    100% {
        box-shadow: 0 0 0 0 #015dc700
    }
}


@media(max-width:1024px) {
    a.WhatsApp1 {
        bottom: 60px
    }

}



/* =========================================
   2. ABOUT SECTION
   ========================================= */
.about-section {
    background: #FFF url(../images/hakkimizda.jpg) no-repeat center 0px;
    padding-bottom: 80px;
    padding-top: 80px;
}

.about-section h2 {
    text-align: center;
    color: #b2212a;
    font-weight: 400;
    font-size: 36px;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.about-text {
    margin: 0 auto;
    color: var(--text-gray);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    text-align: left;
    /* Text is left-aligned as requested */
}

.about-text p {
    margin-bottom: 25px;
}

.about-text p:last-child {
    margin-bottom: 0;
}



/* =========================================
   2. PRODUCTS SECTION (Yeni Üretim)
   ========================================= */
.products-section {
    background-color: var(--primary-red);
    padding: 70px 0 90px;
    text-align: center;
}

.products-section h2 {
    text-align: center;
    color: #FFF;
    font-weight: 400;
    font-size: 36px;
    margin-bottom: 20px;
    margin-top: 0px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-item {
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 4px;
    background-color: transparent;
}

.product-inner {
    background-color: var(--dark-red);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-inner img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.product-title {
    padding: 14px 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobil cihazlarda banner yüksekliğini kısalt */
    .hero-section {
        height: 60vh !important;
        min-height: 400px !important;
    }
}

@media (max-width: 576px) {
    /* Çok küçük telefon ekranları için ekstra kısaltma */
    .hero-section {
        height: 50vh !important;
        min-height: 300px !important;
    }
}