@charset "utf-8";

/* Reset chuẩn cho Desktop */
*, *:before, *:after {
    box-sizing: border-box;
}

.desktop-cat-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Tiêu đề danh mục & Gợi ý */
.desktop-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #1b5e20;
    margin: 10px 0 15px 0;
    padding: 3px 0 3px 10px;
    border-left: 4px solid #2e7d32;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 0.5px;
}

.desktop-section-title a {
    color: #1b5e20;
    text-decoration: none;
}

/* Khung Lưới Danh mục Sản phẩm (3 cột trên Desktop) */
.desktop-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

/* Thẻ sản phẩm */
.desktop-cat-card {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.desktop-cat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.desktop-cat-card a {
    text-decoration: none;
}

/* Container ảnh chuẩn tỉ lệ 300x200 (aspect-ratio 3/2) */
.desktop-cat-thumb-box {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desktop-cat-thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Giữ nguyên kích thước sắc nét gốc 300x200 */
    transition: transform 0.3s ease;
}

.desktop-cat-card:hover .desktop-cat-thumb-box img {
    transform: scale(1.02);
}

/* Tên danh mục bên dưới ảnh */
.desktop-cat-info {
    padding: 12px 8px;
    text-align: center;
    border-top: 1px solid #f1f5f9;
}

.desktop-cat-name {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.desktop-cat-card:hover .desktop-cat-name {
    color: #2e7d32;
}

/* Khung "Có phải bạn muốn tìm?" */
.desktop-suggestion-box {
    background: #f8fafc;
    border-radius: 8px;
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    margin-top: 15px;
}

/* Loại bỏ ảnh hưởng của table/tr/td từ dữ liệu CSDL cũ */
.desktop-suggestion-content {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 10px !important;
}

.desktop-suggestion-content table,
.desktop-suggestion-content tbody,
.desktop-suggestion-content tr,
.desktop-suggestion-content td {
    display: inline !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
    width: auto !important;
}

/* Nút từ khóa Badge dạng pill */
.desktop-suggestion-content a {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    background-color: #ffffff !important;
    color: #334155 !important;
    padding: 6px 14px !important;
    border-radius: 16px !important;
    text-decoration: none !important;
    font-size: 12.5px !important;
    border: 1px solid #cbd5e1 !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.2s ease !important;
}

.desktop-suggestion-content a:hover {
    background-color: #e8f5e9 !important;
    color: #2e7d32 !important;
    border-color: #a5d6a7 !important;
}