/* ==========================================================
   ZEILMAKERIJ LEIDEN — WEBSHOP CSS (modernisering 2026)
   Premium nautisch design
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
  --navy:        #0b2640;
  --navy-mid:    #153a5e;
  --navy-light:  #1e4f7a;
  --cream:       #faf6ef;
  --cream-dark:  #f2ead8;
  --sand:        #e8d8b8;
  --gold:        #c8a24a;
  --gold-light:  #e2c882;
  --gold-dark:   #a07828;
  --white:       #ffffff;
  --text-dark:   #0b2640;
  --text-mid:    #2d4a65;
  --text-muted:  #5e7590;
  --text-light:  #8ba0b5;
  --green:       #1a6b45;
  --green-bg:    #e8f5ef;
  --green-border:#b3d9c5;
  --amber:       #8a5f00;
  --amber-bg:    #fff7e0;
  --amber-border:#f0d27a;
  --red:         #8b1a1a;
  --red-bg:      #fdf0ef;
  --red-border:  #e8b0aa;
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   22px;
  --radius-xl:   30px;
  --radius-pill: 999px;
  --shadow-xs:   0 1px 4px rgba(11,38,64,.07);
  --shadow-sm:   0 4px 16px rgba(11,38,64,.09);
  --shadow-md:   0 10px 32px rgba(11,38,64,.12);
  --shadow-lg:   0 20px 56px rgba(11,38,64,.16);
  --shadow-gold: 0 8px 24px rgba(200,162,74,.25);
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'DM Sans', system-ui, -apple-system, sans-serif;
  --ease-out:    cubic-bezier(0.22,1,0.36,1);
  --page-max:    1340px;
  --page-pad:    clamp(16px,4vw,40px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

.shop-page { max-width: var(--page-max); margin: 0 auto; padding: 0 var(--page-pad) 80px; }
.shop-page a { color: inherit; }

/* HERO CATALOG */
.shop-category-hero {
  position: relative; display: flex; justify-content: space-between;
  align-items: flex-end; gap: 28px;
  padding: clamp(32px,5vw,52px) clamp(28px,5vw,52px);
  margin-bottom: 32px; border-radius: var(--radius-xl); overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-light) 100%);
  border: none; box-shadow: var(--shadow-lg);
}
.shop-category-hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 18px, rgba(255,255,255,.028) 18px, rgba(255,255,255,.028) 20px);
  pointer-events: none;
}
.shop-category-hero::after {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(200,162,74,.12) 0%, transparent 70%);
  pointer-events: none;
}
.shop-category-copy { position: relative; z-index: 1; }
.shop-page-label {
  display: inline-block; text-transform: uppercase; letter-spacing: .14em;
  font-size: 11px; font-weight: 600; color: var(--gold-light); margin-bottom: 12px;
}
.shop-category-hero h1 {
  font-family: var(--font-display); font-size: clamp(36px,5vw,60px);
  font-weight: 700; line-height: 1.05; color: var(--white);
  letter-spacing: -.01em; max-width: 680px;
}
.shop-category-hero p {
  margin-top: 14px; color: rgba(255,255,255,.72);
  font-size: clamp(14px,1.5vw,16px); line-height: 1.7; max-width: 620px; font-weight: 300;
}

/* CART LINK */
.shop-cart-link {
  position: relative; z-index: 1; display: inline-flex; align-items: center;
  gap: 10px; padding: 14px 24px; background: var(--gold); color: var(--navy);
  border: none; border-radius: var(--radius-pill); font-family: var(--font-body);
  font-weight: 700; font-size: 15px; text-decoration: none; cursor: pointer;
  transition: all .22s var(--ease-out); box-shadow: var(--shadow-gold);
  white-space: nowrap; align-self: flex-start; min-width: 180px; justify-content: center;
}
.shop-cart-link:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(200,162,74,.35); }
.shop-cart-link strong {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; background: var(--navy); color: var(--gold-light);
  border-radius: 50%; font-size: 13px; font-weight: 800;
}

/* BUTTONS */
.shop-btn, .shop-link-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 12px 22px; background: var(--gold); color: var(--navy); border: none;
  border-radius: var(--radius-md); font-family: var(--font-body); font-weight: 700;
  font-size: 14px; text-decoration: none; cursor: pointer;
  transition: all .2s var(--ease-out); white-space: nowrap; line-height: 1;
}
.shop-btn:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.shop-btn-light { background: var(--cream-dark); color: var(--navy-mid); border: 1px solid var(--sand); }
.shop-btn-light:hover { background: var(--sand); color: var(--navy); }
.shop-btn-ghost { background: transparent; color: var(--text-mid); border: 1.5px solid var(--sand); }
.shop-btn-ghost:hover { border-color: var(--gold); color: var(--gold-dark); background: rgba(200,162,74,.06); }
.shop-btn.disabled { pointer-events: none; opacity: .45; }
.shop-link-button {
  background: transparent; color: var(--text-mid); padding: 4px 0;
  font-size: 13px; border-radius: 0; text-decoration: underline;
  text-underline-offset: 3px; justify-content: flex-start; box-shadow: none;
}
.shop-link-button:hover { color: var(--navy); transform: none; box-shadow: none; }

/* CATALOG LAYOUT */
.shop-catalog-layout { display: grid; grid-template-columns: 270px minmax(0,1fr); gap: 24px; align-items: start; }

/* SIDEBAR */
.shop-sidebar-card {
  background: var(--white); border: 1px solid var(--sand);
  border-radius: var(--radius-xl); padding: 24px; position: sticky; top: 24px; box-shadow: var(--shadow-sm);
}
.shop-sidebar-card h2 {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  color: var(--navy); margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--cream-dark); letter-spacing: .01em;
}
.shop-side-nav { display: flex; flex-direction: column; gap: 6px; }
.shop-side-group { display: flex; flex-direction: column; gap: 4px; padding-top: 10px; margin-top: 4px; border-top: 1px solid var(--cream-dark); }
.shop-side-link {
  display: flex; align-items: center; text-decoration: none;
  border-radius: var(--radius-md); padding: 10px 14px; color: var(--text-mid);
  font-weight: 500; font-size: 14px; transition: all .18s var(--ease-out); line-height: 1.3;
}
.shop-side-link:hover { background: var(--cream); color: var(--navy); padding-left: 18px; }
.shop-side-link.is-active { background: var(--navy); color: var(--white); font-weight: 600; }
.shop-side-sub { display: flex; flex-direction: column; gap: 2px; padding-left: 8px; }
.shop-side-sublink {
  display: flex; align-items: center; text-decoration: none; border-radius: var(--radius-sm);
  padding: 8px 14px; color: var(--text-muted); font-weight: 400; font-size: 13px; transition: all .18s;
}
.shop-side-sublink:hover { color: var(--navy-mid); background: var(--cream); }
.shop-side-sublink.is-active { color: var(--gold-dark); font-weight: 600; background: rgba(200,162,74,.08); }

/* TOOLBAR */
.shop-toolbar-card {
  background: var(--white); border: 1px solid var(--sand);
  border-radius: var(--radius-xl); padding: 22px 24px; box-shadow: var(--shadow-xs); margin-bottom: 20px;
}
.shop-toolbar-form { display: grid; grid-template-columns: minmax(240px,1.4fr) minmax(260px,1fr) auto auto; gap: 16px; align-items: end; }
.shop-toolbar-search label, .shop-toolbar-selects label {
  display: flex; flex-direction: column; gap: 6px; font-weight: 600;
  font-size: 13px; color: var(--text-mid); text-transform: uppercase; letter-spacing: .06em;
}
.shop-toolbar-search input, .shop-toolbar-selects select,
.shop-form-grid input, .shop-form-card textarea,
.shop-buy-row input, .shop-cart-qty-wrap input {
  width: 100%; border: 1.5px solid var(--sand); border-radius: var(--radius-md);
  padding: 11px 14px; background: var(--cream); color: var(--text-dark);
  font-family: var(--font-body); font-size: 14px; transition: border-color .18s, box-shadow .18s;
  outline: none; -webkit-appearance: none; appearance: none;
}
.shop-toolbar-search input:focus, .shop-toolbar-selects select:focus,
.shop-form-grid input:focus, .shop-form-card textarea:focus,
.shop-buy-row input:focus, .shop-cart-qty-wrap input:focus {
  border-color: var(--navy-mid); box-shadow: 0 0 0 3px rgba(21,58,94,.12); background: var(--white);
}
.shop-toolbar-selects { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.shop-toolbar-flags { display: flex; flex-direction: column; gap: 10px; padding-bottom: 4px; }
.shop-check { display: flex; align-items: center; gap: 9px; font-weight: 500; font-size: 13px; color: var(--text-mid); cursor: pointer; }
.shop-check input[type="checkbox"] { width: 16px; height: 16px; border: 1.5px solid var(--sand); border-radius: 4px; cursor: pointer; accent-color: var(--navy); }
.shop-check-block { font-size: 14px; padding: 14px; border: 1.5px solid var(--sand); border-radius: var(--radius-md); transition: border-color .18s; }
.shop-check-block:hover { border-color: var(--gold); }
.shop-toolbar-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* RESULTS HEAD */
.shop-results-head, .shop-section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 20px; margin-top: 8px; }
.shop-results-head h2, .shop-section-head h2 { font-family: var(--font-display); font-size: clamp(22px,2.5vw,32px); font-weight: 600; color: var(--navy); letter-spacing: -.01em; line-height: 1.15; }
.shop-results-head p, .shop-section-head p { margin-top: 5px; color: var(--text-muted); font-size: 14px; }
.shop-kicker { display: block; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }

/* GRID */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 24px; }
.shop-grid-related { grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); }

/* PRODUCT CARD */
.shop-card {
  background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-xl);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .26s var(--ease-out), box-shadow .26s var(--ease-out), border-color .2s;
}
.shop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(200,162,74,.4); }
.shop-card-media {
  position: relative; display: block; aspect-ratio: 4/3;
  background: linear-gradient(160deg, var(--cream-dark) 0%, var(--sand) 100%);
  overflow: hidden; text-decoration: none;
}
.shop-card-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,38,64,.18) 0%, transparent 50%);
  opacity: 0; transition: opacity .26s;
}
.shop-card:hover .shop-card-media::after { opacity: 1; }
.shop-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.shop-card:hover .shop-card-media img { transform: scale(1.04); }
.shop-card-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; padding: 20px; color: var(--text-muted); font-family: var(--font-display); font-size: 16px; font-style: italic; font-weight: 600; text-align: center; }
.shop-card-badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; z-index: 2; }
.shop-card-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.shop-card-topline { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.shop-card-meta { font-size: 11px; text-transform: uppercase; letter-spacing: .09em; color: var(--gold-dark); font-weight: 700; }
.shop-card-sub { font-size: 12px; color: var(--text-light); }
.shop-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--navy); line-height: 1.25; letter-spacing: -.01em; }
.shop-card h3 a { text-decoration: none; transition: color .18s; }
.shop-card h3 a:hover { color: var(--gold-dark); }
.shop-card p { margin: 0; color: var(--text-muted); font-size: 13px; line-height: 1.65; flex: 1; }
.shop-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--cream-dark); }
.shop-card-footer strong { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy); letter-spacing: -.02em; }
.shop-card-actions, .shop-inline-form { display: flex; gap: 8px; flex-wrap: wrap; }
.shop-inline-form { margin: 0; }

/* BADGES */
.shop-badge { display: inline-flex; align-items: center; padding: 5px 11px; border-radius: var(--radius-pill); background: rgba(11,38,64,.85); color: var(--cream); font-size: 11px; font-weight: 700; letter-spacing: .04em; backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.15); }
.shop-badge.is-positive { background: var(--green-bg); color: var(--green); border-color: var(--green-border); }
.shop-badge.is-warning { background: var(--amber-bg); color: var(--amber); border-color: var(--amber-border); }
.shop-badge.is-negative { background: var(--red-bg); color: var(--red); border-color: var(--red-border); }

/* EMPTY STATE */
.shop-empty { padding: 48px 32px; border-radius: var(--radius-xl); background: var(--white); border: 1.5px dashed var(--sand); color: var(--text-muted); text-align: center; }
.shop-empty h3 { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.shop-empty p { margin: 0 0 20px; line-height: 1.6; font-size: 15px; }
.shop-empty-wide { grid-column: 1 / -1; }

/* BREADCRUMBS */
.shop-breadcrumbs { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; color: var(--text-muted); font-size: 13px; }
.shop-breadcrumbs a { text-decoration: none; color: var(--text-mid); transition: color .18s; font-weight: 500; }
.shop-breadcrumbs a:hover { color: var(--gold-dark); }
.shop-breadcrumbs strong { color: var(--text-dark); font-weight: 600; }

/* PRODUCT DETAIL */
.shop-product-layout { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(360px,.9fr); gap: 28px; align-items: start; margin-bottom: 40px; }
.shop-product-media, .shop-product-card, .shop-cart-card, .shop-summary-card, .shop-form-card { background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow-sm); }
.shop-product-card { position: sticky; top: 24px; }
.shop-product-main-image { aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(160deg, var(--cream-dark), var(--sand)); }
.shop-product-main-image img, .shop-thumb-card img, .shop-cart-image img { width: 100%; height: 100%; object-fit: cover; }
.shop-product-placeholder { aspect-ratio: 1/1; background: linear-gradient(160deg, var(--cream-dark), var(--sand)); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-family: var(--font-display); font-size: 20px; font-style: italic; font-weight: 600; }
.shop-thumb-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(82px,1fr)); gap: 10px; margin-top: 14px; }
.shop-thumb-card { border-radius: var(--radius-md); overflow: hidden; background: var(--cream-dark); aspect-ratio: 1/1; cursor: pointer; border: 2px solid transparent; transition: border-color .18s, transform .18s; }
.shop-thumb-card:hover { border-color: var(--gold); transform: scale(1.04); }
.shop-product-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.shop-product-card h1 { font-family: var(--font-display); font-size: clamp(28px,3vw,40px); font-weight: 700; color: var(--navy); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 8px; }
.shop-price-xl { font-family: var(--font-display); font-size: 42px; font-weight: 700; color: var(--navy); letter-spacing: -.03em; line-height: 1; margin: 12px 0 6px; }
.shop-product-intro { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }

.shop-key-points { display: grid; gap: 10px; padding: 16px; background: var(--cream); border-radius: var(--radius-lg); border: 1px solid var(--cream-dark); margin-bottom: 20px; }
.shop-key-points > div { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.shop-key-points > div::before { content: '✓'; display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: var(--gold); color: var(--navy); border-radius: 50%; font-weight: 800; font-size: 11px; flex-shrink: 0; }
.shop-key-points strong { font-weight: 600; color: var(--navy); min-width: 100px; }
.shop-key-points span { color: var(--text-muted); }

.shop-buy-card { background: var(--cream); border: 1.5px solid var(--sand); border-radius: var(--radius-lg); padding: 20px; margin-top: 20px; }
.shop-buy-row { display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap; }
.shop-buy-row label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; font-size: 13px; color: var(--text-mid); text-transform: uppercase; letter-spacing: .06em; min-width: 110px; }
.shop-buy-row input[type="number"] { padding: 11px 14px; font-size: 15px; font-weight: 700; }
.shop-buy-row .shop-btn { flex: 1; min-width: 180px; padding: 14px 20px; font-size: 15px; border-radius: var(--radius-md); box-shadow: var(--shadow-gold); }
.shop-buy-notes { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--sand); }
.shop-buy-notes span { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }

.shop-side-panel { margin-top: 20px; border-top: 1px solid var(--cream-dark); padding-top: 20px; }
.shop-side-panel h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.shop-spec-list { display: flex; flex-direction: column; gap: 0; }
.shop-spec-list div { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--cream-dark); }
.shop-spec-list div:last-child { border-bottom: none; }
.shop-spec-list dt { font-weight: 600; color: var(--text-mid); font-size: 13px; }
.shop-spec-list dd { color: var(--text-dark); font-size: 13px; font-weight: 500; text-align: right; }

.shop-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.shop-info-panel h2 { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--navy); margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--cream-dark); }
.shop-info-panel p { color: var(--text-mid); line-height: 1.75; font-size: 15px; }
.shop-detail-list { display: flex; flex-direction: column; gap: 16px; }
.shop-detail-list > div { display: flex; flex-direction: column; gap: 4px; padding-bottom: 16px; border-bottom: 1px solid var(--cream-dark); }
.shop-detail-list > div:last-child { border-bottom: none; padding-bottom: 0; }
.shop-detail-list strong { font-weight: 700; color: var(--navy); font-size: 14px; }
.shop-detail-list span { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.shop-related-section { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--sand); }

/* COMPACT HERO */
.shop-hero { padding: clamp(28px,4vw,44px) clamp(24px,4vw,44px); margin-bottom: 28px; border-radius: var(--radius-xl); background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: var(--white); display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.shop-hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent, transparent 18px, rgba(255,255,255,.025) 18px, rgba(255,255,255,.025) 20px); }
.shop-hero.compact { padding: clamp(24px,3vw,36px) clamp(22px,3vw,36px); }
.shop-hero-copy, .shop-hero > div { position: relative; z-index: 1; }
.shop-eyebrow { display: block; text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 600; color: var(--gold-light); margin-bottom: 10px; }
.shop-hero h1 { font-family: var(--font-display); font-size: clamp(28px,4vw,48px); font-weight: 700; color: var(--white); line-height: 1.08; letter-spacing: -.02em; }
.shop-hero p { margin-top: 10px; color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.65; max-width: 560px; }
.shop-hero-actions { position: relative; z-index: 1; }

/* CHECKOUT STEPS */
.shop-checkout-steps { display: flex; align-items: center; gap: 6px; margin-bottom: 24px; flex-wrap: wrap; }
.shop-checkout-steps span { display: flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; background: var(--white); border: 1.5px solid var(--sand); color: var(--text-muted); }
.shop-checkout-steps span::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--sand); }
.shop-checkout-steps span.is-done { border-color: var(--green-border); color: var(--green); background: var(--green-bg); }
.shop-checkout-steps span.is-done::before { background: var(--green); }
.shop-checkout-steps span.is-active { border-color: var(--navy); color: var(--navy); background: rgba(11,38,64,.06); }
.shop-checkout-steps span.is-active::before { background: var(--navy); }

/* CART */
.shop-cart-layout, .shop-checkout-layout { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(300px,.7fr); gap: 24px; align-items: start; }
.shop-cart-form { display: flex; flex-direction: column; }
.shop-cart-row { display: grid; grid-template-columns: minmax(0,1.4fr) 160px 130px; gap: 20px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--cream-dark); }
.shop-cart-row:first-of-type { padding-top: 0; }
.shop-cart-row:last-of-type { border-bottom: none; }
.shop-cart-product { display: flex; gap: 16px; align-items: flex-start; }
.shop-cart-image { display: block; width: 96px; aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden; background: var(--cream-dark); flex-shrink: 0; border: 1px solid var(--sand); transition: transform .22s var(--ease-out); }
.shop-cart-image:hover { transform: scale(1.03); }
.shop-cart-info { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.shop-cart-info h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--navy); line-height: 1.2; }
.shop-cart-info h3 a { text-decoration: none; transition: color .18s; }
.shop-cart-info h3 a:hover { color: var(--gold-dark); }
.shop-cart-info p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.shop-cart-sub { font-size: 12px; color: var(--text-light); font-weight: 500; }
.shop-cart-qty-wrap { display: flex; flex-direction: column; gap: 8px; }
.shop-cart-qty-wrap label { display: flex; flex-direction: column; gap: 5px; font-weight: 600; font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.shop-cart-qty-wrap input[type="number"] { padding: 10px 12px; max-width: 80px; text-align: center; font-weight: 700; }
.shop-cart-line-total { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.shop-cart-line-total strong { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy); letter-spacing: -.02em; }
.shop-cart-remove-hint { font-size: 11px; color: var(--text-light); }
.shop-cart-actions-bar { display: flex; justify-content: flex-end; gap: 12px; padding-top: 24px; margin-top: 8px; border-top: 1px solid var(--cream-dark); flex-wrap: wrap; }
.shop-cart-remove-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 16px 0 0; }
.shop-remove-chip-form { display: inline-flex; }
.shop-remove-chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: transparent; border: 1.5px solid var(--sand); border-radius: var(--radius-pill); color: var(--text-muted); font-size: 12px; font-weight: 500; cursor: pointer; transition: all .18s; font-family: var(--font-body); }
.shop-remove-chip::before { content: '×'; font-size: 15px; font-weight: 700; color: var(--red); }
.shop-remove-chip:hover { border-color: var(--red-border); background: var(--red-bg); color: var(--red); }

/* SUMMARY CARD */
.shop-summary-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--cream-dark); }
.shop-sticky-card { position: sticky; top: 24px; }
.shop-summary-line { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--cream-dark); font-size: 14px; }
.shop-summary-line:last-of-type { border-bottom: none; }
.shop-summary-line span { color: var(--text-muted); }
.shop-summary-line strong { font-weight: 700; color: var(--text-dark); }
.shop-summary-line.total { padding-top: 14px; margin-top: 4px; border-top: 2px solid var(--sand); border-bottom: none; font-size: 17px; }
.shop-summary-line.total strong { font-family: var(--font-display); font-size: 26px; color: var(--navy); letter-spacing: -.02em; }
.shop-summary-note { margin: 14px 0 16px; color: var(--text-muted); font-size: 12px; line-height: 1.65; }
.shop-summary-points { list-style: none; padding: 12px 0; display: flex; flex-direction: column; gap: 8px; border-top: 1px solid var(--cream-dark); margin-bottom: 16px; }
.shop-summary-points li { font-size: 13px; color: var(--text-mid); display: flex; align-items: center; gap: 8px; }
.shop-summary-points li::before { content: '✓'; width: 18px; height: 18px; background: var(--green-bg); color: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; flex-shrink: 0; }

/* CHECKOUT FORM */
.shop-checkout-card { padding: 32px; }
.shop-section-head-small h2 { font-size: 24px; }
.shop-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; margin-bottom: 20px; }
.shop-form-grid label, .shop-textarea-label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; font-size: 13px; color: var(--text-mid); text-transform: uppercase; letter-spacing: .05em; }
.shop-form-card textarea { resize: vertical; min-height: 100px; font-family: var(--font-body); padding: 12px 14px; }
.shop-textarea-label { margin-bottom: 16px; }
.shop-checkout-benefits { display: flex; gap: 20px; flex-wrap: wrap; padding: 14px 16px; background: var(--cream); border-radius: var(--radius-md); margin: 16px 0; }
.shop-checkout-benefits span { font-size: 13px; color: var(--text-mid); display: flex; align-items: center; gap: 6px; }
.shop-form-actions { display: flex; gap: 12px; justify-content: space-between; align-items: center; flex-wrap: wrap; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--cream-dark); }
.shop-form-actions .shop-btn:last-child { padding: 14px 28px; font-size: 15px; box-shadow: var(--shadow-gold); }

/* ALERTS */
.shop-alert { padding: 14px 18px; border-radius: var(--radius-md); background: var(--red-bg); color: var(--red); border: 1px solid var(--red-border); font-size: 14px; font-weight: 500; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.shop-alert::before { content: '!'; display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; background: var(--red); color: var(--white); border-radius: 50%; font-size: 12px; font-weight: 900; flex-shrink: 0; }
.shop-alert-success { background: var(--green-bg); color: var(--green); border-color: var(--green-border); }
.shop-alert-success::before { content: '✓'; background: var(--green); }

/* MOBILE CHIPS */
.shop-mobile-category-list { display: none; gap: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; -ms-overflow-style: none; margin-bottom: 16px; }
.shop-mobile-category-list::-webkit-scrollbar { display: none; }
.shop-mobile-cat-chip { display: inline-flex; align-items: center; padding: 8px 16px; border-radius: var(--radius-pill); background: var(--white); border: 1.5px solid var(--sand); color: var(--text-mid); font-size: 13px; font-weight: 600; white-space: nowrap; text-decoration: none; transition: all .18s; flex-shrink: 0; }
.shop-mobile-cat-chip:hover, .shop-mobile-cat-chip.is-active { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .shop-toolbar-form { grid-template-columns: 1fr 1fr; }
  .shop-toolbar-actions { grid-column: 1 / -1; }
  .shop-cart-row { grid-template-columns: minmax(0,1fr) 150px 110px; }
  .shop-catalog-layout { grid-template-columns: 1fr; }
  .shop-desktop-only { display: none !important; }
  .shop-mobile-category-list { display: flex; }
  .shop-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .shop-page { padding: 0 var(--page-pad) 60px; }
  .shop-category-hero, .shop-cart-layout, .shop-checkout-layout, .shop-product-layout { grid-template-columns: 1fr; }
  .shop-category-hero { flex-direction: column; align-items: flex-start; padding: 28px 26px; }
  .shop-cart-link { width: 100%; min-width: 0; }
  .shop-toolbar-form { grid-template-columns: 1fr; }
  .shop-toolbar-selects { grid-template-columns: 1fr 1fr; }
  .shop-results-head, .shop-section-head { flex-direction: column; align-items: flex-start; }
  .shop-sticky-card, .shop-product-card { position: static; }
  .shop-form-grid { grid-template-columns: 1fr; }
  .shop-cart-row { grid-template-columns: 1fr; }
  .shop-cart-line-total { align-items: flex-start; }
  .shop-hero { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .shop-category-hero { border-radius: var(--radius-xl); }
  .shop-category-hero h1 { font-size: 34px; }
  .shop-card-footer, .shop-card-actions { flex-direction: column; align-items: stretch; }
  .shop-card-topline { flex-direction: column; }
  .shop-cart-product { flex-direction: column; }
  .shop-cart-image { width: 100%; max-width: 200px; }
  .shop-thumb-row { grid-template-columns: repeat(3, 1fr); }
  .shop-toolbar-search input, .shop-toolbar-selects select, .shop-btn, .shop-cart-link { width: 100%; }
  .shop-toolbar-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .shop-toolbar-actions .shop-btn { min-width: 0; }
  .shop-grid { grid-template-columns: 1fr; }
  .shop-card-media { aspect-ratio: 16/10; }
  .shop-cart-actions-bar { flex-direction: column; }
  .shop-cart-actions-bar .shop-btn { width: 100%; }
  .shop-buy-row { flex-direction: column; align-items: stretch; }
  .shop-form-actions { flex-direction: column; }
  .shop-form-actions .shop-btn { width: 100%; }
}

/* --- Webshop 2.0 Update C --- */
.shop-page-detail,
.shop-page-cart,
.shop-page-checkout,
.shop-page-confirmation { padding-bottom: 64px; }
.shop-detail-shell { display: flex; flex-direction: column; gap: 30px; }
.shop-price-note { font-size: 14px; color: var(--text-muted); font-weight: 500; margin-left: 8px; }
.shop-detail-trust-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 20px 0 18px; }
.shop-detail-trust-grid div { background: var(--cream); border: 1px solid var(--sand); border-radius: var(--radius-md); padding: 14px 16px; }
.shop-detail-trust-grid strong { display: block; color: var(--navy); margin-bottom: 4px; }
.shop-detail-trust-grid span { color: var(--text-muted); font-size: 13px; line-height: 1.5; }
.shop-buy-card-rich { gap: 16px; }
.shop-field-block { display: flex; flex-direction: column; gap: 8px; color: var(--text-mid); font-weight: 600; }
.shop-field-block select,
.shop-coupon-form input,
.shop-buy-card-rich select { width: 100%; border: 1.5px solid var(--sand); border-radius: var(--radius-md); padding: 11px 14px; background: var(--cream); color: var(--text-dark); font-size: 14px; }
.shop-field-block select:focus,
.shop-coupon-form input:focus,
.shop-buy-card-rich select:focus { border-color: var(--navy-mid); box-shadow: 0 0 0 3px rgba(21,58,94,.12); background: var(--white); outline: none; }
.shop-cart-row-rich { grid-template-columns: minmax(0, 1.5fr) minmax(120px, .4fr) minmax(120px, .4fr); }
.shop-cart-meta-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.shop-mini-pill { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: var(--cream); color: var(--text-mid); font-size: 12px; border: 1px solid var(--sand); }
.shop-cart-tools { display: flex; flex-direction: column; gap: 16px; margin-top: 18px; }
.shop-summary-inline-form { margin: 0; }
.shop-radio-group,
.shop-delivery-choice { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.shop-radio-card { position: relative; display: flex; align-items: center; justify-content: center; padding: 14px 16px; border: 1.5px solid var(--sand); border-radius: var(--radius-md); background: var(--cream); color: var(--text-mid); font-weight: 600; cursor: pointer; transition: border-color .18s, background .18s, color .18s; text-align: center; }
.shop-radio-card input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.shop-radio-card.is-active,
.shop-radio-card:has(input:checked) { border-color: var(--navy); background: rgba(21,58,94,.08); color: var(--navy); }
.shop-coupon-form { display: flex; flex-direction: column; gap: 10px; margin: 18px 0; padding-top: 18px; border-top: 1px solid var(--cream-dark); }
.shop-coupon-active { font-size: 14px; color: var(--text-mid); }
.shop-summary-line-stack { align-items: flex-start; }
.shop-summary-line-stack small { display: block; margin-top: 4px; color: var(--text-light); }
.shop-delivery-choice-checkout { margin-bottom: 18px; }
.shop-success-hero { align-items: center; text-align: center; }
.shop-success-icon { width: 72px; height: 72px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(46, 125, 92, .14); color: var(--green); font-size: 34px; font-weight: 700; margin-bottom: 12px; }
.shop-confirm-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); gap: 24px; align-items: start; }
.shop-confirm-grid-single { max-width: 680px; margin: 0 auto; }
.shop-confirm-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.shop-campaign-band { margin-top: 40px; display: grid; grid-template-columns: minmax(0,1.2fr) minmax(280px,.8fr); gap: 22px; }
.shop-campaign-copy,
.shop-campaign-card,
.shop-review-card { background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow-sm); }
.shop-campaign-card h3 { font-family: var(--font-display); font-size: 24px; color: var(--navy); margin: 10px 0; }
.shop-campaign-card p,
.shop-campaign-copy p,
.shop-review-card p { color: var(--text-muted); line-height: 1.7; }
.shop-text-link { color: var(--gold-dark); font-weight: 700; text-decoration: none; }
.shop-brand-strip,
.shop-review-strip { margin-top: 36px; }
.shop-brand-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.shop-brand-card { background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 18px 20px; text-align: center; font-family: var(--font-display); font-size: 20px; color: var(--navy); box-shadow: var(--shadow-xs); }
.shop-review-strip { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.shop-review-quote { background: linear-gradient(160deg, rgba(21,58,94,.06), rgba(184,146,74,.10)); }
.shop-review-quote strong { color: var(--navy); }

@media (max-width: 1023px) {
  .shop-campaign-band,
  .shop-confirm-grid,
  .shop-review-strip,
  .shop-product-layout,
  .shop-cart-row-rich { grid-template-columns: 1fr; }
  .shop-brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-product-card { position: static; }
}

@media (max-width: 767px) {
  .shop-detail-trust-grid,
  .shop-radio-group,
  .shop-delivery-choice,
  .shop-brand-grid { grid-template-columns: 1fr; }
  .shop-confirm-actions,
  .shop-form-actions,
  .shop-cart-actions-bar { flex-direction: column; }
  .shop-confirm-actions .shop-btn,
  .shop-form-actions .shop-btn,
  .shop-cart-actions-bar .shop-btn { width: 100%; }
  .shop-campaign-copy,
  .shop-campaign-card,
  .shop-review-card,
  .shop-product-media,
  .shop-product-card,
  .shop-cart-card,
  .shop-summary-card,
  .shop-form-card { padding: 22px; }
}
