/* ==========================================================================
   TCM Product Styles – tcm-product-styles.css
   Author: Tickled Chilli (tickledchilli.co.uk)
   ========================================================================== */

/* ---------- Card wrapper -------------------------------------------------- */
ul.products li.product,
.woocommerce ul.products li.product {
    background: #F6F6F6;
    border-radius: 16px;
    padding: 20px 20px 24px;
    position: relative;
    display: flex !important;
    flex-direction: column;
    box-shadow: none;
    border: 2px solid transparent;
    overflow: hidden;
}

ul.products li.product:hover,
.woocommerce ul.products li.product:hover {
    border: 2px solid #1906C0;
}

/* ---------- Product image – no zoom, no animation ------------------------- */
ul.products li.product a img,
.woocommerce ul.products li.product a img {
    border: none;
    box-shadow: none;
    border-radius: 0;
    display: block;
    margin: 0 0 16px;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transform: none !important;
    transition: none !important;
}

ul.products li.product a:hover img,
.woocommerce ul.products li.product a:hover img {
    transform: none !important;
    opacity: 1 !important;
}

/* ---------- Category badge ------------------------------------------------ */
.tcm-category-badge {
    display: inline-block;
    background: #EDEDF9;
    color: #1a1a2e;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    padding: 8px 14px;
    border-radius: 8px;
    margin-bottom: 12px;
    align-self: flex-start;
    letter-spacing: 0;
}

/* ---------- Product title ------------------------------------------------- */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-product__title {
    font-size: 22px;
    font-weight: 700;
    color: #0d1b3e;
    padding: 8px 0 6px;
    margin: 0;
    line-height: 1.25;
}

/* ---------- Short description (2-line clamp) ------------------------------ */
.tcm-short-desc {
    font-size: 15px;
    color: #9a9aaa;
    line-height: 1.5;
    margin: 0 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: calc(1.5em * 2);
    flex-grow: 1;
}

/* ---------- Hide default WooCommerce price -------------------------------- */
.woocommerce ul.products li.product .price,
ul.products li.product .price {
    display: none !important;
}

/* ---------- "Hire from £X" button ---------------------------------------- */
.tcm-hire-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    background: #2196f3;
    color: #ffffff !important;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 18px 20px;
    border-radius: 10px;
    text-decoration: none !important;
    margin-top: auto;
    letter-spacing: 0.01em;
}

.tcm-hire-btn:hover,
.tcm-hire-btn:focus,
.tcm-hire-btn:active {
    background: #2196f3;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* ---------- Hide default add-to-cart button ------------------------------- */
ul.products li.product .button,
.woocommerce ul.products li.product .button {
    display: none !important;
}

/* ---------- Responsive tweaks -------------------------------------------- */
@media ( max-width: 600px ) {
    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 18px;
    }
    .tcm-hire-btn {
        font-size: 15px;
        padding: 15px 16px;
    }
}
