﻿/* =====================================================
   MOBILE E-COMMERCE (até 768px)
   ===================================================== */
@media (max-width: 768px) {

    body {
        background: #f3f4f6;
    }

    /* CONTAINER */
    .container {
        margin: 0;
        padding: 10px;
    }

    /* BREADCRUMB */
    .breadcrumb {
        font-size: 12px;
        margin-bottom: 10px;
        white-space: nowrap;
        overflow-x: auto;
    }

    /* PRODUTO GRID */
    .produto-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 16px;
        border-radius: 12px;
    }

    /* GALERIA */
    .galeria {
        flex-direction: column;
        gap: 10px;
    }

    /* IMAGEM PRINCIPAL */
    .imagem-principal img {
        height: 300px;
        border-radius: 12px;
    }

    /* THUMBS → SCROLL HORIZONTAL */
    .thumbs {
        flex-direction: row;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 6px;
    }

        .thumbs img {
            min-width: 64px;
            height: 64px;
            flex-shrink: 0;
        }

    /* INFO */
    .produto-info h1 {
        font-size: 22px;
        line-height: 1.3;
    }

    .categoria {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .descricao {
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* BOX COMPRA */
    .box-compra {
        padding: 16px;
        border-radius: 12px;
    }

        .box-compra h4 {
            font-size: 15px;
            margin-bottom: 12px;
        }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

        .form-grid input,
        .form-grid select {
            height: 44px;
            font-size: 15px;
        }

    .btn-cotacao {
        height: 48px;
        font-size: 16px;
        border-radius: 12px;
    }

    /* QR CODE → MENOR E DISCRETO */
    .qr-box {
        margin-top: 16px;
        gap: 10px;
        font-size: 12px;
    }

        .qr-box img {
            width: 70px;
            height: 70px;
        }

    /* =====================
       RELACIONADOS (CARROSSEL)
       ===================== */
    .relacionados {
        margin-top: 40px;
    }

        .relacionados h3 {
            font-size: 18px;
            margin-bottom: 14px;
        }

    .relacionados-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }

    .produto-card {
        min-width: 180px;
        scroll-snap-align: start;
        padding: 14px;
        border-radius: 12px;
    }

        .produto-card img {
            height: 130px;
        }

        .produto-card h4 {
            font-size: 14px;
        }

        .produto-card a {
            font-size: 13px;
        }

    /* ZOOM */
    .zoom-overlay img {
        max-width: 96%;
        max-height: 80%;
        padding: 6px;
    }

    .zoom-close {
        font-size: 32px;
        top: 12px;
        right: 16px;
    }
}
