
.form-control {
    background: #f9f9f9;
}

.form-control:focus {
    box-shadow: none;
}

.sale-title-right .sale-title-right-item {
    width: 35px;
    height: 35px;
}

.category-item {
    background-color: #fff;
    width: 100%;
    height: 100%;
    display: block;
    padding: 0.25rem;
}

.category-item.active {
    background-color: #f4ffe1;
}

.category-item img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    margin: 0 auto;
}
#div_products {
    padding-bottom: 0.5rem;
}
#products {
    height: calc(100vh - 168px);
    overflow: hidden auto;
}
.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #fafff1;
    cursor: pointer;
}
.product-item img {
    height: 65px;
    margin-bottom: 5px;
    object-fit: contain;
}
.product-title {
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.product-item .cat-badge {
    font-size: 0.75rem;
    padding: 2px 4px;
}
.product-item .price {
    color: var(--primary-color);
    font-size: 1.35rem;
}
.sales-sidebar {
    height: calc(100vh - 55px);
}

.sales-sidebar .header,
.sales-sidebar .body,
.sales-sidebar .footer {
    padding: 0.5rem 1.25rem;
}

.sales-sidebar .body {
    height: calc(100% - 16.3rem);
    overflow-y: auto;
}

.sales-sidebar .footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.owl-nav .owl-prev, 
.owl-nav .owl-next {
    font-size: 3.5rem !important;
    transition: ease-in-out 0.5s;
    background: rgba(0, 0, 0, 0.08) !important;
    width: 2rem;
    position: absolute;
    transform: translateY(-100%);
}

.owl-nav .owl-next {
    right: 0;
}

.owl-nav button:hover {
    background: rgba(0, 0, 0, 0.3) !important;
}

.owl-nav button:hover span {
    color: #fff;
}

.owl-carousel .owl-item img {
    width: auto;
}

#food-category .owl-nav .disabled {
    visibility: hidden;
}

.cart-img {
    height: 55px;
    width: 55px;
    object-fit: contain;
}

.cart-item-btn {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-price {
    flex: 0 0 auto;
    width: 3rem;
}

.cart-item-price .price {
    font-size: 1.15rem;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.slick-slide {
    height: auto;
}

.limit-line-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.btn-order {
    background-color: #1485d0;
    color: #fff;
    border: 2px solid transparent;
    transition: 0.35s ease-in;
}
.btn-order:hover {
    background-color: transparent;
    color: #1485d0;
    border: 2px solid #1485d0;
}

.btn-reset {
    background-color: #e23f2d;
    color: #fff;
    border: 2px solid transparent;
    transition: 0.35s ease-in;
}
.btn-reset:hover {
    background-color: transparent;
    color: #e23f2d;
    border: 2px solid #e23f2d;
}

/* Hover Effect: Pulse */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.035);
    }
    100% {
        transform: scale(1);
    }
}

.pulse:hover {
    animation: pulse 0.6s ease-in-out infinite;
}