/* Generic Ecom — app.css (source styles) */
/* TailwindCSS handles most utility classes via CDN */
/* This file contains custom component styles and overrides */

/* ---- CUSTOM SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #6c63ff; border-radius: 3px; }

/* ---- FORM FOCUS RING ---- */
input:focus, select:focus, textarea:focus {
    outline: 2px solid transparent;
    box-shadow: 0 0 0 3px rgba(108,99,255,0.2);
}

/* ---- FILE INPUT ---- */
input[type="file"] { cursor: pointer; }

/* ---- SMOOTH TRANSITIONS ---- */
a, button { transition: all 0.15s ease; }

/* ---- CART BADGE ---- */
.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #6c63ff;
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- ONBOARDING STEP ACTIVE ---- */
.step-active { border-color: #6c63ff !important; background: #f0f0ff; }
