/**
 * Giao Diện Hiển Thị Sản Phẩm
 *
 * @package AdvancedProductManager
 * @since 1.0.0
 */

.apm-products-wrap {
    width: 100%;
    margin: 0;
    padding: 0;
    clear: both;
    box-sizing: border-box;
}

.apm-products-wrap * {
    box-sizing: border-box;
}

/* === Lưới Sản Phẩm === */
.apm-layout-grid {
    display: grid;
    gap: 24px;
}

/* Cột mặc định theo lớp */
.apm-layout-grid.apm-col-desk-4 { grid-template-columns: repeat(4, 1fr); }
.apm-layout-grid.apm-col-desk-3 { grid-template-columns: repeat(3, 1fr); }
.apm-layout-grid.apm-col-desk-2 { grid-template-columns: repeat(2, 1fr); }
.apm-layout-grid.apm-col-desk-1 { grid-template-columns: 1fr; }

/* === Danh Sách Sản Phẩm === */
.apm-layout-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* === Khối Sản Phẩm === */
.apm-product-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s ease-in-out;
}

.apm-product-item:hover {
    border-color: #d1d5db;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

/* === Hình Ảnh Sản Phẩm === */
.apm-product-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apm-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.apm-product-item:hover .apm-product-image img {
    transform: scale(1.05);
}

.apm-product-image-placeholder {
    color: #9ca3af;
    font-size: 48px;
}

/* === Thông Tin Sản Phẩm === */
.apm-product-info {
    padding: 18px;
}

.apm-product-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 10px;
    color: #111827;
}

.apm-product-title a {
    color: inherit;
    text-decoration: none;
}

.apm-product-title a:hover {
    color: #2563eb;
}

.apm-product-price {
    font-size: 18px;
    font-weight: 700;
    color: #dc2626;
    margin: 0 0 10px;
}

.apm-product-excerpt {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    margin: 0 0 14px;
}

.apm-product-button-wrap {
    margin-top: 8px;
}

.apm-product-button {
    display: inline-block;
    padding: 10px 20px;
    background: #2563eb;
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.apm-product-button:hover {
    background: #1d4ed8;
    color: #fff !important;
}

/* === Trạng thái trống === */
.apm-no-product {
    padding: 40px;
    text-align: center;
    color: #6b7280;
    background: #f9fafb;
    border-radius: 8px;
}