﻿/* Products page */

.products-page {
    padding: 0;
}

.products-section {
    width: 100%;
    margin-bottom: 18px !important;
    background: #fff;
    border: 1px solid #e7e9ee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .04);
}

.products-section-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 22px;
    background: #f8f9fb;
    border-bottom: 1px solid #eceef2;
    box-sizing: border-box;
}

.products-section-head::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #ed1b24;
}

.products-section-head h3 {
    margin: 0;
    color: #16181d;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
}

.products-section-head > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 76px;
    height: 32px;
    padding: 0 13px;
    margin: 0;
    border: 1px solid #ed1b24;
    border-radius: 4px;
    color: #ed1b24 !important;
    font-size: 14px;
    line-height: 30px;
    box-sizing: border-box;
}

.products-section-head > a:hover {
    background: #ed1b24;
    color: #fff !important;
}

.products-product-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    padding: 20px 22px 24px;
    box-sizing: border-box;
    align-items: stretch;
}

.products-product-item {
    display: flex;
    flex-direction: column;
    min-width: 0;
    margin: 0;
    background: #fff;
    border: 1px solid #e9ebef;
    border-radius: 8px;
    overflow: hidden;
    box-sizing: border-box;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.products-product-item:hover {
    border-color: #d9dee7;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transform: none;
}

.products-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 150px;
    padding: 12px;
    margin: 0;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid #f0f1f3;
    box-sizing: border-box;
}

.products-product-image img {
    display: block;
    max-width: 100%;
    max-height: 126px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.products-product-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 12px;
    box-sizing: border-box;
}

.products-product-title {
    width: 100%;
    height: 40px;
    margin: 0 0 10px;
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    word-break: break-word;
}

.products-product-title a {
    color: #333 !important;
}

.products-product-title a:hover {
    color: #ed1b24 !important;
}

.products-product-stock {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 32px;
    padding: 6px 9px;
    margin-bottom: 9px;
    border-radius: 5px;
    background: #f7f9fc;
    box-sizing: border-box;
    font-size: 13px;
}

.products-product-stock span {
    color: #7b8492;
}

.products-product-stock strong {
    color: #1f2937;
    font-size: 14px;
}

.products-product-price {
    min-height: 108px;
    padding: 8px 9px;
    margin-bottom: 10px;
    border: 1px solid #edf0f4;
    border-radius: 6px;
    background: #fff;
    box-sizing: border-box;
}

.products-product-price-label {
    margin-bottom: 5px;
    color: #7b8492;
    font-size: 12px;
    line-height: 18px;
}

.products-product-tier {
    color: #e53935;
    font-size: 13px;
    line-height: 20px;
}

.products-product-tier table {
    width: 100% !important;
    margin: 0 !important;
    border: 0 !important;
    border-collapse: collapse;
    background: transparent !important;
}

.products-product-tier tr,
.products-product-tier td,
.products-product-tier th {
    height: auto !important;
    padding: 2px 0 !important;
    border: 0 !important;
    background: transparent !important;
    font-size: 12px !important;
    line-height: 18px !important;
    text-align: left !important;
}

.products-product-action {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 7px;
    margin-top: auto;
}

.products-product-qty {
    width: 100%;
    height: 36px;
    padding: 0 5px;
    box-sizing: border-box;
    border: 1px solid #d8dde6;
    border-radius: 5px;
    background: #fff;
    color: #333;
    font-size: 13px;
    text-align: center;
    outline: none;
}

.products-product-qty:focus {
    border-color: #ed1b24;
}

.products-product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 36px;
    padding: 0 8px;
    box-sizing: border-box;
    border-radius: 5px;
    background: #ed1b24;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    line-height: 36px;
    white-space: nowrap;
    cursor: pointer;
}

.products-product-btn:hover {
    background: #d3151d;
    color: #fff !important;
}

.products-product-btn-rfq {
    background: #374151;
}

.products-product-btn-rfq:hover {
    background: #1f2937;
}

/* =========================================================
   Mobile
   ========================================================= */
@media (max-width: 767px) {
    .products-page,
    .products-page * {
        box-sizing: border-box;
    }

    .products-page {
        width: 100%;
        padding: 0 10px;
        margin: 0 !important;
    }

    .products-section {
        width: 100%;
        margin: 0 0 14px !important;
        border-radius: 7px;
    }

    .products-section-head {
        min-height: 54px;
        padding: 9px 12px 9px 16px;
        gap: 10px;
        margin: 0 !important;
    }

    .products-section-head h3 {
        flex: 1;
        min-width: 0;
        margin: 0 !important;
        font-size: 16px;
        line-height: 22px;
        word-break: break-word;
    }

    .products-section-head > a {
        flex: 0 0 72px;
        min-width: 72px;
        height: 30px;
        padding: 0 8px;
        margin: 0 !important;
        font-size: 12px;
        line-height: 28px;
        white-space: nowrap;
    }

    .products-product-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        width: 100%;
        padding: 12px;
        margin: 0 !important;
    }

    .products-product-item {
        width: 100%;
        min-width: 0;
        margin: 0 !important;
        border-radius: 6px;
    }

    .products-product-image {
        width: 100%;
        height: 110px;
        padding: 9px;
        margin: 0 !important;
    }

    .products-product-image img {
        max-width: 100%;
        max-height: 92px;
    }

    .products-product-content {
        padding: 9px;
    }

    .products-product-title {
        width: 100%;
        height: 38px;
        margin: 0 0 8px !important;
        font-size: 12px;
        line-height: 19px;
    }

    .products-product-stock {
        min-height: 30px;
        padding: 5px 7px;
        margin-bottom: 7px;
        font-size: 12px;
    }

    .products-product-stock strong {
        font-size: 12px;
    }

    .products-product-price {
        min-height: 0;
        padding: 7px;
        margin-bottom: 8px;
    }

    .products-product-tier {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .products-product-tier tr,
    .products-product-tier td,
    .products-product-tier th {
        font-size: 11px !important;
        line-height: 17px !important;
        white-space: normal !important;
    }

    .products-product-action {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 6px;
    }

    .products-product-qty,
    .products-product-btn {
        height: 36px;
        font-size: 11px;
    }

    .products-product-btn {
        padding: 0 5px;
        line-height: 36px;
    }
}
