/* ───────────────────────────────────────────────────────────────
   Shop — temporary "we're closed" page styled like a hanging
   convenience-store door sign. Extends landing-visual.css.
   ─────────────────────────────────────────────────────────────── */
.shop-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.shop-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(130px, 20vh, 200px) var(--pad-x) clamp(70px, 12vh, 120px);
  position: relative;
  overflow: hidden;
}
.shop-hero::before {
  content: "";
  position: absolute;
  width: clamp(420px, 60vw, 820px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(224, 94, 129, 0.14), rgba(224, 94, 129, 0) 70%);
  top: 16%;
  pointer-events: none;
}

/* ── the hanging sign ── */
.sign-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  --board: #f3ece7;
}

/* the nail / screw the sign hangs from */
.sign-hook {
  position: relative;
  z-index: 3;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #6a564c, var(--brown));
  box-shadow: 0 2px 4px rgba(42, 23, 14, 0.4);
}

/* everything below the nail swings together */
.sign-swing {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-origin: top center;
  animation: sign-swing 4.5s ease-in-out infinite;
  will-change: transform;
}
@keyframes sign-swing {
  0%, 100% { transform: rotate(-2.2deg); }
  50%      { transform: rotate(2.2deg); }
}
.sign-stage:hover .sign-swing { animation-duration: 1.6s; }
@media (prefers-reduced-motion: reduce) {
  .sign-swing { animation: none; }
}

/* the V-shaped cords from nail to the two holes */
.sign-cords {
  display: block;
  width: clamp(330px, 38vw, 480px);
  height: clamp(46px, 6vw, 70px);
  margin-bottom: -6px;
}
.sign-cords line { stroke: var(--brown); stroke-width: 3; stroke-linecap: round; opacity: 0.8; }

/* the board itself */
.sign {
  position: relative;
  width: clamp(330px, 38vw, 480px);
  background: var(--board);
  border: 4px solid var(--brown);
  border-radius: 14px;
  padding: clamp(36px, 4.2vw, 56px) clamp(28px, 3.6vw, 50px) clamp(32px, 3.8vw, 50px);
  text-align: center;
  box-shadow:
    inset 0 0 0 7px var(--board),
    inset 0 0 0 8.5px rgba(42, 23, 14, 0.45),
    0 26px 50px rgba(42, 23, 14, 0.22);
}
/* mounting holes */
.sign::before,
.sign::after {
  content: "";
  position: absolute; top: 12px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: inset 0 1px 2px rgba(42, 23, 14, 0.45);
}
.sign::before { left: 26px; }
.sign::after  { right: 26px; }

.sign-sorry {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(8px, 1vw, 12px);
}
.sign-closed {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(58px, 8.6vw, 116px);
  line-height: 0.86;
  letter-spacing: -0.02em;
  color: var(--pink);
}
.sign-rule {
  width: 64%;
  height: 1.5px;
  background: rgba(42, 23, 14, 0.16);
  margin: clamp(28px, 3.6vw, 44px) auto clamp(24px, 3vw, 36px);
}
.sign-sub {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  color: var(--brown);
  margin: 0 auto;
}
.sign-sub strong { color: var(--pink); font-weight: 600; white-space: nowrap; }

/* faux "hours" strip at the bottom of the board */
.sign-hours {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: clamp(4px, 1vw, 10px) auto 0;
  padding: 10px 20px;
  border: 1.5px solid rgba(42, 23, 14, 0.18);
  border-radius: 999px;
}
.sign-hours span,
.sign-hours strong {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.sign-hours span { color: var(--muted); }
.sign-hours strong { color: var(--brown); }

/* caption under the swinging sign (does not swing) */
.sign-cta {
  margin-top: clamp(40px, 5.5vw, 72px);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brown);
  transition: color .2s ease, gap .2s ease;
}
.sign-stage:hover .sign-cta { color: var(--pink); gap: 14px; }
.sign-cta svg { width: 17px; height: 17px; }
