.card {
    width: 320px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid #D8D9E0;
    transition: all 0.1s ease-in-out;
}

.card:hover .card-image {
    scale: 101%;
    background-size: 110%;
}

.card-header {
    position: relative;
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    z-index: 1;
}

.badge-out-of-stock {
    background: #FF9182;
    color: #980000;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 10px;
    border-radius: 8px;
    text-transform: none;
}

.badge-in-stock {
    background: #82FF91;
    color: #00652A;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 10px;
    border-radius: 8px;
    text-transform: none;
}

.sku {
    font-size: 12px;
    color: #81859C;
}

.card-image {
    background-image: url('assets/bPads.jpg');
    width: 100%;
    height: 200px;
    background-color: #e0e0e0;
    background-position: center;
    background-size: 100%;
    transition: all 0.1s ease-in-out;
    cursor: pointer;
}

.card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.title {
    font-size: 16px;
    font-weight: bold;
    color: #222222;
    line-height: 1.2rem;
}

.subtitle {
    font-size: 14px;
    color: #888888;
    margin-bottom: 12px;
}

.price-info {
    display: flex;
    height: 40px;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: .75rem;
}

.vat-text {
    font-size: 0.75rem;
    color: #9ca3af;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #111827;
    line-height: 1.2rem;
}

.btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 0;
    border-radius: 8px;
}

.add-to-cart {
    background: #16BE56;
}

.add-to-cart :hover {
    background: #129343;
}

.price-req-btn {
    background: #0066ff;
}

.btn-cart-icon {
    height: 1rem;
}

.products-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem 1rem;
}