/* ============================================================
   MARKETPLACE RURAL — CIP Huánuco
   Stylesheet principal
   ============================================================ */

/* ── TOKENS ── */
:root {
  --c-bg:        #fdf8f2;
  --c-paper:     #fff9f0;
  --c-bark:      #1c110a;
  --c-soil:      #2e1b0e;
  --c-earth:     #5c3618;
  --c-clay:      #a0522d;
  --c-terra:     #c8633a;
  --c-ochre:     #d4863e;
  --c-gold:      #e8a93a;
  --c-straw:     #f5dfa0;
  --c-cream:     #fdf6ec;
  --c-leaf:      #2a5c24;
  --c-sage:      #4a7c42;
  --c-mist:      #8cb884;
  --c-ink:       #1a0e06;
  --c-muted:     #8a7060;
  --c-line:      #e8d8c8;
  --r-card:      20px;
  --r-btn:       50px;
  --sh-sm:       0 2px 12px rgba(92,54,24,.08);
  --sh-md:       0 8px 32px rgba(92,54,24,.13);
  --sh-lg:       0 20px 60px rgba(92,54,24,.18);
  --ease:        cubic-bezier(.22,.68,0,1.2);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--c-bg);
  color: var(--c-ink);
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff;
  position: fixed; pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 0 2px rgba(232,169,58,.7), 0 0 12px rgba(255,255,255,.5);
  transition: width .2s var(--ease), height .2s var(--ease),
              background .2s, box-shadow .2s;
}
.cursor-ring {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.55);
  position: fixed; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease), height .3s var(--ease), border-color .2s;
  opacity: .8;
}
.cursor.h      { width: 22px; height: 22px; background: var(--c-gold); box-shadow: 0 0 16px rgba(232,169,58,.6); }
.cursor-ring.h { width: 56px; height: 56px; border-color: var(--c-gold); opacity: 1; }

/* ── PAGE LOADER ── */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--c-soil);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
  transition: opacity .6s, visibility .6s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-word {
  font-family: 'Lora', serif;
  font-size: clamp(24px, 5vw, 52px);
  font-style: italic; color: var(--c-cream);
  opacity: 0; animation: fadeW .7s .3s forwards;
}
.loader-bar {
  width: 120px; height: 2px;
  background: rgba(255,255,255,.12); border-radius: 2px; overflow: hidden;
}
.loader-bar-fill {
  height: 100%; background: var(--c-ochre);
  animation: fillB 1.3s .3s ease-out forwards;
}
@keyframes fadeW { to { opacity: 1; } }
@keyframes fillB { from { width: 0; } to { width: 100%; } }

/* ── NAVBAR ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 20px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding .4s, background .4s, box-shadow .4s;
}
.nav-name { font-family: 'Lora', serif; font-size: 15px; font-weight: 600; color: #fff; line-height: 1.2; }
.nav-sub  { font-size: 11px; color: rgba(255,255,255,.45); }
.nav.sc {
  padding: 13px 48px;
  background: rgba(253,248,242,.93);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--c-line);
}
.nav.sc .nav-name { color: var(--c-bark); }
.nav.sc .nav-sub  { color: var(--c-muted); }

.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-gem {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--c-terra);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', serif; font-size: 18px; font-weight: 700;
  color: var(--c-cream);
  box-shadow: 0 4px 12px rgba(200,99,58,.35);
  transition: transform .25s;
}
.nav-gem:hover { transform: rotate(-6deg) scale(1.08); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px; color: var(--c-muted); text-decoration: none;
  letter-spacing: .03em; position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1.5px; background: var(--c-terra);
  transition: width .25s;
}
.nav-links a:hover { color: var(--c-terra); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--c-terra); color: var(--c-cream) !important;
  padding: 11px 24px; border-radius: var(--r-btn);
  font-size: 13px; font-weight: 600; text-decoration: none;
  box-shadow: 0 4px 16px rgba(200,99,58,.3);
  transition: transform .2s, box-shadow .2s, background .2s;
  display: inline-block;
}
.nav-cta:hover { background: var(--c-clay); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,99,58,.4); }
.nav-cta::after { display: none !important; }

/* hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span { width: 22px; height: 2px; background: var(--c-bark); border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── MOBILE DRAWER ── */
.drawer {
  position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
  background: var(--c-paper); z-index: 490;
  padding: 80px 32px 40px;
  box-shadow: -8px 0 40px rgba(0,0,0,.12);
  transition: right .4s var(--ease);
  display: flex; flex-direction: column; gap: 8px;
}
.drawer.open { right: 0; }
.drawer a {
  font-family: 'Lora', serif; font-size: 20px; color: var(--c-bark);
  text-decoration: none; padding: 14px 0;
  border-bottom: 1px solid var(--c-line); transition: color .2s;
}
.drawer a:hover { color: var(--c-terra); }
.drawer-cta {
  margin-top: 24px; background: var(--c-terra) !important;
  color: var(--c-cream) !important; text-align: center;
  padding: 16px !important; border-radius: 14px !important;
  border-bottom: none !important; font-size: 15px !important; font-weight: 600;
}
.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.35);
  z-index: 489; opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.overlay.show { opacity: 1; visibility: visible; }

/* ── SCROLL REVEAL ── */
.rev   { opacity: 0; transform: translateY(28px);  transition: opacity .7s ease, transform .7s ease; }
.rev-l { opacity: 0; transform: translateX(-32px); transition: opacity .7s ease, transform .7s ease; }
.rev-r { opacity: 0; transform: translateX(32px);  transition: opacity .7s ease, transform .7s ease; }
.rev.vis, .rev-l.vis, .rev-r.vis { opacity: 1; transform: none; }

/* ── HERO ── */
.hero {
  min-height: 100svh; background: var(--c-soil);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.hero-tx {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg,  transparent, transparent 39px, rgba(255,255,255,.022) 39px, rgba(255,255,255,.022) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,.014) 39px, rgba(255,255,255,.014) 40px);
}
.glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); }
.ga {
  width: 560px; height: 560px; top: -120px; right: -60px;
  background: radial-gradient(circle,rgba(200,99,58,.22),transparent 70%);
  animation: dA 13s ease-in-out infinite alternate;
}
.gb {
  width: 480px; height: 480px; bottom: -100px; left: -60px;
  background: radial-gradient(circle,rgba(42,92,36,.22),transparent 70%);
  animation: dB 16s ease-in-out infinite alternate;
}
.gc {
  width: 280px; height: 280px; top: 50%; left: 42%;
  background: radial-gradient(circle,rgba(232,169,58,.1),transparent 70%);
  animation: dC 11s ease-in-out infinite alternate;
}
@keyframes dA { to { transform: translate(40px,60px); } }
@keyframes dB { to { transform: translate(-30px,-50px); } }
@keyframes dC { to { transform: translate(50px,-30px); } }

.hero-bg-w {
  position: absolute; right: -2vw; bottom: -5vw;
  font-family: 'Lora', serif; font-style: italic;
  font-size: clamp(100px,17vw,280px); font-weight: 700;
  color: rgba(255,255,255,.03); line-height: 1;
  pointer-events: none; user-select: none; white-space: nowrap;
}
.hero-inner {
  position: relative; z-index: 2; flex: 1;
  max-width: 660px;
  margin-left: 0;
  padding: 140px 48px 80px;
  display: grid; grid-template-columns: 1fr; gap: 0; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,169,58,.12); border: 1px solid rgba(232,169,58,.25);
  color: var(--c-straw); padding: 7px 16px; border-radius: 40px;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 22px;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-gold); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.6)} }

.hero-title {
  font-family: 'Lora', serif; font-size: clamp(36px,4.5vw,64px);
  font-weight: 700; line-height: 1.1; color: var(--c-cream); margin-bottom: 22px;
}
.hero-title em { font-style: italic; color: var(--c-ochre); }
.hero-lead {
  font-size: 15px; line-height: 1.82;
  color: rgba(253,246,236,.58); margin-bottom: 38px; max-width: 450px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.btn-w {
  background: var(--c-terra); color: var(--c-cream);
  padding: 15px 34px; border-radius: var(--r-btn);
  font-weight: 600; font-size: 14px; text-decoration: none;
  border: none; cursor: pointer;
  box-shadow: 0 6px 20px rgba(200,99,58,.35);
  transition: transform .25s var(--ease), box-shadow .25s;
  display: inline-block;
}
.btn-w:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(200,99,58,.45); }

.btn-o {
  background: transparent; color: rgba(253,246,236,.72);
  padding: 15px 34px; border-radius: var(--r-btn);
  font-size: 14px; text-decoration: none;
  border: 1.5px solid rgba(253,246,236,.2);
  transition: border-color .2s, color .2s; display: inline-block;
}
.btn-o:hover { border-color: var(--c-ochre); color: var(--c-ochre); }

.hero-stats {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,.07);
}
.hstat-num {
  font-family: 'Lora', serif; font-size: 26px; font-weight: 700;
  color: var(--c-gold); line-height: 1;
}
.hstat-lbl { font-size: 11px; color: rgba(253,246,236,.38); letter-spacing: .04em; margin-top: 3px; }

/* ── HERO FLOATING CARDS ── */
.hero-stack {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1; overflow: hidden;
}
.hcard {
  position: absolute;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  backdrop-filter: blur(14px) saturate(1.1);
  border-radius: 18px; padding: 16px 20px;
  color: var(--c-cream); pointer-events: auto;
  width: 185px;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.hcard:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(232,169,58,.4);
  box-shadow: 0 16px 48px rgba(0,0,0,.28);
  z-index: 3;
}
@keyframes fA { 0%,100%{transform:translateY(0)   rotate(-.5deg)} 50%{transform:translateY(-13px) rotate(.5deg)} }
@keyframes fB { 0%,100%{transform:translateY(0)   rotate(.4deg)}  50%{transform:translateY(-10px) rotate(-.4deg)} }
@keyframes fC { 0%,100%{transform:translateY(0)   rotate(-.3deg)} 50%{transform:translateY(-15px) rotate(.3deg)} }

/* Categoría de la card — ahora aloja SVG + texto */
.hcard-cat {
  display: flex; align-items: center; gap: 6px;
  font-size: 9px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-gold); margin-bottom: 7px;
}
/* SVG dentro de .hcard-cat hereda el color gold */
.hcard-cat svg { stroke: var(--c-gold); flex-shrink: 0; }

.hcard-name  { font-family: 'Lora', serif; font-size: 15px; font-weight: 600; margin-bottom: 4px; line-height: 1.25; }

/* Ubicación con SVG pin */
.hcard-loc {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; opacity: .45; margin-bottom: 10px;
}
.hcard-loc svg { stroke: currentColor; flex-shrink: 0; opacity: .6; }

.hcard-price { font-family: 'Lora', serif; font-size: 17px; font-weight: 700; color: var(--c-gold); }

/* Pill de estado — aloja SVG check/cross + texto */
.hcard-pill {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 8px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.13);
  font-size: 10px; padding: 4px 10px; border-radius: 20px;
  color: rgba(253,246,236,.75);
}
/* Íconos de estado dentro de la pill */
.hcard-pill-icon { display: inline-flex; align-items: center; }
.hcard-pill-icon.ok  svg { stroke: #7ee07a; }
.hcard-pill-icon.no  svg { stroke: #f08a6a; }

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(253,246,236,.32); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  animation: bob 2.5s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── RIBBON TICKER ── */
.ribbon { background: var(--c-terra); overflow: hidden; padding: 18px 0; }
.ribbon-track { display: flex; animation: tick 26s linear infinite; white-space: nowrap; }
.ritem {
  display: flex; align-items: center; gap: 10px; padding: 0 40px;
  font-family: 'Lora', serif; font-size: 15px;
  color: rgba(253,246,236,.88);
  border-right: 1px solid rgba(255,255,255,.18); flex-shrink: 0;
}
.rdot { width: 5px; height: 5px; border-radius: 50%; background: var(--c-straw); opacity: .6; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SEARCH ── */
.search-wrap { background: var(--c-bg); padding: 36px 48px 0; max-width: 1280px; margin: 0 auto; }
.search-card {
  background: var(--c-paper); border: 1.5px solid var(--c-line);
  border-radius: 20px; padding: 22px; box-shadow: var(--sh-sm);
}
.search-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.search-field {
  flex: 1; display: flex; align-items: center; gap: 12px;
  background: var(--c-bg); border: 1.5px solid var(--c-line);
  border-radius: 14px; padding: 12px 18px;
  transition: border-color .2s, box-shadow .2s;
}
.search-field:focus-within { border-color: var(--c-terra); box-shadow: 0 0 0 4px rgba(200,99,58,.1); }
.search-field svg { color: var(--c-muted); flex-shrink: 0; }
.search-field input {
  border: none; outline: none; background: transparent;
  font-family: 'Nunito', sans-serif; font-size: 14px; color: var(--c-ink); width: 100%;
}
.search-field input::placeholder { color: #b8a898; }
.search-go {
  background: var(--c-soil); color: var(--c-cream);
  border: none; border-radius: 14px; padding: 13px 26px;
  font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 14px;
  cursor: pointer; white-space: nowrap;
  transition: background .2s, transform .2s;
}
.search-go:hover { background: var(--c-earth); transform: translateY(-1px); }

/* Chips — SVG + texto inline */
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: 1.5px solid var(--c-line);
  color: var(--c-muted); padding: 7px 16px; border-radius: 40px;
  font-family: 'Nunito', sans-serif; font-size: 13px;
  cursor: pointer; transition: all .2s;
}
.chip svg { stroke: currentColor; transition: stroke .2s; flex-shrink: 0; }
.chip:hover, .chip.active {
  background: var(--c-soil); border-color: var(--c-soil); color: var(--c-cream);
}
.chip:hover svg, .chip.active svg { stroke: var(--c-cream); }

/* ── MAIN LAYOUT ── */
.main-wrap {
  max-width: 1280px; margin: 0 auto;
  padding: 36px 48px 80px;
  display: grid; grid-template-columns: 248px 1fr; gap: 40px;
}
.sidebar { position: sticky; top: 88px; align-self: start; }
.s-head { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--c-terra); font-weight: 600; margin-bottom: 18px; }
.fblock { margin-bottom: 22px; }
.fblock h4 {
  font-size: 12px; font-weight: 600; color: var(--c-bark);
  padding-bottom: 9px; border-bottom: 1.5px solid var(--c-line); margin-bottom: 11px;
}
.fcheck {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 0; cursor: pointer; font-size: 13px; color: var(--c-muted); transition: color .15s;
}
.fcheck:hover { color: var(--c-terra); }
.fcheck input { accent-color: var(--c-terra); margin-right: 9px; }
.fcheck-l { display: flex; align-items: center; }
.fcount {
  background: var(--c-bg); border: 1px solid var(--c-line);
  font-size: 10px; color: var(--c-muted); padding: 2px 7px; border-radius: 10px;
}
.grid-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.grid-bar h2 { font-family: 'Lora', serif; font-size: 20px; font-weight: 600; }
.grid-bar h2 small { font-family: 'Nunito', sans-serif; font-size: 13px; color: var(--c-muted); font-weight: 400; }
.sort-sel {
  border: 1.5px solid var(--c-line); background: var(--c-paper);
  padding: 8px 14px; border-radius: 12px;
  font-family: 'Nunito', sans-serif; font-size: 13px; color: var(--c-muted); cursor: pointer;
}
.mkt-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 20px; }

/* ── PRODUCT CARD ── */
.pc {
  background: var(--c-paper); border: 1.5px solid var(--c-line);
  border-radius: var(--r-card); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.pc:hover { transform: translateY(-7px) scale(1.01); box-shadow: var(--sh-lg); border-color: var(--c-terra); }
.pc-band { height: 112px; position: relative; display: flex; align-items: flex-end; padding: 14px 18px; }
.pc-band::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(105deg,transparent,transparent 12px,rgba(255,255,255,.04) 12px,rgba(255,255,255,.04) 13px);
}
.pc-av {
  width: 48px; height: 48px; border-radius: 13px;
  background: rgba(255,255,255,.18); border: 2px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', serif; font-size: 18px; font-weight: 700;
  color: #fff; position: relative; z-index: 1;
}
.pc-st {
  position: absolute; top: 12px; right: 14px;
  font-size: 10px; font-weight: 600; letter-spacing: .05em;
  padding: 4px 11px; border-radius: 20px;
  display: flex; align-items: center; gap: 5px;
  backdrop-filter: blur(8px);
}
.s-ok  { background: rgba(42,92,36,.45);  color: #a8e0a0; border: 1px solid rgba(168,224,160,.2); }
.s-ord { background: rgba(212,134,62,.35); color: #ffd080; border: 1px solid rgba(255,208,128,.2); }
.sdot  { width: 5px; height: 5px; border-radius: 50%; background: currentColor; animation: pulse 2s infinite; }
.pc-body { padding: 16px 18px 20px; }
.pc-name  { font-family: 'Lora', serif; font-size: 16px; font-weight: 600; color: var(--c-ink); margin-bottom: 3px; line-height: 1.3; }
.pc-role  { font-size: 12px; color: var(--c-muted); margin-bottom: 12px; }
.pc-tags  { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.pc-tag   { font-size: 11px; padding: 4px 11px; border-radius: 20px; background: #f0e6d8; color: #7a5a38; }
.pc-tag.hl{ background: var(--c-soil); color: var(--c-straw); }
.pc-stars { font-size: 13px; color: var(--c-ochre); margin-bottom: 14px; }
.pc-stars span  { font-weight: 700; }
.pc-stars small { color: var(--c-muted); font-size: 11px; }
.pc-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--c-line); border-radius: 12px; overflow: hidden; margin-bottom: 16px;
}
.pc-mc { background: var(--c-bg); padding: 10px 12px; }
.pc-mc:last-child { text-align: right; }
.pc-mv { font-size: 15px; font-weight: 700; color: var(--c-ink); }
.pc-ml { font-size: 10px; color: var(--c-muted); text-transform: uppercase; letter-spacing: .05em; }
.pc-foot  { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.pc-price { font-family: 'Lora', serif; font-size: 20px; font-weight: 700; color: var(--c-terra); }
.pc-price small { font-family: 'Nunito', sans-serif; font-size: 11px; color: var(--c-muted); font-weight: 400; }
.pc-btn {
  background: var(--c-soil); color: var(--c-straw);
  border: none; border-radius: 12px; padding: 10px 18px;
  font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: background .2s, transform .2s;
}
.pc-btn:hover { background: var(--c-earth); transform: scale(1.04); }

/* Empty state — SVG reemplaza el emoji gigante */
.empty-st {
  grid-column: 1/-1; text-align: center;
  padding: 60px 20px; color: var(--c-muted); display: none;
}
.empty-st .ei {
  display: flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; margin: 0 auto 16px;
  background: var(--c-bg); border: 1.5px solid var(--c-line);
  border-radius: 20px;
}
.empty-st .ei svg {
  stroke: var(--c-muted); width: 32px; height: 32px;
}

/* ── HOW IT WORKS ── */
.how-sec { background: var(--c-soil); padding: 100px 48px; position: relative; overflow: hidden; }
.how-sec::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg,  transparent, transparent 39px, rgba(255,255,255,.02)  39px, rgba(255,255,255,.02)  40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,.012) 39px, rgba(255,255,255,.012) 40px);
}
.how-glow {
  position: absolute; width: 400px; height: 400px; top: -100px; right: -80px;
  border-radius: 50%; background: radial-gradient(circle,rgba(200,99,58,.14),transparent 70%);
  pointer-events: none;
}
.how-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.sec-tag { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--c-ochre); margin-bottom: 12px; font-weight: 600; }
.how-inner > h2 { font-family: 'Lora', serif; font-size: clamp(26px,3.5vw,42px); color: var(--c-cream); margin-bottom: 12px; font-weight: 700; }
.how-inner > p  { color: rgba(253,246,236,.48); font-size: 15px; margin-bottom: 52px; }
.how-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; border-radius: 20px; overflow: hidden; }
.how-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
  padding: 36px 28px; transition: background .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.how-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,var(--c-terra),var(--c-gold));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.how-card:hover { background: rgba(200,99,58,.08); border-color: rgba(200,99,58,.2); }
.how-card:hover::before { transform: scaleX(1); }
.how-num { font-family: 'Lora', serif; font-size: 52px; font-weight: 700; font-style: italic; color: rgba(212,134,62,.2); line-height: 1; margin-bottom: 18px; }
.how-card h4 { font-family: 'Lora', serif; font-size: 17px; color: var(--c-cream); margin-bottom: 10px; font-weight: 600; }
.how-card p  { font-size: 13px; color: rgba(253,246,236,.44); line-height: 1.75; }

/* ── TESTIMONIALS ── */
.trust-sec { background: var(--c-bg); padding: 80px 48px; }
.trust-inner { max-width: 1280px; margin: 0 auto; }
.trust-inner > .sec-tag { color: var(--c-terra); }
.trust-inner > h2 { font-family: 'Lora', serif; font-size: clamp(22px,3vw,36px); color: var(--c-ink); margin-bottom: 36px; margin-top: 10px; font-weight: 700; }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.tcard {
  background: var(--c-paper); border: 1.5px solid var(--c-line);
  border-radius: 20px; padding: 28px; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.tcard:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.tcard-q    { font-family: 'Lora', serif; font-style: italic; font-size: 36px; color: var(--c-terra); opacity: .22; line-height: 1; margin-bottom: 12px; }
.tcard-txt  { font-size: 14px; color: var(--c-muted); line-height: 1.78; margin-bottom: 20px; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-av   { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Lora', serif; font-weight: 700; font-size: 15px; color: #fff; flex-shrink: 0; }
.tcard-nm   { font-size: 13px; font-weight: 600; color: var(--c-ink); }
.tcard-rl   { font-size: 11px; color: var(--c-muted); }
.tcard-stars{ position: absolute; top: 24px; right: 24px; color: var(--c-gold); font-size: 12px; }

/* ── REGISTER ── */
.reg-sec { background: var(--c-paper); padding: 100px 48px; }
.reg-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.reg-left > .sec-tag { color: var(--c-terra); }
.reg-left h2 { font-family: 'Lora', serif; font-size: clamp(26px,3.5vw,42px); font-weight: 700; line-height: 1.15; margin: 10px 0 18px; }
.reg-left h2 em { font-style: italic; color: var(--c-terra); }
.reg-left > p { color: var(--c-muted); font-size: 15px; line-height: 1.8; margin-bottom: 34px; }
.perks { display: flex; flex-direction: column; gap: 12px; }
.perk {
  display: flex; align-items: center; gap: 14px;
  background: var(--c-bg); border: 1.5px solid var(--c-line);
  border-radius: 16px; padding: 14px 18px;
  font-size: 14px; color: #4a3a28;
  transition: border-color .2s, box-shadow .2s;
}
.perk:hover { border-color: var(--c-ochre); box-shadow: var(--sh-sm); }

/* Ícono del perk — ahora contiene SVG, no emoji */
.perk-ico {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--c-cream); border: 1px solid var(--c-line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.perk-ico svg {
  width: 20px; height: 20px;
  stroke: var(--c-terra); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.reg-form {
  background: var(--c-bg); border: 1.5px solid var(--c-line);
  border-radius: 24px; padding: 40px; box-shadow: var(--sh-md);
}
.reg-form h3 { font-family: 'Lora', serif; font-size: 22px; font-weight: 600; color: var(--c-ink); margin-bottom: 10px; }
.form-prog { height: 4px; background: var(--c-line); border-radius: 4px; margin-bottom: 26px; overflow: hidden; }
.form-prog-fill {
  height: 100%; background: linear-gradient(90deg,var(--c-terra),var(--c-gold));
  border-radius: 4px; width: 0; transition: width .4s ease;
}
.fgroup { margin-bottom: 18px; }
.fgroup label { display: block; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 7px; }
.fgroup input,
.fgroup select,
.fgroup textarea {
  width: 100%; border: 1.5px solid var(--c-line); border-radius: 13px;
  padding: 13px 16px; font-family: 'Nunito', sans-serif; font-size: 14px;
  color: var(--c-ink); background: var(--c-paper); outline: none;
  transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus { border-color: var(--c-terra); box-shadow: 0 0 0 4px rgba(200,99,58,.1); }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sub-btn {
  width: 100%; background: var(--c-soil); color: var(--c-straw);
  border: none; border-radius: 16px; padding: 17px;
  font-family: 'Lora', serif; font-size: 16px; font-weight: 700;
  cursor: pointer; margin-top: 6px;
  box-shadow: 0 6px 20px rgba(30,15,7,.2);
  transition: background .2s, transform .25s var(--ease), box-shadow .25s;
  position: relative; overflow: hidden;
}
.sub-btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.08),transparent);
  transform: translateX(-100%); transition: transform .5s;
}
.sub-btn:hover { background: var(--c-earth); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(30,15,7,.25); }
.sub-btn:hover::after { transform: translateX(100%); }
.form-note { text-align: center; font-size: 12px; color: var(--c-muted); margin-top: 10px; }

/* Pantalla de éxito — ícono SVG centrado */
.form-ok { display: none; text-align: center; padding: 40px 20px; }
.form-ok .oi {
  display: flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; margin: 0 auto 16px;
  background: rgba(42,92,36,.1); border: 1.5px solid rgba(42,92,36,.2);
  border-radius: 20px;
}
.form-ok .oi svg {
  width: 36px; height: 36px;
  stroke: var(--c-leaf); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.form-ok h4 { font-family: 'Lora', serif; font-size: 20px; color: var(--c-ink); margin-bottom: 8px; }
.form-ok p  { font-size: 14px; color: var(--c-muted); }

/* ── FOOTER ── */
.footer { background: var(--c-bark); padding: 64px 48px 28px; }
.foot-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.foot-brand  { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.foot-gem {
  width: 36px; height: 36px; border-radius: 10px; background: var(--c-terra);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', serif; font-size: 17px; font-weight: 700; color: var(--c-cream); flex-shrink: 0;
}
.foot-nm { font-weight: 600; color: var(--c-cream); font-size: 15px; }
.foot-sb { font-size: 11px; color: rgba(253,246,236,.4); }
.footer > div p,
.foot-inner > div > p { font-size: 13px; color: rgba(253,246,236,.4); line-height: 1.8; max-width: 300px; margin-bottom: 18px; }
.foot-soc { display: flex; gap: 10px; }
.fsoc {
  width: 34px; height: 34px; border-radius: 9px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(253,246,236,.4); text-decoration: none; font-size: 13px; font-weight: 600;
  transition: border-color .2s, color .2s, background .2s;
}
.fsoc:hover { border-color: var(--c-terra); color: var(--c-terra); background: rgba(200,99,58,.1); }
.foot-col h4 { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--c-ochre); margin-bottom: 18px; }
.foot-col a  { display: block; color: rgba(253,246,236,.44); text-decoration: none; font-size: 14px; margin-bottom: 11px; transition: color .2s; }
.foot-col a:hover { color: var(--c-cream); }
.foot-bottom {
  max-width: 1280px; margin: 24px auto 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(253,246,236,.28);
}

/* ── BACK TO TOP ── */
.btt {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 44px; height: 44px; border-radius: 14px;
  background: var(--c-terra); color: var(--c-cream);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(200,99,58,.4);
  transform: translateY(80px); opacity: 0;
  transition: transform .35s var(--ease), opacity .35s;
}
.btt.show  { transform: translateY(0); opacity: 1; }
.btt:hover { background: var(--c-clay); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-name { color: #fff !important; }
  .nav-sub  { color: rgba(255,255,255,.45) !important; }
  .hamburger span { background: #fff !important; }
  .nav.sc {
    background: rgba(22,10,4,.95) !important;
    box-shadow: 0 1px 0 rgba(255,255,255,.06) !important;
  }
  .nav.sc .nav-name { color: #fff !important; }
  .nav.sc .nav-sub  { color: rgba(255,255,255,.45) !important; }
  .hero-inner { padding: 100px 32px 60px; }
  .hero-stack { display: none !important; }
  .how-grid   { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .reg-inner  { grid-template-columns: 1fr; gap: 48px; }
  .foot-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot-bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav.sc { padding: 12px 20px; }
  .hero-inner { padding: 88px 20px 48px; }
  .hero-title { font-size: 34px; }
  .search-wrap { padding: 24px 20px 0; }
  .search-row  { flex-direction: column; }
  .search-go   { width: 100%; }
  .main-wrap   { grid-template-columns: 1fr; padding: 24px 20px 56px; }
  .sidebar     { display: none; }
  .how-sec, .trust-sec, .reg-sec { padding: 56px 20px; }
  .how-grid    { grid-template-columns: 1fr; border-radius: 16px; }
  .trust-grid  { grid-template-columns: 1fr; }
  .frow        { grid-template-columns: 1fr; }
  .footer      { padding: 44px 20px 24px; }
  .foot-inner  { grid-template-columns: 1fr; gap: 28px; }
  .btt { bottom: 18px; right: 18px; }
}
@media (max-width: 420px) {
  .hero-stack  { display: none; }
  .hero-btns   { flex-direction: column; }
  .btn-w, .btn-o { text-align: center; }
  .hero-stats  { gap: 20px; }
  .hstat-num   { font-size: 22px; }
}

/* ═══════════════════════════════════════
   MODAL DETALLE PRODUCTO
═══════════════════════════════════════ */

.pd-overlay {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(20,10,4,.78);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.pd-overlay.open { opacity: 1; visibility: visible; }

.pd-modal {
  background: var(--c-paper);
  border: 1.5px solid var(--c-line);
  border-radius: 28px;
  width: min(1060px, 100%);
  height: min(680px, 94vh);
  overflow: hidden;
  display: grid;
  grid-template-columns: 420px 1fr;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,.38);
  transform: translateY(24px) scale(.96);
  transition: transform .38s cubic-bezier(.22,.68,0,1.2);
}
.pd-overlay.open .pd-modal { transform: translateY(0) scale(1); }

/* ── Cerrar ── */
.pd-close {
  position: absolute; top: 14px; right: 14px; z-index: 20;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--c-bg); border: 1.5px solid var(--c-line);
  color: var(--c-muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.10);
  transition: background .2s, color .2s, border-color .2s;
}
.pd-close:hover { background: var(--c-terra); color: #fff; border-color: var(--c-terra); }

/* ── Galería ── */
.pd-gallery {
  border-radius: 26px 0 0 26px;
  display: flex; flex-direction: column;
  background: var(--c-soil); height: 100%; overflow: hidden;
}
.pd-gallery-main {
  flex: 1; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; background: var(--c-soil);
}

/* Contenedor SVG de fondo (blur decorativo) */
.pd-svg-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: .06; pointer-events: none; user-select: none;
}
.pd-svg-bg svg {
  width: 220px; height: 220px;
  stroke: var(--c-cream); stroke-width: 1;
}

/* Contenedor SVG principal (centrado, con sombra) */
.pd-svg-main {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.5));
  transition: transform .35s cubic-bezier(.22,.68,0,1.2), opacity .3s;
}
.pd-svg-main svg {
  width: 96px; height: 96px;
  stroke: var(--c-cream); stroke-width: 1.2; fill: none;
}

/* Animación al cambiar slide */
.pd-gallery-main.switching .pd-svg-main,
.pd-gallery-main.switching .pd-svg-bg {
  opacity: 0; transform: scale(.88);
}

/* Tira de miniaturas */
.pd-gallery-thumbs {
  display: flex; gap: 10px; padding: 14px 16px;
  background: rgba(0,0,0,.28); overflow-x: auto; flex-shrink: 0;
}
.pd-gallery-thumbs::-webkit-scrollbar { height: 4px; }
.pd-gallery-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.2); border-radius: 2px; }

/* Thumb — ahora contiene SVG pequeño */
.pd-thumb {
  width: 68px; height: 68px; border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 2.5px solid transparent;
  cursor: pointer; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.pd-thumb svg {
  width: 26px; height: 26px;
  stroke: rgba(253,246,236,.6); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke .2s;
}
.pd-thumb:hover { transform: scale(1.06); box-shadow: 0 4px 14px rgba(0,0,0,.3); }
.pd-thumb:hover svg { stroke: var(--c-cream); }
.pd-thumb.active {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 1px var(--c-gold);
}
.pd-thumb.active svg { stroke: var(--c-gold); }

.pd-photo-counter {
  position: absolute; bottom: 14px; right: 14px; z-index: 5;
  background: rgba(0,0,0,.5); color: rgba(255,255,255,.8);
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* ── Contenido modal ── */
.pd-content {
  padding: 28px 26px 24px;
  display: flex; flex-direction: column; gap: 16px;
  overflow-y: auto; height: 100%;
}
.pd-content::-webkit-scrollbar { width: 5px; }
.pd-content::-webkit-scrollbar-thumb { background: var(--c-line); border-radius: 3px; }

.pd-header { display: flex; align-items: flex-start; gap: 13px; padding-right: 48px; }
.pd-av {
  width: 50px; height: 50px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', serif; font-size: 17px; font-weight: 700;
  color: #fff; flex-shrink: 0;
}
.pd-name  { font-family: 'Lora', serif; font-size: 19px; font-weight: 700; color: var(--c-ink); line-height: 1.2; }
.pd-role  { font-size: 12px; color: var(--c-muted); margin-top: 2px; }
.pd-stars { font-size: 12px; color: var(--c-ochre); margin-top: 4px; }
.pd-st-wrap { margin-left: auto; flex-shrink: 0; }
.pd-st-wrap .pc-st {
  position: static !important; font-size: 12px !important; padding: 6px 14px !important;
}
.pd-st-wrap .s-ok {
  background: rgba(42,92,36,.15) !important; color: #1e6b1a !important;
  border: 1.5px solid rgba(42,92,36,.3) !important;
}
.pd-st-wrap .s-ord {
  background: rgba(212,134,62,.15) !important; color: #a05a00 !important;
  border: 1.5px solid rgba(212,134,62,.3) !important;
}

.pd-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.pd-tag  { font-size: 11px; padding: 4px 12px; border-radius: 20px; background: #f0e6d8; color: #7a5a38; }
.pd-tag.hl { background: var(--c-soil); color: var(--c-straw); }
.pd-desc { font-size: 13px; line-height: 1.78; color: var(--c-muted); margin: 0; }

.pd-info-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--c-line);
  border-radius: 13px; overflow: hidden;
}
.pd-info-cell { background: var(--c-bg); padding: 11px 12px; text-align: center; }
.pd-info-val  { font-family: 'Lora', serif; font-size: 16px; font-weight: 700; color: var(--c-ink); }
.pd-info-lbl  { font-size: 10px; color: var(--c-muted); text-transform: uppercase; letter-spacing: .05em; margin-top: 2px; }

/* Título sección precios con SVG inline */
.pd-section-title {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--c-terra); margin-bottom: 8px;
}
.pd-section-title svg {
  stroke: var(--c-terra); fill: none; flex-shrink: 0;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.pd-prices { display: flex; flex-direction: column; gap: 7px; }
.pd-price-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--c-bg); border: 1.5px solid var(--c-line);
  border-radius: 11px; padding: 11px 14px;
  transition: border-color .2s, background .2s;
}
.pd-price-row:hover { border-color: var(--c-ochre); background: #fffbf5; }
.pd-price-item { font-size: 13.5px; color: var(--c-ink); font-weight: 600; }
.pd-price-sub  { font-size: 11px; color: var(--c-muted); margin-top: 2px; }
.pd-price-val  { font-family: 'Lora', serif; font-size: 17px; font-weight: 700; color: var(--c-terra); }

/* CTA */
.pd-cta-row { display: flex; gap: 10px; padding-top: 4px; }
.pd-wa {
  flex: 1; background: #25d366; color: #fff;
  border: none; border-radius: 13px; padding: 13px 18px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14px;
  text-decoration: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 6px 20px rgba(37,211,102,.25);
  transition: transform .2s, box-shadow .2s;
}
.pd-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,.35); }
.pd-share {
  background: var(--c-bg); border: 1.5px solid var(--c-line);
  border-radius: 13px; padding: 13px 16px;
  color: var(--c-muted); cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 600;
  transition: border-color .2s, color .2s;
}
.pd-share:hover { border-color: var(--c-terra); color: var(--c-terra); }

/* ── Responsive modal ── */
@media (max-width: 760px) {
  .pd-modal {
    grid-template-columns: 1fr;
    height: 94vh; border-radius: 22px;
    grid-template-rows: 260px 1fr;
  }
  .pd-gallery { border-radius: 20px 20px 0 0; height: 100%; }
  .pd-thumb   { width: 56px; height: 56px; }
  .pd-thumb svg { width: 22px; height: 22px; }
  .pd-content { padding: 18px 16px; }
}

/* ── AUTH BUTTONS: MARKETPLACE ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: var(--r-btn);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: rgba(253,246,236,.86);
  border: 1.5px solid rgba(253,246,236,.2);
  background: transparent;
  transition: border-color .2s, color .2s, background .2s, transform .2s;
}

.nav-login:hover {
  border-color: var(--c-ochre);
  color: var(--c-ochre);
  transform: translateY(-2px);
}

.nav.sc .nav-login {
  color: var(--c-bark);
  border-color: rgba(28,17,10,.14);
  background: rgba(255,255,255,.55);
}

.nav.sc .nav-login:hover {
  color: var(--c-terra);
  border-color: var(--c-terra);
  background: #fff;
}

@media (max-width: 1024px) {
  .nav-actions { display: none; }
}
