
.offer-card {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 15px;
    background: #fff;
    transition: box-shadow .15s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.offer-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,.07);
}

.offer-image {
    text-align: center;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.offer-image img {
    max-width: 190px;
    max-height: 170px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.offer-header-line {
    background: #f8f9fa;
    border-left: 4px solid #c00;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    padding: 6px 10px;
    margin-bottom: 10px;
}
.offer-header-line .price {
    color: #c00;
    font-weight: 700;
    white-space: nowrap;
}

.offer-title {
    font-size: 14px;
    line-height: 1.4;
    color: #222;
    font-weight: 500;
    margin: 0 0 10px 0;
}
.offer-title a {
    color: #222;
    text-decoration: none;
}
.offer-title a:hover {
    text-decoration: underline;
}

.sku-line {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}
.unit-line {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.view-link a {
    font-size: 14px;
    text-decoration: none;
    color: #0056b3;
}
.view-link a:hover {
    text-decoration: underline;
}

/* spacing between cards */
.offer-col {
    margin-bottom: 30px;
}

/* page header */
.offers-page-title {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
}
.offers-note {
    font-size: 14px;
    color: #777;
    margin-top: -10px;
    margin-bottom: 25px;
} 