/* Wash by Nik — sketchbook finds-shop look.
   Handwritten headlines, polaroid cards, tape, stickers, squiggles.
   Casual on purpose. Mobile-first. No build step. */

:root {
  --paper: #faf5ea;
  --paper-deep: #f1e9d6;
  --ink: #1c1a16;
  --ink-soft: #4a463d;
  --ink-faint: #8a8478;
  --wash-teal: #6fa3a0;
  --wash-ochre: #c98f3d;
  --wash-rose: #c47b6e;
  --line: #e4ddcd;
  --card: #ffffff;
  --radius: 6px;
  --shadow: 0 10px 30px rgba(28, 26, 22, 0.10);
  --font-hand: "Caveat", cursive;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* faint wash blobs, kept subtle */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(600px 300px at 12% 4%, rgba(111, 163, 160, 0.10), transparent 70%),
    radial-gradient(700px 340px at 88% 10%, rgba(201, 143, 61, 0.10), transparent 70%),
    radial-gradient(500px 500px at 50% 110%, rgba(196, 123, 110, 0.07), transparent 70%);
}

main, header, footer { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }

/* transparent overlay over artwork images to deter casual copy/save/drag */
.shield {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: transparent;
}

a { color: inherit; }

h1, h2, h3, .hand {
  font-family: var(--font-hand);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 245, 234, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 2px dashed var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  font-family: var(--font-hand);
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  transform: rotate(-1.5deg);
  display: inline-block;
}
.brand em { font-style: normal; color: var(--wash-teal); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--ink); text-decoration: underline wavy var(--wash-ochre) 2px; text-underline-offset: 5px; }
.nav-links a.active { color: var(--ink); text-decoration: underline wavy var(--wash-ochre) 2px; text-underline-offset: 5px; }
.cart-btn {
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  display: inline-flex;
  gap: 8px;
  align-items: center;
  box-shadow: 2px 2px 0 var(--wash-ochre);
}
.cart-btn:hover { transform: translate(-1px, -1px); box-shadow: 3px 3px 0 var(--wash-ochre); }
.cart-count {
  background: var(--wash-ochre);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 20px; height: 20px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
}
.hamburger { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--ink); }

/* ---------- buttons: chunky stickers ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid var(--ink);
  background: var(--card);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { transform: translate(-1px, -1px) rotate(-0.5deg); box-shadow: 4px 4px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--ink); }
.btn-primary { background: var(--wash-ochre); }
.btn-teal { background: var(--wash-teal); color: #fff; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ---------- hero ---------- */
.hero {
  padding: 56px 0 40px;
  display: grid;
  gap: 44px;
  align-items: center;
}
@media (min-width: 860px) {
  .hero { grid-template-columns: 1.05fr 0.95fr; padding: 72px 0 56px; }
}
.eyebrow {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wash-teal);
  margin-bottom: 6px;
  transform: rotate(-1deg);
  display: inline-block;
}
.hero h1 { font-size: clamp(2.8rem, 7vw, 4.6rem); margin-bottom: 16px; }
.hero h1 .u-teal { color: var(--wash-teal); }
.hero h1 .u-ochre { text-decoration: underline wavy var(--wash-ochre) 4px; text-underline-offset: 8px; }
.hero p.lede { font-size: 1.08rem; color: var(--ink-soft); max-width: 46ch; margin-bottom: 26px; }
.hero p.lede strong { color: var(--ink); }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note {
  font-family: var(--font-hand);
  font-size: 1.25rem;
  color: var(--ink-faint);
  margin-top: 18px;
  transform: rotate(-1deg);
}

/* polaroid stack in the hero */
.hero-art { position: relative; min-height: 460px; }
.polaroid {
  background: #fff;
  padding: 12px 12px 44px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  position: absolute;
  width: 62%;
  transition: transform 0.2s ease;
}
.polaroid:hover { transform: rotate(0deg) scale(1.03) !important; z-index: 10; }
.polaroid img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.polaroid figcaption {
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--ink-soft);
  text-align: center;
  padding-top: 8px;
  line-height: 1.2;
}
.polaroid::before { /* tape strip */
  content: "";
  position: absolute;
  top: -14px; left: 50%;
  width: 96px; height: 28px;
  transform: translateX(-50%) rotate(-3deg);
  background: rgba(201, 143, 61, 0.35);
  border-left: 1px dashed rgba(28,26,22,0.25);
  border-right: 1px dashed rgba(28,26,22,0.25);
}
.polaroid.p1 { top: 0; left: 0; transform: rotate(-4deg); z-index: 2; }
.polaroid.p2 { top: 130px; right: 0; transform: rotate(3deg); z-index: 3; }
.polaroid.p3 { bottom: 0; left: 2%; transform: rotate(-1.5deg); z-index: 4; width: 50%; }
@media (max-width: 859px) { .hero-art { min-height: 420px; } }

/* sticker badge */
.sticker {
  display: inline-block;
  font-family: var(--font-hand);
  font-size: 1.35rem;
  font-weight: 700;
  background: var(--wash-rose);
  color: #fff;
  padding: 6px 18px 8px;
  border-radius: 999px;
  transform: rotate(-4deg);
  box-shadow: 2px 3px 0 rgba(28,26,22,0.25);
  border: 2px dashed #fff;
}

/* hand-drawn divider */
.squiggle {
  display: block;
  width: 220px;
  height: 14px;
  margin: 8px 0 0;
  color: var(--wash-ochre);
}

/* ---------- sections ---------- */
.section { padding: 48px 0; }
.section-head { max-width: 660px; margin-bottom: 28px; }
.section-head h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 8px; }
.section-head h2 .u-teal { color: var(--wash-teal); }
.section-head p { color: var(--ink-soft); font-size: 1.02rem; }
.section-head .hand-note { font-family: var(--font-hand); font-size: 1.35rem; color: var(--wash-ochre); }

/* ---------- product cards: polaroids ---------- */
.grid { display: grid; gap: 26px; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex; flex-direction: column;
  padding: 10px 10px 0;
  box-shadow: var(--shadow);
  position: relative;
}
.grid .card:nth-child(odd) { transform: rotate(-1.1deg); }
.grid .card:nth-child(even) { transform: rotate(1deg); }
.grid .card:nth-child(3n) { transform: rotate(-0.4deg); }
.card:hover { transform: rotate(0deg) translateY(-5px) !important; box-shadow: 0 16px 34px rgba(28,26,22,0.16); z-index: 5; }
.card-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-deep); position: relative; border-radius: 3px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.badge {
  position: absolute; top: 10px; left: 10px; z-index: 6;
  font-family: var(--font-hand); font-size: 1.15rem; font-weight: 700;
  padding: 2px 14px 4px; border-radius: 999px;
  background: var(--ink); color: var(--paper);
  transform: rotate(-5deg);
  box-shadow: 2px 2px 0 rgba(28,26,22,0.25);
}
.badge.soon { background: var(--wash-teal); color: #fff; }
.card-body { padding: 14px 8px 16px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.card-body h3 { font-size: 1.65rem; line-height: 1.1; }
.card-body .medium { font-size: 0.85rem; color: var(--ink-faint); }
.card-foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; padding-top: 10px; }
.price { font-family: var(--font-hand); font-size: 1.7rem; font-weight: 700; }
.price small { font-family: var(--font-body); font-size: 0.72rem; color: var(--ink-faint); font-weight: 400; }
.card-cta {
  font-family: var(--font-hand);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--wash-teal);
}

/* category filter pills -> sticker tabs */
.pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.pill {
  border: 2px solid var(--ink);
  background: var(--card);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-hand);
  font-size: 1.25rem;
  color: var(--ink-soft);
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.pill:hover { transform: rotate(-1deg); }
.pill.active { background: var(--ink); color: var(--paper); }

/* ---------- product detail ---------- */
.product-layout { display: grid; gap: 36px; padding: 40px 0 56px; }
@media (min-width: 900px) { .product-layout { grid-template-columns: 1.05fr 0.95fr; } }
.product-gallery {
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  background: #fff; position: relative;
  padding: 12px;
  transform: rotate(-1deg);
}
.product-gallery img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; border-radius: 3px; }
.product-info h1 { font-size: clamp(2.4rem, 5vw, 3.4rem); margin: 6px 0 8px; }
.product-info .medium-line { color: var(--ink-faint); font-size: 0.95rem; margin-bottom: 14px; }
.product-info .desc { color: var(--ink-soft); margin-bottom: 20px; max-width: 52ch; font-size: 1.03rem; }
.detail-list { list-style: none; margin-bottom: 22px; border-top: 2px dashed var(--line); }
.detail-list li {
  padding: 10px 0; border-bottom: 2px dashed var(--line);
  font-size: 0.92rem; display: flex; justify-content: space-between; gap: 16px;
}
.detail-list li span:first-child { color: var(--ink-faint); font-weight: 600; }
.buy-box {
  background: #fff; border: 2px solid var(--ink);
  border-radius: 12px; padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 4px 4px 0 var(--wash-ochre);
  transform: rotate(0.5deg);
}
.buy-box .price { font-size: 2.2rem; }
.buy-box .hand-hint { font-family: var(--font-hand); font-size: 1.3rem; color: var(--ink-soft); }
.field label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 6px; color: var(--ink-soft); }
.field select, .field input, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 2px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: 0.95rem;
  background: var(--paper); color: var(--ink);
}
.field select:focus, .field input:focus, .field textarea:focus { border-color: var(--wash-teal); outline: none; }
.field textarea { min-height: 110px; resize: vertical; }
.qty-row { display: flex; gap: 12px; }
.qty-row .field { flex: 1; }

/* ---------- desk finds (coming soon) ---------- */
.desk-grid { display: grid; gap: 26px; }
@media (min-width: 760px) { .desk-grid { grid-template-columns: 1fr 1fr; } }
.desk-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 14px 18px;
  box-shadow: var(--shadow);
  position: relative;
}
.desk-card:nth-child(odd) { transform: rotate(-1.4deg); }
.desk-card:nth-child(even) { transform: rotate(1.2deg); }
.desk-card .imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.desk-card .imgs img { aspect-ratio: 1/1; object-fit: contain; border-radius: 4px; background: var(--paper-deep); }
.desk-card h3 { font-size: 2rem; margin: 12px 0 6px; }
.desk-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 14px; }

/* ---------- category strips ---------- */
.cat-strip { display: grid; gap: 16px; }
@media (min-width: 760px) { .cat-strip { grid-template-columns: repeat(3, 1fr); } }
.cat-card {
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 22px;
  text-decoration: none;
  background: var(--card);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  position: relative;
}
.cat-card:hover { transform: translate(-1px, -1px) rotate(-0.6deg); box-shadow: 5px 5px 0 var(--ink); }
.cat-card h3 { font-size: 2rem; margin-bottom: 6px; }
.cat-card p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 12px; }
.cat-card .go { font-family: var(--font-hand); font-size: 1.4rem; font-weight: 700; color: var(--wash-teal); }
.cat-card.soon { opacity: 0.85; border-style: dashed; box-shadow: 3px 3px 0 var(--line); }
.cat-card.soon:hover { transform: none; box-shadow: 3px 3px 0 var(--line); }

/* ---------- about / contact ---------- */
.prose { max-width: 680px; }
.prose h1 { font-size: clamp(2.6rem, 6vw, 3.8rem); margin-bottom: 16px; }
.prose p { margin-bottom: 16px; color: var(--ink-soft); font-size: 1.03rem; }
.prose p strong { color: var(--ink); }
.prose .hand { font-size: 1.6rem; color: var(--wash-ochre); }
.about-grid { display: grid; gap: 32px; align-items: start; padding: 40px 0 56px; }
@media (min-width: 860px) { .about-grid { grid-template-columns: 0.9fr 1.1fr; } }
.about-doodle {
  border: 2px dashed var(--line);
  border-radius: 16px;
  padding: 28px;
  transform: rotate(-1.5deg);
  background: rgba(255,255,255,0.5);
}
.about-doodle .hand { font-size: 1.9rem; color: var(--ink-soft); line-height: 1.35; }
.about-doodle .hand strong { color: var(--wash-teal); }

.contact-layout { display: grid; gap: 32px; padding: 40px 0 56px; }
@media (min-width: 860px) { .contact-layout { grid-template-columns: 1fr 1fr; } }
.form-card { background: #fff; border: 2px solid var(--ink); border-radius: 16px; padding: 28px; box-shadow: 4px 4px 0 var(--wash-teal); }
.form-card h2 { margin-bottom: 6px; font-size: 2.2rem; }
.form-card > p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 20px; }
.form-card form { display: flex; flex-direction: column; gap: 14px; }
.form-ok { background: #eef5ef; border: 2px dashed #7ba87d; color: #2c5a2e; border-radius: 10px; padding: 14px 16px; font-size: 0.95rem; }
.form-err { background: #f9ecec; border: 2px dashed var(--wash-rose); color: #8a3d34; border-radius: 10px; padding: 14px 16px; font-size: 0.95rem; }

/* newsletter */
.newsletter {
  background: var(--ink); color: var(--paper);
  border-radius: 20px; padding: 44px 32px; text-align: center;
  margin: 24px 0 64px; position: relative; overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--wash-ochre);
  transform: rotate(-0.4deg);
}
.newsletter h2 { font-size: clamp(2rem, 4.5vw, 2.8rem); margin-bottom: 8px; }
.newsletter h2 .u-ochre { color: var(--wash-ochre); }
.newsletter p { opacity: 0.75; margin-bottom: 22px; font-size: 0.95rem; }
.newsletter form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.newsletter input {
  flex: 1; padding: 13px 18px; border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08); color: #fff;
  font-family: var(--font-body); font-size: 0.95rem;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter .btn { border-color: var(--wash-ochre); }
@media (max-width: 520px) { .newsletter form { flex-direction: column; } }

/* ---------- footer ---------- */
.site-footer { border-top: 2px dashed var(--line); padding: 40px 0 32px; margin-top: 24px; }
.footer-grid { display: grid; gap: 28px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-grid h4 { font-family: var(--font-hand); font-size: 1.4rem; color: var(--ink-soft); margin-bottom: 10px; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-grid ul a { text-decoration: none; color: var(--ink-soft); font-size: 0.92rem; font-weight: 600; }
.footer-grid ul a:hover { color: var(--wash-teal); }
.footer-brand { font-family: var(--font-hand); font-size: 2.2rem; font-weight: 700; margin-bottom: 8px; transform: rotate(-1deg); display: inline-block; }
.footer-brand em { font-style: normal; color: var(--wash-teal); }
.footer-grid p { font-size: 0.9rem; color: var(--ink-faint); max-width: 34ch; }
.copyright { margin-top: 32px; padding-top: 20px; border-top: 2px dashed var(--line); font-size: 0.82rem; color: var(--ink-faint); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ---------- cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(20,18,14,0.45);
  opacity: 0; pointer-events: none; transition: opacity 0.25s; z-index: 90;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(400px, 92vw);
  background: var(--paper); z-index: 100;
  transform: translateX(105%); transition: transform 0.3s ease;
  display: flex; flex-direction: column;
  border-left: 2px dashed var(--line);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 2px dashed var(--line); }
.cart-head h3 { font-size: 2rem; }
.cart-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--ink-soft); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.cart-empty { text-align: center; color: var(--ink-faint); padding: 40px 10px; font-family: var(--font-hand); font-size: 1.5rem; }
.cart-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 14px; align-items: center; background: var(--card); border: 2px solid var(--line); border-radius: 12px; padding: 10px; }
.cart-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; }
.cart-item h4 { font-size: 0.92rem; font-family: var(--font-body); font-weight: 600; }
.cart-item .meta { font-size: 0.8rem; color: var(--ink-faint); }
.cart-item .rm { background: none; border: none; color: var(--wash-rose); cursor: pointer; font-size: 0.8rem; text-decoration: underline; }
.cart-foot { padding: 20px; border-top: 2px dashed var(--line); display: flex; flex-direction: column; gap: 12px; }
.cart-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.05rem; }
.integration-note { font-size: 0.75rem; color: var(--ink-faint); font-style: italic; }

/* ---------- misc ---------- */
.breadcrumb { font-size: 0.85rem; color: var(--ink-faint); padding: 28px 0 0; font-weight: 600; }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--wash-teal); }
.page-title { padding: 12px 0 8px; }
.page-title h1 { font-size: clamp(2.6rem, 6vw, 3.8rem); }
.page-title p { color: var(--ink-soft); margin-top: 8px; max-width: 60ch; font-size: 1.02rem; }
.page-title .hand-note { font-family: var(--font-hand); font-size: 1.5rem; color: var(--wash-ochre); }

@media (max-width: 720px) {
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--paper); flex-direction: column; align-items: flex-start;
    padding: 12px 20px 20px; gap: 4px; border-bottom: 2px dashed var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; font-size: 1.05rem; width: 100%; }
  .hamburger { display: block; }
  .section { padding: 36px 0; }
  .polaroid { width: 70%; }
}

/* quality tiers (Cheapo / Modest / First Class) */
.tier-pick { display: grid; gap: 10px; }
.tier-opt { display: block; border: 2px solid var(--line); border-radius: 12px;
  padding: 10px 14px; cursor: pointer; background: var(--paper);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.tier-opt:hover { transform: rotate(-.4deg); border-color: var(--ink); }
.tier-opt input { position: absolute; opacity: 0; pointer-events: none; }
.tier-opt .t-name { display: block; font-family: var(--font-hand); font-weight: 700;
  font-size: 1.6rem; line-height: 1.1; }
.tier-opt .t-blurb { display: block; font-size: .85rem; color: var(--ink-soft); margin-top: 2px; }
.tier-opt:has(input:checked) { border-color: var(--ink); background: #fff;
  box-shadow: 3px 3px 0 var(--wash-ochre); transform: rotate(-.5deg); }
.tiers-hint { font-family: var(--font-hand); font-size: 1.15rem; color: var(--wash-ochre);
  margin: 2px 0 8px; }
.foot-quip { text-align: center; font-family: var(--font-hand); font-size: 1.25rem;
  color: var(--ink-soft); margin: 0 0 14px; }
