/* =========================================================
   Printerade :  printerade.com
   Custom 3D-printed gifts, gadgets & tap-to-pay magic.
   ========================================================= */

:root {
  --cream: #faf7f2;
  --cream-deep: #f1e8d8;
  --ink: #211b13;
  --ink-soft: #5b5546;
  --gold: #d4af37;
  --gold-deep: #a9832a;
  --gold-light: #f3e2ab;
  --pink: #ff85dc;
  --violet: #8b5cf6;
  --white: #ffffff;

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-full: 999px;

  --shadow-card: 0 6px 18px -10px rgba(33, 27, 19, 0.28), 0 2px 6px -2px rgba(33, 27, 19, 0.12);
  --shadow-card-hover: 0 18px 34px -14px rgba(33, 27, 19, 0.32), 0 4px 10px -2px rgba(33, 27, 19, 0.16);
  --shadow-soft: 0 20px 50px -20px rgba(33, 27, 19, 0.25);

  --max-width: 1240px;
  --font-body: "Avenir Next", "SF Pro Rounded", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, p, ul, blockquote, figure {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 0 0 var(--radius-md) 0;
  z-index: 200;
}

.skip-link:focus {
  left: 0;
}

section[id] {
  scroll-margin-top: 84px;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--cream-deep);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-head {
  max-width: 640px;
  margin: 0 0 40px;
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(1.7rem, 1.4rem + 1.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.section-sub {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 560px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 8px 20px -10px rgba(212, 175, 55, 0.7);
}

.btn-gold:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -10px rgba(212, 175, 55, 0.8);
}

.btn-ink {
  background: var(--ink);
  color: var(--gold-light);
  box-shadow: 0 8px 20px -12px rgba(33, 27, 19, 0.7);
}

.btn-ink:hover {
  background: #332a1d;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -12px rgba(33, 27, 19, 0.8);
}

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 16px 30px;
  font-size: 1.05rem;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(33, 27, 19, 0.08);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  flex-shrink: 0;
  line-height: 0;
}

.brand-logo {
  height: 34px;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
  font-weight: 700;
  font-size: 0.96rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--gold-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-actions .btn {
  padding: 10px 17px;
  font-size: 0.88rem;
}

.header-customize-short {
  display: none;
}

@media (min-width: 1080px) {
  .nav-links {
    display: flex;
  }
}

@media (max-width: 760px) {
  .header-shop {
    display: none;
  }
}

@media (max-width: 520px) {
  .header-inner {
    gap: 10px;
  }

  .brand-logo {
    height: 29px;
  }

  .header-customize-long {
    display: none;
  }

  .header-customize-short {
    display: inline;
  }

  .header-actions .btn {
    padding: 9px 14px;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 72px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  width: 340px;
  height: 340px;
  background: var(--pink);
  top: -120px;
  right: -80px;
}

.hero::after {
  width: 300px;
  height: 300px;
  background: var(--violet);
  bottom: -140px;
  left: -100px;
  opacity: 0.25;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 1.6rem + 2.6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}

.trust-row li:not(:last-child)::after {
  content: "·";
  margin: 0 12px;
  color: var(--gold-deep);
  font-weight: 700;
}

.hero-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}

.collage-link {
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 0.15s ease;
}

.collage-link:hover {
  transform: scale(1.02);
}

.hero-collage img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 4px solid var(--white);
}

@media (min-width: 900px) {
  .hero-collage .collage-link:nth-child(2) {
    transform: translateY(22px);
  }
  .hero-collage .collage-link:nth-child(2):hover {
    transform: translateY(22px) scale(1.02);
  }
  .hero-collage .collage-link:nth-child(3) {
    transform: translateY(-10px);
  }
  .hero-collage .collage-link:nth-child(3):hover {
    transform: translateY(-10px) scale(1.02);
  }
  .hero-collage .collage-link:nth-child(4) {
    transform: translateY(14px);
  }
  .hero-collage .collage-link:nth-child(4):hover {
    transform: translateY(14px) scale(1.02);
  }
}

/* ---------- Customizer promo ---------- */

.customize-promo {
  padding-top: 22px;
}

.customize-promo-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(130deg, var(--ink) 0%, #312719 62%, #49331f 100%);
  color: var(--cream);
  box-shadow: var(--shadow-soft);
}

.customize-promo-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  top: -130px;
  left: 34%;
  border-radius: 50%;
  background: var(--violet);
  filter: blur(70px);
  opacity: 0.18;
  pointer-events: none;
}

.customize-promo-copy {
  position: relative;
  z-index: 1;
  padding: clamp(34px, 5vw, 64px);
}

.customize-promo-copy .eyebrow {
  color: var(--gold-light);
}

.customize-promo-copy h2 {
  max-width: 620px;
  font-size: clamp(1.9rem, 1.55rem + 1.7vw, 2.8rem);
  line-height: 1.12;
}

.customize-promo-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin-top: 16px;
  color: rgba(250, 247, 242, 0.78);
  font-size: 1.05rem;
}

.customize-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0 28px;
}

.customize-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgba(243, 226, 171, 0.28);
  border-radius: var(--radius-full);
  background: rgba(250, 247, 242, 0.08);
  color: var(--gold-light);
  font-size: 0.84rem;
  font-weight: 700;
}

.customize-benefits li::before {
  content: "✓";
  color: var(--gold);
}

.customize-promo-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 36px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 133, 220, 0.3), transparent 31%),
    radial-gradient(circle at 18% 90%, rgba(139, 92, 246, 0.28), transparent 34%),
    linear-gradient(145deg, rgba(250, 247, 242, 0.12), rgba(250, 247, 242, 0.03));
  border-top: 1px solid rgba(250, 247, 242, 0.12);
}

.promo-preview-card {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  padding: 18px;
  border: 1px solid rgba(33, 27, 19, 0.1);
  border-radius: var(--radius-lg);
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, 0.5);
  transform: rotate(-2deg);
}

.promo-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.promo-live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-deep);
  font-size: 0.7rem;
}

.promo-live-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3aa768;
  box-shadow: 0 0 0 4px rgba(58, 167, 104, 0.13);
}

.promo-nameplate {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  aspect-ratio: 8 / 2.25;
  padding: 14px 24px;
  border: 3px solid var(--gold);
  border-radius: 14px;
  background: linear-gradient(160deg, #2f271c 0%, var(--ink) 72%);
  color: var(--gold-light);
  box-shadow: 0 13px 26px -16px rgba(33, 27, 19, 0.7), inset 0 -5px 0 rgba(0, 0, 0, 0.25);
}

.promo-nameplate-logo {
  display: grid;
  place-items: center;
  width: 23%;
  flex-shrink: 0;
  color: var(--gold);
  font-size: clamp(1.8rem, 6vw, 3.1rem);
}

.promo-nameplate-text {
  flex: 1;
  overflow: hidden;
  font-size: clamp(1.05rem, 3.7vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.promo-controls {
  padding: 22px 4px 3px;
}

.promo-control-line {
  display: block;
  width: 76%;
  height: 7px;
  margin-bottom: 9px;
  border-radius: var(--radius-full);
  background: var(--cream-deep);
}

.promo-control-line-short {
  width: 48%;
}

.promo-swatches {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.promo-swatch {
  width: 25px;
  height: 25px;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(33, 27, 19, 0.15);
}

.promo-swatch-gold { background: var(--gold); }
.promo-swatch-pink { background: var(--pink); }
.promo-swatch-violet { background: var(--violet); }
.promo-swatch-ink { background: var(--ink); }

.promo-airtag {
  position: absolute;
  right: clamp(16px, 7%, 60px);
  bottom: 24px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 8px solid var(--pink);
  border-radius: 50%;
  background: var(--cream);
  color: var(--violet);
  font-size: 2rem;
  box-shadow: 0 15px 26px -12px rgba(0, 0, 0, 0.5);
  transform: rotate(10deg);
}

.promo-airtag::before {
  content: "";
  position: absolute;
  top: -29px;
  width: 27px;
  height: 30px;
  border: 7px solid var(--pink);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}

@media (min-width: 860px) {
  .customize-promo-card {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .customize-promo-visual {
    min-height: 100%;
    border-top: 0;
    border-left: 1px solid rgba(250, 247, 242, 0.12);
  }
}

@media (max-width: 520px) {
  .customize-promo-visual {
    min-height: 300px;
    padding: 26px 20px;
  }

  .promo-preview-card {
    padding: 14px;
  }

  .promo-airtag {
    right: 12px;
    bottom: 16px;
    width: 72px;
    height: 72px;
    border-width: 6px;
  }

  .promo-airtag::before {
    top: -23px;
    width: 22px;
    height: 24px;
    border-width: 6px;
    border-bottom: 0;
  }
}

/* ---------- Product grid & cards ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media (min-width: 640px) {
  .grid-best {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-shop {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1000px) {
  .grid-shop {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid {
    gap: 22px;
  }
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.card.is-hidden {
  display: none;
}

.card-link {
  display: block;
  height: 100%;
}

.card-media {
  position: relative;
  background: var(--cream-deep);
}

.card-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px -4px rgba(0, 0, 0, 0.35);
}

.badge-stock {
  position: absolute;
  top: 10px;
  right: 10px;
  left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #c0392b;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px -3px rgba(192, 57, 43, 0.6);
  animation: badge-stock-pulse 1.8s ease-in-out infinite;
}

.badge-stock::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: badge-stock-dot 1.8s ease-in-out infinite;
}

@keyframes badge-stock-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes badge-stock-dot {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.pd-stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  background: #fdecea;
  color: #a5281b;
  border: 1px solid #f0b7b0;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--radius-full);
}

.pd-stock::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c0392b;
  box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.55);
  animation: badge-stock-dot-red 1.8s ease-in-out infinite;
}

@keyframes badge-stock-dot-red {
  0% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.55); }
  70% { box-shadow: 0 0 0 7px rgba(192, 57, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .badge-stock,
  .badge-stock::before,
  .pd-stock::before {
    animation: none;
  }
}

.card-body {
  padding: 14px 16px 18px;
}

.card-body h3 {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
  min-height: 2.6em;
}

.card-body .price {
  font-weight: 800;
  color: var(--gold-deep);
  font-size: 1.02rem;
}

/* ---------- Filter chips ---------- */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.chip {
  background: var(--white);
  border: 2px solid rgba(33, 27, 19, 0.14);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.chip:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
}

.chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--gold-light);
}

/* ---------- Amazon strip ---------- */

.amazon-strip {
  background: linear-gradient(90deg, var(--ink) 0%, #2b2418 100%);
  color: var(--cream);
  padding: 28px 0;
}

.amazon-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.amazon-strip p {
  font-weight: 700;
  font-size: 1rem;
}

.amazon-strip strong {
  color: var(--gold-light);
}

.amazon-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.pill {
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  transition: background 0.15s ease, transform 0.15s ease;
}

.pill:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ---------- About ---------- */

.about-copy {
  max-width: 720px;
}

.about-copy p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin-top: 16px;
}

.about-copy p.eyebrow {
  color: var(--gold-deep);
  font-size: 0.78rem;
  margin-top: 0;
}

/* ---------- Contact ---------- */

.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -130px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--pink);
  filter: blur(80px);
  opacity: 0.13;
  pointer-events: none;
}

.contact-shell {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(33, 27, 19, 0.08);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-copy {
  padding: clamp(32px, 5vw, 58px);
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.2), transparent 36%),
    linear-gradient(145deg, var(--ink) 0%, #332a1d 100%);
  color: var(--cream);
}

.contact-copy .eyebrow {
  color: var(--gold-light);
}

.contact-copy h2 {
  max-width: 520px;
  line-height: 1.15;
}

.contact-lede {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(250, 247, 242, 0.76);
  font-size: 1.02rem;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-method {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 68px;
  padding: 12px 14px;
  border: 1px solid rgba(250, 247, 242, 0.16);
  border-radius: var(--radius-md);
  background: rgba(250, 247, 242, 0.07);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.contact-method:hover {
  transform: translateY(-2px);
  border-color: rgba(243, 226, 171, 0.5);
  background: rgba(250, 247, 242, 0.12);
}

.contact-method-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
}

.contact-method strong,
.contact-method small {
  display: block;
}

.contact-method strong {
  font-size: 0.96rem;
}

.contact-method small {
  margin-top: 2px;
  color: rgba(250, 247, 242, 0.62);
  font-size: 0.78rem;
}

.contact-method-arrow {
  color: var(--gold-light);
  font-size: 1.2rem;
  transition: transform 0.15s ease;
}

.contact-method:hover .contact-method-arrow {
  transform: translateX(3px);
}

.contact-safety {
  margin-top: 24px;
  color: rgba(250, 247, 242, 0.55);
  font-size: 0.79rem;
}

.contact-form {
  padding: clamp(30px, 5vw, 56px);
}

.contact-form-head {
  margin-bottom: 26px;
}

.contact-form-head .eyebrow {
  margin-bottom: 8px;
}

.contact-form-head h3 {
  font-size: 1.45rem;
  line-height: 1.2;
}

.contact-form-head > p:not(.eyebrow) {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.contact-form-grid {
  display: grid;
  gap: 16px;
}

.contact-field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-field small {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 500;
}

.contact-field input,
.contact-field select,
.contact-field textarea,
.prepared-inquiry textarea {
  width: 100%;
  border: 2px solid rgba(33, 27, 19, 0.13);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.contact-field input,
.contact-field select {
  min-height: 48px;
  padding: 10px 13px;
}

.contact-field textarea,
.prepared-inquiry textarea {
  padding: 12px 13px;
  line-height: 1.5;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #8b8477;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus,
.prepared-inquiry textarea:focus {
  border-color: var(--gold-deep);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.13);
}

.contact-form.was-validated .contact-field input:invalid,
.contact-form.was-validated .contact-field select:invalid,
.contact-form.was-validated .contact-field textarea:invalid {
  border-color: #b53c36;
  box-shadow: 0 0 0 3px rgba(181, 60, 54, 0.1);
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.contact-status {
  min-height: 1.5em;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-status.is-success {
  color: #257044;
}

.contact-status.is-error {
  color: #a5322d;
}

.contact-confirmation {
  margin-top: 24px;
  outline: none;
}

.contact-confirmation-inner {
  padding: 28px 28px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(180, 145, 60, 0.35);
  background: linear-gradient(135deg, #fdfaf4 0%, #faf6ec 100%);
  text-align: center;
}

.contact-confirmation-icon {
  display: block;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1;
}

.contact-confirmation-inner h4 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.contact-confirmation-inner p {
  margin: 0 0 10px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.contact-confirmation-inner p:last-child {
  margin-bottom: 0;
}

.contact-confirmation-sub {
  font-size: 0.8rem !important;
  opacity: 0.75;
}

.prepared-inquiry {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(33, 27, 19, 0.1);
  border-radius: var(--radius-md);
  background: var(--cream-deep);
}

.prepared-inquiry label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 800;
}

.prepared-inquiry textarea {
  background: var(--white);
  font-size: 0.8rem;
}

@media (min-width: 680px) {
  .contact-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .contact-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 520px) {
  .contact-form-actions .btn {
    justify-content: center;
    width: 100%;
  }
}

/* ---------- Reviews marquee ---------- */

.reviews-strip {
  padding: 0 0 26px;
}

.marquee-heading {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}

.gold-star {
  color: var(--gold);
}

.marquee {
  overflow: hidden;
  padding: 6px 0 14px;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 70s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-set {
  display: flex;
}

.review-card {
  width: 290px;
  flex-shrink: 0;
  margin-right: 18px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px 20px 16px;
  box-shadow: var(--shadow-card);
}

.review-card .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.review-quote {
  font-size: 0.92rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-meta {
  margin-top: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .marquee-track {
    animation: none;
  }
  .marquee-set[aria-hidden="true"] {
    display: none;
  }
}

/* ---------- Follow ---------- */

.follow-inner {
  text-align: center;
}

.follow-inner .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.social-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--white);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  box-shadow: 0 10px 22px -12px rgba(33, 27, 19, 0.4);
}

.social-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
}

.social-instagram {
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
}

.social-tiktok {
  background: #010101;
  box-shadow: inset 0 0 0 2px #25f4ee, 0 10px 22px -12px rgba(33, 27, 19, 0.4);
}

.social-facebook {
  background: #1877f2;
}

.social-youtube {
  background: #ff0000;
}

.social-threads {
  background: #101010;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 56px 0 28px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
}

.footer-logo {
  height: 30px;
  width: auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-weight: 700;
  font-size: 0.94rem;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gold-light);
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-fine {
  color: rgba(250, 247, 242, 0.55);
  font-size: 0.82rem;
  border-top: 1px solid rgba(250, 247, 242, 0.14);
  padding-top: 22px;
  width: 100%;
}

/* ---------- Focus visibility ---------- */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .card,
  .contact-method,
  .contact-method-arrow,
  .collage-link,
  .pill,
  .social-btn {
    transition: none;
  }
}

/* ---------- Policy pages (shipping, returns, privacy, thank you) ---------- */

.policy-doc {
  max-width: 760px;
  margin: 0 auto;
}

.policy-doc h1 {
  font-size: clamp(1.9rem, 1.5rem + 1.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.policy-doc h2 {
  font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.45rem);
  margin-top: 40px;
}

.policy-doc h3 {
  font-size: 1.02rem;
  font-weight: 800;
  margin-top: 26px;
}

.policy-doc p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-top: 14px;
}

.policy-doc p.eyebrow {
  color: var(--gold-deep);
  font-size: 0.78rem;
  margin-top: 0;
}

.policy-doc .section-sub {
  max-width: none;
  font-size: 1.12rem;
}

.policy-doc ul {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.policy-doc ul li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.policy-doc ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-deep);
  font-size: 0.9rem;
  line-height: 1.55;
}

.policy-doc strong {
  color: var(--ink);
}

.policy-updated {
  font-size: 0.85rem !important;
  color: var(--ink-soft);
  margin-top: 18px !important;
  opacity: 0.8;
}

.policy-card {
  background: var(--white);
  border: 1px solid rgba(33, 27, 19, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 26px 28px;
  margin-top: 26px;
}

.policy-card h2,
.policy-card h3 {
  margin-top: 0;
}

.policy-card p:first-of-type {
  margin-top: 10px;
}

.policy-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(33, 27, 19, 0.12);
  font-weight: 700;
  font-size: 0.94rem;
}

.policy-nav a {
  color: var(--gold-deep);
}

.policy-nav a:hover {
  color: var(--ink);
}

.support-email {
  font-weight: 800;
  color: var(--ink);
  background: var(--cream-deep);
  border-radius: var(--radius-md);
  padding: 2px 8px;
  white-space: nowrap;
}

.thankyou-hero {
  text-align: center;
}

.thankyou-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: var(--gold-light);
  color: var(--gold-deep);
  font-size: 2rem;
  margin-bottom: 20px;
}

.thankyou-hero .policy-cta {
  justify-content: center;
}

.thankyou-steps {
  counter-reset: thankyou-step;
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.thankyou-steps li {
  counter-increment: thankyou-step;
  position: relative;
  padding-left: 46px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  text-align: left;
}

.thankyou-steps li::before {
  content: counter(thankyou-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full);
  background: var(--ink);
  color: var(--gold-light);
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .policy-card {
    padding: 22px 20px;
  }
}

/* ---------- Product thumbnail gallery :  scrollable strip with arrows ---------- */

.pd-thumbs-wrap {
  position: relative;
}

/* Fade-to-transparent edges hint that the strip is scrollable */
.pd-thumbs-wrap::before,
.pd-thumbs-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 44px;
  pointer-events: none;
  z-index: 2;
}
.pd-thumbs-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white) 20%, transparent);
}
.pd-thumbs-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white) 20%, transparent);
}

/* Hide scrollbar on webkit browsers (set to none via JS for Firefox/Edge) */
.pd-thumbs::-webkit-scrollbar {
  display: none;
}

/* Smooth hover lift + gold border on every thumbnail */
.pd-thumb {
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.pd-thumb:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 6px 14px rgba(33, 27, 19, 0.15);
}

/* Left / right arrow buttons */
.pd-thumb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--cream-deep);
  background: var(--white);
  box-shadow: 0 1px 6px rgba(33, 27, 19, 0.14);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  padding: 0;
  line-height: 1;
  transition: border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.pd-thumb-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.30);
}
.pd-thumb-arrow:active {
  transform: translateY(-50%) scale(0.91);
}
[data-pd-thumb-prev] { left: 3px; }
[data-pd-thumb-next] { right: 3px; }
