:root {
  --navy: #14213d; --navy-2: #1f2f57; --ink: #1c1f24; --text: #2b2f36; --muted: #5f6672; --line: #e1e4e8; --bg: #f6f7f9; --white: #fff;
  --accent: #0b6e4f; --accent-2: #0d8a63; --warn: #b7791f; --danger: #b42318; --info: #1d4ed8;
  --radius: 8px; --shadow: 0 1px 2px rgba(16, 24, 40, .06), 0 1px 3px rgba(16, 24, 40, .1);
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { font-size: 15px; }
body { margin: 0; font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: var(--navy); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(29, 78, 216, .28); outline-offset: 2px; }
h1, h2, h3 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: 1.9rem; } h2 { font-size: 1.35rem; } h3 { font-size: 1.05rem; }
p { margin: 0 0 1em; }
img, svg { max-width: 100%; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.muted { color: var(--muted); } .small { font-size: .85rem; } .right { float: right; }
.excl { color: var(--muted); font-size: .8rem; margin-left: .4em; }

/* header */
.topbar { background: var(--navy); color: #cfd6e4; font-size: .8rem; }
.topbar .container { display: flex; justify-content: space-between; gap: 24px; padding: 6px 24px; }
.topbar span + span::before { content: '·'; margin: 0 10px; opacity: .5; }
.topbar a { color: #fff; text-decoration: none; }
.header { background: var(--white); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20; }
.header .container { display: flex; align-items: center; gap: 28px; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 700; font-size: 1.15rem; letter-spacing: -.02em; white-space: nowrap; }
.logo .mark { width: 34px; height: 34px; border-radius: 8px; background: var(--navy); display: grid; place-items: center; color: #fff; font-size: 1rem; }
.logo small { display: block; font-weight: 500; font-size: .7rem; color: var(--muted); letter-spacing: 0; }
.search { flex: 1; display: flex; }
.search input { flex: 1; border: 1px solid #c9ced6; border-right: 0; border-radius: 6px 0 0 6px; padding: 10px 14px; font: inherit; }
.search button { border: 0; background: var(--navy); color: #fff; padding: 0 18px; border-radius: 0 6px 6px 0; font: inherit; font-weight: 600; cursor: pointer; }
.header-links { display: flex; gap: 22px; align-items: center; }
.header-links a { text-decoration: none; color: var(--ink); font-weight: 500; font-size: .9rem; display: flex; align-items: center; gap: 6px; position: relative; }
.header-links a small { display: block; color: var(--muted); font-weight: 400; font-size: .72rem; }
#cart-count { background: var(--accent); color: #fff; font-size: .7rem; border-radius: 99px; padding: 1px 7px; font-weight: 700; }
.main-nav { background: var(--white); border-bottom: 1px solid var(--line); }
.main-nav .container { display: flex; gap: 4px; overflow-x: auto; }
.main-nav a { padding: 11px 12px; text-decoration: none; color: var(--text); font-size: .88rem; font-weight: 500; white-space: nowrap; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a.active { color: var(--navy); border-bottom-color: var(--navy); }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 6px; padding: 9px 16px; font: inherit; font-weight: 600; font-size: .9rem; border: 1px solid transparent; cursor: pointer; text-decoration: none; transition: background .15s, border-color .15s; }
.btn-primary { background: var(--accent); color: #fff; } .btn-primary:hover { background: var(--accent-2); }
.btn-secondary { background: var(--navy); color: #fff; } .btn-secondary:hover { background: var(--navy-2); }
.btn-outline { background: #fff; color: var(--navy); border-color: #c9ced6; } .btn-outline:hover { border-color: var(--navy); }
.btn-link { background: none; color: var(--navy); text-decoration: underline; padding: 6px 0; }
.btn-lg { padding: 13px 22px; font-size: 1rem; } .btn-block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }
.btn-icon { border: 0; background: none; color: var(--muted); font-size: 1rem; cursor: pointer; padding: 6px; }
.btn-icon:hover { color: var(--danger); }

/* hero */
.hero { background: linear-gradient(135deg, #eef2f7, #f9fafb 60%); border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; padding: 56px 24px; }
.eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: .75rem; font-weight: 700; color: var(--accent); margin-bottom: 12px; }
.hero h1 { font-size: 2.6rem; margin-bottom: 16px; }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 56ch; }
.lead-sm { font-size: 1rem; color: var(--muted); }
.hero-cta { display: flex; gap: 12px; margin: 22px 0 26px; }
.usp { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; font-size: .9rem; color: var(--muted); }
.usp li::before { content: '✓'; color: var(--accent); font-weight: 700; margin-right: 8px; }
.hero-art { background: #fff; border-radius: 16px; box-shadow: var(--shadow); padding: 20px; }
.hero-svg { width: 100%; height: auto; display: block; border-radius: 10px; }

/* sections */
.section { padding: 48px 0; }
.section-alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-dark { background: var(--navy); color: #d5dbe8; }
.section-dark h3 { color: #fff; }
.section-head { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.section-head a { font-weight: 600; text-decoration: none; }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.cat-card { display: flex; gap: 14px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; text-decoration: none; color: var(--text); transition: border-color .15s, box-shadow .15s; }
.cat-card:hover { border-color: var(--navy); box-shadow: var(--shadow); }
.cat-card h3 { margin: 0 0 2px; font-size: .98rem; } .cat-card p { margin: 0; font-size: .8rem; color: var(--muted); }
.cat-art { width: 84px; flex: none; border-radius: 6px; overflow: hidden; } .cat-art svg { display: block; }
.setup-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.setup-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: var(--bg); display: flex; flex-direction: column; }
.setup-card p { color: var(--muted); font-size: .9rem; }
.setup-items { list-style: none; padding: 0; margin: 0 0 16px; font-size: .85rem; flex: 1; }
.setup-items li { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; border-bottom: 1px dashed var(--line); }
.setup-items a { text-decoration: none; }
.setup-foot { display: flex; justify-content: space-between; align-items: end; gap: 12px; flex-wrap: wrap; }
.setup-foot strong { font-size: 1.3rem; }
.setup-actions { display: flex; gap: 10px; align-items: end; }
.setup-actions label { font-size: .8rem; color: var(--muted); display: flex; flex-direction: column; gap: 4px; }
.trust-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; padding: 48px 24px; align-items: center; }
.trust-stats { display: flex; gap: 32px; } .trust-stats strong { display: block; font-size: 2rem; color: #fff; } .trust-stats span { font-size: .85rem; }

/* product cards */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
.card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); color: var(--text); overflow: hidden; transition: box-shadow .15s, border-color .15s; }
.card:hover { box-shadow: var(--shadow); border-color: #c9ced6; }
.card-link { display: flex; flex: 1; flex-direction: column; color: inherit; text-decoration: none; }
.card-art svg { display: block; width: 100%; height: auto; }
.card-body { padding: 12px 14px 6px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.card h3 { font-size: .95rem; margin: 0; font-weight: 600; }
.card .short { font-size: .8rem; color: var(--muted); margin: 0; flex: 1; }
.brand { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 600; }
.sku { font-size: .75rem; color: var(--muted); }
.price { display: flex; align-items: baseline; } .price .amount { font-size: 1.15rem; font-weight: 700; color: var(--ink); }
.tiers { font-size: .75rem; color: var(--accent); font-weight: 500; }
.card .btn { margin: 8px 14px 14px; }
.badge { display: inline-block; font-size: .74rem; font-weight: 600; padding: 2px 8px; border-radius: 99px; background: #e6f4ee; color: var(--accent); align-self: flex-start; }
.badge.low { background: #fdf3e2; color: var(--warn); } .badge.backorder, .badge.partial { background: #fbe9e7; color: var(--danger); }

/* pages */
.page { padding: 28px 24px 56px; } .page.narrow { max-width: 860px; }
.crumbs { font-size: .82rem; color: var(--muted); margin-bottom: 16px; } .crumbs a { text-decoration: none; }
.catalog-layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: start; }
.filters { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; position: sticky; top: 84px; }
.filters h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 14px 0 6px; } .filters h3:first-child { margin-top: 0; }
.filters input[type=search], .filters input[type=number], .filters select { width: 100%; padding: 8px 10px; border: 1px solid #c9ced6; border-radius: 6px; font: inherit; }
.filters .btn-primary { margin-top: 16px; }
.check { display: flex; gap: 8px; align-items: center; font-size: .9rem; margin: 12px 0; }
.catalog-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.empty { background: #fff; border: 1px dashed #c9ced6; border-radius: var(--radius); padding: 40px; text-align: center; }

.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.pdp-gallery { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 24px; }
.pdp-svg { width: 100%; height: auto; display: block; border-radius: 8px; }
.pdp-info h1 { font-size: 1.6rem; }
.pdp-price { margin: 16px 0 12px; } .pdp-price .amount { font-size: 1.8rem; }
.tier-table { border-collapse: collapse; font-size: .85rem; margin-top: 10px; } .tier-table th, .tier-table td { text-align: left; padding: 4px 18px 4px 0; border-bottom: 1px solid var(--line); } .tier-table th { color: var(--muted); font-weight: 600; }
.add-form { display: flex; flex-wrap: wrap; gap: 14px; align-items: end; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; margin: 18px 0; }
.add-form label { display: flex; flex-direction: column; gap: 4px; font-size: .8rem; color: var(--muted); font-weight: 600; }
.add-form select, .qty-input { padding: 9px 10px; border: 1px solid #c9ced6; border-radius: 6px; font: inherit; min-width: 140px; }
.qty-input { min-width: 0; width: 82px; }
.pdp-usp { list-style: none; padding: 0; margin: 0; font-size: .85rem; color: var(--muted); } .pdp-usp li::before { content: '✓'; color: var(--accent); margin-right: 8px; font-weight: 700; }
.pdp-details { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.spec-table { width: 100%; border-collapse: collapse; font-size: .9rem; } .spec-table th, .spec-table td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); vertical-align: top; } .spec-table th { width: 38%; color: var(--muted); font-weight: 600; background: #fff; }

/* cart */
.cart-layout, .checkout-layout, .order-layout { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cart-table th { text-align: left; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); padding: 12px; border-bottom: 1px solid var(--line); }
.cart-table td { padding: 12px; border-bottom: 1px solid var(--line); vertical-align: middle; font-size: .9rem; }
.cart-table a { text-decoration: none; }
.cart-art { width: 84px; } .cart-art svg { display: block; border-radius: 6px; width: 72px; }
.cart-actions { display: flex; justify-content: space-between; margin-top: 10px; }
.summary { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; position: sticky; top: 84px; }
.summary h3 { margin-top: 0; }
.summary .btn { margin-top: 10px; }
.totals { width: 100%; border-collapse: collapse; margin: 16px 0 6px; font-size: .92rem; }
.totals td { padding: 6px 0; border-bottom: 1px solid var(--line); } .totals td:last-child { text-align: right; }
.totals .grand td { font-weight: 700; font-size: 1.05rem; border-bottom: 0; padding-top: 10px; }
.radio { display: flex; gap: 10px; align-items: flex-start; padding: 10px; border: 1px solid var(--line); border-radius: 6px; margin-bottom: 8px; font-size: .9rem; cursor: pointer; background: #fff; }
.radio:has(input:checked) { border-color: var(--navy); background: #f4f6fb; }
.radio input { margin-top: 4px; } .radio > span { flex: 1; } .radio small { color: var(--muted); }
.mini-lines { list-style: none; padding: 0; margin: 0; font-size: .85rem; }
.mini-lines li { display: flex; justify-content: space-between; gap: 10px; padding: 6px 0; border-bottom: 1px solid var(--line); }
.mini-lines li.grand { font-weight: 700; border-bottom: 0; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.panel h3 { margin-top: 0; } .panel p { margin: 0; font-size: .92rem; }

/* checkout */
.checkout-form section { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin-bottom: 18px; }
.checkout-form h2 { font-size: 1.1rem; margin-bottom: 14px; }
.checkout-form label { display: flex; flex-direction: column; gap: 4px; font-size: .8rem; font-weight: 600; color: var(--muted); }
.checkout-form input, .checkout-form select, .checkout-form textarea { padding: 9px 10px; border: 1px solid #c9ced6; border-radius: 6px; font: inherit; color: var(--text); background: #fff; }
.checkout-form input[readonly] { background: var(--bg); color: var(--muted); }
.checkout-form textarea { resize: vertical; }
.checkout-form .radio, .checkout-form .check { flex-direction: row; font-weight: 400; color: var(--text); font-size: .9rem; }
.checkout-form .check input { width: auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.addr-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin-bottom: 14px; }
.addr-card { display: flex; gap: 10px; padding: 12px; border: 1px solid var(--line); border-radius: 6px; font-size: .85rem; font-weight: 400 !important; color: var(--text) !important; cursor: pointer; flex-direction: row !important; background: #fff; }
.addr-card:has(input:checked) { border-color: var(--navy); background: #f4f6fb; }
.addr-card.static { cursor: default; }
.error { color: var(--danger); background: #fbe9e7; padding: 10px 12px; border-radius: 6px; font-size: .9rem; margin-top: 12px; }
.notice { background: #eef3ff; border: 1px solid #c7d6ff; color: #1e3a8a; padding: 14px 16px; border-radius: var(--radius); margin-bottom: 20px; }
.notice.success { background: #e6f4ee; border-color: #b7dfcc; color: #0b4d38; }

/* orders */
.order-head { display: flex; align-items: center; gap: 14px; }
.status { display: inline-block; font-size: .75rem; font-weight: 700; padding: 3px 10px; border-radius: 99px; background: #e6f4ee; color: var(--accent); }
.status.delivered { background: #eef2f7; color: var(--muted); } .status.pending { background: #fdf3e2; color: var(--warn); }
.order-meta { display: flex; gap: 32px; flex-wrap: wrap; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 20px; margin: 14px 0 20px; font-size: .9rem; }
.orders-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; font-size: .9rem; }
.orders-table th, .orders-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); } .orders-table th { font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.orders-table a { text-decoration: none; }
.account-layout { display: grid; grid-template-columns: 200px 1fr; gap: 28px; align-items: start; }
.subnav { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.subnav a { padding: 10px 14px; text-decoration: none; color: var(--text); border-left: 3px solid transparent; font-size: .9rem; }
.subnav a.active { border-left-color: var(--navy); background: #f4f6fb; font-weight: 600; }
.account-cards { margin-bottom: 24px; }
.prose h2 { margin-top: 1.6em; } .prose p { max-width: 72ch; }

/* footer */
.footer { background: #0f1729; color: #aab3c5; margin-top: 40px; font-size: .85rem; }
.footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding: 44px 24px; }
.footer h4 { color: #fff; margin: 0 0 10px; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; }
.footer a { color: #d5dbe8; text-decoration: none; display: block; padding: 3px 0; }
.footer-bottom { border-top: 1px solid #22304c; padding: 14px 24px; font-size: .78rem; color: #7d879b; }
.footer-bottom .container { display: flex; justify-content: space-between; padding: 0 24px; gap: 20px; flex-wrap: wrap; }

#toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px); background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 8px; font-size: .9rem; opacity: 0; pointer-events: none; transition: all .2s; z-index: 50; box-shadow: 0 8px 24px rgba(0,0,0,.25); }
#toast.show { opacity: 1; transform: translate(-50%, 0); }

/* WebMCP debug inspector */
.webmcp-debug { position: fixed; right: 22px; bottom: 22px; z-index: 60; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.webmcp-debug-actions { display: flex; align-items: center; gap: 8px; }
.webmcp-github-link { width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; flex: none; border: 1px solid #d4d8df; border-radius: 50%; background: rgba(255,255,255,.96); color: var(--navy); box-shadow: 0 5px 18px rgba(16,24,40,.15); backdrop-filter: blur(8px); transition: border-color .15s, box-shadow .15s, transform .15s; }
.webmcp-github-link:hover { border-color: #aeb5bf; box-shadow: 0 7px 22px rgba(16,24,40,.2); transform: translateY(-1px); }
.webmcp-github-link:focus-visible { outline: 3px solid rgba(29,78,216,.25); outline-offset: 2px; }
.webmcp-github-link svg { width: 23px; height: 23px; }
.webmcp-debug-toggle { min-height: 46px; display: inline-flex; align-items: center; gap: 10px; padding: 0 18px 0 13px; border: 1px solid #d4d8df; border-radius: 999px; background: rgba(255,255,255,.96); color: var(--ink); box-shadow: 0 5px 18px rgba(16,24,40,.15); font: 500 .92rem/1 var(--font); cursor: pointer; backdrop-filter: blur(8px); }
.webmcp-debug-toggle:hover { border-color: #aeb5bf; box-shadow: 0 7px 22px rgba(16,24,40,.2); }
.webmcp-debug-toggle:focus-visible { outline: 3px solid rgba(29,78,216,.25); outline-offset: 2px; }
.webmcp-debug-toggle svg { width: 22px; height: 22px; padding: 3px; border-radius: 50%; background: var(--navy); stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.webmcp-debug-toggle b { font-weight: 600; }
.webmcp-debug-panel { width: min(650px, calc(100vw - 44px)); max-height: min(650px, calc(100vh - 100px)); overflow: auto; padding: 24px 26px 18px; border: 1px solid #e0e3e8; border-radius: 18px; background: rgba(255,255,255,.98); color: var(--text); box-shadow: 0 14px 42px rgba(16,24,40,.18); backdrop-filter: blur(10px); }
.webmcp-debug-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.webmcp-debug-head h2 { margin: 0; font-size: 1.25rem; }
.webmcp-debug-head span { flex: none; color: #9298a2; font-size: .88rem; }
.webmcp-debug-prompts { position: relative; display: flex; align-items: center; gap: 6px; margin: -2px 0 18px; padding: 10px 12px; border: 1px solid #e7eaee; border-radius: 10px; background: #f8f9fb; font-size: .8rem; }
.webmcp-debug-prompts-label { color: #737983; font-weight: 600; }
.webmcp-prompt-copy { position: static; display: inline-flex; align-items: center; gap: 4px; padding: 2px 3px; border: 0; border-radius: 4px; background: transparent; color: #234f91; font: 600 inherit; text-decoration: underline; text-decoration-color: #a6b9d5; text-underline-offset: 2px; cursor: pointer; }
.webmcp-prompt-copy:hover { color: #15396f; background: #edf2f9; text-decoration-color: currentColor; }
.webmcp-prompt-copy:focus-visible { outline: 2px solid rgba(29,78,216,.35); outline-offset: 2px; }
.webmcp-prompt-copy > svg { width: 14px; height: 14px; flex: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.webmcp-prompt-copy.is-copied > svg { color: #087f55; }
.webmcp-prompt-separator { color: #a5abb4; }
.webmcp-prompt-tooltip { position: absolute; z-index: 2; top: calc(100% + 8px); left: 12px; box-sizing: border-box; width: min(520px, calc(100% - 24px)); padding: 12px 14px; border-radius: 8px; background: #172033; color: #fff; box-shadow: 0 8px 24px rgba(16,24,40,.24); font: 400 .78rem/1.45 var(--font); text-align: left; text-decoration: none; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-3px); transition: opacity .12s, transform .12s, visibility .12s; }
.webmcp-prompt-copy:last-child .webmcp-prompt-tooltip { right: 12px; left: auto; }
.webmcp-prompt-copy:hover .webmcp-prompt-tooltip, .webmcp-prompt-copy:focus-visible .webmcp-prompt-tooltip { opacity: 1; visibility: visible; transform: translateY(0); }
.webmcp-debug-section h3 { margin: 0 0 10px; color: #8a9099; font-size: .77rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.webmcp-debug-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px 34px; padding: 0; margin: 0; list-style: none; }
.webmcp-debug-tool { display: flex; min-width: 0; align-items: center; gap: 9px; color: #8c929b; font: .9rem/1.35 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.webmcp-debug-tool.is-registered { color: #4d535c; }
.webmcp-dot { width: 10px; height: 10px; flex: none; border: 2px solid #d9dde2; border-radius: 50%; background: transparent; }
.webmcp-dot.registered { border-color: #10a66a; background: #10a66a; box-shadow: 0 0 0 2px rgba(16,166,106,.08); }
.webmcp-tool-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.webmcp-write-mark { margin-left: 1px; color: #a4a9b1; font: 600 .78rem/1 var(--font); transform: rotate(-12deg); }
.webmcp-debug-legend { display: flex; flex-wrap: wrap; gap: 6px 10px; margin-top: 20px; padding-top: 14px; border-top: 1px solid #edf0f2; color: #969ca5; font-size: .75rem; }
.webmcp-debug-legend span { display: inline-flex; align-items: center; gap: 5px; }
.webmcp-debug-legend span + span::before { content: '·'; margin-right: 5px; color: #c1c5cb; }

@media (max-width: 960px) {
  .hero-grid, .pdp, .pdp-details, .trust-grid { grid-template-columns: 1fr; }
  .catalog-layout { grid-template-columns: 1fr; } .filters { position: static; }
  .cart-layout, .checkout-layout, .order-layout, .account-layout { grid-template-columns: 1fr; } .summary { position: static; }
  .footer .container { grid-template-columns: 1fr 1fr; }
  .header .container { flex-wrap: wrap; height: auto; padding: 10px 24px; } .search { order: 3; width: 100%; flex-basis: 100%; }
  .header-links a small { display: none; }
}
@media (max-width: 600px) { .grid-2, .usp { grid-template-columns: 1fr; } .hero h1 { font-size: 2rem; } .hero-cta { flex-direction: column; } .topbar { display: none; } .cart-art { display: none; } .webmcp-debug { right: 12px; bottom: 12px; } .webmcp-debug-panel { width: calc(100vw - 24px); padding: 20px; } .webmcp-debug-prompts { align-items: flex-start; flex-wrap: wrap; } .webmcp-debug-prompts-label { width: 100%; } .webmcp-debug-list { grid-template-columns: 1fr; } }
@media print { .header, .topbar, .main-nav, .footer, #toast, .summary .btn, .webmcp-debug { display: none !important; } }
