/* VELORA storefront – extras on top of Tailwind CDN */
html { scroll-behavior: smooth; }
body { overscroll-behavior: none; }
::-webkit-scrollbar { width: 0; height: 0; }
.material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24; vertical-align: middle; }
img { max-width: 100%; }

/* form fields */
.field { width: 100%; background: #f5f3ef; border: 1px solid transparent; padding: 14px 16px; font-size: 14px; color: #1b1c1a; border-radius: 0; outline: none; transition: border-color .15s, background .15s; -webkit-appearance: none; appearance: none; }
.field:focus { border-color: #1b1c1a; background: #fff; }
select.field { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23494740' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
textarea.field { resize: vertical; min-height: 96px; }
.field-label { display:block; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: #494740; margin-bottom: 6px; font-weight: 500; }
.field-error { color: #ba1a1a; font-size: 12px; margin-top: 4px; }
input[type=checkbox], input[type=radio] { accent-color: #000; }

/* buttons */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; height:52px; padding:0 32px; background:#000; color:#fff; font-size:11px; letter-spacing:.18em; text-transform:uppercase; font-weight:500; transition:background .2s; cursor:pointer; border:0; }
.btn:hover { background:#262626; }
.btn-light { background:#efeeea; color:#1b1c1a; }
.btn-light:hover { background:#e4e2de; }
.btn-outline { background:transparent; color:#1b1c1a; border:1px solid #1b1c1a; }
.btn-outline:hover { background:#1b1c1a; color:#fff; }
.btn[disabled] { opacity:.45; cursor:not-allowed; }

/* accordion */
.acc-body { display:none; }
.acc.open .acc-body { display:block; }
.acc .acc-icon::before { content:'add'; }
.acc.open .acc-icon::before { content:'remove'; }

/* toasts */
.toast { pointer-events:auto; padding:12px 16px; font-size:13px; box-shadow:0 10px 30px rgba(0,0,0,.12); animation: toast-in .25s ease-out; display:flex; gap:10px; align-items:center; }
@keyframes toast-in { from { opacity:0; transform: translateY(-6px);} to { opacity:1; transform:none; } }

/* size / colour pickers */
.size-btn { height:48px; background:#efeeea; font-size:12px; letter-spacing:.1em; text-transform:uppercase; transition:all .15s; cursor:pointer; border:0; }
.size-btn:hover:not([disabled]) { background:#e4e2de; }
.size-btn.active { background:#000; color:#fff; }
.size-btn[disabled] { color:#b5b1a8; text-decoration:line-through; cursor:not-allowed; }
.swatch { width:32px; height:32px; border-radius:9999px; border:1px solid rgba(0,0,0,.12); cursor:pointer; padding:0; position:relative; }
.swatch.active { box-shadow:0 0 0 2px #fbf9f5, 0 0 0 3px #1b1c1a; }
.thumb.active { outline:1px solid #1b1c1a; outline-offset:2px; }

.prose-velora p { margin: 0 0 1em; line-height: 1.75; color:#494740; }
.prose-velora h2, .prose-velora h3 { font-family:'Bodoni Moda', serif; margin: 1.6em 0 .6em; color:#1b1c1a; }
.prose-velora h2 { font-size: 28px; } .prose-velora h3 { font-size: 20px; }
.prose-velora ul { list-style: disc; padding-left: 1.4em; margin: 0 0 1em; color:#494740; }
.prose-velora ol { list-style: decimal; padding-left: 1.4em; margin: 0 0 1em; color:#494740; }
.prose-velora a { text-decoration: underline; text-underline-offset: 3px; }
.prose-velora img { margin: 1em 0; }
.prose-velora table { width:100%; border-collapse: collapse; } .prose-velora td, .prose-velora th { border:1px solid #e4e2de; padding:8px 10px; }

@media print { header, footer, .no-print, #toast-root { display:none !important; } body { background:#fff; } }
