body {
    font-family: "Inter", sans-serif;
    background-color: white;
}

.navbar-custom {
    background-color: #666cff;
    height: 160px;
    padding: 1rem 4rem 4rem 4rem;
}

.navbar-custom .navbar-brand,
.navbar-custom .form-control::placeholder,
.navbar-custom .btn,
.navbar-custom i {
    color: white;
}

.navbar-custom .form-control {
    background-color: #8b90fc;
    border: none;
    color: white;
    padding-left: 2.5rem;
}

.navbar-custom .form-control:focus {
    box-shadow: none;
    border-color: #1e90ff;
    color: white;
    background-color: #8b90fc;
}

.navbar-custom .form-control::placeholder {
    color: white;
}

.navbar-custom .btn-primary {
    background-color: #1e90ff;
    border: none;
}

.navbar-custom .btn-primary:hover {
    background-color: #1a78e6;
}

.navbar-custom .icon-btn {
    background-color: #8b90fc;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    position: relative;
}

.navbar-custom .icon-btn .notification-dot {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    border: 2px solid #2e2c4b;
}

.container {
    position: relative;
    bottom: 50px;
    z-index: 1000;
}

.category-nav {
    gap: 1.5rem;
}

.category-btn {
    border-radius: 1rem;
    border: 1.5px solid #e5e7eb;
    background-color: white;
    color: #8b90fc;
    font-weight: 600;
    width: 112px;
    padding: 1rem 0.75rem;
    text-align: center;
    transition: border-color 0.3s ease;
}

.category-btn.active {
    border-color: #1e90ff;
    color: #1e90ff;
    box-shadow: 0 0 5px rgba(30, 144, 255, 0.5);
}

.category-btn img {
    border-radius: 100px;
    margin-bottom: 0.5rem;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.category-subtext {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.125rem;
}

.article-row {
    max-width: 100%;
    overflow-x: hidden;
}

.card-custom {
    border-radius: 1rem;
    box-shadow: 0 1px 4px rgb(0 0 0 / 0.1);
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    max-width: 190px;
    margin: 0 auto;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.card-custom.selected {
    border: 2px solid #666cff;
    box-shadow: 0 0 10px rgba(102, 108, 255, 0.5);
}

.selected-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    color: #666cff;
    font-size: 1.5rem;
}

.card-custom .img-wrapper {
    background-color: #f3f4f6;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.card-custom img {
    border-radius: 100px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.card-custom h6 {
    font-weight: 600;
    color: #8b90fc;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    word-wrap: break-word;
}

.card-custom .stock {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.card-custom .cook-time {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.card-custom .price {
    font-weight: 600;
    color: #16a34a;
    font-size: 1rem;
}

.order-card {
    border-radius: 1rem;
    padding: 1.5rem;
    background-color: white;
    box-shadow: 0 1px 6px rgb(0 0 0 / 0.1);
    max-width: 420px;
    position: sticky;
    top: 1.5rem;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.order-header h2 {
    font-weight: 600;
    font-size: 1.125rem;
    color: #1e293b;
    -webkit-user-select: none;
    user-select: none;
}

.btn-clear {
    background-color: #e0f2fe;
    color: #3b82f6;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    padding: 0.25rem 0.75rem;
    transition: background-color 0.3s ease;
}

.btn-clear:hover {
    background-color: #bae6fd;
    color: #1e40af;
}

.order-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.order-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.order-list .item-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-grow: 1;
}

.item-details {
    display: flex;
    flex-direction: column;
}

.order-list .item-info img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.order-list .item-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    -webkit-user-select: none;
    user-select: none;
}

.order-list .quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-list .quantity-controls button {
    background-color: #f3f4f6;
    border: none;
    border-radius: 0.375rem;
    width: 24px;
    height: 24px;
    font-weight: 700;
    color: #9ca3af;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2px;
}

.order-list .quantity-controls span {
    font-weight: 600;
    font-size: 0.875rem;
    color: #8b90fc;
    -webkit-user-select: none;
    user-select: none;
    min-width: 20px;
    text-align: center;
}

.order-list .item-price {
    font-weight: 500;
    font-size: 0.8rem;
    color: #6b7280;
    -webkit-user-select: none;
    user-select: none;
    text-align: left;
}

.order-summary {
    background-color: #10b981;
    border-radius: 1rem;
    padding: 1rem;
    color: white;
    font-size: 0.875rem;
    -webkit-user-select: none;
    user-select: none;
    margin-bottom: 1rem;
}

.order-summary div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.order-summary .total {
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 0.5rem;
}

.payment-methods {
    margin-bottom: 1rem;
}

.payment-methods h5 {
    font-weight: 600;
    font-size: 1rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
    -webkit-user-select: none;
    user-select: none;
}

.payment-btn {
    border-radius: 0.5rem;
    width: 96px;
    padding: 0.75rem 0;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    border: 1.5px solid #e5e7eb;
    color: #9ca3af;
    background-color: #f9fafb;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.payment-btn i {
    font-size: 1.25rem;
}

.payment-btn.active {
    border-color: #1e90ff;
    color: #1e90ff;
    background-color: white;
}

.btn-print {
    background-color: #1e90ff;
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.75rem 0;
    width: 100%;
    border: none;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    transition: background-color 0.3s ease;
}

.btn-print:hover {
    background-color: #1a78e6;
}

.v-select-style .vs__dropdown-toggle {
    background-color: white !important;
    height: 48px !important;
    border-radius: 7px;
}

@media (max-width: 991.98px) {
    main {
        flex-direction: column;
    }

    .order-card {
        max-width: 100%;
        position: static;
        margin-top: 2rem;
    }
}

.product-slider-container {
    position: relative;
    padding: 0 45px;
    margin: 0 -15px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    line-height: 1;
}

.slider-arrow:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

@media (min-width: 992px) {
    .category-nav {
        gap: 70px;
    }
} 