/* PRISMON Boutique — Global Styles */
* {
    box-sizing: border-box
}

body {
    font-family: 'Inter', system-ui, sans-serif
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: transparent
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .1);
    border-radius: 3px
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(.95)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes toastIn {
    from {
        transform: translateX(-120%);
        opacity: 0
    }

    to {
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes toastOut {
    from {
        transform: translateX(0);
        opacity: 1
    }

    to {
        transform: translateX(-120%);
        opacity: 0
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes checkPop {
    from {
        transform: scale(0);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes chatUp {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes typeDot {

    0%,
    80%,
    100% {
        opacity: .3;
        transform: scale(.8)
    }

    40% {
        opacity: 1;
        transform: scale(1)
    }
}

.fade-in-up {
    animation: fadeInUp .8s ease forwards
}

.fiu-1 {
    animation: fadeInUp .8s ease .15s forwards;
    opacity: 0
}

.fiu-2 {
    animation: fadeInUp .8s ease .3s forwards;
    opacity: 0
}

.scale-in {
    animation: scaleIn .4s ease forwards
}

.toast-enter {
    animation: toastIn .5s cubic-bezier(.16, 1, .3, 1) forwards;
    pointer-events: auto
}

.toast-exit {
    animation: toastOut .4s ease forwards
}

.spinner {
    animation: spin 1s linear infinite
}

.cart-t {
    transition: transform .5s cubic-bezier(.16, 1, .3, 1)
}

.chat-up {
    animation: chatUp .3s ease forwards
}

/* Focus & Interactions */
input:focus,
select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(147, 112, 219, .15);
    border-color: #9370DB !important
}

.product-card {
    transition: all .4s ease
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08)
}

.btn-primary {
    transition: all .3s ease
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 94, 184, .2)
}

.filter-pill {
    transition: all .3s ease
}

.filter-pill.active {
    background: #9370DB;
    color: #fff;
    box-shadow: 0 4px 12px rgba(147, 112, 219, .3)
}

.filter-pill:not(.active):hover {
    background: #F5F0FF;
    border-color: #9370DB;
    color: #9370DB
}

.qty-btn {
    transition: all .2s ease
}

.qty-btn:hover {
    background: #F5F0FF;
    border-color: #9370DB;
    color: #9370DB
}

.step-dot.active {
    background: #9370DB;
    border-color: #9370DB;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(147, 112, 219, .15)
}

.step-dot.done {
    background: #9370DB;
    border-color: #9370DB;
    color: #fff
}

.step-line.done {
    background: #9370DB
}

.typing-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #9370DB;
    margin: 0 2px;
    animation: typeDot 1.4s infinite ease-in-out
}

.typing-dot:nth-child(2) {
    animation-delay: .2s
}

.typing-dot:nth-child(3) {
    animation-delay: .4s
}