/* =====================================================================
   Spice Pearls – Frontend
   ===================================================================== */
@import url("fonts.css");

:root {
  --orange: #ff6c28;
  --orange-d: #e85a18;
  --rose: #c29282;
  --rose-d: #ad7c6c;
  --ink: #222;
  --text: #6f6f6f;
  --muted: #a0a0a0;
  --line: #e6e6e6;
  --gray: #f4f4f4;
  --footer: #111;
  --white: #fff;
  --ok: #3f8f5b;
  --err: #c0392b;
  --wrap: 1200px;
  --f-body: "Lato", Helvetica, Arial, Verdana, sans-serif;
  --f-head: "Open Sans", Helvetica, Arial, Verdana, sans-serif;
  --f-slab: "Roboto Slab", Georgia, serif;
  --radius: 0;
  --shadow: 0 6px 24px rgba(0, 0, 0, .08);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; font: 400 16px/1.75 var(--f-body); color: var(--text); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange-d); }
h1, h2, h3, h4 { font-family: var(--f-head); color: var(--ink); line-height: 1.25; margin: 0 0 .6em; }
h1 { font-size: 44px; font-weight: 400; }
h2 { font-size: 34px; font-weight: 700; }
h3 { font-size: 20px; font-weight: 700; }
p { margin: 0 0 1em; }
button, input, select, textarea { font: inherit; color: inherit; }
.ico { width: 1.15em; height: 1.15em; flex: none; vertical-align: -.2em; }
.sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--ink); color: #fff; padding: 8px 14px; }
.skip:focus { left: 8px; top: 8px; }
.wrap { width: 100%; max-width: calc(var(--wrap) + 32px); margin: 0 auto; padding: 0 16px; }
.narrow { max-width: 832px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: 14px; }
.hp { position: absolute; left: -5000px; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
[hidden] { display: none !important; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--orange); color: #fff; border: 0; cursor: pointer;
  font: 700 12px/1 var(--f-head); text-transform: none; padding: 12px 16px; border-radius: var(--radius); transition: background .2s, transform .1s; text-align: center; }
.btn:hover { background: var(--orange-d); color: #fff; }
.btn:active { transform: translateY(1px); }
.btn-sm { font-size: 11px; padding: 8px 12px; }
.btn-lg { font-size: 16px; padding: 14px 22px; }
.btn-orange { background: var(--orange); }
.btn-orange:hover { background: var(--orange-d); }
.btn-dark { background: #2b2b2b; }
.btn-dark:hover { background: #000; }
.btn-outline { background: transparent; color: var(--orange); box-shadow: inset 0 0 0 2px var(--orange); }
.btn-outline:hover { background: var(--orange); color: #fff; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }
.btn-row { display: flex; gap: 10px; flex-wrap: wrap; }
.linkbtn { background: none; border: 0; color: var(--orange); cursor: pointer; padding: 0; text-decoration: underline; }

/* ---------- Topbar ---------- */
.topbar { background: var(--orange); color: #fff; font: 700 14px/1 var(--f-body); }
.topbar-in { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 16px; }
.topbar a { color: #fff; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover, .topbar a.on { color: rgba(255, 255, 255, .7); }
.topbar-links { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-search { position: relative; }
.topbar-search input { width: 118px; height: 32px; border: 2px solid #fff; border-radius: 16px; background: #fff; padding: 0 30px 0 12px; font-size: 13px; color: var(--ink); transition: width .25s; }
.topbar-search input::placeholder { color: #ffb48f; font-weight: 700; }
.topbar-search input:focus { width: 190px; outline: none; }
.topbar-search button { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); border: 0; background: none; color: var(--orange); padding: 2px; cursor: pointer; display: flex; }
.topbar-search .ico { width: 18px; height: 18px; stroke-width: 2.4; }

/* ---------- Header ---------- */
.masthead { background: #fff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 50; transition: box-shadow .2s; }
.masthead.scrolled { box-shadow: 0 2px 14px rgba(0, 0, 0, .08); }
.masthead-in { display: flex; align-items: center; gap: 24px; min-height: 100px; transition: min-height .2s; }
.masthead.scrolled .masthead-in { min-height: 76px; }
.logo img { width: 290px; height: auto; image-rendering: -webkit-optimize-contrast; }
.masthead.scrolled .logo img { width: 240px; }
.logo img { transition: width .2s; }
.mainnav { margin-left: auto; display: flex; align-items: center; gap: 34px; }
.mainnav > a, .minicart { color: var(--ink); font: 700 16px/1 var(--f-body); display: inline-flex; align-items: center; gap: 8px; padding: 10px 0; position: relative; }
.mainnav > a::after { content: ""; position: absolute; left: 26px; right: 0; bottom: 0; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.mainnav > a:hover, .mainnav > a.on, .minicart:hover, .minicart.on { color: var(--orange); }
.mainnav > a:hover::after, .mainnav > a.on::after { transform: scaleX(1); }
.mainnav .ico { width: 20px; height: 20px; }
.mnav-extra { display: none; }
.minicart { margin-left: 34px; }
.mc-count { background: var(--orange); color: #fff; font-size: 10px; line-height: 1; padding: 3px 5px; border-radius: 2px; min-width: 18px; text-align: center; position: relative; margin-left: 4px; }
.mc-count::before { content: ""; position: absolute; left: -5px; top: 50%; transform: translateY(-50%); border: 5px solid transparent; border-right-color: var(--orange); border-left: 0; }
.minicart.bump .mc-count { animation: bump .5s; }
@keyframes bump { 30% { transform: scale(1.5); } }
.burger { display: none; width: 44px; height: 44px; border: 0; background: none; cursor: pointer; padding: 10px; margin-left: 6px; }
.burger span { display: block; height: 2px; background: var(--ink); margin: 6px 0; transition: transform .25s, opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Notices ---------- */
.notices { padding-top: 24px; }
.notice { padding: 14px 18px 14px 20px; border-left: 4px solid var(--ok); background: #f1f8f3; color: #2f5d3e; margin-bottom: 10px; display: flex; gap: 14px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.notice-error { border-color: var(--err); background: #fdf1ef; color: #8c2a1f; }
.notice-btn { background: var(--orange); color: #fff; padding: 6px 12px; font: 700 12px var(--f-head); }
.notice-btn:hover { color: #fff; background: var(--orange-d); }
.toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 140%); background: var(--ink); color: #fff; padding: 14px 20px; z-index: 100; max-width: calc(100% - 32px); box-shadow: var(--shadow); transition: transform .3s, visibility .3s; visibility: hidden; display: flex; gap: 14px; align-items: center; font-size: 15px; }
.toast.show { transform: translate(-50%, 0); visibility: visible; }
.toast a { color: #fff; font-weight: 700; text-decoration: underline; white-space: nowrap; }
.toast.err { background: var(--err); }

/* ---------- Hero ---------- */
.hero { position: relative; background: #3a2520 var(--hero-bg) center/cover no-repeat; color: #fff; min-height: 660px; display: flex; align-items: center; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.15), rgba(0,0,0,0) 50%, rgba(0,0,0,.15)); }
.hero-in { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding-top: 60px; padding-bottom: 60px; }
.hero-carousel { display: flex; align-items: center; gap: 28px; flex: 0 1 470px; }
.hc-prev, .hc-next { background: none; border: 0; color: #fff; cursor: pointer; padding: 8px; display: flex; opacity: .9; }
.hc-prev:hover, .hc-next:hover { opacity: 1; transform: scale(1.1); }
.hc-prev .ico, .hc-next .ico { width: 34px; height: 34px; stroke-width: 2.2; }
.hc-stage { position: relative; flex: 1; aspect-ratio: 1; max-width: 300px; }
.hc-slide { position: absolute; inset: 0; opacity: 0; transform: scale(.94) rotate(-4deg); transition: opacity .7s, transform .7s; pointer-events: none; }
.hc-slide.on { opacity: 1; transform: none; pointer-events: auto; }
.hc-slide img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 18px 24px rgba(0,0,0,.45)); }
.hero-text { text-align: center; flex: 0 1 600px; }
.hero-kicker { font: 700 40px/1.1 var(--f-slab); color: var(--orange); margin: 0 0 14px; letter-spacing: .5px; }
.hero-title { font: 700 72px/1.05 var(--f-slab); color: #fff; margin: 0 0 40px; text-shadow: 0 2px 20px rgba(0,0,0,.25); }
.hero-sub { font: 600 20px/1.6 var(--f-head); margin: 0 0 44px; }
.hero .btn-lg { min-width: 200px; font-size: 15px; font-weight: 800; padding: 16px 30px; }

.seo-intro { text-align: center; padding-top: 70px; max-width: 860px; }
.seo-intro h1 { font: 700 30px/1.3 var(--f-head); color: var(--ink); margin: 0 0 14px; }
.seo-intro p { font-size: 17px; margin: 0; }
.home .about { padding-top: 60px; }
.pagehead-desc { max-width: 720px; margin: -6px auto 18px; color: rgba(255,255,255,.75); font-size: 16px; }
@media (max-width: 900px) { .seo-intro { padding-top: 44px; } .seo-intro h1 { font-size: 23px; } .seo-intro p { font-size: 15px; } }
/* ---------- Sections ---------- */
.h-line { font-size: 34px; position: relative; padding-bottom: 12px; margin-bottom: 40px; }
.h-line::after { content: ""; position: absolute; left: 0; bottom: 0; width: 120px; height: 2px; background: var(--rose); }
.h-center { text-align: center; font-size: 34px; margin-bottom: 10px; }
.h-plain { font-size: 30px; }
.divider { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--rose); margin: 0 0 70px; }
.divider span { width: 60px; height: 2px; background: var(--rose); }
.divider .ico { width: 16px; height: 16px; }
.about { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; padding-top: 100px; padding-bottom: 100px; }
.about-body { font-size: 15px; line-height: 1.9; margin-bottom: 30px; }
.about-img { display: flex; justify-content: flex-end; }
.about-img img { max-width: 360px; }
.featured { padding-bottom: 110px; }
.featured .center { margin-top: 50px; }
.featured .btn-lg .ico { width: 18px; height: 18px; }

/* ---------- Produktkarten ---------- */
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px 50px; }
.pcard { text-align: center; display: flex; flex-direction: column; }
.pcard-img { position: relative; display: block; aspect-ratio: 1; margin-bottom: 26px; overflow: hidden; }
.pcard-img img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s; }
.pcard:hover .pcard-img img { transform: scale(1.05); }
.badge-sale { position: absolute; top: 0; right: 16%; z-index: 2; background: var(--orange); color: #fff; font: 400 14px/1 var(--f-body); width: 72px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.badge-out { position: absolute; top: 10px; left: 10px; z-index: 2; background: var(--ink); color: #fff; font: 700 12px var(--f-head); padding: 5px 10px; }
.pcard-title { font: 700 16px/1.4 var(--f-slab); margin: 0 0 10px; }
.pcard-title a { color: var(--ink); }
.pcard-title a:hover { color: var(--orange); }
.pcard-price { color: var(--ink); margin-bottom: 8px; }
.price del { color: var(--muted); margin-right: 4px; }
.price ins { text-decoration: none; }
.pcard-rating { margin-bottom: 10px; }
.pcard-excerpt { display: none; }
.pcard .btn-sm { margin-top: 6px; font-size: 12px; padding: 9px 12px; }
.pcard form { display: flex; justify-content: center; }
.stars { display: inline-block; position: relative; width: 78px; height: 14px; vertical-align: middle;
  background: linear-gradient(90deg, #ddd 0 0); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 78 14'%3E%3Cg fill='%23000'%3E%3Cpath id='s' d='M7 0l2.1 4.4 4.9.6-3.6 3.3.9 4.8L7 10.8 2.7 13.1l.9-4.8L0 5l4.9-.6z'/%3E%3Cuse href='%23s' x='16'/%3E%3Cuse href='%23s' x='32'/%3E%3Cuse href='%23s' x='48'/%3E%3Cuse href='%23s' x='64'/%3E%3C/g%3E%3C/svg%3E") 0 0/78px 14px;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 78 14'%3E%3Cg fill='%23000'%3E%3Cpath id='s' d='M7 0l2.1 4.4 4.9.6-3.6 3.3.9 4.8L7 10.8 2.7 13.1l.9-4.8L0 5l4.9-.6z'/%3E%3Cuse href='%23s' x='16'/%3E%3Cuse href='%23s' x='32'/%3E%3Cuse href='%23s' x='48'/%3E%3Cuse href='%23s' x='64'/%3E%3C/g%3E%3C/svg%3E") 0 0/78px 14px; }
.stars span { position: absolute; left: 0; top: 0; bottom: 0; background: var(--orange); }

/* Listenansicht */
.pgrid.list { grid-template-columns: 1fr; gap: 40px; }
.pgrid.list .pcard { flex-direction: row; text-align: left; gap: 40px; align-items: center; border-bottom: 1px solid var(--line); padding-bottom: 40px; }
.pgrid.list .pcard-img { flex: 0 0 260px; margin: 0; }
.pgrid.list .pcard-excerpt { display: block; font-size: 15px; }
.pgrid.list .pcard form { justify-content: flex-start; }

/* ---------- Seitenkopf ---------- */
.pagehead { background: #000; color: #fff; text-align: center; padding: 70px 0 60px; }
.pagehead h1 { font: 700 46px/1.2 var(--f-slab); color: #fff; margin: 0 0 20px; }
.crumbs { font-size: 14px; color: var(--rose); display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.crumbs a { color: var(--rose); }
.crumbs a:hover { color: #fff; }
.crumbs span { color: #aaa; }
.crumbs span:last-child { color: var(--rose); }
.pagehead-light { background: var(--gray); padding: 50px 0 44px; }
.pagehead-light h1 { color: var(--ink); font-size: 36px; margin: 0; }

/* ---------- Shop ---------- */
.shop { padding-top: 60px; padding-bottom: 90px; }
.catbar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.catbar a { color: var(--ink); border: 1px solid var(--line); padding: 6px 14px; font-size: 14px; }
.catbar a small { color: var(--muted); }
.catbar a:hover, .catbar a.on { border-color: var(--orange); color: var(--orange); }
.shop-bar { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 50px; flex-wrap: wrap; }
.shop-bar select { height: 40px; min-width: 282px; border: 1px solid #ddd; background: #fff; padding: 0 12px; font-size: 14px; color: var(--text); }
.shop-bar-right { display: flex; align-items: center; gap: 20px; }
.shop-bar .count { margin: 0; color: #b5b5b5; font-size: 15px; }
.viewtoggle { display: flex; }
.viewtoggle button { width: 42px; height: 42px; border: 1px solid #ddd; background: #fff; color: #888; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.viewtoggle button + button { border-left: 0; }
.viewtoggle button.on { color: var(--ink); background: var(--gray); }
.viewtoggle .ico { width: 16px; height: 16px; }
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 60px; font-size: 16px; }
.pagination a, .pagination span { min-width: 32px; padding: 4px 6px; text-align: center; color: var(--ink); }
.pagination .on { border-bottom: 2px solid var(--orange); }
.pagination a:hover { color: var(--orange); }
.empty { text-align: center; padding: 60px 0; }

/* ---------- Produktseite ---------- */
.product-layout { display: grid; grid-template-columns: minmax(0, 1fr) 345px; gap: 50px; padding-top: 80px; padding-bottom: 90px; }
.product-top { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.gallery-main { position: relative; aspect-ratio: 1; }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 12px; }
.gallery-thumbs button { border: 1px solid var(--line); background: #fff; padding: 2px; cursor: pointer; aspect-ratio: 1; }
.gallery-thumbs button.on { border-color: var(--orange); }
.summary-price { font-size: 20px; color: var(--ink); padding-bottom: 10px; position: relative; margin-bottom: 34px; }
.summary-price::after { content: ""; position: absolute; left: 0; bottom: 0; width: 60px; height: 3px; background: var(--orange); }
.summary-rating { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); margin: -20px 0 20px; }
.variation { margin-bottom: 16px; }
.variation label { display: block; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.variation select { width: 100%; height: 44px; border: 1px solid #ddd; padding: 0 10px; background: #fff; }
.addrow { display: flex; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.qty { display: inline-flex; border: 1px solid #ddd; height: 44px; background: #fff; }
.qty button { width: 26px; border: 0; background: none; cursor: pointer; color: #888; display: flex; align-items: center; justify-content: center; }
.qty button:hover { color: var(--ink); }
.qty .ico { width: 14px; height: 14px; }
.qty input { width: 40px; border: 0; text-align: center; -moz-appearance: textfield; appearance: textfield; background: transparent; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.addform .btn-lg { font-size: 17px; padding: 12px 22px; }
.addform .btn-dark { margin-bottom: 10px; font-size: 15px; padding: 13px; }
.meta { font-size: 13px; color: var(--muted); }
.meta a { color: var(--muted); }
.meta a:hover { color: var(--orange); }
.meta .dot { margin: 0 6px; }
.stock-low { color: var(--orange); font-weight: 700; font-size: 14px; }
.stock-out { color: var(--err); }
.tabs { border-top: 1px solid var(--line); }
.tab-nav { display: flex; gap: 40px; margin-bottom: 30px; flex-wrap: wrap; }
.tab-nav button { background: none; border: 0; border-top: 3px solid transparent; margin-top: -2px; padding: 22px 0 8px; font-size: 16px; color: var(--muted); cursor: pointer; }
.tab-nav button.on { color: var(--ink); border-color: var(--orange); }
.content { font-size: 16px; line-height: 1.75; }
.content h2 { font-size: 26px; margin-top: 1.4em; }
.content h3, .content h4 { font-size: 20px; margin-top: 1.4em; }
.content table { width: 100%; border-collapse: collapse; margin: 0 0 1.5em; }
.content td, .content th { border-bottom: 1px solid var(--line); padding: 8px 6px; text-align: left; vertical-align: top; }
.content td:first-child { width: 38%; color: #555; }
.content ol, .content ul { padding-left: 1.3em; }
.content hr { border: 0; border-top: 1px solid var(--line); margin: 2em 0; }
.attr-table { width: 100%; border-collapse: collapse; }
.attr-table th, .attr-table td { text-align: left; border-bottom: 1px solid var(--line); padding: 10px 6px; vertical-align: top; }
.attr-table th { width: 30%; color: var(--ink); }
.reviews { list-style: none; padding: 0; margin: 0 0 30px; }
.reviews li { border-bottom: 1px solid var(--line); padding: 16px 0; }
.rv-head { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 6px; }
.rv-title { font-size: 18px; }
.rating-input { border: 0; padding: 0; margin: 0 0 16px; display: inline-flex; flex-direction: row-reverse; gap: 2px; }
.rating-input legend { float: left; width: 100%; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.rating-input input { position: absolute; opacity: 0; }
.rating-input label { cursor: pointer; color: #ddd; margin: 0 !important; }
.rating-input label .ico { width: 26px; height: 26px; }
.rating-input input:checked ~ label, .rating-input label:hover, .rating-input label:hover ~ label { color: var(--orange); }
.rating-input input:focus-visible + label { outline: 2px solid var(--orange); }
.sidebar .widget { background: var(--gray); padding: 32px 25px; margin-bottom: 30px; }
.widget h3 { font-size: 16px; margin-bottom: 18px; }
.mini-products { list-style: none; padding: 0; margin: 0; }
.mini-products li + li { margin-top: 16px; }
.mini-products a { display: flex; gap: 14px; align-items: flex-start; color: var(--ink); }
.mini-products img { width: 60px; height: 60px; object-fit: contain; flex: none; }
.mp-name { display: block; font-family: var(--f-head); font-size: 14px; line-height: 1.5; }
.mp-price { display: block; font-size: 14px; color: var(--muted); }
.mini-products a:hover .mp-name { color: var(--orange); }
.widget-search { position: relative; }
.widget-search input { width: 100%; height: 40px; border: 1px solid #ddd; padding: 0 40px 0 12px; font-size: 14px; background: #fff; }
.widget-search button { position: absolute; right: 4px; top: 4px; bottom: 4px; width: 32px; border: 0; background: none; color: #888; cursor: pointer; }
.notfound .widget-search { max-width: 420px; margin: 0 auto 30px; }

/* ---------- Formulare ---------- */
.form label { display: block; margin-bottom: 18px; color: var(--ink); font-size: 16px; }
.form label.check, .form label.radio { display: flex; }
.form input[type=text], .form input[type=email], .form input[type=tel], .form input[type=password], .form input[type=number], .form input[type=search], .form select, .form textarea,
.coupon-form input, .contact-form input, .contact-form textarea {
  display: block; width: 100%; margin-top: 6px; border: 1px solid #e3e3e3; background: #fafafa; padding: 12px 14px; font-size: 15px; color: var(--ink); border-radius: var(--radius); transition: border-color .2s, background .2s; }
.form input:focus, .form select:focus, .form textarea:focus, .coupon-form input:focus { outline: none; border-color: var(--orange); background: #fff; }
.form select { height: 50px; }
.form textarea { resize: vertical; min-height: 110px; }
.form .nolabel input { margin-top: -6px; }
.form abbr { color: var(--orange); text-decoration: none; }
.form fieldset { border: 1px solid var(--line); padding: 16px 20px 4px; margin: 0 0 18px; }
.form legend { padding: 0 6px; color: var(--ink); font-weight: 700; }
.form-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.form-zip { display: grid; grid-template-columns: 180px 1fr; gap: 0 20px; }
.check, .radio { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; line-height: 1.5; }
.check input, .radio input { margin-top: 5px; accent-color: var(--orange); width: 16px; height: 16px; flex: none; }
.contact-form input, .contact-form textarea { margin: 0 0 10px; background: #fff; border-color: #ddd; font-size: 14px; padding: 10px 12px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #b5b5b5; }
.contact-form .btn { font-size: 15px; padding: 12px 16px; margin-top: 10px; }

/* ---------- Kontakt ---------- */
.contact-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; padding-top: 70px; padding-bottom: 40px; max-width: 1000px; }
.ci-ico { width: 44px; height: 44px; color: var(--orange); margin-bottom: 26px; stroke-width: 2.2; }
.ci h2 { font: 700 13px/1 var(--f-head); color: #aaa; text-transform: uppercase; letter-spacing: .3px; margin-bottom: 14px; }
.ci p { font-weight: 700; color: var(--ink); }
.ci p a { color: var(--ink); }
.ci p a:hover { color: var(--orange); }
.contact-form-wrap { max-width: 802px; padding-bottom: 80px; padding-top: 30px; }
.contact-form-wrap h1 { margin-bottom: 60px; font-weight: 700; font-size: 26px; }
.social { background: var(--gray); padding: 60px 0; }
.social-in { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; max-width: 1080px; }
.soc { display: flex; flex-direction: column; align-items: center; gap: 12px; color: var(--ink); }
.soc-ico { width: 66px; height: 66px; border: 2px solid var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--orange); transition: background .2s, color .2s; margin-bottom: 18px; }
.soc-ico .ico { width: 28px; height: 28px; }
.soc:hover .soc-ico { background: var(--orange); color: #fff; }
.soc strong { font: 700 13px var(--f-head); text-transform: uppercase; }
.soc-handle { color: var(--orange); font-weight: 700; }

/* ---------- Warenkorb ---------- */
.cart-page { padding-top: 50px; padding-bottom: 90px; }
.cart-grid { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 50px; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font: 700 14px var(--f-head); color: var(--ink); border-bottom: 2px solid var(--line); padding: 10px 8px; }
.cart-table td { border-bottom: 1px solid var(--line); padding: 16px 8px; vertical-align: middle; color: var(--ink); }
.c-img { width: 96px; }
.c-img img { width: 80px; height: 80px; object-fit: contain; }
.c-name a { color: var(--ink); font-family: var(--f-slab); font-weight: 700; }
.c-name a:hover { color: var(--orange); }
.rm { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: #999; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.rm:hover { color: #fff; background: var(--err); border-color: var(--err); }
.rm .ico { width: 14px; height: 14px; }
.cart-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; gap: 16px; flex-wrap: wrap; }
.link-back { color: var(--ink); }
.coupon-box { margin-bottom: 24px; }
.coupon-form { display: flex; gap: 8px; }
.coupon-form input { margin: 0; flex: 1; }
.totals-box { background: var(--gray); padding: 30px; }
.totals-box h2 { font-size: 22px; font-weight: 400; }
.totals { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.totals th, .totals td { text-align: left; padding: 14px 0; border-bottom: 1px solid #ddd; vertical-align: top; font-weight: 400; }
.totals th { color: var(--muted); width: 40%; }
.totals td { color: var(--ink); }
.totals .grand td, .totals .grand th { font-size: 20px; color: var(--ink); }
.totals .radio { font-size: 15px; margin-bottom: 4px; }

/* ---------- Kasse ---------- */
.checkout { padding-top: 40px; padding-bottom: 90px; }
.co-info { color: var(--ink); font-size: 17px; margin-bottom: 14px; }
.co-drop { border: 1px solid var(--line); padding: 20px; margin-bottom: 20px; max-width: 700px; }
.co-grid { display: grid; grid-template-columns: minmax(0, 1fr) 412px; gap: 75px; align-items: start; margin-top: 40px; }
.co-fields h2 { font-size: 24px; font-weight: 400; margin-bottom: 24px; }
.co-fields .form-2 { gap: 0 98px; }
.co-fields select[name=country] { width: auto; min-width: 114px; }
.co-sub { padding: 16px 0 4px; }
.co-ship-h { font-size: 17px; font-weight: 400; margin: 24px 0 10px; }
.co-ship-h label { margin: 0 !important; }
.co-review { background: var(--gray); padding: 36px 37px 40px; position: sticky; top: 100px; }
.co-review h2 { font-size: 24px; font-weight: 400; margin-bottom: 26px; }
.co-items { list-style: none; margin: 0; padding: 0 0 18px; border-bottom: 1px solid #ddd; }
.co-items li { display: flex; flex-direction: column; color: var(--muted); font-size: 16px; line-height: 1.6; }
.co-items li + li { margin-top: 12px; }
.co-name { color: #8a8a8a; }
.co-row { padding: 16px 0; border-bottom: 1px solid #ddd; display: flex; flex-direction: column; gap: 4px; }
.co-val { font-weight: 400; color: var(--ink); font-size: 17px; }
.co-total .co-val { font-size: 22px; }
.co-ship .radio { color: var(--ink); font-size: 16px; }
.co-ship .radio input { margin-top: 4px; }
.co-pickup-info { margin: 6px 0 0 26px; }
.pay-methods { list-style: none; padding: 16px 0 10px; margin: 0; }
.pay-methods li { margin-bottom: 12px; }
.pay-radio { color: var(--ink); font-size: 17px; }
.pay-badges { display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0 0 26px; }
.pb { font: 800 10px/1 var(--f-head); padding: 6px 7px; border-radius: 3px; background: #fff; border: 1px solid #ddd; color: #333; letter-spacing: .2px; }
.pb-twint { background: #000; color: #fff; border-color: #000; }
.pb-visa { color: #1a1f71; font-style: italic; }
.pb-mastercard { color: #eb001b; }
.pb-postfinance { background: #ffcc00; border-color: #f2c200; color: #333; }
.pb-paypal { color: #003087; font-style: italic; }
.pay-desc { background: #fff; padding: 12px 14px; margin: 10px 0 4px; font-size: 14px; line-height: 1.6; position: relative; color: var(--text); }
.pay-desc::before { content: ""; position: absolute; top: -8px; left: 20px; border: 8px solid transparent; border-bottom-color: #fff; border-top: 0; }
.co-privacy { margin: 20px 0 14px; line-height: 1.6; font-size: 15px; }
.co-terms { font-size: 15px; color: var(--text); margin-bottom: 24px; }
.co-review .btn-lg { font-size: 15px; font-weight: 700; padding: 14px; }

/* ---------- Danke / Bestellung ---------- */
.thankyou { padding-top: 50px; padding-bottom: 90px; max-width: 960px; }
.ty-hero { background: #f1f8f3; border-left: 4px solid var(--ok); padding: 26px 30px; margin-bottom: 30px; }
.ty-hero h2 { font-size: 22px; margin-bottom: 8px; }
.ty-hero p { margin: 0 0 8px; }
.ty-hero .ty-ico { width: 34px; height: 34px; color: var(--ok); margin-bottom: 8px; stroke-width: 2.5; }
.ty-warn { background: #fff5ef; border-color: var(--orange); }
.ty-warn form { margin-top: 14px; }
.ty-meta { list-style: none; padding: 0; margin: 0 0 40px; display: flex; flex-wrap: wrap; gap: 0; border: 1px dashed #ddd; }
.ty-meta li { padding: 14px 20px; border-right: 1px dashed #ddd; font-size: 12px; text-transform: uppercase; color: var(--muted); flex: 1 1 150px; }
.ty-meta strong { display: block; font-size: 15px; text-transform: none; color: var(--ink); margin-top: 4px; }
.order-table { width: 100%; border-collapse: collapse; margin-bottom: 40px; }
.order-table th, .order-table td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--line); color: var(--ink); font-weight: 400; }
.order-table thead th { font-weight: 700; border-bottom-width: 2px; }
.order-table tfoot th { color: var(--muted); }
.order-table .r { text-align: right; }
.order-table .grand th, .order-table .grand td { font-size: 18px; font-weight: 700; color: var(--ink); }
.ty-addr { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 40px; }
.ty-addr address { font-style: normal; color: var(--ink); border: 1px solid var(--line); padding: 16px 20px; }
.ty-pay > div { font-size: 16px; }

/* ---------- Konto ---------- */
.login-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding-top: 60px; padding-bottom: 90px; }
.login-box { border: 1px solid var(--line); padding: 30px 34px; }
.login-box h2 { font-size: 24px; }
.account { display: grid; grid-template-columns: 240px 1fr; gap: 50px; padding-top: 60px; padding-bottom: 90px; }
.acc-nav { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.acc-nav a { display: flex; align-items: center; gap: 10px; padding: 14px 6px; border-bottom: 1px solid var(--line); color: var(--ink); }
.acc-nav a.on, .acc-nav a:hover { color: var(--orange); }
.acc-main h2 { font-size: 22px; margin-top: 30px; }
.order-list { width: 100%; border-collapse: collapse; }
.order-list th, .order-list td { text-align: left; padding: 12px 8px; border-bottom: 1px solid var(--line); color: var(--ink); }
.st { display: inline-block; font-size: 12px; font-weight: 700; padding: 3px 8px; background: #eee; color: #555; }
.st-processing { background: #fff1e6; color: #c0580f; }
.st-shipped { background: #e7f0fb; color: #25609e; }
.st-completed { background: #e8f5ec; color: #2f7446; }
.st-cancelled { background: #fbeaea; color: #a33; }
.page-content, .narrow.center, .narrow:not(.content) { padding-top: 50px; padding-bottom: 90px; }

/* ---------- Footer ---------- */
.footer { background: var(--footer); color: #fff; text-align: center; padding: 18px 0 16px; font-size: 14px; line-height: 1.6; }
.footer p { margin: 0; }
.footer a { color: #fff; display: inline-flex; align-items: center; gap: 6px; }
.footer a:hover { color: var(--orange); }
.footer-links, .footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 20px; }
.footer-legal { font-size: 12px; opacity: .65; margin: 2px 0; }
.footer .ico { width: 15px; height: 15px; }
.totop { position: fixed; right: 20px; bottom: 20px; width: 42px; height: 42px; background: rgba(0,0,0,.35); color: #fff; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 40; }
.totop .ico { transform: rotate(180deg); }
.totop.show { opacity: 1; pointer-events: auto; }
.totop:hover { background: var(--orange); color: #fff; }

/* ---------- Vertrauen / Gratisversand / Geschenk ---------- */
.trust { list-style: none; padding: 16px 0; margin: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; font-size: 14px; color: var(--ink); }
.trust li { display: flex; gap: 8px; align-items: center; line-height: 1.35; }
.trust .ico { color: var(--orange); width: 20px; height: 20px; }
.trust-compact { border: 0; padding: 0; margin: 18px 0 0; gap: 8px 12px; font-size: 13px; color: var(--text); }
.trust-compact .ico { width: 16px; height: 16px; }
.freeship { background: #fff5ef; border: 1px solid #ffd9c6; padding: 12px 14px; margin: 0 0 18px; font-size: 14px; color: var(--ink); }
.freeship p { margin: 0 0 8px; display: flex; gap: 8px; align-items: center; }
.freeship p .ico { color: var(--orange); width: 20px; height: 20px; }
.freeship.done { background: #f1f8f3; border-color: #cfe9d8; }
.freeship.done p .ico { color: var(--ok); }
.fs-bar { height: 6px; background: #ffe2d3; border-radius: 3px; overflow: hidden; }
.fs-bar span { display: block; height: 100%; background: var(--orange); border-radius: 3px; transition: width .4s; }
.freeship.done .fs-bar { display: none; }
.freeship.done p { margin: 0; }
.co-review .freeship { margin: 16px 0 0; }
.gift-box { border: 1px dashed var(--rose); background: #fbf7f5; padding: 16px 18px 4px; margin: 10px 0 22px; }
.gift-box .check { margin-bottom: 12px !important; }
.gift-box .ico { color: var(--rose); vertical-align: -.25em; }
.toast .t-hint { display: block; font-size: 13px; opacity: .85; margin-top: 2px; }
.ty-cards { margin: 0 0 36px; }
.gc-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.gc { background: var(--orange); color: #fff; border-radius: 10px; padding: 18px 22px; display: flex; flex-direction: column; gap: 4px; }
.gc strong { font-size: 30px; line-height: 1.1; }
.gc code { font-size: 20px; font-weight: 700; letter-spacing: 2px; background: rgba(255,255,255,.18); padding: 4px 8px; align-self: flex-start; }
.gc small { font-size: 12px; opacity: .9; }

/* ---------- Mobile Warenkorb-Leiste ---------- */
.sticky-atc { display: none; }
@media (max-width: 900px) {
  .sticky-atc { position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; background: #fff; box-shadow: 0 -4px 18px rgba(0,0,0,.12); padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); display: flex; align-items: center; gap: 12px; transform: translateY(110%); transition: transform .25s; }
  .sticky-atc.show { transform: none; }
  .sticky-atc img { width: 44px; height: 44px; object-fit: contain; flex: none; }
  .sa-info { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.3; }
  .sa-info strong { font-family: var(--f-slab); font-size: 14px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .sa-info .price { font-size: 14px; color: var(--ink); }
  .sticky-atc .btn { padding: 12px 14px; font-size: 13px; flex: none; }
  body.product .totop { bottom: 84px; }
  body.product .toast { bottom: 84px; }
}
@media (max-width: 600px) {
  .trust { grid-template-columns: 1fr; }
  .toast { width: calc(100% - 32px); justify-content: space-between; }
  .toast > span { flex: 1; }
}

/* ---------- Rechtliche Seiten im Glass-Design ---------- */
.lg-wrap { position: relative; overflow: hidden; padding: 56px 0 80px; color: #f5efe9; font-family: var(--f-body);
  background: radial-gradient(circle at 12% 18%, rgba(255,108,40,.22), transparent 32%), radial-gradient(circle at 88% 26%, rgba(194,146,130,.22), transparent 30%), radial-gradient(circle at 50% 100%, rgba(255,108,40,.10), transparent 40%), linear-gradient(150deg, #120a07, #22140f 55%, #0c0806); }
.lg-glass { position: relative; border-radius: 24px; padding: 46px; border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(135deg, rgba(74,46,34,.55), rgba(18,11,8,.62)); box-shadow: 0 22px 70px rgba(0,0,0,.4);
  -webkit-backdrop-filter: blur(22px); backdrop-filter: blur(22px); }
.lg-hero { padding-bottom: 30px; margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.1); }
.lg-kicker, .lg-card-kicker { display: block; font: 700 11px/1.2 var(--f-head); letter-spacing: 2.4px; text-transform: uppercase; color: #ff9a66; }
.lg-title { font: 700 64px/1.05 var(--f-head); letter-spacing: -2.5px; color: #fff; margin: 14px 0 18px; hyphens: auto; -webkit-hyphens: auto; overflow-wrap: break-word; }
.lg-dot { display: inline-block; width: 13px; height: 13px; border-radius: 50%; margin-left: 6px; background: radial-gradient(circle at 35% 35%, #ffb48f, #ff6c28 60%, #d94a0c); box-shadow: 0 0 18px rgba(255,108,40,.8); }
.lg-lead { color: rgba(245,239,233,.66); font-size: 15px; font-weight: 300; max-width: 760px; }
.lg-lead p { margin: 0 0 .6em; }
.lg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lg-card { border-radius: 22px; padding: 28px; border: 1px solid rgba(255,255,255,.09);
  background: radial-gradient(circle at 100% 0%, rgba(255,108,40,.12), transparent 36%), rgba(14,8,6,.4); transition: border-color .25s, transform .25s; }
.lg-card:hover { border-color: rgba(255,154,102,.28); }
.lg-card.wide { grid-column: 1 / -1; }
.lg-card-head { display: flex; gap: 16px; align-items: center; margin-bottom: 22px; }
.lg-icon { width: 50px; height: 50px; flex: none; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(255,108,40,.22), rgba(194,146,130,.14)); border: 1px solid rgba(255,154,102,.35); color: #ffc7a8; }
.lg-icon .ico { width: 21px; height: 21px; }
.lg-card h2 { font: 600 21px/1.25 var(--f-head); letter-spacing: -.3px; color: #fff; margin: 6px 0 0; }
.lg-body { color: rgba(245,239,233,.72); font-size: 15px; font-weight: 300; line-height: 1.75; }
.lg-body p, .lg-body ul, .lg-body address { margin: 0 0 1em; }
.lg-body > :last-child { margin-bottom: 0; }
.lg-body strong { color: #fff; font-weight: 700; }
.lg-body address { font-style: normal; }
.lg-body a { color: #ff9a66; }
.lg-body a:hover { color: #ffc7a8; }
.lg-body ul { padding-left: 1.2em; }
.lg-body li { margin-bottom: .45em; }
.lg-body li::marker { color: #ff9a66; }
.lg-body h3 { font: 600 16px var(--f-head); color: #fff; margin: 1.2em 0 .4em; }
.lg-body em { color: rgba(245,239,233,.5); }
.legal-meta { margin: 0; display: grid; gap: 10px; }
.legal-meta > div { display: grid; grid-template-columns: 150px 1fr; gap: 12px; align-items: baseline; padding: 13px 16px; border-radius: 12px; background: rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.06); }
.legal-meta dt { font: 600 11px var(--f-head); letter-spacing: 1.6px; text-transform: uppercase; color: rgba(245,239,233,.5); }
.legal-meta dd { margin: 0; color: #fff; font-weight: 400; }
.lg-body address + .legal-meta { margin-top: 18px; }
.lg-foot { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(245,239,233,.5); }
.lg-foot nav { display: flex; gap: 18px; flex-wrap: wrap; }
.lg-foot a { color: rgba(245,239,233,.75); text-transform: uppercase; letter-spacing: 1px; font-size: 12px; }
.lg-foot a:hover, .lg-foot a[aria-current] { color: #ff9a66; }
@media (max-width: 900px) {
  .lg-wrap { padding: 28px 0 50px; }
  .lg-glass { padding: 26px 18px; border-radius: 18px; }
  .lg-title { font-size: clamp(24px, 6.6vw, 40px); letter-spacing: -.8px; }
  .lg-grid { grid-template-columns: 1fr; gap: 14px; }
  .lg-card { padding: 20px 18px; border-radius: 16px; }
  .legal-meta > div { grid-template-columns: 1fr; gap: 2px; }
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1100px) {
  .mainnav { gap: 22px; }
  .minicart { margin-left: 22px; }
  .hero-title { font-size: 56px; }
  .hero-kicker { font-size: 32px; }
  .product-layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
  .sidebar .widget { margin: 0; }
  .co-grid { grid-template-columns: 1fr 360px; gap: 40px; }
  .co-fields .form-2 { gap: 0 24px; }
}

@media (max-width: 900px) {
  h2, .h-line, .h-center { font-size: 28px; }
  .topbar-links { display: none; }
  .topbar-in { justify-content: flex-end; }
  .topbar-right { width: 100%; justify-content: space-between; }
  .masthead-in { min-height: 76px; gap: 12px; }
  .logo img, .masthead.scrolled .logo img { width: 240px; }
  .burger { display: block; }
  .minicart { margin-left: auto; font-size: 15px; }
  .mainnav { position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 86vw); background: #fff; flex-direction: column; align-items: stretch; gap: 0; padding: 90px 24px 24px; box-shadow: -10px 0 30px rgba(0,0,0,.15);
    transform: translateX(105%); transition: transform .3s; z-index: 60; overflow-y: auto; margin: 0; }
  .mainnav.open { transform: none; }
  .mainnav > a, .mnav-extra a { padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 17px; justify-content: flex-start; }
  .mainnav > a::after { display: none; }
  .mnav-extra { display: flex; flex-direction: column; }
  .mnav-extra a { color: var(--ink); display: flex; gap: 8px; align-items: center; font-weight: 700; }
  .mnav-search { position: relative; margin-top: 20px; }
  .mnav-search input { width: 100%; height: 44px; border: 1px solid #ddd; padding: 0 44px 0 12px; }
  .mnav-search button { position: absolute; right: 0; top: 0; height: 44px; width: 44px; border: 0; background: none; color: var(--orange); }
  .burger { position: relative; z-index: 70; }
  body.nav-open::after { content: ""; position: fixed; inset: 0; background: rgba(0,0,0,.35); z-index: 55; }
  .hero { min-height: 0; }
  .hero-in { flex-direction: column-reverse; padding-top: 50px; padding-bottom: 40px; gap: 24px; }
  .hero-carousel { flex: none; width: 100%; max-width: 360px; }
  .hero-title { font-size: 48px; margin-bottom: 24px; }
  .hero-kicker { font-size: 26px; }
  .hero-sub { font-size: 17px; margin-bottom: 28px; }
  .about { grid-template-columns: 1fr; padding-top: 60px; padding-bottom: 60px; gap: 30px; }
  .about-img { justify-content: center; }
  .about-img img { max-width: 280px; }
  .pgrid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .product-top { grid-template-columns: 1fr; }
  .cart-grid, .co-grid, .login-grid, .account { grid-template-columns: 1fr; gap: 30px; }
  .co-review { position: static; }
  .contact-info, .social-in { grid-template-columns: 1fr; gap: 40px; }
  .pagehead h1 { font-size: 32px; }
  .pagehead { padding: 44px 0 38px; }
  .product-layout { padding-top: 40px; }
  .shop-bar select { min-width: 0; width: 100%; }
  .sortform { flex: 1 1 100%; }
  .shop-bar-right { width: 100%; justify-content: space-between; }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  .topbar-mail { font-size: 12px; }
  .topbar-mail .ico { display: none; }
  .topbar-search input { width: 110px; }
  .topbar-search input:focus { width: 150px; }
  .logo img, .masthead.scrolled .logo img { width: 190px; }
  .mc-total { display: none; }
  .hero-title { font-size: 38px; }
  .hero-kicker { font-size: 22px; }
  .pgrid { grid-template-columns: repeat(2, 1fr); gap: 32px 14px; }
  .pcard-title { font-size: 14px; }
  .pcard .btn-sm { font-size: 11px; padding: 8px 8px; }
  .pgrid.list .pcard { flex-direction: column; text-align: center; gap: 16px; }
  .pgrid.list .pcard-img { flex: none; width: 100%; }
  .form-2, .form-zip, .co-fields .form-2 { grid-template-columns: 1fr; }
  .co-review { padding: 24px 20px; margin: 0 -16px; }
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
  .cart-table tr { position: relative; border-bottom: 1px solid var(--line); padding: 14px 0 14px 96px; min-height: 110px; }
  .cart-table td { border: 0; padding: 3px 0; }
  .cart-table td.c-img { position: absolute; left: 0; top: 14px; width: 80px; padding: 0; }
  .cart-table td[data-label]::before { content: attr(data-label) ": "; color: var(--muted); font-size: 13px; }
  .cart-table td.c-name::before { display: none; }
  .cart-table td.c-rm { position: absolute; right: 0; top: 10px; width: auto; }
  .totals-box { padding: 20px; margin: 0 -16px; }
  .ty-addr { grid-template-columns: 1fr; }
  .order-list thead { display: none; }
  .order-list, .order-list tbody, .order-list tr, .order-list td { display: block; }
  .order-list tr { border-bottom: 1px solid var(--line); padding: 10px 0; }
  .order-list td { border: 0; padding: 3px 0; }
  .order-list td[data-label]::before { content: attr(data-label) ": "; color: var(--muted); }
  .login-box { padding: 22px 18px; }
  .tab-nav { gap: 22px; }
  .h-line, .h-center, h2 { font-size: 25px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

@media print {
  .topbar, .masthead, .footer, .totop, .toast { display: none !important; }
}
