/* Picola — custom styles (poleg Tailwind CDN) */

html { scroll-behavior: smooth; }

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom button states za 1/2 mix flow (M3) */
.half-selected {
    background-color: #B14A2B;
    color: #fff;
    border-color: #B14A2B;
}

.half-selected::before {
    content: '✓ ';
}

/* Flash animacija ob dodajanju v cart */
@keyframes cart-flash {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.08); }
    100% { transform: scale(1); }
}
.cart-flash { animation: cart-flash 0.3s ease-out; }

/* Disable state */
button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
