:root{--color-blush:#f3d9d8;--color-blush-light:#faf0ef;--color-pink:#e8b4b8;--color-pink-dark:#c98a90;--color-gold:#c9a15a;--color-gold-light:#e8d5ab;--color-brown:#4a3428;--color-brown-light:#7a5c48;--color-cream:#fdf8f3;--color-white:#fff;--color-black:#221812;--color-bg:var(--color-cream);--color-surface:var(--color-white);--color-text:var(--color-brown);--color-text-muted:var(--color-brown-light);--color-accent:var(--color-gold);--color-accent-soft:var(--color-blush);--color-border:#e7dccf;--color-success:#5b7a5b;--color-warning:#b8873f;--color-danger:#a5473f;--font-heading:"Playfair Display", Georgia, serif;--font-body:"Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;--radius-sm:4px;--radius-md:10px;--radius-lg:18px;--shadow-sm:0 1px 3px #4a342814;--shadow-md:0 4px 16px #4a34281a;--shadow-lg:0 12px 32px #4a342824;--max-width:1200px;--lightningcss-light:initial;--lightningcss-dark: ;color-scheme:light}*{box-sizing:border-box}html,body{margin:0;padding:0}body{background:var(--color-bg);color:var(--color-text);font-family:var(--font-body);-webkit-font-smoothing:antialiased;font-size:16px;line-height:1.5}h1,h2,h3,h4{font-family:var(--font-heading);color:var(--color-brown);margin:0 0 .5em;font-weight:600;line-height:1.2}p{margin:0 0 1em}a{color:inherit;text-decoration:none}button,input,select,textarea{font-family:inherit}button{font-size:inherit}input,select,textarea{font-size:1rem}img{max-width:100%;display:block}#root{flex-direction:column;min-height:100vh;display:flex}.container{width:100%;max-width:var(--max-width);margin:0 auto;padding:0 1.25rem}.btn{border-radius:var(--radius-md);font-family:var(--font-body);letter-spacing:.02em;cursor:pointer;border:1px solid #0000;justify-content:center;align-items:center;gap:.5em;padding:.75em 1.5em;font-size:.95rem;font-weight:500;transition:all .15s;display:inline-flex}.btn-primary{background:var(--color-brown);color:var(--color-white)}.btn-primary:hover{background:var(--color-black)}.btn-gold{background:var(--color-gold);color:var(--color-white)}.btn-gold:hover{background:#b18e4d}.btn-outline{border-color:var(--color-border);color:var(--color-brown);background:0 0}.btn-outline:hover{border-color:var(--color-brown)}.btn:disabled{opacity:.5;cursor:not-allowed}.badge{letter-spacing:.03em;text-transform:uppercase;white-space:nowrap;border-radius:999px;padding:.25em .75em;font-size:.75rem;font-weight:500;display:inline-block}.badge-available{background:var(--color-blush-light);color:var(--color-pink-dark)}.badge-reserved{color:var(--color-warning);background:#f5ecd8}.badge-sold{color:var(--color-text-muted);background:#ece5dd}.badge-condition{background:var(--color-gold-light);color:var(--color-brown)}.lang-toggle{border:1px solid var(--color-border);border-radius:999px;flex-shrink:0;padding:2px;display:inline-flex}.lang-toggle__btn{letter-spacing:.02em;color:var(--color-text-muted);cursor:pointer;background:0 0;border:none;border-radius:999px;padding:.3em .65em;font-size:.75rem;font-weight:600}.lang-toggle__btn--active{background:var(--color-brown);color:var(--color-white)}.site-header{z-index:20;background:var(--color-surface);border-bottom:1px solid var(--color-border);position:sticky;top:0}.site-header__inner{justify-content:space-between;align-items:center;gap:1rem;padding-block:.75rem;display:flex}.site-header__left{align-items:center;gap:2.25rem;min-width:0;display:flex}.site-header__brand{font-family:var(--font-heading);color:var(--color-brown);white-space:nowrap;flex-shrink:0;align-items:center;gap:.6rem;font-size:1.1rem;font-weight:600;display:flex}.site-header__logo{width:auto;height:44px}.site-header__nav{gap:1.1rem;min-width:0;font-size:.9rem;display:flex;overflow-x:auto}.site-header__nav a{color:var(--color-text-muted);white-space:nowrap;border-bottom:2px solid #0000;padding-bottom:2px}.site-header__nav a.active,.site-header__nav a:hover{color:var(--color-brown);border-bottom-color:var(--color-gold)}.site-header__actions{flex-shrink:0;align-items:center;gap:.6rem;display:flex}.site-header__burger{cursor:pointer;border-radius:var(--radius-sm);background:0 0;border:none;flex-direction:column;justify-content:center;align-items:center;gap:4px;width:36px;height:36px;padding:0;display:none}.site-header__burger:hover{background:var(--color-blush-light)}.site-header__burger span{background:var(--color-brown);border-radius:2px;width:19px;height:2px;transition:transform .22s,opacity .18s;display:block}.site-header__burger--open span:first-child{transform:translateY(6px)rotate(45deg)}.site-header__burger--open span:nth-child(2){opacity:0}.site-header__burger--open span:nth-child(3){transform:translateY(-6px)rotate(-45deg)}.site-header__mobile-panel,.site-header__scrim{display:none}@media (width<=640px){.site-header__brand span,.site-header__nav{display:none}.site-header__burger{display:flex}.site-header__mobile-panel{z-index:16;background:var(--color-surface);border-bottom:1px solid var(--color-border);box-shadow:var(--shadow-md);max-height:0;transition:max-height .28s;display:block;position:absolute;top:100%;left:0;right:0;overflow:hidden}.site-header__mobile-panel--open{max-height:320px}.site-header__mobile-nav{flex-direction:column;padding:.5rem 1.25rem 1rem;display:flex}.site-header__mobile-nav a{color:var(--color-text);border-bottom:1px solid var(--color-border);padding:.85em 0;font-size:1.05rem}.site-header__mobile-nav a:last-child{border-bottom:none}.site-header__mobile-nav a.active{color:var(--color-brown);font-weight:600}.site-header__scrim{z-index:15;background:#22181259;display:block;position:fixed;inset:68px 0 0}}.site-footer{background:var(--color-brown);color:var(--color-blush-light);margin-top:auto;padding-block:2.5rem 1.25rem}.site-footer__inner{border-bottom:1px solid #ffffff26;flex-wrap:wrap;justify-content:space-between;gap:1.5rem;padding-bottom:1.5rem;display:flex}.site-footer__brand{font-family:var(--font-heading);color:var(--color-white);margin-bottom:.25rem;font-size:1.1rem}.site-footer__tagline{color:var(--color-gold-light);margin:0;font-size:.85rem}.site-footer__nav{flex-wrap:wrap;gap:1rem 1.5rem;font-size:.85rem;display:flex}.site-footer__nav a:hover{color:var(--color-gold)}.site-footer__copy{text-align:center;color:#ffffff80;margin:1rem 0 0;font-size:.75rem}.product-card{background:var(--color-surface);border-radius:var(--radius-md);box-shadow:var(--shadow-sm);flex-direction:column;transition:transform .15s,box-shadow .15s;display:flex;overflow:hidden}.product-card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px)}.product-card__image-wrap{aspect-ratio:1;background:var(--color-blush-light);position:relative;overflow:hidden}.product-card__image{object-fit:cover;width:100%;height:100%;display:block}.product-card__image--placeholder{background:linear-gradient(135deg, var(--color-blush-light), var(--color-gold-light))}.product-card__badges{justify-content:space-between;align-items:flex-start;gap:.35rem;display:flex;position:absolute;top:.6rem;left:.6rem;right:.6rem}.product-card__badges .badge{text-overflow:ellipsis;min-width:0;overflow:hidden}.product-card__code{color:var(--color-white);letter-spacing:.03em;cursor:pointer;text-align:center;background:#221812b8;border:none;border-radius:999px;flex-shrink:0;padding:.25em .6em;font-size:.72rem;font-weight:600;transition:background .15s}.product-card__code:hover{background:#221812e0}.product-card__body{flex-direction:column;flex:1;padding:.85rem .9rem 1rem;display:flex}.product-card__brand{text-transform:uppercase;letter-spacing:.06em;color:var(--color-text-muted);white-space:nowrap;text-overflow:ellipsis;margin:0 0 .15rem;font-size:.7rem;overflow:hidden}.product-card__name{-webkit-line-clamp:2;-webkit-box-orient:vertical;min-height:2.6em;margin:0 0 .5rem;font-size:1rem;line-height:1.3;display:-webkit-box;overflow:hidden}.product-card__meta{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:.4rem .5rem;margin-top:auto;display:flex}.product-card__price{color:var(--color-brown);white-space:nowrap;font-weight:600}@media (width<=480px){.product-card__badges{gap:.25rem;top:.45rem;left:.45rem;right:.45rem}.product-card__badges .badge,.product-card__code{padding:.22em .5em;font-size:.65rem}}.skeleton{background:linear-gradient(100deg, var(--color-blush-light) 30%, #f0e4de 50%, var(--color-blush-light) 70%);border-radius:var(--radius-sm);background-size:200% 100%;animation:1.4s ease-in-out infinite skeleton-shimmer}@keyframes skeleton-shimmer{0%{background-position:200% 0}to{background-position:-200% 0}}@media (prefers-reduced-motion:reduce){.skeleton{background:var(--color-blush-light);animation:none}}.price-slider{min-width:220px}.price-slider__labels{color:var(--color-text-muted);justify-content:space-between;margin-bottom:.4rem;font-size:.8rem;display:flex}.price-slider__track-wrap{height:28px;position:relative}.price-slider__track{background:var(--color-border);border-radius:2px;height:4px;position:absolute;top:50%;left:0;right:0;transform:translateY(-50%)}.price-slider__range{background:var(--color-gold);border-radius:2px;height:4px;position:absolute;top:50%;transform:translateY(-50%)}.price-slider__track-wrap input[type=range]{pointer-events:none;appearance:none;z-index:3;background:0 0;width:100%;margin:0;position:absolute;top:50%;left:0;transform:translateY(-50%)}.price-slider__track-wrap input[type=range].price-slider__thumb-top{z-index:4}.price-slider__track-wrap input[type=range]::-webkit-slider-runnable-track{background:0 0;height:4px}.price-slider__track-wrap input[type=range]::-webkit-slider-thumb{appearance:none;pointer-events:all;background:var(--color-gold);border:2px solid var(--color-surface);width:16px;height:16px;box-shadow:var(--shadow-sm);cursor:pointer;border-radius:50%;margin-top:-6px}.price-slider__track-wrap input[type=range]::-moz-range-track{background:0 0;height:4px}.price-slider__track-wrap input[type=range]::-moz-range-thumb{pointer-events:all;background:var(--color-gold);border:2px solid var(--color-surface);width:16px;height:16px;box-shadow:var(--shadow-sm);cursor:pointer;border-radius:50%}.shop{padding-block:1.5rem 3rem}.shop__intro{margin-bottom:1.25rem}.shop__intro p{color:var(--color-text-muted);margin:0}.shop__search{max-width:420px;margin-bottom:1rem;position:relative}.shop__search-input{border-radius:var(--radius-md);border:1px solid var(--color-border);background:var(--color-surface);width:100%;color:var(--color-text);box-shadow:var(--shadow-sm);padding:.75em 2.5em .75em 1em}.shop__search-input:focus{outline:2px solid var(--color-gold);outline-offset:1px}.shop__search-clear{color:var(--color-text-muted);cursor:pointer;background:0 0;border:none;padding:.3em;font-size:.9rem;line-height:1;position:absolute;top:50%;right:.6em;transform:translateY(-50%)}.shop__search-clear:hover{color:var(--color-brown)}.shop__controls{flex-wrap:wrap;gap:1rem;margin-bottom:1.5rem;display:flex}.shop__filter{color:var(--color-text-muted);align-items:center;gap:.5rem;font-size:.85rem;display:flex}.shop__filter select{border-radius:var(--radius-sm);border:1px solid var(--color-border);background:var(--color-surface);color:var(--color-text);padding:.45em .7em}.shop__status{color:var(--color-text-muted);text-align:center;padding:2rem 0}.shop__status--error{color:var(--color-danger)}.shop__grid{grid-template-columns:repeat(2,1fr);align-items:start;gap:.9rem;display:grid}@media (width>=560px){.shop__grid{grid-template-columns:repeat(3,1fr);gap:1.25rem}}@media (width>=860px){.shop__grid{grid-template-columns:repeat(4,1fr)}}@media (width>=1120px){.shop__grid{grid-template-columns:repeat(5,1fr)}}.pd{grid-template-columns:1fr;gap:1.75rem;padding-block:1.5rem 3rem;display:grid}.pd__status{text-align:center;color:var(--color-text-muted);padding:3rem 0}.pd__status--error{color:var(--color-danger);margin-bottom:1rem}.pd__main-image{aspect-ratio:1;border-radius:var(--radius-lg);background:var(--color-blush-light);overflow:hidden}.pd__main-image img{object-fit:cover;width:100%;height:100%}.pd__main-image--placeholder{background:linear-gradient(135deg, var(--color-blush-light), var(--color-gold-light));width:100%;height:100%}.pd__main-image--clickable{cursor:zoom-in}.pd__lightbox{z-index:200;background:#110c09eb;justify-content:center;align-items:center;padding:2rem;display:flex;position:fixed;inset:0}.pd__lightbox-image{object-fit:contain;border-radius:var(--radius-sm);cursor:default;max-width:min(90vw,1100px);max-height:88vh}.pd__lightbox-close{color:var(--color-white);cursor:pointer;background:#ffffff26;border:none;border-radius:50%;width:40px;height:40px;font-size:1.1rem;position:absolute;top:1rem;right:1.25rem}.pd__lightbox-close:hover{background:#ffffff40}.pd__lightbox-nav{color:var(--color-white);cursor:pointer;background:#ffffff26;border:none;border-radius:50%;justify-content:center;align-items:center;width:48px;height:48px;font-size:1.8rem;line-height:1;display:flex;position:absolute;top:50%;transform:translateY(-50%)}.pd__lightbox-nav:hover{background:#ffffff40}.pd__lightbox-nav--prev{left:1rem}.pd__lightbox-nav--next{right:1rem}@media (width<=640px){.pd__lightbox{padding:1rem}.pd__lightbox-nav{width:40px;height:40px;font-size:1.5rem}}.pd__thumbs{gap:.5rem;margin-top:.75rem;display:flex;overflow-x:auto}.pd__thumb{border-radius:var(--radius-sm);cursor:pointer;background:0 0;border:2px solid #0000;flex-shrink:0;width:64px;height:64px;padding:0;overflow:hidden}.pd__thumb img{object-fit:cover;width:100%;height:100%}.pd__thumb--active{border-color:var(--color-gold)}.pd__brand-row{justify-content:space-between;align-items:center;gap:.75rem;margin:0 0 .25rem;display:flex}.pd__brand{text-transform:uppercase;letter-spacing:.06em;color:var(--color-text-muted);margin:0;font-size:.8rem}.pd__code{color:var(--color-brown);background:var(--color-blush-light);white-space:nowrap;border-radius:999px;padding:.2em .65em;font-size:.78rem;font-weight:600}.pd__name{margin-bottom:.6rem;font-size:1.6rem}.pd__meta{flex-wrap:wrap;align-items:center;gap:.6rem;margin-bottom:1rem;display:flex}.pd__price{color:var(--color-brown);font-size:1.3rem;font-weight:600}.pd__description{color:var(--color-text-muted);white-space:pre-line}.pd__variants{margin-bottom:1.25rem}.pd__variants-label{margin-bottom:.5rem;font-size:.85rem;font-weight:500}.pd__variant-options{flex-wrap:wrap;gap:.5rem;display:flex}.pd__variant-chip{border:1px solid var(--color-border);background:var(--color-surface);cursor:pointer;border-radius:999px;padding:.5em 1em;font-size:.85rem}.pd__variant-chip--active{border-color:var(--color-brown);background:var(--color-blush-light)}.pd__variant-chip--unavailable{opacity:.5}.pd__buy{width:100%;margin-bottom:1.5rem;padding-block:.9em;font-size:1rem}@media (width>=800px){.pd{grid-template-columns:1.1fr 1fr;gap:2.5rem}}.checkout{max-width:720px;padding-block:1.5rem 3rem}.checkout__status{text-align:center;color:var(--color-text-muted);padding:3rem 0}.checkout__status--error{color:var(--color-danger);margin-bottom:1rem}.checkout__summary{background:var(--color-surface);border-radius:var(--radius-md);box-shadow:var(--shadow-sm);align-items:center;gap:1rem;margin-bottom:2rem;padding:1rem;display:flex}.checkout__summary img{border-radius:var(--radius-md);border:1px solid var(--color-border);object-fit:cover;object-position:center;flex-shrink:0;width:88px;height:88px}.checkout__summary-name{margin:0 0 .2rem;font-weight:500}.checkout__summary-price{color:var(--color-brown);margin:0;font-weight:600}.checkout__pay-section{margin-bottom:2rem}.checkout__pay-instructions{color:var(--color-text-muted)}.checkout__pay-methods{grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:.75rem;display:grid}.pay-option{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);text-align:center;padding:1rem}.pay-option__label{margin:0 0 .5rem;font-weight:600}.pay-option__qr{border-radius:var(--radius-sm);width:100%;max-width:140px;margin:0 auto .5rem}.pay-option__handle{color:var(--color-text-muted);word-break:break-word;margin:0;font-size:.9rem}.checkout__pay-missing{color:var(--color-warning);border-radius:var(--radius-md);background:#f5ecd8;padding:1rem 1.1rem;font-size:.9rem}.checkout__subheading{margin:1.5rem 0 .75rem;font-size:1rem}.checkout__grid{grid-template-columns:1fr;gap:.9rem;display:grid}.checkout__form input:disabled{background:var(--color-blush-light);color:var(--color-text-muted);cursor:not-allowed}.checkout__hint{color:var(--color-text-muted);margin:-.4rem 0 0;font-size:.8rem}.checkout__error{color:var(--color-danger);margin-top:1rem}.checkout__stale-warning{color:var(--color-warning);border-radius:var(--radius-md);background:#f5ecd8;margin-bottom:1.25rem;padding:.85rem 1rem;font-size:.88rem}.checkout__remember{color:var(--color-text-muted);cursor:pointer;align-items:center;gap:.5rem;margin-top:1.25rem;font-size:.88rem;display:flex}.checkout__remember input{width:16px;height:16px;accent-color:var(--color-gold);cursor:pointer}.checkout__submit{width:100%;margin-top:1.5rem;padding-block:.9em}.checkout__disclaimer{color:var(--color-text-muted);text-align:center;margin-top:.75rem;font-size:.8rem}@media (width>=600px){.checkout__grid{grid-template-columns:1fr 1fr}}.order-submitted{text-align:center;max-width:520px;padding-block:3rem 4rem}.order-submitted__icon{background:var(--color-blush);width:56px;height:56px;color:var(--color-brown);border-radius:50%;justify-content:center;align-items:center;margin:0 auto 1rem;font-size:1.5rem;display:flex}.order-submitted p{color:var(--color-text-muted)}.order-submitted__note{margin-bottom:1.5rem}.order-submitted__actions{flex-wrap:wrap;justify-content:center;gap:.75rem;display:flex}.order-lookup{max-width:480px;padding-block:1.5rem 3rem}.order-lookup__lede{color:var(--color-text-muted);margin-bottom:1.5rem}.order-lookup__form{background:var(--color-surface);border-radius:var(--radius-lg);box-shadow:var(--shadow-md);flex-direction:column;gap:1rem;margin-bottom:1.5rem;padding:1.5rem;display:flex}.order-lookup__form .field span{color:var(--color-text-muted);margin-bottom:.3rem;font-size:.85rem;display:block}.order-lookup__form .field input{border-radius:var(--radius-sm);border:1px solid var(--color-border);background:var(--color-cream);width:100%;color:var(--color-text);padding:.65em .85em}.order-lookup__form .field input:focus{outline:2px solid var(--color-gold);outline-offset:1px}.order-lookup__form .btn{width:100%;padding-block:.75em}.order-lookup__result{background:var(--color-blush-light);border-radius:var(--radius-md);padding:1.25rem}.order-lookup__status-badge{margin-bottom:.6rem}.order-lookup__status-badge--pending_verification{color:var(--color-warning);background:#f5ecd8}.order-lookup__status-badge--verified{background:var(--color-blush);color:var(--color-pink-dark)}.order-lookup__status-badge--shipped{color:var(--color-success);background:#dfeadf}.order-lookup__status-badge--cancelled{color:var(--color-text-muted);background:#ece5dd}.order-lookup__item{margin:0 0 .35rem;font-weight:600}.order-lookup__blurb{color:var(--color-text-muted);margin:0 0 .5rem}.order-lookup__timestamp{color:var(--color-text-muted);margin:0;font-size:.78rem}.order-lookup__not-found{color:var(--color-text-muted);margin:0}.contact{padding-block:1.5rem 3rem}.contact__intro{max-width:640px;margin-bottom:2rem}.contact__intro p{color:var(--color-text-muted);margin:0}.contact__layout{grid-template-columns:1fr;align-items:start;gap:1.5rem;display:grid}.contact__form-card{background:var(--color-surface);border-radius:var(--radius-lg);box-shadow:var(--shadow-md);padding:1.75rem}.contact-form{flex-direction:column;gap:1.1rem;display:flex}.contact-form__honeypot{opacity:0;pointer-events:none;width:1px;height:1px;position:absolute;overflow:hidden}.contact-form__grid{grid-template-columns:1fr;gap:1.1rem;display:grid}.contact-form .field{color:var(--color-text-muted);flex-direction:column;gap:.35rem;font-size:.85rem;display:flex}.contact-form .field input,.contact-form .field select,.contact-form .field textarea{border-radius:var(--radius-sm);border:1px solid var(--color-border);background:var(--color-cream);color:var(--color-text);padding:.7em .9em;font-family:inherit}.contact-form .field input:focus,.contact-form .field select:focus,.contact-form .field textarea:focus{outline:2px solid var(--color-gold);outline-offset:1px}.contact-form .field textarea{resize:vertical}.contact-form__submit{width:100%;padding-block:.85em;font-size:1rem}.contact__error{color:var(--color-danger);margin:0;font-size:.85rem}.contact__success{text-align:center;padding:2rem 0}.contact__success-icon{background:var(--color-blush);width:52px;height:52px;color:var(--color-brown);border-radius:50%;justify-content:center;align-items:center;margin:0 auto 1rem;font-size:1.4rem;display:flex}.contact__success p{color:var(--color-text-muted);margin-bottom:1.5rem}.contact__side{flex-direction:column;gap:1rem;display:flex}.contact__side-card{background:var(--color-blush-light);border-radius:var(--radius-md);padding:1.25rem}.contact__side-icon{margin-bottom:.5rem;font-size:1.4rem}.contact__side-card h3{margin:0 0 .4rem;font-size:1rem}.contact__side-card p{color:var(--color-text-muted);margin:0;font-size:.88rem}@media (width>=720px){.contact-form__grid{grid-template-columns:1fr 1fr}}@media (width>=900px){.contact__layout{grid-template-columns:1.6fr 1fr;gap:2rem}}.static-page{max-width:720px;padding-block:1.5rem 3rem}.static-page__lede{color:var(--color-text-muted);margin-bottom:1.5rem}.faq-item{margin-bottom:1.5rem}.faq-item h3{margin-bottom:.4rem;font-size:1.05rem}.faq-item p{color:var(--color-text-muted);margin:0}.static-page section{margin-bottom:2rem}.static-page h2{margin-top:0;font-size:1.15rem}.guide{max-width:720px;padding-block:1.5rem 3.5rem}.guide__intro{margin-bottom:2rem}.guide__intro p{color:var(--color-text-muted);max-width:56ch;margin:0}.guide__steps{flex-direction:column;display:flex}.guide__step{border-bottom:1px solid var(--color-border);gap:1.1rem;margin-bottom:1.5rem;padding-bottom:1.5rem;display:flex}.guide__step:last-child{border-bottom:none;margin-bottom:0;padding-bottom:0}.guide__step-num{background:var(--color-blush-light);width:34px;height:34px;color:var(--color-brown);font-family:var(--font-heading);border-radius:50%;flex-shrink:0;justify-content:center;align-items:center;font-size:1rem;font-weight:600;display:flex}.guide__step-body h3{margin-bottom:.4rem;font-size:1.05rem}.guide__step-body p{color:var(--color-text-muted);margin:0}.admin-login{background:var(--color-brown);justify-content:center;align-items:center;min-height:100vh;padding:1.5rem;display:flex}.admin-login__card{background:var(--color-surface);border-radius:var(--radius-lg);width:100%;max-width:360px;box-shadow:var(--shadow-lg);padding:2rem 1.75rem}.admin-login__card h1{text-align:center;margin-bottom:1.25rem;font-size:1.4rem}.field{color:var(--color-text-muted);flex-direction:column;gap:.35rem;margin-bottom:1rem;font-size:.85rem;display:flex}.field input{border-radius:var(--radius-sm);border:1px solid var(--color-border);background:var(--color-cream);color:var(--color-text);padding:.65em .85em}.field input:focus{outline:2px solid var(--color-gold);outline-offset:1px}.admin-login__error{color:var(--color-danger);margin-bottom:1rem;font-size:.85rem}.admin-login__card .btn{width:100%}.admin-shell{background:var(--color-cream);min-height:100vh}.admin-shell__header{background:var(--color-brown);color:var(--color-white)}.admin-shell__header-inner{justify-content:space-between;align-items:center;padding-block:.9rem;display:flex}.admin-shell__header-inner h1{color:var(--color-white);margin:0;font-size:1.1rem}.admin-shell__header-actions{align-items:center;gap:.6rem;display:flex}.admin-shell__view-site,.admin-shell__signout{color:var(--color-white);border-color:#fff6;padding:.4em 1em;font-size:.85rem}.admin-shell__view-site:hover,.admin-shell__signout:hover{border-color:var(--color-white)}.admin-shell__body{gap:2rem;padding-block:1.5rem 3rem;display:flex}.admin-shell__nav{flex-direction:column;flex-shrink:0;gap:.25rem;min-width:160px;display:flex}.admin-shell__nav a{border-radius:var(--radius-sm);color:var(--color-text-muted);padding:.6em .9em;font-size:.9rem}.admin-shell__nav a.active{background:var(--color-surface);color:var(--color-brown);box-shadow:var(--shadow-sm);font-weight:500}.admin-shell__content{flex:1;min-width:0}@media (width<=720px){.admin-shell__body{flex-direction:column;gap:1rem}.admin-shell__nav{flex-flow:wrap;min-width:0}}.confirm-dialog__overlay{z-index:100;background:#22181280;justify-content:center;align-items:center;padding:1.5rem;display:flex;position:fixed;inset:0}.confirm-dialog{background:var(--color-surface);border-radius:var(--radius-lg);width:100%;max-width:380px;box-shadow:var(--shadow-lg);padding:1.5rem}.confirm-dialog__title{margin:0 0 .5rem;font-size:1.1rem}.confirm-dialog__message{color:var(--color-text-muted);margin:0 0 1.25rem;font-size:.9rem}.confirm-dialog__actions{justify-content:flex-end;gap:.6rem;display:flex}.confirm-dialog__danger-btn{background:var(--color-danger);color:var(--color-white)}.confirm-dialog__danger-btn:hover{background:#8a3c35}.admin-products__header{justify-content:space-between;align-items:center;gap:1rem;margin-bottom:1.25rem;display:flex}.admin-stats{grid-template-columns:repeat(2,1fr);gap:.75rem;margin-bottom:1.25rem;display:grid}.admin-stats__card{background:var(--color-surface);border-radius:var(--radius-md);box-shadow:var(--shadow-sm);color:inherit;flex-direction:column;gap:.2rem;padding:.9rem 1rem;display:flex}.admin-stats__card--link:hover{box-shadow:var(--shadow-md)}.admin-stats__card--button{text-align:left;cursor:pointer;border:1px solid #0000;font-family:inherit}.admin-stats__card--active{border-color:var(--color-warning)}.admin-stats__value{font-family:var(--font-heading);color:var(--color-brown);font-size:1.5rem;font-weight:600}.admin-stats__value--warning{color:var(--color-warning)}.admin-stats__label{text-transform:uppercase;letter-spacing:.04em;color:var(--color-text-muted);font-size:.75rem}@media (width>=560px){.admin-stats{grid-template-columns:repeat(3,1fr)}}@media (width>=860px){.admin-stats{grid-template-columns:repeat(5,1fr)}}.admin-products__search{border-radius:var(--radius-sm);border:1px solid var(--color-border);background:var(--color-surface);width:100%;max-width:360px;margin-bottom:1rem;padding:.6em .9em}.admin-products__code{color:var(--color-brown);font-weight:600}.admin-products__no-photos{color:var(--color-warning);text-transform:uppercase;letter-spacing:.02em;white-space:nowrap;vertical-align:middle;background:#f5ecd8;border-radius:999px;margin-left:.5rem;padding:.15em .55em;font-size:.7rem;font-weight:600;display:inline-block}.admin-products__table-wrap{background:var(--color-surface);border-radius:var(--radius-md);box-shadow:var(--shadow-sm);display:none;overflow-x:auto}@media (width>=980px){.admin-products__table-wrap{display:block}}.admin-products__table{border-collapse:collapse;white-space:nowrap;width:100%;font-size:.9rem}.admin-products__table th,.admin-products__table td{text-align:left;border-bottom:1px solid var(--color-border);padding:.65rem .85rem}.admin-products__thumb{border-radius:var(--radius-sm);object-fit:cover;width:44px;height:44px}.admin-products__thumb--empty{background:var(--color-blush-light)}.admin-products__table select{border-radius:var(--radius-sm);border:1px solid var(--color-border);padding:.35em .5em}.admin-products__row-actions{gap:.75rem;display:flex}.admin-products__duplicate{color:var(--color-text-muted);cursor:pointer;background:0 0;border:none;padding:0;font-size:.85rem}.admin-products__duplicate:hover{color:var(--color-brown)}.admin-products__delete{color:var(--color-danger);cursor:pointer;background:0 0;border:none;padding:0;font-size:.85rem}.admin-products__cards{flex-direction:column;gap:.75rem;display:flex}@media (width>=980px){.admin-products__cards{display:none}}.admin-product-card{background:var(--color-surface);border-radius:var(--radius-md);box-shadow:var(--shadow-sm);gap:.85rem;padding:.85rem;display:flex}.admin-product-card__thumb{border-radius:var(--radius-sm);object-fit:cover;flex-shrink:0;width:64px;height:64px}.admin-product-card__thumb--empty{background:var(--color-blush-light)}.admin-product-card__body{flex:1;min-width:0}.admin-product-card__top{justify-content:space-between;align-items:baseline;gap:.5rem;display:flex}.admin-product-card__name{color:var(--color-text);text-overflow:ellipsis;white-space:nowrap;font-weight:600;overflow:hidden}.admin-product-card__brand{color:var(--color-text-muted);margin:.2rem 0 .6rem;font-size:.85rem}.admin-product-card__controls{flex-wrap:wrap;align-items:center;gap:.75rem;display:flex}.admin-product-card__controls select{border-radius:var(--radius-sm);border:1px solid var(--color-border);padding:.35em .5em}.apf{max-width:760px}.apf__heading{align-items:center;gap:.75rem;margin-bottom:1rem;display:flex}.apf__heading h2{margin:0}.apf__item-code{color:var(--color-brown);background:var(--color-blush-light);border-radius:999px;padding:.25em .7em;font-size:.8rem;font-weight:600}.apf__grid{grid-template-columns:1fr;gap:1rem;margin-bottom:1.5rem;display:grid}.apf .field span{color:var(--color-text-muted);margin-bottom:.3rem;font-size:.85rem;display:block}.apf .field input,.apf .field select,.apf .field textarea{border-radius:var(--radius-sm);border:1px solid var(--color-border);background:var(--color-surface);width:100%;color:var(--color-text);padding:.6em .8em}.field--wide{grid-column:1/-1}.apf__section-title{margin-top:2rem;font-size:1.05rem}.apf__hint{color:var(--color-text-muted);margin-top:0;font-size:.85rem}.apf__images{flex-wrap:wrap;gap:.9rem;margin-bottom:1rem;display:flex}.apf__image{cursor:grab;width:140px;transition:opacity .15s}.apf__image--dragging{opacity:.4}.apf__image img{object-fit:cover;border-radius:var(--radius-sm);width:140px;height:140px}.apf__image-actions{gap:.3rem;margin-top:.35rem;font-size:.75rem;display:flex}.apf__image-actions button{border:1px solid var(--color-border);background:var(--color-surface);border-radius:var(--radius-sm);cursor:pointer;padding:.25em .5em}.apf__image-delete{color:var(--color-danger);margin-left:auto}.apf__upload{border:2px dashed var(--color-border);border-radius:var(--radius-sm);width:140px;height:140px;color:var(--color-text-muted);cursor:pointer;text-align:center;justify-content:center;align-items:center;padding:.5rem;font-size:.85rem;display:flex}.apf__variants{flex-direction:column;align-items:flex-start;gap:.6rem;display:flex}.apf__variant-row{grid-template-columns:1fr 1fr 110px 130px auto;gap:.5rem;width:100%;display:grid}.apf__variant-row input,.apf__variant-row select{border-radius:var(--radius-sm);border:1px solid var(--color-border);background:var(--color-surface);padding:.5em .6em}.apf__variant-remove{color:var(--color-danger);cursor:pointer;background:0 0;border:none;font-size:1rem}.apf__error{color:var(--color-danger);margin-top:1rem}.apf__actions{margin-top:2rem}@media (width>=640px){.apf__grid{grid-template-columns:1fr 1fr}}@media (width<=640px){.apf__variant-row{grid-template-columns:1fr 1fr}}.admin-orders__tabs{flex-wrap:wrap;gap:.4rem;margin-bottom:1.25rem;display:flex}.admin-orders__tab{border:1px solid var(--color-border);background:var(--color-surface);cursor:pointer;border-radius:999px;padding:.45em .9em;font-size:.85rem}.admin-orders__tab--active{background:var(--color-brown);color:var(--color-white);border-color:var(--color-brown)}.admin-orders__list{flex-direction:column;gap:.9rem;display:flex}.admin-orders__card{background:var(--color-surface);border-radius:var(--radius-md);box-shadow:var(--shadow-sm);flex-wrap:wrap;justify-content:space-between;gap:1rem;padding:1rem 1.1rem;display:flex}.admin-orders__card-main p{margin:0 0 .3rem;font-size:.88rem}.admin-orders__item{font-weight:600;font-size:.95rem!important}.admin-orders__buyer,.admin-orders__address,.admin-orders__payment{color:var(--color-text-muted)}.admin-orders__timestamp{color:var(--color-text-muted);font-size:.75rem!important}.admin-orders__actions{flex-direction:column;flex-shrink:0;align-items:flex-end;gap:.5rem;display:flex}.admin-orders__status{text-transform:capitalize}.admin-orders__status--pending_verification{color:var(--color-warning);background:#f5ecd8}.admin-orders__status--verified{background:var(--color-blush-light);color:var(--color-pink-dark)}.admin-orders__status--shipped{color:var(--color-success);background:#dfeadf}.admin-orders__status--cancelled{color:var(--color-text-muted);background:#ece5dd}@media (width<=560px){.admin-orders__card{flex-direction:column}.admin-orders__actions{flex-flow:wrap;align-items:stretch}}.as{max-width:480px}.as__hint{color:var(--color-text-muted);font-size:.9rem}.as__block{background:var(--color-surface);border-radius:var(--radius-md);box-shadow:var(--shadow-sm);margin-bottom:1.25rem;padding:1.1rem 1.25rem}.as__block h3{margin-top:0;font-size:1rem}.as .field span{color:var(--color-text-muted);margin-bottom:.3rem;font-size:.85rem;display:block}.as .field input{border-radius:var(--radius-sm);border:1px solid var(--color-border);background:var(--color-cream);width:100%;padding:.6em .8em}.as__qr{align-items:center;gap:1rem;margin-top:.85rem;display:flex}.as__qr img{object-fit:cover;border-radius:var(--radius-sm);border:1px solid var(--color-border);width:88px;height:88px}.as__qr-btn{padding:.5em 1em;font-size:.85rem}.as__saved{color:var(--color-success);margin-bottom:1rem}.acm__list{flex-direction:column;gap:.9rem;display:flex}.acm__card{background:var(--color-surface);border-radius:var(--radius-md);box-shadow:var(--shadow-sm);padding:1rem 1.1rem}.acm__meta{color:var(--color-text-muted);flex-wrap:wrap;gap:.5rem .75rem;margin-bottom:.5rem;font-size:.85rem;display:flex}.acm__date{margin-left:auto;font-size:.75rem}.acm__message{white-space:pre-line;margin:0}
