/* ============================================
   HOODIE SALE / PROMO PRODUCT GRID
   Static, non-scrolling sibling of the -t26 product filmstrip
   card. Same look (300px isolated photo, name, price below) as
   Trending Products, but laid out as a fixed CSS grid instead
   of a horizontal scroll strip. Use for seasonal sale pages
   where the item count is fixed and known ahead of time.
   ============================================ */

.promo-grid-t26{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1140px;
    margin: 0 auto 40px auto;
    box-sizing: border-box;
}

.promo-grid-item-t26{
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    flex: 0 0 calc((100% - 80px) / 3); /* 3-up, 80px = 2 x 40px gap */
    box-sizing: border-box;
}

.promo-grid-image-t26{
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.promo-grid-info-t26{
    padding-top: 16px;
}

.promo-grid-name-t26{
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #275D38;
    margin: 0 0 4px 0;
}

.promo-grid-price-t26{
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    margin: 0 0 6px 0;
}

.promo-grid-price-regular-t26{
    text-decoration: line-through;
    color: #999999;
    margin-right: 6px;
}

.promo-grid-price-sale-t26{
    color: #B3261E; /* placeholder sale-red - swap for your existing sale colour token if you have one */
    font-weight: 700;
}

.promo-grid-availability-t26{
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    font-style: italic;
    color: #666666;
    margin: 0;
}

/* mobile: 1-up */
@media (max-width: 767px){
    .promo-grid-t26{
        padding: 0 16px;
        gap: 24px;
        box-sizing: border-box;
    }
    .promo-grid-item-t26{
        flex-basis: 100%;
    }
}
