:root{--color-bg: #f8f5ef;--color-surface: #ffffff;--color-text: #2c2823;--color-muted: #777067;--color-border: #e3ded6;--color-accent: #9b7a52;--color-accent-dark: #6f5538;--radius-card: 16px;--shadow-card: 0 8px 28px rgba(0, 0, 0, .08);--header-h: 64px}*{box-sizing:border-box}html,body,#root{height:100%}body{margin:0;background:var(--color-bg);color:var(--color-text);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif;font-size:16px;line-height:1.5;-webkit-font-smoothing:antialiased}a{color:inherit;text-decoration:none}button{font:inherit;cursor:pointer;border:none;background:none}img{display:block;max-width:100%}.container{width:100%;max-width:1440px;margin:0 auto;padding:0 clamp(16px,3vw,40px)}.site-header{position:sticky;top:0;z-index:20;background:var(--color-surface);border-bottom:1px solid var(--color-border);min-height:var(--header-h)}.site-header .inner{display:flex;align-items:center;gap:16px;min-height:var(--header-h);padding:8px 0}.brand{font-weight:700;letter-spacing:.14em;text-transform:uppercase;font-size:1.05rem;white-space:nowrap}.brand span{color:var(--color-accent)}.header-search{flex:1;min-width:120px}.search-box{position:relative;width:100%}.search-box input{width:100%;height:44px;padding:0 16px;border:1px solid var(--color-border);border-radius:999px;background:var(--color-bg);font-size:1rem}.search-box input:focus{outline:2px solid var(--color-accent);outline-offset:1px}.cart-btn{position:relative;display:inline-flex;align-items:center;gap:8px;height:44px;padding:0 18px;border-radius:999px;background:var(--color-accent);color:#fff;font-weight:600;white-space:nowrap}.cart-btn:hover{background:var(--color-accent-dark)}.cart-badge{min-width:22px;height:22px;padding:0 6px;border-radius:999px;background:#fff;color:var(--color-accent-dark);font-size:.8rem;font-weight:700;display:inline-flex;align-items:center;justify-content:center}.category-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(280px,100%),1fr));gap:clamp(16px,2.5vw,32px);margin:clamp(20px,4vw,48px) 0}.category-block{position:relative;aspect-ratio:4 / 3;border-radius:var(--radius-card);overflow:hidden;box-shadow:var(--shadow-card);background:var(--color-surface)}.category-block img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}.category-block:hover img{transform:scale(1.04)}.category-block .label{position:absolute;inset:auto 0 0 0;padding:20px;background:linear-gradient(to top,#0000008c,#0000);color:#fff}.category-block .label h2{margin:0;font-size:clamp(1.3rem,3vw,1.9rem)}.category-block .label p{margin:4px 0 0;opacity:.85;font-size:.9rem}.plp{display:grid;grid-template-columns:280px 1fr;gap:28px;margin:24px 0 60px}@media (max-width: 860px){.plp{grid-template-columns:1fr}}.product-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(180px,100%),1fr));gap:clamp(12px,2vw,28px)}.product-card{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-card);overflow:hidden;display:flex;flex-direction:column}.product-card .thumb{aspect-ratio:1;background:var(--color-bg);overflow:hidden}.product-card .thumb img{width:100%;height:100%;object-fit:cover}.product-card .body{padding:12px;display:flex;flex-direction:column;gap:6px;flex:1}.product-card .name{font-weight:600;font-size:.95rem;line-height:1.25}.product-card .meta{font-size:.8rem;color:var(--color-muted)}.price-row{display:flex;justify-content:space-between;align-items:baseline;margin-top:auto}.price-export{font-weight:700;color:var(--color-accent-dark)}.price-rrp{font-size:.8rem;color:var(--color-muted)}.price-missing{font-size:.8rem;color:#b4552d;font-weight:600}.stepper{display:inline-flex;align-items:center;border:1px solid var(--color-border);border-radius:999px;overflow:hidden}.stepper button{width:40px;height:40px;font-size:1.2rem;color:var(--color-accent-dark)}.stepper button:hover{background:var(--color-bg)}.stepper .qty{min-width:48px;text-align:center;font-weight:600}.btn{height:44px;padding:0 18px;border-radius:999px;background:var(--color-accent);color:#fff;font-weight:600;display:inline-flex;align-items:center;justify-content:center;gap:8px}.btn:hover{background:var(--color-accent-dark)}.btn.secondary{background:transparent;color:var(--color-accent-dark);border:1px solid var(--color-accent)}.btn.secondary:hover{background:var(--color-bg)}.btn.block{width:100%}.btn:disabled{opacity:.5;cursor:not-allowed}.filter-panel{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-card);padding:16px;align-self:start;position:sticky;top:calc(var(--header-h) + 16px);max-height:calc(100vh - var(--header-h) - 32px);overflow:auto}.filter-group{border-bottom:1px solid var(--color-border);padding:10px 0}.filter-group:last-child{border-bottom:none}.filter-group>summary{cursor:pointer;font-weight:600;list-style:none}.filter-group>summary::-webkit-details-marker{display:none}.filter-option{display:flex;align-items:center;gap:8px;padding:6px 0;font-size:.9rem}.filter-option input{width:18px;height:18px}.filter-toggle{display:none}.filter-sidebar{display:block}.filter-panel.drawer{display:none}@media (max-width: 860px){.filter-toggle{display:inline-flex}.filter-sidebar{display:none}.filter-panel.drawer{display:block}.filter-panel.drawer{position:fixed;inset:0 0 0 auto;width:min(340px,88vw);z-index:40;border-radius:0;max-height:none;box-shadow:var(--shadow-card);transform:translate(100%);transition:transform .25s ease}.filter-panel.drawer.open{transform:translate(0)}.drawer-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;background:#00000059;z-index:39}}.pdp{display:grid;grid-template-columns:1fr 1fr;gap:40px;margin:24px 0 60px}@media (max-width: 860px){.pdp{grid-template-columns:1fr;gap:24px}}.gallery-main{aspect-ratio:1;background:var(--color-surface);border-radius:var(--radius-card);overflow:hidden;border:1px solid var(--color-border)}.gallery-main img{width:100%;height:100%;object-fit:contain}.gallery-thumbs{display:flex;gap:10px;margin-top:12px;flex-wrap:wrap}.gallery-thumbs button{width:64px;height:64px;border-radius:10px;overflow:hidden;border:1px solid var(--color-border)}.gallery-thumbs button.active{border-color:var(--color-accent)}.spec-table{width:100%;border-collapse:collapse;margin-top:16px}.spec-table th,.spec-table td{text-align:left;padding:8px 0;border-bottom:1px solid var(--color-border);vertical-align:top;font-size:.92rem}.spec-table th{color:var(--color-muted);font-weight:600;width:40%}.cart-line{display:grid;grid-template-columns:72px 1fr auto;gap:14px;padding:14px 0;border-bottom:1px solid var(--color-border);align-items:center}.cart-line .thumb{width:72px;height:72px;border-radius:10px;overflow:hidden;background:var(--color-bg)}.cart-line .thumb img{width:100%;height:100%;object-fit:cover}.cart-summary{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-card);padding:20px;margin-top:20px}.summary-row{display:flex;justify-content:space-between;padding:6px 0}.summary-row.total{font-size:1.2rem;font-weight:700;border-top:1px solid var(--color-border);margin-top:8px;padding-top:12px}.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:16px 0}@media (max-width: 600px){.form-grid{grid-template-columns:1fr}}.field{display:flex;flex-direction:column;gap:6px}.field.full{grid-column:1 / -1}.field label{font-size:.85rem;font-weight:600;color:var(--color-muted)}.field input,.field select,.field textarea{height:44px;padding:0 12px;border:1px solid var(--color-border);border-radius:10px;background:var(--color-surface);font-size:1rem}.field textarea{height:auto;padding:10px 12px;min-height:80px}.field .error{color:#b4552d;font-size:.8rem}.badge-warn{display:inline-block;background:#fbe9df;color:#b4552d;font-size:.75rem;font-weight:600;padding:2px 8px;border-radius:999px}.empty-state{text-align:center;padding:60px 20px;color:var(--color-muted)}.section-title{font-size:clamp(1.4rem,3vw,2rem);margin:24px 0 4px}.crumbs{font-size:.85rem;color:var(--color-muted);margin:16px 0}.crumbs a:hover{color:var(--color-accent-dark)}.toolbar{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:16px;flex-wrap:wrap}.sentinel{height:1px}.notice{background:#fbe9df;color:#8a4425;border-radius:12px;padding:12px 16px;margin:16px 0;font-size:.9rem}.success{text-align:center;padding:48px 20px}.success .check{font-size:3rem}
