@import url("./root.css");
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--secondary);
    color: var(--dark);
    overflow-x: hidden;
}

/* Typography */
.brand-font { font-family: 'Pacifico', cursive; color: var(--primary); }

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    transition: transform 0.3s ease;
}

.product-card:hover { transform: translateY(-5px); }

.product-img {
    height: 180px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

/* Custom Buttons */
.btn-custom {
    background-color: var(--primary);
    color: white;
    border-radius: 50px;
    padding: 10px 25px;
    border: none;
    transition: 0.3s;
}
.btn-custom:hover { background-color: #b08055; color: white; }

/* Filter Pills */
.category-pill {
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 50px;
    background: white;
    margin-right: 10px;
    border: 1px solid #ddd;
    transition: 0.3s;
}
.category-pill.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Floating Cart (Mobile) */
.cart-sidebar {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    width: 350px;
    background: white;
    z-index: 1050;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    padding: 20px;
    overflow-y: auto;
}
.cart-sidebar.active { right: 0; }

/* POS Mode Styles */
body.pos-mode .hero-section { display: none; }
body.pos-mode .container { max-width: 100%; padding: 0 30px; }
