/* ======================================
   UNIFORM IMAGE CONTAINER
====================================== */
.ff-product-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 80px;
    margin: 0 auto 6px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ======================================
   IMAGE BEHAVIOR (NO CROPPING)
====================================== */
.ff-product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ======================================
   PRODUCT LIST LAYOUT
====================================== */
.ff-product-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ======================================
   ROW CARD
====================================== */
.ff-product-row {
    display: flex;
    align-items: center;
    justify-content: space-between; /* ?? allows better content balance */
    gap: 12px;

    border: 1px solid #e9ecef;
    border-radius: 10px; /* slightly softer */
    padding: 10px 12px;

    background: #fff;
    position: relative;

    transition: 
        box-shadow 0.15s ease,
        transform 0.12s ease;
}

/* Hover interaction */
.ff-product-row:hover {
    box-shadow: 0 6px 14px rgba(0,0,0,0.10);
    transform: translateY(-1px); /* subtle lift */
}

/* Optional: active/click feel */
.ff-product-row:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}
/* ======================================
   THUMBNAIL (LEFT)
====================================== */
.ff-product-thumb-wrap {
    width: 70px;
    height: 70px;
    flex-shrink: 0;

    background: #fff;
    border-radius: 6px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.ff-product-thumb {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* ======================================
   CONTENT (RIGHT)
====================================== */
.ff-product-content {
    flex: 1;
}

.ff-product-name {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

.ff-product-desc {
    font-size: 12px;
    color: #6c757d;
    line-height: 1.3;
}

/* ======================================
   INLINE BADGE
====================================== */
.ff-product-badge-inline {
    margin-left: 6px;
    font-size: 10px;
    background: #1e73be;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
}

/* ======================================
   CLICKABLE AREA
====================================== */
.ff-product-row .stretched-link {
    z-index: 2;
}

.ff-product-list .list-group-item {
    border-left: none;
    border-right: none;
    border-radius: 0;
}

.ff-product-list .list-group-item:first-child {
    border-top: none;
}

.ff-product-list .list-group-item:last-child {
    border-bottom: none;
}