/* ──────────────────────────────────────────────
   MONTAS – Gedeelde stijl voor de webshop-pagina's
   (shop, cart, checkout, contact, over-ons, voorwaarden)
   ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red: #E30613; --red2: #b80000; --black: #111111;
  --dark: #1a1a1a; --grey: #f4f4f4; --mid: #888; --white: #ffffff;
  --radius: 12px; --shadow: 0 8px 32px rgba(0,0,0,.12);
}
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--black); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: clamp(1280px, 90vw, 1600px); margin: 0 auto; padding: 0 clamp(24px, 3vw, 48px); }
.btn { display: inline-flex; align-items: center; justify-content:center; gap: 8px;
  padding: clamp(12px,1.2vh,18px) clamp(22px,2.2vw,36px); border-radius: 6px; font-weight: 700;
  font-size: clamp(14px,1.1vw,17px); cursor: pointer; border: none; transition: all .2s; font-family: 'Barlow', sans-serif; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(227,6,19,.35); }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: #333; transform: translateY(-2px); }
.btn-outline-dark { background:#fff; color:var(--black); border:2px solid var(--black); }
.btn-outline-dark:hover { background:var(--black); color:#fff; }
.btn-light { background: var(--grey); color: var(--black); }
.btn-light:hover { background: #e6e6e6; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(28px,4vw,44px); font-weight: 900; line-height: 1.1; }
.tag { display: inline-block; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px; text-transform: uppercase; letter-spacing: .5px; }

/* TOPBAR */
.topbar { background: var(--black); color: #fff; padding: 0 24px; font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: space-between; min-height: 38px; gap: 16px; position: relative; z-index: 30; }
.topbar-msg { flex: 1; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar-msg span { opacity: .4; margin: 0 10px; }
.topbar-msg strong { color: var(--red); }
.topbar-controls { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.tb-select { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); color: #fff; border-radius: 5px;
  padding: 4px 8px; font-size: 12px; font-weight: 600; cursor: pointer; outline: none; font-family: 'Barlow', sans-serif; }

/* HEADER */
header { background: var(--white); position: sticky; top: 0; z-index: 900; border-bottom: 2px solid var(--grey); box-shadow: 0 2px 16px rgba(0,0,0,.07); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.logo img { height: 44px; width: auto; }
.search-bar { flex: 1; display: flex; align-items: center; background: var(--grey); border-radius: 8px; overflow: hidden; border: 2px solid transparent; transition: border-color .2s; }
.search-bar:focus-within { border-color: var(--red); }
.search-bar input { flex: 1; border: none; background: transparent; padding: 11px 16px; font-size: 14px; font-family: 'Barlow', sans-serif; outline: none; }
.search-bar button { background: var(--red); border: none; color: #fff; padding: 0 18px; height: 44px; cursor: pointer; font-size: 18px; transition: background .2s; }
.search-bar button:hover { background: var(--red2); }
.header-actions { display: flex; align-items: stretch; gap: 4px; }
.icon-btn { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; background: none; border: none; cursor: pointer; padding: 6px 10px; font-size: 11px; font-weight: 600; color: var(--black); gap: 4px; border-radius: 8px; transition: background .15s; white-space: nowrap; line-height: 1.1; text-align: center; }
.icon-btn:hover { background: var(--grey); }
.icon-btn svg { width: 22px; height: 22px; flex: none; }
.cart-btn { background: var(--red); color: #fff; border-radius: 8px; padding: 10px 20px; display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; border: none; cursor: pointer; transition: all .2s; }
.cart-btn:hover { background: var(--red2); transform: translateY(-1px); }
.cart-badge { background: #fff; color: var(--red); font-size: 11px; font-weight: 900; min-width: 20px; height: 20px; padding:0 5px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }

/* NAV */
nav.mainnav { background: var(--black); }
.nav-inner { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 6px; color: #fff; font-weight: 600; font-size: 14px; padding: 14px 18px; transition: background .15s; white-space: nowrap; }
.nav-link:hover, .nav-link.active { background: var(--red); }
.dropdown { position: absolute; top: 100%; left: 0; background: #fff; min-width: 220px; border-radius: 0 0 10px 10px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,.18); display: none; z-index: 800; }
.nav-item:hover .dropdown { display: block; }
.dropdown a { display: block; padding: 12px 20px; font-size: 14px; font-weight: 600; color: var(--black); border-bottom: 1px solid var(--grey); transition: all .15s; }
.dropdown a:hover { background: var(--grey); padding-left: 28px; color: var(--red); }
.dropdown a:last-child { border: none; }
.hamburger { display: none; background: none; border: none; cursor: pointer; color: #fff; padding: 10px 14px; line-height: 0; }

/* BREADCRUMB */
.breadcrumb { padding: 22px 0 4px; font-size: 13px; color: var(--mid); font-weight: 600; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { opacity: .5; margin: 0 8px; }
.breadcrumb .current { color: var(--black); }

/* PAGE HERO (compact) */
.page-hero { background: var(--black); color: #fff; padding: 56px 0; position: relative; overflow: hidden; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(32px,5vw,56px); font-weight: 900; text-transform: uppercase; }
.page-hero p { opacity: .7; margin-top: 10px; max-width: 560px; line-height: 1.6; }
.page-hero .glow { position:absolute; right:-100px; top:50%; transform:translateY(-50%); width:600px; height:600px; border-radius:50%; background:radial-gradient(circle,rgba(227,6,19,.25),transparent 70%); pointer-events:none; }

/* PRODUCT CARDS */
.products-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(250px,1fr)); gap:24px; }
.products-grid.cols-2 { grid-template-columns:repeat(2,1fr); }
.products-grid.cols-3 { grid-template-columns:repeat(3,1fr); }
.products-grid.cols-4 { grid-template-columns:repeat(4,1fr); }
.products-grid.cols-6 { grid-template-columns:repeat(6,1fr); }
@media (max-width:1100px){ .products-grid.cols-6 { grid-template-columns:repeat(4,1fr); } }
@media (max-width:1024px){ .products-grid.cols-4 { grid-template-columns:repeat(3,1fr); } .products-grid.cols-6 { grid-template-columns:repeat(3,1fr); } }
@media (max-width:768px){ .products-grid[class*="cols-"] { grid-template-columns:repeat(2,1fr) !important; } }
@media (max-width:460px){ .products-grid[class*="cols-"] { grid-template-columns:1fr !important; } }
/* Kolom-keuze knoppen */
.view-toggle { display:flex; align-items:center; gap:8px; }
.view-toggle .vt-label { font-size:13px; font-weight:600; color:var(--mid); }
.vt-btn { width:34px; height:34px; border:2px solid #e3e3e3; background:#fff; border-radius:8px; cursor:pointer; font-weight:700; font-size:13px; font-family:'Barlow',sans-serif; color:#555; transition:all .15s; }
.vt-btn:hover { border-color:var(--black); }
.vt-btn.active { background:var(--black); color:#fff; border-color:var(--black); }
.product-card { background:#fff; border-radius:var(--radius); overflow:hidden; border:1px solid #ebebeb; transition:all .25s; position:relative; display:flex; flex-direction:column; }
.product-card:hover { transform:translateY(-6px); box-shadow:0 20px 48px rgba(0,0,0,.12); border-color:var(--red); }
.product-img { background:#fff; height:240px; display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.product-img a { display:flex; align-items:center; justify-content:center; width:100%; height:100%; }
.product-img .shoe-icon { font-size:80px; transition:transform .3s; }
.product-card:hover .shoe-icon { transform:scale(1.1) rotate(-5deg); }
.prod-photo { width:100%; height:100%; object-fit:contain; padding:0; transition:transform .4s; }
.product-card:hover .prod-photo { transform:scale(1.08); }
/* Kleur-thumbnails bij hover (zoals voetbalshop.nl) */

.product-img .pc-tint { position:absolute; inset:0; mix-blend-mode:screen; opacity:0; transition:opacity .18s; pointer-events:none; z-index:1; }
.product-badges { z-index:4; }
.pc-thumbs { position:absolute; left:8px; top:8px; display:flex; flex-direction:column; gap:6px; opacity:0; transform:translateX(-6px); transition:opacity .2s, transform .2s; z-index:3; }
.product-card:hover .pc-thumbs { opacity:1; transform:none; }
.pc-thumb { width:44px; height:44px; border-radius:8px; background:#fff; border:1px solid #e3e3e3; box-shadow:0 2px 8px rgba(0,0,0,.08); display:flex; align-items:center; justify-content:center; cursor:pointer; overflow:hidden; position:relative; transition:border-color .15s; }
.pc-thumb img { width:86%; height:86%; object-fit:contain; }
.pc-thumb::after { content:''; position:absolute; bottom:0; left:0; right:0; height:4px; background:var(--sw,#ccc); }
.pc-thumb.active, .pc-thumb:hover { border-color:#111; }
@media (max-width:560px){ .pc-thumbs { display:none; } }
.product-badges { position:absolute; top:12px; left:12px; display:flex; gap:6px; flex-direction:column; }
.product-info { padding:16px; display:flex; flex-direction:column; gap:6px; flex:1; }
.product-brand { font-size:11px; font-weight:700; color:var(--mid); letter-spacing:1px; text-transform:uppercase; }
.product-name { font-weight:700; font-size:15px; line-height:1.3; }
.product-name a:hover { color:var(--red); }
.product-meta { display:flex; gap:6px; flex-wrap:wrap; }
.product-tag { font-size:11px; background:var(--grey); padding:3px 8px; border-radius:4px; font-weight:600; color:var(--mid); }
.product-price-row { display:flex; align-items:center; justify-content:space-between; margin-top:auto; padding-top:8px; }
.product-price { font-family:'Barlow Condensed',sans-serif; font-size:22px; font-weight:900; color:var(--black); }
.product-price .old { font-size:13px; color:var(--mid); text-decoration:line-through; font-weight:400; margin-right:6px; font-family:'Barlow',sans-serif; }
.order-btn { background:var(--red); color:#fff; border:none; border-radius:6px; padding:8px 14px; display:inline-flex; align-items:center; gap:5px; cursor:pointer; font-size:13px; font-weight:700; transition:all .2s; font-family:'Barlow',sans-serif; }
.order-btn:hover { background:var(--red2); transform:scale(1.05); }

/* CONTENT (legal / about) */
.prose { max-width: 820px; margin: 0 auto; padding: 48px 0 72px; }
.prose h2 { font-family:'Barlow Condensed',sans-serif; font-size:26px; font-weight:900; margin:32px 0 12px; }
.prose h3 { font-size:18px; font-weight:800; margin:22px 0 8px; }
.prose p { font-size:15px; line-height:1.8; color:#444; margin-bottom:14px; }
.prose ul.bullets { padding-left:20px; margin:8px 0 16px; list-style:disc; }
.prose ul.bullets li { margin-bottom:8px; line-height:1.6; font-size:15px; color:#444; }
.prose .updated { font-size:13px; color:var(--mid); margin-bottom:24px; }
.pay-box { background:#f7f7f8; border:1px solid #ececec; border-left:4px solid var(--red); border-radius:12px; padding:18px 20px; margin:8px 0 18px; }
.pay-box ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:6px; }
.pay-box ul li { font-size:15px; color:#222; }
.pay-box ul li strong { display:inline-block; min-width:64px; }

/* FORM */
.form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.form-group label { font-size:13px; font-weight:700; color:#555; }
.form-group input, .form-group select, .form-group textarea {
  border:2px solid #e8e8e8; border-radius:8px; padding:12px 14px; font-size:14px; font-family:'Barlow',sans-serif; outline:none; transition:border-color .2s; background:#fafafa; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--red); background:#fff; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }

/* FOOTER */
footer { background: var(--black); color: #fff; padding: 60px 0 0; }
.footer-grid { display:grid; grid-template-columns:1.7fr 1fr 1fr 1.1fr 1.4fr; gap:36px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer-about .logo-footer { height:40px; margin-bottom:16px; }
/* Footerlogo: standaard wit, bij hover wipet de originele kleur er overheen (awwwards reveal) */
.footer-logo-wrap { position:relative; display:inline-block; margin-bottom:16px; cursor:pointer; line-height:0; }
.footer-logo-wrap .logo-footer { margin-bottom:0; display:block; }
.footer-logo-wrap .fl-mono { filter:brightness(0) invert(1); transition:opacity .45s ease, transform .6s cubic-bezier(.76,0,.24,1); }
.footer-logo-wrap .fl-color { position:absolute; top:0; left:0; clip-path:inset(0 100% 0 0); transition:clip-path .7s cubic-bezier(.76,0,.24,1), transform .6s cubic-bezier(.76,0,.24,1); }
.footer-logo-wrap::after { content:''; position:absolute; top:-10%; left:-30%; width:24%; height:120%; background:linear-gradient(100deg,transparent,rgba(255,255,255,.55),transparent); transform:skewX(-18deg); opacity:0; pointer-events:none; }
.footer-logo-wrap:hover .fl-color { clip-path:inset(0 0 0 0); }
.footer-logo-wrap:hover .fl-mono { opacity:0; }
.footer-logo-wrap:hover::after { animation:flShine .8s ease .05s 1; }
@keyframes flShine { 0%{ left:-30%; opacity:0; } 25%{ opacity:1; } 100%{ left:120%; opacity:0; } }
.footer-about p { font-size:13px; opacity:.55; line-height:1.7; max-width:280px; }
.footer-socials { display:flex; gap:10px; margin-top:20px; }
.social-btn { width:38px; height:38px; border-radius:8px; background:rgba(255,255,255,.07); display:flex; align-items:center; justify-content:center; font-size:16px; transition:all .2s; }
.social-btn:hover { background:var(--red); transform:translateY(-2px); }
.footer-col h4 { font-weight:700; font-size:12px; letter-spacing:2px; text-transform:uppercase; opacity:.4; margin-bottom:16px; }
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col ul a { font-size:14px; opacity:.65; transition:opacity .2s; }
.footer-col ul a:hover { opacity:1; color:var(--red); }
/* Footer account-kolom (10% korting + e-mailveld) */
.footer-acc .footer-acc-txt { font-size:13px; opacity:.7; line-height:1.6; margin-bottom:14px; }
.footer-acc .footer-acc-txt strong { color:var(--red); opacity:1; }
.footer-acc-form { display:flex; gap:8px; max-width:280px; }
.footer-acc-form input { flex:1; min-width:0; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.16); border-radius:9px; padding:11px 12px; color:#fff; font-family:'Barlow',sans-serif; font-size:14px; outline:none; }
.footer-acc-form input::placeholder { color:rgba(255,255,255,.45); }
.footer-acc-form input:focus { border-color:var(--red); }
.footer-acc-form button { flex:none; width:44px; border:none; border-radius:9px; background:var(--red); color:#fff; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .2s; }
.footer-acc-form button:hover { background:var(--red2); }
.footer-bottom { padding:20px 0; display:flex; align-items:center; justify-content:space-between; font-size:13px; opacity:.5; flex-wrap:wrap; gap:12px; }
.footer-legal a { opacity:.7; transition:opacity .2s, color .2s; }
.footer-legal a:hover { opacity:1; color:var(--red); }
/* Betaalmethoden */
.footer-pay { display:flex; align-items:center; gap:10px 16px; flex-wrap:wrap; padding:18px 0; border-top:1px solid rgba(255,255,255,.08); }
.footer-pay-label { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1.4px; opacity:.45; white-space:nowrap; }
.pay-badges { display:flex; gap:7px; flex-wrap:wrap; align-items:center; }
.pay-badge { display:inline-flex; align-items:center; gap:5px; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.1); border-radius:6px; padding:4px 9px; font-size:11px; font-weight:700; letter-spacing:.2px; color:rgba(255,255,255,.75); white-space:nowrap; transition:background .15s; }
.pay-badge:hover { background:rgba(255,255,255,.12); }
.pay-badge--visa { background:rgba(255,255,255,.93); color:#1a1f71; border-color:rgba(255,255,255,.5); }
.pay-badge--visa:hover { background:#fff; }
.pay-badge--wa { background:rgba(37,211,102,.12); border-color:rgba(37,211,102,.25); color:#25d366; }
.pay-badge--wa:hover { background:rgba(37,211,102,.2); }
.footer-pay-ssl { flex-basis:100%; display:inline-flex; align-items:center; gap:4px; font-size:11px; opacity:.4; font-weight:600; margin:6px 0 0; white-space:nowrap; }
.pay-logo { display:block; border-radius:5px; box-shadow:0 2px 8px rgba(0,0,0,.25); }

/* MOBILE MENU */
.mobile-menu { display:none; position:fixed; inset:0; background:#111; z-index:1200; flex-direction:column; overflow-y:auto; }
.mobile-menu.open { display:flex; }
.mobile-menu-header { display:flex; align-items:center; justify-content:space-between; padding:18px 20px; border-bottom:1px solid rgba(255,255,255,.08); }
.mobile-menu-logo { height:30px; filter:brightness(0) invert(1); }
.mobile-close { background:none; border:none; color:rgba(255,255,255,.7); cursor:pointer; padding:4px; line-height:0; }
.mobile-nav-link { color:rgba(255,255,255,.85); font-size:15px; font-weight:600; padding:14px 20px; border-bottom:1px solid rgba(255,255,255,.06); display:block; }
.mobile-nav-link.highlight { color:var(--red); }
.mobile-menu-footer { padding:20px; border-top:1px solid rgba(255,255,255,.08); margin-top:auto; }
.mobile-wa-link { display:flex; align-items:center; gap:10px; background:#25D366; color:#fff; padding:13px 18px; border-radius:8px; font-weight:700; font-size:14px; }

/* FLOATS */
.wa-float { position:fixed; bottom:28px; right:28px; z-index:999; background:#25D366; color:#fff; border-radius:50%; width:60px; height:60px; display:flex; align-items:center; justify-content:center; font-size:28px; box-shadow:0 6px 24px rgba(37,211,102,.4); transition:all .25s; }
.wa-float:hover { transform:scale(1.1); }
.toast { position:fixed; bottom:32px; left:50%; transform:translateX(-50%) translateY(120px); background:var(--black); color:#fff; padding:14px 24px; border-radius:10px; font-weight:600; font-size:14px; z-index:9999; transition:transform .35s; display:flex; align-items:center; gap:10px; white-space:nowrap; box-shadow:0 8px 32px rgba(0,0,0,.3); }
.toast.show { transform:translateX(-50%) translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) { .footer-grid { grid-template-columns:1fr 1fr; } }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns:1fr; }
  nav.mainnav .nav-inner { display:none; } .hamburger { display:flex; }
  .search-bar { display:none; }
  .header-inner { padding:0 14px; gap:12px; height:60px; }
  .logo img { height:30px; }
  .icon-btn { display:none; }
  .cart-btn span.cart-label { display:none; }
  .header-actions { margin-left:auto; }            /* winkelwagen naar rechts op mobiel */
  nav.mainnav { display:flex; align-items:center; justify-content:space-between; padding:0 14px; }
  .form-row { grid-template-columns:1fr; }
}
/* Promo-tekst verdwijnt op kleine schermen */
@media (max-width:720px){ .tb-promo { display:none !important; } }

/* ── On-site chatwidget (met WhatsApp-handoff) ── */
.chat-panel { position:fixed; right:24px; bottom:96px; width:340px; max-width:calc(100vw - 32px); background:#fff; border-radius:18px; box-shadow:0 28px 70px -18px rgba(0,0,0,.45); display:flex; flex-direction:column; overflow:hidden; z-index:1150; opacity:0; transform:translateY(16px) scale(.98); pointer-events:none; transition:opacity .25s, transform .25s; }
.chat-panel.open { opacity:1; transform:none; pointer-events:auto; }
.chat-head { background:#075E54; color:#fff; padding:14px 16px; display:flex; align-items:center; gap:12px; }
.chat-head .ch-av { width:40px; height:40px; border-radius:50%; background:#25D366; display:flex; align-items:center; justify-content:center; flex:none; }
.chat-head b { font-size:15px; } .chat-head small { display:block; opacity:.8; font-size:12px; }
.chat-head .ch-close { margin-left:auto; background:rgba(255,255,255,.15); border:none; color:#fff; width:30px; height:30px; border-radius:50%; cursor:pointer; font-size:18px; line-height:1; }
.chat-body { padding:16px; background:#ECE5DD; flex:1; max-height:340px; overflow-y:auto; display:flex; flex-direction:column; gap:8px; }
.chat-msg { max-width:82%; padding:9px 12px; border-radius:12px; font-size:14px; line-height:1.5; box-shadow:0 1px 1px rgba(0,0,0,.08); }
.chat-msg.bot { background:#fff; align-self:flex-start; border-top-left-radius:3px; }
.chat-msg.me { background:#DCF8C6; align-self:flex-end; border-top-right-radius:3px; }
.chat-quick { display:flex; flex-wrap:wrap; gap:6px; padding:10px 16px 0; background:#ECE5DD; }
.chat-quick button { border:1px solid #cdd3cf; background:#fff; border-radius:999px; padding:6px 12px; font-size:12.5px; font-family:'Barlow',sans-serif; font-weight:600; cursor:pointer; color:#333; }
.chat-quick button:hover { border-color:#25D366; color:#075E54; }
.chat-foot { padding:10px 12px; background:#f4f4f4; display:flex; gap:8px; align-items:center; }
.chat-foot input { flex:1; border:1px solid #dcdcdc; border-radius:999px; padding:10px 14px; font-size:14px; font-family:'Barlow',sans-serif; outline:none; }
.chat-foot input:focus { border-color:#25D366; }
.chat-foot button { background:#25D366; border:none; color:#fff; width:40px; height:40px; border-radius:50%; cursor:pointer; flex:none; display:flex; align-items:center; justify-content:center; }
.chat-wa-btn { display:flex; align-items:center; justify-content:center; gap:8px; margin:10px 16px 14px; background:#25D366; color:#fff; border:none; border-radius:10px; padding:11px; font-family:'Barlow',sans-serif; font-weight:800; font-size:14px; cursor:pointer; }
@media (max-width:520px){ .chat-panel { right:8px; left:8px; bottom:88px; width:auto; } .chat-body { max-height:46vh; } }

/* ── Productkaart – verfijnde 'awwwards' look (zelfde elementen) ── */
.products-grid { gap: 28px; }
.product-card { border:1px solid #ededed; border-radius:18px; box-shadow:0 1px 2px rgba(0,0,0,.04); transition:transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s, border-color .45s; }
.product-card:hover { transform:translateY(-8px); box-shadow:0 28px 52px -18px rgba(17,17,17,.24); border-color:transparent; }
.product-img { background:transparent !important; height:auto !important; aspect-ratio:auto !important; padding:0 !important; display:block !important; }
.product-img > a { display:block !important; width:100% !important; height:auto !important; }
.prod-photo, .product-img .shoe-icon { width:100% !important; height:auto !important; display:block !important; }
.product-img::after { content:''; position:absolute; left:16%; right:16%; bottom:16px; height:20px; border-radius:50%; background:radial-gradient(ellipse at center, rgba(0,0,0,.18), transparent 70%); filter:blur(3px); opacity:0; transition:opacity .45s; z-index:0; }
.product-card:hover .product-img::after { opacity:1; }
.prod-photo, .product-img .shoe-icon { padding:0 !important; position:relative; z-index:1; transition:transform .55s cubic-bezier(.2,.7,.2,1) !important; }
.product-card:hover .prod-photo, .product-card:hover .shoe-icon { transform:translateY(-5px) scale(1.05) !important; }
.tag { border-radius:6px; font-size:10px; letter-spacing:.8px; padding:4px 9px; }
.product-info { padding:18px 18px 20px; gap:7px; }
.product-brand { font-size:11px; letter-spacing:1.6px; color:#9a9a9a; }
.product-name { font-size:15px; font-weight:700; line-height:1.35; color:#141414; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; min-height:2.7em; }
.product-name a:hover { color:var(--red); }
.product-tag { background:#f4f4f6; color:#777; border-radius:6px; font-size:10.5px; letter-spacing:.3px; padding:3px 9px; }
.product-price-row { margin-top:6px; padding-top:14px; border-top:1px solid #f0f0f0; }
.product-price { font-size:21px; letter-spacing:.3px; }
.product-price .old { font-size:12.5px; }
.order-btn { border-radius:30px; padding:9px 16px; font-size:12.5px; letter-spacing:.3px; box-shadow:0 8px 18px -8px rgba(227,6,19,.55); transition:all .25s; }
.order-btn:hover { transform:translateY(-1px) scale(1.04); }
.pc-thumb { width:46px; height:46px; border-radius:10px; box-shadow:0 6px 16px rgba(0,0,0,.1); }
.pc-thumb.active, .pc-thumb:hover { border-color:var(--red); box-shadow:0 8px 20px rgba(227,6,19,.2); }
.product-wish { width:38px; height:38px; box-shadow:0 4px 14px rgba(0,0,0,.12); background:rgba(255,255,255,.92); }
