:root{
  --bs-primary:#8C5A3B;
  --bs-primary-600:#774A31;
  --bs-primary-700:#603B27;
  --bs-secondary:#1F4D48;
  --bs-secondary-600:#193F3A;
  --bs-secondary-700:#12312D;
  --bs-success:#22C55E;
  --bs-warning:#D97706;
  --bs-danger:#DC2626;
  --bs-info:#7DD3FC;
  --bs-dark:#0B0F14;
  --bs-body:#1B242D;
  --bs-muted:#6B7280;
  --bs-bg:#F8F7F4;
  --bs-card:#FFFFFF;
  --bs-border:#E7E2DA;
  --bs-shadow:0 12px 30px rgba(27,36,45,.08);
  --link:#1F4D48;
  --link-hover:#12312D;
  --focus:#F59E0B;
  --h1-color:#0C141B;
  --h2-color:#13212A;
  --h3-color:#B45309;
  --h4-color:#14532D;
  --h5-color:#0E7490;
  --h6-color:#166534;
  --tint-primary:#F3EAE3;
  --tint-secondary:#E7F3F2;
  --tint-success:#ECFDF5;
  --tint-warning:#FEF3C7;
  --tint-danger:#FEE2E2;
  --tint-info:#E0F2FE;
  --space-1:8px;--space-2:12px;--space-3:16px;--space-4:20px;--space-5:24px;--space-6:28px;--space-7:36px;
  --star:#F59E0B;--star-off:#E5E7EB;
  --price:#111827;--price-accent:#8C5A3B;--price-compare:#9CA3AF;
}

*{box-sizing:border-box}
html,body{height:100%}
html,body,[data-bs-theme]{color-scheme:light!important}
body{
  margin:0;background:var(--bs-bg);color:var(--bs-body);
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Ubuntu,"Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size:17px;line-height:1.7;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale
}
a{color:var(--link);text-decoration:underline}
a:hover{color:var(--link-hover);text-decoration:underline}
:focus-visible{outline:3px solid var(--focus);outline-offset:2px}

.container{max-width:1200px;margin:0 auto;padding:0 var(--space-3)}
.row{display:flex;flex-wrap:wrap;margin-left:-12px;margin-right:-12px;row-gap:var(--space-3)}
.col{padding-left:12px;padding-right:12px;flex:1 0 0%;min-width:260px}

.navbar{
  --nav-bg: rgba(248,247,244,.9);
  --nav-border:#E7E2DA;
  --nav-link:#0C141B;
  --nav-link-muted:#6B7280;
  --nav-link-active:var(--bs-primary);
  --nav-hover-bg:var(--tint-primary);
  --nav-focus:var(--focus);
  backdrop-filter:saturate(140%) blur(8px);
  background:var(--nav-bg)!important;border-bottom:1px solid var(--nav-border);
  padding-block:.6rem;box-shadow:0 6px 20px rgba(27,36,45,.06)
}
.brand img{display:block}
.navbar-brand{padding:.25rem .35rem;border-radius:12px}
.navbar-brand img{display:block;height:32px;width:auto}
.navbar-brand:focus-visible{outline:3px solid var(--nav-focus);outline-offset:2px}
.navbar .container{display:flex;align-items:center;gap:var(--space-2)}
.navbar-nav{align-items:center;gap:.25rem;margin-left:auto;display:flex}
.navbar .nav-link{
  position:relative;display:block;padding:.5rem .75rem;border-radius:12px;
  font-weight:800;color:var(--nav-link);text-decoration:none;letter-spacing:.2px;
  transition:color .15s ease,background-color .15s ease,transform .12s ease
}
@media(min-width:992px){
  .navbar .nav-link::after{
    content:"";position:absolute;left:12px;right:12px;bottom:6px;height:3px;border-radius:999px;
    background:linear-gradient(90deg,var(--bs-primary),var(--bs-secondary));transform:scaleX(0);transform-origin:left;transition:transform .18s ease;opacity:.9
  }
  .navbar .nav-link:hover::after{transform:scaleX(1)}
}
.navbar .nav-link:hover{background:var(--nav-hover-bg);color:var(--nav-link-active);transform:translateY(-1px)}
.navbar .nav-link:focus-visible{outline:3px solid var(--nav-focus);outline-offset:2px}
.navbar .nav-link.active,.navbar .nav-link[aria-current="page"]{color:var(--nav-link-active)!important;background:var(--tint-primary);box-shadow:inset 0 0 0 1px var(--focus)}
@media(min-width:992px){
  .navbar .nav-link.active::after,.navbar .nav-link[aria-current="page"]::after{transform:scaleX(1)}
}
.navbar .navbar-toggler{
  border-radius:12px;border:1px solid var(--nav-border);padding:.4rem .55rem;background:#fff;
  transition:transform .12s ease,box-shadow .15s ease,border-color .15s ease
}
.navbar .navbar-toggler:focus{box-shadow:0 0 0 .2rem rgba(140,90,59,.18);border-color:var(--focus)}
.navbar .navbar-toggler:hover{transform:translateY(-1px)}
.collapse{display:none}
.collapse.show{display:block}
@media(min-width:992px){
  .navbar .navbar-toggler{display:none}
  .collapse{display:block!important}
}
@media(max-width:991.98px){
  .navbar-collapse{
    background:#fff;border:1px solid var(--nav-border);border-radius:14px;
    box-shadow:0 14px 28px rgba(27,36,45,.12);padding:.4rem;margin-top:.6rem
  }
  .navbar-nav .nav-item{margin:.1rem}
  .navbar-nav .nav-link{padding:.65rem .8rem}
}

.hero{
  background:
    radial-gradient(1200px 420px at 30% -50%,var(--tint-primary) 0,rgba(243,234,227,0) 70%),
    linear-gradient(120deg,rgba(231,243,242,.85),rgba(255,247,235,.9));
  border:1px solid var(--bs-border);border-radius:16px;
  padding:var(--space-6);display:flex;align-items:center;justify-content:space-between;gap:var(--space-3)
}
.hero h1{margin:0 0 var(--space-2) 0}
.hero p{margin:0 0 10px 0}
.hero .eyebrow{
  display:inline-block;background:var(--tint-secondary);color:#0E3C37;border:1px solid var(--focus);
  border-radius:999px;font-size:.82rem;padding:4px 10px;font-weight:800
}

h1,h2,h3,h4,h5,h6{margin-top:1.4em;margin-bottom:.55em;line-height:1.22;letter-spacing:.2px}
h1{color:var(--h1-color);font-weight:900;font-size:clamp(2rem,2.8vw,2.4rem);margin-top:0;font-family:ui-serif,Georgia,Times,serif}
h2{color:var(--h2-color);font-weight:900;font-size:clamp(1.6rem,2.2vw,1.9rem);padding-bottom:8px;border-bottom:1px solid var(--bs-border);font-family:ui-serif,Georgia,Times,serif}
h3{color:var(--h3-color);font-weight:800;font-size:1.16rem}
h4{color:var(--h4-color);font-weight:700}
h5{color:var(--h5-color);font-weight:700}
h6{color:var(--h6-color);font-weight:700}
.lead{font-size:1.14rem;color:#374151;margin-bottom:var(--space-3)}
p{margin:0 0 var(--space-3)}
ul,ol{margin:0 0 var(--space-3) var(--space-4);padding:0}
li{margin-bottom:8px}

.card{
  background:var(--bs-card);border:1px solid var(--bs-border);border-radius:18px;
  box-shadow:var(--bs-shadow);margin-bottom:var(--space-5);
  transition:transform .12s ease,box-shadow .18s ease
}
.card:hover{transform:translateY(-2px);box-shadow:0 16px 34px rgba(27,36,45,.09)}
.card-body{padding:var(--space-5)}
@media(min-width:1200px){.card>.card-body{max-width:900px;margin:0 auto}}

.badge{
  display:inline-block;background:var(--tint-secondary);color:#0E3C37;border:1px solid #A7F3D0;
  border-radius:999px;font-size:.82rem;padding:4px 10px;font-weight:800
}
.kwd-pill,.filter-pill{
  display:inline-block;background:#F8FAFC;border-radius:999px;padding:8px 12px;margin:8px 8px 0 0;
  font-size:.92rem;border:1px solid var(--bs-border)
}
.filter-pill.is-active{background:var(--tint-primary);border-color:var(--focus);color:#7A2E0E;font-weight:800}

.btn{
  display:inline-block;cursor:pointer;border:1px solid transparent;border-radius:14px;
  padding:11px 16px;font-weight:900;letter-spacing:.2px
}
.btn-primary{background:var(--bs-primary);color:#fff}
.btn-primary:hover{background:var(--bs-primary-600)}
.btn-primary:active{background:var(--bs-primary-700)}
.btn-outline{background:transparent;border-color:var(--bs-border);color:var(--bs-dark)}
.btn-outline:hover{border-color:var(--bs-primary);color:var(--bs-primary);background:var(--tint-primary)}
.btn-boost,.btn-love{background:linear-gradient(90deg,var(--bs-primary),var(--bs-warning) 60%,var(--bs-secondary) 130%);color:#fff;border:none}
.btn-boost:hover,.btn-love:hover{filter:brightness(.96)}
.btn-ghost{background:transparent;border:1px dashed var(--bs-border);color:var(--bs-dark)}
.btn-ghost:hover{border-color:var(--bs-secondary);background:var(--tint-secondary);color:var(--bs-secondary)}
.btn-leather{background:linear-gradient(180deg,#9A6A48,#7B4F34);color:#fff;border:none;box-shadow:inset 0 0 0 1px rgba(255,255,255,.06)}
.btn-leather:hover{filter:contrast(1.05) brightness(.98)}
.btn-frost{background:linear-gradient(180deg,#E6F6FF,#D7EEF9);color:#0A2840;border:1px solid #CFE7F6}
.btn-frost:hover{filter:brightness(.98)}

.breadcrumb{font-size:.96rem;color:#8a98a6;margin-bottom:var(--space-3)}
.breadcrumb a{color:inherit}
@media(max-width:576px){
  .breadcrumb{font-size:0;margin-bottom:var(--space-2);color:#9aa7b3}
  .breadcrumb a,.breadcrumb span{display:none}
  .breadcrumb a:first-of-type,.breadcrumb span:last-of-type{display:inline;font-size:.92rem;color:#7d8a97}
}

.toc{background:#fff;border:1px solid var(--bs-border);border-radius:14px;padding:0}
.toc .card-body{padding:var(--space-4)}
.toc h2{margin:0 0 var(--space-2) 0;font-size:1.05rem;border-bottom:1px solid var(--bs-border);padding-bottom:6px}
.toc .list-group{display:grid;grid-template-columns:1fr;gap:12px;padding-left:0;margin:0}
.toc .list-group .list-group-item{
  margin:0;border:1px solid var(--bs-border);border-radius:16px;padding:14px 16px;background:#fff;
  box-shadow:0 1px 2px rgba(27,36,45,0.04);
  transition:transform .08s ease,box-shadow .12s ease,border-color .12s ease
}
.toc .list-group .list-group-item:hover{transform:translateY(-1px);border-color:var(--focus);box-shadow:0 4px 12px rgba(27,36,45,0.08)}
.toc .list-group .list-group-item>a{
  display:block;width:100%;color:var(--h2-color);font-weight:900;line-height:1.35;word-break:break-word;hyphens:auto;text-decoration:none
}
.toc .list-group .list-group-item>a:focus,.toc .list-group .list-group-item>a:hover{text-decoration:none;color:var(--h1-color)}
@media(min-width:480px){.toc .list-group{grid-template-columns:repeat(2,1fr)}}
@media(min-width:900px){.toc .list-group{grid-template-columns:repeat(3,1fr);gap:14px}}

.product-cards{display:grid;grid-template-columns:1fr;gap:18px}
@media(min-width:600px){.product-cards{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1000px){.product-cards{grid-template-columns:repeat(3,1fr)}}
.product-cards .card{border:1px solid var(--bs-border);overflow:hidden;position:relative}
.product-cards h3{margin-top:6px}
.product-thumb{border-radius:12px;overflow:hidden;background:#FFF}
.product-thumb img{display:block;width:100%;height:auto;transition:transform .25s ease}
.product-cards .card:hover .product-thumb img{transform:scale(1.03)}
.ribbon{
  position:absolute;top:14px;left:-8px;background:linear-gradient(90deg,var(--bs-primary),var(--bs-secondary));
  color:#fff;padding:6px 14px;border-top-right-radius:12px;border-bottom-right-radius:12px;font-weight:900;letter-spacing:.3px;
  box-shadow:0 8px 18px rgba(27,36,45,.18)
}
.price{display:flex;align-items:baseline;gap:8px;margin-top:6px}
.price .current{font-weight:900;font-size:1.2rem;color:var(--price)}
.price .compare{color:var(--price-compare);text-decoration:line-through}
.price .tag{display:inline-block;background:var(--tint-primary);color:var(--price-accent);border:1px solid var(--focus);border-radius:999px;padding:2px 8px;font-weight:900;font-size:.8rem}

.rating{display:inline-flex;gap:2px;align-items:center}
.rating .star{
  --sz:18px;width:var(--sz);height:var(--sz);display:inline-block;
  mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23FFF" viewBox="0 0 24 24"><path d="M12 .587l3.668 7.431 8.2 1.192-5.934 5.787 1.402 8.167L12 18.896 4.664 23.164l1.402-8.167L.132 9.21l8.2-1.192z"/></svg>') no-repeat center/contain;
  background:var(--star)
}
.rating .star.off{background:var(--star-off)}
.rating small{margin-left:6px;color:var(--bs-muted)}

.pros-cons{display:grid;grid-template-columns:1fr;gap:14px}
@media(min-width:700px){.pros-cons{grid-template-columns:1fr 1fr}}
.pros,.cons{border:1px solid var(--bs-border);border-radius:14px;padding:14px 16px;background:#fff}
.pros h4,.cons h4{margin:0 0 8px;font-size:1rem}
.pros ul,.cons ul{margin:0;padding-left:18px}
.pros li::marker{color:#22C55E}
.cons li::marker{color:#DC2626}

.disclaimer{background:var(--tint-secondary);border:1px solid #A7F3D0;border-radius:12px;padding:12px 14px;color:#0E3C37;font-size:.92rem}

.age-badge{display:inline-flex;align-items:center;gap:6px;background:#111827;color:#fff;border-radius:999px;padding:4px 10px;font-weight:900;font-size:.82rem}
.safety-banner{display:flex;gap:12px;align-items:flex-start;background:#FFF;border:1px solid var(--bs-border);border-radius:12px;padding:12px 14px}
.safety-banner .icon{font-size:20px;line-height:1}

.footer{
  margin-top:var(--space-7);padding:var(--space-6) 0;border-top:1px solid var(--bs-border);
  color:var(--bs-muted);background:linear-gradient(180deg,var(--tint-primary),var(--tint-secondary))
}
.e-motion-gradient,.sensual-gradient,.smile-gradient{background:linear-gradient(135deg,var(--tint-primary) 0%,var(--tint-secondary) 100%)}
.soft-border{border:1px solid var(--bs-border)}
.shadow-soft{box-shadow:var(--bs-shadow)}
.section{margin:40px 0}
.max-w-prose{max-width:72ch}
.text-volt{color:var(--bs-primary)}
.bg-mint-tint{background:var(--tint-secondary)}
.bg-cobalt-tint{background:var(--tint-primary)}

figure{margin:0 0 var(--space-5)}
figcaption{margin-top:6px;color:#6B7280;font-size:.92rem}

@media(max-width:576px){
  .card-body{padding:calc(var(--space-4) + 2px)}
  .lead{margin-bottom:var(--space-3)}
  h2{margin-top:1.2em}
}

@media(prefers-reduced-motion:reduce){*{transition:none!important;animation:none!important}}

.footer{position:relative;overflow:hidden}
.footer::before{
  content:"";position:absolute;inset:-60% -20% auto -20%;height:240px;
  background:radial-gradient(600px 160px at 50% 100%,rgba(140,90,59,.14),transparent 70%),
             radial-gradient(400px 120px at 10% 90%,rgba(31,77,72,.12),transparent 70%);
  pointer-events:none
}
.footer .container{position:relative;z-index:1}
.footer .row{row-gap:1.25rem}
.footer .d-inline-flex.text-decoration-none{padding:.35rem .6rem;border-radius:14px;transition:background-color .15s ease,transform .12s ease}
.footer .d-inline-flex.text-decoration-none:hover{background:var(--tint-primary);transform:translateY(-1px)}
.footer p{margin-bottom:.75rem}
.footer .text-body{color:#111827!important;font-weight:900;letter-spacing:.2px}
.footer .text-body-secondary{color:#6B7280!important}
.footer a{text-decoration:none}
.footer a.link-secondary{
  color:#6B7280!important;transition:color .15s ease,background-color .15s ease,transform .12s ease;
  border-radius:10px;padding:.25rem .35rem
}
.footer a.link-secondary:hover{color:var(--bs-primary)!important;background:var(--tint-primary);transform:translateY(-1px)}
.footer a:focus-visible{outline:3px solid var(--focus);outline-offset:2px}
.footer .border-top{border-top:1px solid var(--bs-border)!important}
.footer a[aria-label="Till toppen"]{
  display:inline-flex;align-items:center;gap:.15rem;background:#fff;border:1px solid var(--bs-border);
  padding:.35rem .6rem;border-radius:999px;font-weight:800;box-shadow:0 6px 18px rgba(27,36,45,.06)
}
.footer a[aria-label="Till toppen"]:hover{background:var(--tint-primary);border-color:var(--focus);color:var(--bs-primary)!important}
.footer a[aria-label="Till toppen"] i{font-size:1.1rem;line-height:1}

.table{
  --tbl-border:#E7E2DA;--tbl-head-bg:linear-gradient(180deg,var(--tint-primary),var(--tint-secondary));
  --tbl-head-text:#0F172A;--tbl-row-hover:#F3EAE3;--tbl-stripe:#F6F4F0;--tbl-shadow:0 8px 26px rgba(27,36,45,.08);--tbl-focus:var(--focus);
  width:100%;background:#fff;border:1px solid var(--tbl-border)!important;border-radius:16px;overflow:hidden;box-shadow:var(--tbl-shadow);margin-bottom:1.25rem
}
.table th,.table td{padding:.9rem 1rem;vertical-align:middle;border-color:var(--tbl-border)!important}
.table thead th{
  background:var(--tbl-head-bg);color:var(--tbl-head-text);font-weight:900;letter-spacing:.2px;
  border-bottom:1px solid var(--tbl-border)!important;position:sticky;top:0;z-index:2
}
.table tbody td:first-child{font-weight:900;color:#0B1220}
.table.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-accent-bg:var(--tbl-stripe);color:inherit}
.table tbody tr:hover>*{background:var(--tbl-row-hover)!important}
.table td:nth-last-child(-n+2){line-height:1.6}
.table td:nth-child(2),.table td:nth-child(3){white-space:nowrap}
.table i[class^="bi-"],.table i[class*=" bi-"]{margin-right:.35rem}
.table caption{caption-side:top;padding:.75rem 1rem 0;color:#6B7280;font-size:.95rem}
.table :where(th,td):focus-within{outline:3px solid var(--tbl-focus);outline-offset:-3px}
@media(max-width:640px){
  .table{display:block;overflow-x:auto;-webkit-overflow-scrolling:touch}
  .table thead th{top:0}
  .table::-webkit-scrollbar{height:10px}
  .table::-webkit-scrollbar-track{background:#F3F4F6;border-radius:999px}
  .table::-webkit-scrollbar-thumb{background:#E5E7EB;border-radius:999px;border:2px solid #F3F4F6}
}

:root,html,body,[data-bs-theme],[data-bs-theme="dark"]{
  color-scheme:light!important;
  --bs-body-bg:#FFFFFF!important;
  --bs-body-color:#212529!important;
  --bs-emphasis-color:#000!important;
  --bs-border-color:#dee2e6!important;
  --bs-link-color:var(--link)!important;
  --bs-link-hover-color:var(--link-hover)!important;
}
html,body,[data-bs-theme]{background:var(--bs-bg)!important;color:var(--bs-body)!important}

#produkter .card > a{
  display:flex;
  align-items:center;
  justify-content:center;
  height:300px;
  background:#fff;
}

#produkter .card > a > img.card-img-top{
  max-height:100%;
  max-width:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  object-position:center;
  display:block;
}

@media (max-width:480px){
  #produkter .card > a{height:220px}
}

/* Equestrian additions */
.texture-leather{
  background:
    radial-gradient(120% 80% at 20% 10%,rgba(255,255,255,.06),transparent 70%),
    radial-gradient(120% 80% at 80% 90%,rgba(0,0,0,.04),transparent 70%),
    linear-gradient(180deg,#8E5F40 0%,#70462F 100%);
  color:#fff
}
.icon{
  display:inline-block;width:1.1em;height:1.1em;vertical-align:-.15em;background:#0C141B;mask-size:contain;mask-repeat:no-repeat;mask-position:center
}
.icon-horseshoe{mask-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 3.5A9 9 0 0 0 3 10a9 9 0 0 0 4 7.5V22h3v-5.2a6 6 0 1 1 4 0V22h3v-4.5A9 9 0 0 0 21 10a9 9 0 0 0-3.5-6.5h-2.8A6.5 6.5 0 0 1 20 10a6 6 0 1 1-12 0A6.5 6.5 0 0 1 9.3 3.5H6.5z"/></svg>')}
.icon-boot{mask-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2h8v10l4 2v4H6v-4h6v-2H6z"/></svg>')}
.icon-flame{mask-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2s2 3 2 5a4 4 0 0 1-8 0c0-2 2-5 2-5-5 3-7 7-7 11a10 10 0 1 0 20 0c0-4-2-8-9-11z"/></svg>')}
.icon-drop{mask-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2s7 7 7 12a7 7 0 1 1-14 0c0-5 7-12 7-12z"/></svg>')}

.badge-heat,.badge-waterproof,.badge-leather,.badge-winter{
  display:inline-flex;align-items:center;gap:.45rem;background:#FFF;border:1px solid var(--bs-border);
  border-radius:999px;padding:.3rem .6rem;font-weight:800;font-size:.82rem
}
.badge-heat{background:var(--tint-warning);color:#7C2D12;border-color:#FCD34D}
.badge-heat::before{content:"";width:1rem;height:1rem;background:#B45309;mask:inherit}
.badge-heat::before{mask-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2s2 3 2 5a4 4 0 0 1-8 0c0-2 2-5 2-5-5 3-7 7-7 11a10 10 0 1 0 20 0c0-4-2-8-9-11z"/></svg>')}
.badge-waterproof{background:var(--tint-info);color:#0A2840;border-color:#BAE6FD}
.badge-waterproof::before{content:"";width:1rem;height:1rem;background:#0A2840;mask-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2s7 7 7 12a7 7 0 1 1-14 0c0-5 7-12 7-12z"/></svg>')}
.badge-leather{background:linear-gradient(180deg,#F1E6DE,#E7D7CC);color:#5B3B28;border-color:#E2CFC0}
.badge-leather::before{content:"";width:1rem;height:1rem;background:#8C5A3B;mask-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2h8v10l4 2v4H6v-4h6v-2H6z"/></svg>')}
.badge-winter{background:linear-gradient(180deg,#EAF6FF,#E3F2FC);color:#08304D;border-color:#D7EAF8}
.badge-winter::before{content:"";width:1rem;height:1rem;background:#08304D;mask-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 2h2v20h-2zM2 11h20v2H2zM5 5l14 14-1.4 1.4L3.6 6.4zM19 5l1.4 1.4L6.4 20 5 18.6z"/></svg>')}

.heat-meter{
  --seg:8;--on:0;--gap:4px;--h:10px;--w:160px;--bg:#F2E8DE;--fg:#B45309;
  display:grid;grid-template-columns:repeat(var(--seg),1fr);gap:var(--gap);width:var(--w)
}
.heat-meter span{height:var(--h);border-radius:6px;background:var(--bg)}
.heat-meter span:nth-child(-n+var(--on)){background:linear-gradient(180deg,#F59E0B,#B45309)}

.size-grid{
  display:grid;grid-template-columns:repeat(6,1fr);gap:8px
}
.size-grid .size{
  border:1px solid var(--bs-border);background:#fff;border-radius:10px;padding:.5rem .65rem;text-align:center;font-weight:800
}
.size-grid .size.is-active{border-color:var(--bs-primary);background:var(--tint-primary);color:var(--bs-primary)}

.material-chip{
  display:inline-flex;align-items:center;gap:.4rem;border:1px solid var(--bs-border);border-radius:999px;padding:.35rem .6rem;background:#fff;font-weight:700
}
.material-chip .swatch{
  width:14px;height:14px;border-radius:50%;border:1px solid rgba(0,0,0,.08);background:var(--c,#8C5A3B)
}

.list-spec{
  list-style:none;padding:0;margin:0
}
.list-spec li{
  display:flex;align-items:center;gap:.5rem;margin-bottom:.5rem
}
.list-spec li::before{
  content:"";width:14px;height:14px;background:#1F4D48;mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6.173 13.233 1.4 8.46l1.4-1.4 3.373 3.373L13.2 3.4l1.4 1.4z"/></svg>') no-repeat center/contain
}

.banner-coldwarm{
  border:1px solid var(--bs-border);border-radius:16px;padding:14px 16px;background:linear-gradient(120deg,rgba(231,243,242,.9),rgba(243,234,227,.9))
}

.product-tagline{
  display:inline-flex;align-items:center;gap:.5rem;padding:.4rem .7rem;border-radius:999px;
  background:linear-gradient(90deg,var(--tint-secondary),var(--tint-primary));border:1px solid var(--bs-border);font-weight:900
}
.product-tagline .icon{background:var(--bs-primary)}

.category-tiles{
  display:grid;grid-template-columns:repeat(2,1fr);gap:14px
}
@media(min-width:720px){.category-tiles{grid-template-columns:repeat(4,1fr)}}
.category-tiles .tile{
  border:1px solid var(--bs-border);border-radius:16px;padding:16px;background:#fff;display:flex;align-items:center;justify-content:space-between;gap:12px;
  transition:transform .12s ease,box-shadow .18s ease
}
.category-tiles .tile:hover{transform:translateY(-2px);box-shadow:0 14px 28px rgba(27,36,45,.08)}
.category-tiles .tile .icon{width:1.4rem;height:1.4rem;background:var(--bs-secondary)}
.category-tiles .tile .label{font-weight:900;color:#0C141B}

.badge-saddle{background:var(--tint-primary);color:#6B3F28;border:1px solid #E9D6C9}
.badge-pine{background:var(--tint-secondary);color:#0E3C37;border:1px solid #CDEBE8}
.badge-ice{background:var(--tint-info);color:#0A2840;border:1px solid #CDEAFB}
