@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: titleFont;
    src: url("../fonts/bpg_arial_2009/bpg_arial_2009.ttf");
}

.margin-bottom {
    margin-bottom: 15px;
}

/* ---- Full-width container (redesign) ---- */
@media (min-width: 1200px) {
    .container {
        width: 100%;
        max-width: none;
    }
}

.top:nth-last-of-type(2) {
    float: right;
}

.link {
    color: #d71414;
}

.link:hover {
    color: #a30d0d;
}

.pagination {
    margin-top: 10px !important;
}

.pagination a {
    color: #d71414 !important;
}

.pagination .active a {
    color: #fff !important;
    border: 1px solid #d71414 !important;
    background: #d71414 !important;
}


/* title style */
.title {
    color: #fff;
    text-transform: capitalize;
    background: #df2121 url("../images/title_bg_red.jpg") repeat;
    background-size: contain;
    white-space: nowrap;
    overflow: hidden;
    padding: 5px 10px;
    border-radius: 6px;
}

    .title a {
        color: #ffffff;
    }

    .title a:hover {
        color: #f2dede;
        text-decoration: none;
    }

.title_small {
    background: url("../images/title_bg_yel.jpg") repeat;
    background-size: contain;
}
/* item style */
.item {
    border: 1px solid #dddddd;
}

    .item div:last-child {
        background: #f9f9f9;
        padding: 5px 10px;
    }

.item-prop {
    color: #f34e21;
    font-weight: bold;
    font-family: bpg_sans_web_caps;
}

.show-image {
    cursor: pointer;
}

.show-image-bg {
    height: 115px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #fff;
    position: relative;
}

.item-details {
    background: #f34e21 !important;
    position: absolute;
    top: 15px;
    display: none;
    border-radius: 0 5px 5px 0;
}

    .item-details a {
        color: #fff;
    }

    .item-details a:hover {
        color: #f2dede;
        text-decoration: none;
    }

/* ---- Catalog product card (redesign) ---- */
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    background: #fff;
    padding: 10px 12px 12px;
    transition: box-shadow 0.18s ease, border-color 0.18s ease;
    cursor: pointer;
}

/* Whole-card click target. Sits above the static card content (brand, name,
   image, price) so a click anywhere navigates to the product. The cart button
   and zoom icon use a higher z-index (below) so they keep their own actions.
   NOTE: .product-card must stay position:relative WITHOUT a z-index so this
   overlay and the raised controls share one stacking context. */
.product-card-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    border-radius: 10px;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* No focus ring on mouse/touch click; keep a branded ring for keyboard nav. */
.product-card-link:focus {
    outline: none;
}

.product-card-link:focus-visible {
    outline: 2px solid #df2121;
    outline-offset: -2px;
}

.product-card:hover {
    border-color: #d8d8d8;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.product-card-top {
    min-height: 50px;
}

.product-brand {
    color: #df2121;
    font-family: menuFont;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.product-name {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
    margin-top: 3px;
    max-height: 42px;
    overflow: hidden;
}

.product-name a {
    color: #222;
}

.product-name a:hover {
    color: #df2121;
    text-decoration: none;
}

.product-card .product-image {
    height: 150px;
    margin: 8px 0 10px;
    border-radius: 8px;
    overflow: hidden;
}

.product-zoom {
    position: absolute;
    right: 6px;
    bottom: 6px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #666;
    font-size: 13px;
    cursor: pointer;
    z-index: 2;
}

.product-zoom:hover {
    background: #df2121;
    border-color: #df2121;
    color: #fff;
}

.product-card-foot {
    margin-top: auto;
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 10px;
}

.product-price {
    color: #df2121;
    font-size: 20px;
    font-weight: bold;
    font-family: arial, sans-serif;
    white-space: nowrap;
}

.product-price-na {
    font-size: 14px;
    font-weight: normal;
    color: #999;
}

.product-price-cell {
    display: flex;
    align-items: baseline;
    gap: 7px;
    flex-wrap: wrap;
}

.product-price-old {
    color: #999;
    font-size: 14px;
    font-weight: normal;
    text-decoration: line-through;
    font-family: arial, sans-serif;
    white-space: nowrap;
}

/* Sale badge over the product image. Decorative — clicks pass through to the
   whole-card link below it. */
.product-sale-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: 2;
    background: #df2121;
    color: #fff;
    font-family: arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    padding: 4px 7px;
    border-radius: 6px;
    pointer-events: none;
}

.product-stock {
    font-size: 12px;
    white-space: nowrap;
}

.product-stock.is-in {
    color: #36a336;
}

.product-stock.is-out {
    color: #c0392b;
}

.btn-add-to-cart.product-add {
    position: relative;
    z-index: 2;
    width: 100%;
    background: #df2121;
    border: 1px solid #df2121;
    color: #fff;
    padding: 9px 10px;
    border-radius: 8px;
    font-family: titleFont;
    font-size: 13px;
    cursor: pointer;
    outline: none;
    transition: background 0.18s ease;
}

.btn-add-to-cart.product-add:hover,
.btn-add-to-cart.product-add:focus {
    background: #a30d0d;
    border-color: #a30d0d;
    color: #fff;
}

.btn-add-to-cart.product-add:disabled {
    background: #c2c2c2;
    border-color: #c2c2c2;
    cursor: not-allowed;
}

.btn-add-to-cart.product-add .glyphicon {
    margin-right: 4px;
    font-size: 12px;
}

.btn-add-to-cart.product-add.is-added {
    background: #36a336;
    border-color: #36a336;
}

/* ---- Footer trust strip ---- */
.footer-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 16px;
    padding: 16px 10px;
    margin-bottom: 14px;
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 10px;
}

.footer-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
    font-family: titleFont;
    font-size: 14px;
}

.footer-trust-item .fa {
    font-size: 22px;
    color: #df2121;
}

@media (max-width: 600px) {
    .footer-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}