/* Card Styles */
.item-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 1rem;
    background: #fff;
}

.item-header {
    background: #f8f9fa;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-header span {
    font-weight: 500;
}

.item-body {
    display: none;
    padding: 15px;
}

.item-body.show {
    display: block;
}

.item-thumb {
    width: 200px;
    max-width: 200px;
    max-height: 200px;
    border-radius: 5px;
    float: left;
    margin-right: 10px;
}

@media (max-width: 576px) {
    .item-thumb {
        width: 100%;
        max-width: 100%;
        max-height: 100%;
        margin-right: 0px;
        /* full width on small devices */
    }
}

#employee-container .item-thumb {
    max-width: 100%;
    max-height: 100%;
    border-radius: 5px;
    float: none;
    margin-right: 0px;
}

#package-container .item-thumb {
    max-width: 100%;
    max-height: 100%;
    border-radius: 5px;
    float: none;
    margin-right: 0px;
}

.price-inline {
    display: flex;
    margin-top: 10px;
    font-size: 14px;
}

.price-inline s {
    color: #777;
}

.offer-price {
    color: #dc3545;
    font-weight: bold;
}

.read-more {
    display: inline-block;
}

/* Category Accordion */
.category-header {
    background: #007bff;
    color: #fff;
    padding: 12px 15px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-header .cat-icon {
    font-weight: bold;
}

.category-body {
    display: none;
    padding: 10px;
}

.category-body.show {
    display: block;
}

/* Quantity Controls */
.item-action .qty-group {
    display: none;
}

.item-action .btn-add {
    display: inline-block;
}

.item-action.active .btn-add {
    display: none;
}

.item-action.active .qty-group {
    display: inline-flex;
}

.item-action {
    min-width: 65px;
}

.qty-group {
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    align-items: center;
}

.qty-group input {
    text-align: center;
    border: none;
    outline: none;
    height: 1rem;
    width: 60px;
    padding: 0px;

}

.qty-group button {
    background: #007bff;
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.qty-group button:hover {
    background: #0056b3;
}

.category-body .row>* {
    padding-right: 2px;
    padding-left: 2px;
}