﻿/* ------------------------------
   ANTALYA ÇİÇEK - MOBİL TASARIM
   ------------------------------ */

/* 768px altı cihazlarda geçerli */
@media (max-width: 768px) {

    /* HEADER */
    header {
        height: 60px !important;
        padding: 5px 10px !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        header img {
            max-height: 40px !important; /* Logo küçült */
            height: auto;
        }

    nav ul {
        display: none; /* Menü gizle, yerine hamburger gelecek */
    }

    /* ÜRÜN KARTLARI */
    .product-card {
        width: 48%; /* Yan yana 2 ürün */
        margin: 1%;
    }

        .product-card button {
            width: 100%;
            padding: 12px;
            font-size: 16px;
            font-weight: bold;
            background: #ff3366;
            color: #fff;
            border: none;
            border-radius: 6px;
        }

    /* SEPET BUTONU (Sabit alt çubuk) */
    .cart-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #ff3366;
        color: white;
        text-align: center;
        padding: 14px;
        font-size: 18px;
        font-weight: bold;
        z-index: 1000;
    }

    /* WHATSAPP SABİT BUTON */
    .whatsapp-btn {
        position: fixed;
        bottom: 80px;
        right: 20px;
        z-index: 1000;
    }

        .whatsapp-btn img {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
        }

    /* GENEL METİN VE BOYUTLAR */
    body {
        font-size: 15px;
        line-height: 1.5;
    }

    h1, h2, h3 {
        font-size: 18px;
    }
}
