body {
    font-family: 'Inter', sans-serif;
    background-color: #050505;
    color: #ffffff;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff5a00;
}

input, textarea, select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    color-scheme: dark;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #ff5a00;
    background: rgba(255, 255, 255, 0.07);
}

input::placeholder, textarea::placeholder {
    color: #6b7280;
}

.glass, .glass-panel {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-hover:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 90, 0, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px -10px rgba(255, 90, 0, 0.2);
}

.bento-hover:hover {
    transform: translateY(-2px);
}

#cart-modal-panel {
    transition: transform 0.35s ease;
}

.text-gradient {
    background: linear-gradient(to right, #ffffff, #a3a3a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-item.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.95);
}

.custom-radio {
    appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #444;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    background: transparent;
    margin: 0;
    flex-shrink: 0;
}

.custom-radio:checked {
    border-color: #ff5a00;
}

.custom-radio:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.5rem;
    height: 0.5rem;
    background-color: #ff5a00;
    border-radius: 50%;
}

.custom-checkbox {
    appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #444;
    border-radius: 0.25rem;
    outline: none;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    background: transparent;
    margin: 0;
    flex-shrink: 0;
}

.custom-checkbox:checked {
    background-color: #ff5a00;
    border-color: #ff5a00;
}

.custom-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 0.35rem;
    top: 0.1rem;
    width: 0.4rem;
    height: 0.7rem;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.modal-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.modal-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.modal-scrollbar::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

.modal-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.hero-slide {
    transition: opacity 1.2s ease-in-out;
}

.tab-btn {
    color: #9ca3af;
}

.tab-btn.active {
    background: #ff5a00;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 90, 0, 0.35);
}

  .no-scrollbar::-webkit-scrollbar {
    display: none;
  }
  .no-scrollbar {
    -ms-overflow-style: none;  
    scrollbar-width: none;  
  }
  