.copd-order-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 10px;
}

.copd-card {
    border: 1px solid #ddd;
    border-radius: 16px !important;
    padding: 15px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    transition: transform 0.2s ease;
}

.copd-card:hover {
    transform: translateY(-5px);
}

.copd-thumb img {
    width: 120px;
    height: auto;
    border-radius: 16px !important;
    margin-bottom: 10px;
}

.copd-info {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.copd-info ul {
    padding: 0;
    margin: 5px 0 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.copd-info ul li {
    padding: 0;
    border-radius: 0;
    white-space: nowrap;
    font-size: 13px;
}

.copd-request-btn {
    display: inline-block;
    text-align: center;
    background: #DD3333 !important;
    color: white !important;
    padding: 8px 12px;
    border-radius: 16px !important;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
    margin-top: 8px;
    border: none;
}

.copd-request-btn:hover {
    background: #bb0000 !important;
}
