/* ==========================================================================
   SECTION: PRODUCT CARD LIST
   Path: template-parts/sections/product-card-list/style.css
   ========================================================================== */

.product-card-list {
    padding: 35px 0;
    background-color: transparent;
    width: 100%;
    overflow: hidden;
    /* Cấu hình hiển thị background image */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.product-card-list__container {
    max-width: 1250px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
}

.product-card-list__header {
    text-align: center;
    margin-bottom: 25px;
}

.product-card-list__header h2 {
    font-family: var(--font-primary, 'Parastoo', serif);
    font-size: var(--fs-h2, 50px);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-heading, #2F2B29);
    margin: 0;
}

/* 1. MẶC ĐỊNH TRÊN MOBILE (< 769px): HIỂN THỊ 2 CỘT TĨNH (2X2) */
.product-card-list__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

.product-card-list__item {
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.product-card-list__footer {
    text-align: center;
    margin-top: 25px;
}

.product-card-list__btn {
    display: inline-block;
    padding: 8px 22px;
    border: 1.5px solid var(--color-accent-2, #8A5038);
    border-radius: 8px;
    background-color: #ffffff;
    color: var(--color-accent-2, #8A5038);
    font-family: var(--ff-btn-m, var(--font-secondary, sans-serif));
    font-size: var(--fs-btn-m, 11px);
    font-weight: var(--fw-btn-m, 600);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: var(--transition-base, all 0.3s ease-in-out);
}

.product-card-list__btn:hover {
    background-color: var(--color-accent-2, #8A5038);
    color: #ffffff;
}

