/* =============================================
   TechToolSupply Custom Styles
   customTemplate.css - load after template.css
   ============================================= */

/* Card: flex column */
.v-product-grid .v-product {
    display: flex !important;
    flex-direction: column;
}

/* Inner wrapper: force column (SearchSpring forces row) */
.v-product-grid .v-product .v-product__inner {
    display: flex !important;
    flex-direction: column !important;
    flex: 1;
}

/* Outer img container (holds title + image): grows to fill space */
.v-product-grid .v-product .v-product__inner > .v-product__img {
    display: flex !important;
    flex-direction: column !important;
    flex: 1;
}

/* Title: stays at top */
.v-product-grid .v-product .v-product__inner > .v-product__img > .v-product__title {
    order: 1;
}

/* Image: pushed to bottom of its section */
.v-product-grid .v-product .v-product__inner > .v-product__img > .v-product__img {
    order: 2;
    margin-top: auto;
}

/* Details (shipping + price): sits below image section */
.v-product-grid .v-product .v-product__details {
    flex-shrink: 0;
}