/* Product cards */
.product-tag-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

/* Keep single-item lists (e.g. Baggage Scanner) from stretching full width */
.product-tag-list--fixed {
    grid-template-columns: repeat(auto-fit, 240px);
}

.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

.product-image-frame {
    height: 180px;
    background: #f5f7fa;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
}

.product-image-placeholder {
    color: #9ca3af;
    font-size: 14px;
}

.product-spec-link {
    display: block;
    text-align: center;
    padding: 8px 17px 0;
    font-size: 13px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}

.product-spec-link:hover {
    text-decoration: underline;
}

.product-card-body {
    padding: 17px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-body h4 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.3;
}

.product-card-description {
    margin: 0 0 12px;
    color: #667085;
    font-size: 14px;
    line-height: 1.55;
    flex: 1;
}

.product-card-cta {
    margin: 0 0 12px;
    color: #475467;
    font-size: 13px;
    line-height: 1.5;
    font-style: italic;
}

.product-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 14px;
    border: 0;
    border-radius: 7px;
    background: #0b1120;
    color: #fff;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.product-quote-btn:hover {
    opacity: .9;
}

@media (max-width: 600px) {
    .product-tag-list,
    .product-tag-list--fixed {
        grid-template-columns: 1fr;
    }

    .product-image-frame {
        height: 160px;
    }
}