/* Pos Page CSS*/
.category-scroll { scrollbar-width: none; -ms-overflow-style: none; }
.category-scroll::-webkit-scrollbar { display: none; }

/* Admin Login Page CSS */
.gradient-bg {
    background: #E91E63; /* Fallback */
    background: -webkit-linear-gradient(135deg, #E91E63 0%, #673AB7 100%);
    background: -moz-linear-gradient(135deg, #E91E63 0%, #673AB7 100%);
    background: -o-linear-gradient(135deg, #E91E63 0%, #673AB7 100%);
    background: linear-gradient(135deg, #E91E63 0%, #673AB7 100%);
    position: relative;
}
.gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.9) 0%, rgba(103, 58, 183, 0.9) 100%);
    z-index: 1;
    pointer-events: none;
}
.gradient-bg > * {
    position: relative;
    z-index: 2;
}
.pattern-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25px 25px, rgba(255,255,255,0.15) 2px, transparent 0),
        radial-gradient(circle at 75px 75px, rgba(255,255,255,0.08) 2px, transparent 0);
    background-size: 100px 100px;
    z-index: 1;
    pointer-events: none;
}
.floating-animation {
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
.slide-in {
    animation: slideIn 0.5s ease-out;
}
@keyframes slideIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.social-btn {
    transition: all 0.3s ease;
}
.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Bottom gradient overlay */
.bottom-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 128px; /* 8rem in px */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

/* White opacity backgrounds */
.bg-white-10 { background-color: rgba(255, 255, 255, 0.1) !important; }
.bg-white-20 { background-color: rgba(255, 255, 255, 0.2) !important; }
.text-white-70 { color: rgba(255, 255, 255, 0.7) !important; }
.text-white-80 { color: rgba(255, 255, 255, 0.8) !important; }
.text-white-90 { color: rgba(255, 255, 255, 0.9) !important; }
.border-white-20 { border-color: rgba(255, 255, 255, 0.2) !important; }

/* Login content centering fix */
.login-content-container {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 100vh !important;
    height: 100vh !important;
    padding: 3rem !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 10 !important;
}
