/* ============================================================
 * Patch & Score v2 — Layer 1: Global tokens, reset, base
 * ============================================================ */

:root {
	--ink:        #0D0D0D;
	--ink-soft:   #1C1C1C;
	--chalk:      #F7F5F0;
	--paper:      #FFFFFF;
	--grass:      #1B6B3F;
	--grass-dk:   #0F4A2A;
	--clay:       #C24A24;
	--lime:       #C24A24;
	--grey:       #6B6660;
	--grey-soft:  #A8A39B;
	--line:       #E4E0D8;

	--f-head:     "Archivo", system-ui, sans-serif;
	--f-body:     "Inter", system-ui, sans-serif;
	--f-mono:     "Inter", system-ui, sans-serif;

	--radius:     4px;
	--radius-lg:  8px;
	--ease:       cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--chalk); }
body { font-family: var(--f-body); color: var(--ink); background: var(--chalk); font-size: 15px; line-height: 1.5; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
.screen-reader-text { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.wrap { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(194,74,36,0.6); } 100% { box-shadow: 0 0 0 8px rgba(194,74,36,0); } }
@keyframes pulse-grass { 0% { box-shadow: 0 0 0 0 rgba(27,107,63,0.55); } 100% { box-shadow: 0 0 0 8px rgba(27,107,63,0); } }

.util-bar { background: var(--ink); color: var(--chalk); font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
.util-bar .row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; }
.util-bar .left { display: flex; gap: 24px; align-items: center; }
.util-bar .right { display: flex; gap: 18px; }
.util-bar a { color: inherit; }
.util-bar a:hover { color: var(--lime); }
.util-bar .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 var(--lime); animation: pulse 2s infinite; display: inline-block; margin-right: 8px; vertical-align: middle; }
@media (max-width: 720px) { .util-bar .left span:nth-child(2), .util-bar .right { display: none; } }

.header { background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.header .row { display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; padding: 18px 0; }
.header .logo img { height: 30px; width: auto; }
.header .search { background: var(--chalk); border: 1px solid var(--line); border-radius: 999px; padding: 10px 16px; display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--grey); max-width: 480px; width: 100%; justify-self: center; }
.header .search input { border: 0; background: transparent; outline: 0; flex: 1; color: var(--ink); font: inherit; }
.header .icons { display: flex; gap: 22px; align-items: center; font-size: 13px; font-weight: 500; }
.header .icons a { display: flex; align-items: center; gap: 6px; }
.header .cart { background: var(--ink); color: var(--chalk); padding: 9px 14px; border-radius: 999px; font-family: var(--f-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.04em; }
.header .cart .count { background: var(--lime); color: var(--chalk); padding: 1px 7px; border-radius: 999px; margin-left: 6px; font-weight: 700; }
@media (max-width: 900px) { .header .row { grid-template-columns: auto 1fr; gap: 16px; } .header .search { display: none; } }

.nav-bar { background: var(--paper); border-bottom: 1px solid var(--line); }
.nav-bar .row { display: flex; justify-content: center; gap: 36px; padding: 14px 0; font-size: 14px; font-weight: 600; font-family: var(--f-head); text-transform: uppercase; letter-spacing: 0.04em; }
.nav-bar a:hover { color: var(--grass); }
.nav-bar a.sale { color: var(--clay); }
.nav-bar a.active { color: var(--ink); border-bottom: 2px solid var(--lime); padding-bottom: 12px; margin-bottom: -14px; }
@media (max-width: 720px) { .nav-bar .row { gap: 20px; overflow-x: auto; padding: 12px 20px; justify-content: flex-start; font-size: 13px; } }

.breadcrumb { background: var(--chalk); padding: 18px 0 6px; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--grey); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { margin: 0 10px; opacity: 0.5; }
.breadcrumb .current { color: var(--ink); font-weight: 500; }
