/**
 * Bố Cục Phản Hồi — Tự động điều chỉnh theo thiết bị
 *
 * @package AdvancedProductManager
 * @since 1.0.0
 */

/* === Máy Bảng (Dưới 1024px) === */
@media (max-width: 1024px) {
    .apm-layout-grid.apm-col-tab-3 { grid-template-columns: repeat(3, 1fr); }
    .apm-layout-grid.apm-col-tab-2 { grid-template-columns: repeat(2, 1fr); }
    .apm-layout-grid.apm-col-tab-1 { grid-template-columns: 1fr; }

    .apm-product-image {
        height: 220px;
    }
}

/* === Điện Thoại Lớn / Nhỏ (Dưới 768px) === */
@media (max-width: 768px) {
    .apm-layout-grid.apm-col-mob-2,
    .apm-layout-grid.apm-col-tab-3,
    .apm-layout-grid.apm-col-desk-4,
    .apm-layout-grid.apm-col-desk-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .apm-product-image {
        height: 180px;
    }

    .apm-product-info {
        padding: 14px;
    }

    .apm-product-title {
        font-size: 15px;
    }

    .apm-product-price {
        font-size: 16px;
    }
}

/* === Điện Thoại Nhỏ (Dưới 480px) === */
@media (max-width: 480px) {
    .apm-layout-grid.apm-col-mob-2,
    .apm-layout-grid.apm-col-mob-1,
    .apm-layout-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    .apm-product-image {
        height: 200px;
    }

    .apm-product-button {
        width: 100%;
        text-align: center;
    }
}

/* === Chế độ Danh Sách trên di động === */
@media (max-width: 600px) {
    .apm-layout-list .apm-product-item {
        display: flex;
        flex-direction: column;
    }
}

@media (min-width: 601px) {
    .apm-layout-list .apm-product-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
    }

    .apm-layout-list .apm-product-image {
        width: 200px;
        height: 150px;
        flex-shrink: 0;
    }

    .apm-layout-list .apm-product-info {
        flex: 1;
    }
}