/* Anti University Social Club — loja. Fundo claro/editorial (mantém a
   legibilidade da fotografia de produto), mas com o ADN do site principal:
   Thunder nos títulos, o mesmo vermelho de destaque, cabeçalho escuro,
   botões em pílula e micro-animações em toda a interface. */

:root {
  --shop-bg: #faf9f5;
  --shop-ink: #0a0a0a;
  --shop-paper: #ffffff;
  --shop-line: #e5e1d6;
  --shop-muted: #726f68;
  --shop-showcase: #141414;
  --shop-accent: #ff462e;
  --shop-accent-deep: #c93013;
  --shop-radius: 14px;
  --shop-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.shop * {
  box-sizing: border-box;
}

/* Algumas classes aqui definem display: flex/grid no mesmo elemento que
   por vezes leva o atributo [hidden] — como uma regra de autor com
   display sempre ganha à regra [hidden] do user-agent, isso escondia
   mal esses elementos. Esta regra garante que [hidden] esconde sempre,
   sem depender da ordem/especificidade das outras classes. */
.shop [hidden] {
  display: none !important;
}

.shop {
  margin: 0;
  background: var(--shop-bg);
  color: var(--shop-ink);
  font-family: var(--font-body);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Os links herdam a cor do texto à volta — exceto os que são botões, que
   trazem a sua própria. Sem o :not(), esta regra (0,2,0) ganhava à de
   .shop-btn-primary (0,1,0) e punha qualquer <a> com classe de botão a
   preto sobre preto. */
.shop a:not(.shop-btn) {
  color: inherit;
}

.shop-title-font {
  font-family: var(--font-title);
}

@keyframes shop-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shop-pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}

@keyframes shop-pop {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.35);
  }
  100% {
    transform: scale(1);
  }
}

.shop-countdown-bar {
  background: var(--shop-ink);
  color: var(--shop-bg);
  text-align: center;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.shop-countdown-bar::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--shop-accent);
  flex: none;
  animation: shop-pulse-dot 1.6s ease-in-out infinite;
}

.shop-countdown-bar strong {
  color: var(--shop-accent);
  font-variant-numeric: tabular-nums;
}

.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--shop-ink);
  color: var(--shop-bg);
  position: sticky;
  top: 0;
  z-index: 20;
}

.shop-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--shop-bg);
}

.shop-logo::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--shop-accent);
  flex: none;
}

.shop-header-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-header-links a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(250, 249, 245, 0.75);
  transition: color 0.2s var(--shop-ease);
}

.shop-header-links a:hover {
  color: var(--shop-bg);
}

.shop-header-links > a:first-child {
  padding: 8px 4px;
}

.shop-cart-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(250, 249, 245, 0.35);
  border-radius: 999px;
  padding: 8px 16px;
  color: var(--shop-bg) !important;
  transition: border-color 0.2s var(--shop-ease), background 0.2s var(--shop-ease);
}

.shop-cart-link:hover {
  border-color: var(--shop-bg);
  background: rgba(255, 255, 255, 0.06);
}

.shop-cart-count {
  background: var(--shop-accent);
  color: #fff;
  border-radius: 50%;
  width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.shop-cart-count.is-bumped {
  animation: shop-pop 0.4s var(--shop-ease);
}

.shop-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 32px 96px;
}

@media (max-width: 640px) {
  .shop-header {
    flex-wrap: wrap;
    row-gap: 10px;
    padding: 16px 20px;
  }

  .shop-logo {
    flex: 1 1 100%;
    font-size: 12px;
  }

  .shop-header-links {
    flex: 1 1 100%;
    justify-content: space-between;
  }

  .shop-main {
    padding: 36px 20px 96px;
  }
}

.shop-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--shop-muted);
  margin: 0 0 14px;
  animation: shop-fade-up 0.6s var(--shop-ease) both;
}

.shop-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--shop-accent);
  flex: none;
}

.shop-h1 {
  font-family: var(--font-title);
  font-size: clamp(46px, 9vw, 104px);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 18px;
  line-height: 1;
  animation: shop-fade-up 0.7s 0.05s var(--shop-ease) both;
}

.shop-lede {
  max-width: 640px;
  color: var(--shop-muted);
  font-size: 17px;
  line-height: 1.65em;
  margin: 0 0 32px;
  animation: shop-fade-up 0.7s 0.1s var(--shop-ease) both;
}

.shop-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin: 0 0 36px;
  animation: shop-fade-up 0.7s 0.15s var(--shop-ease) both;
}

.shop-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--shop-ink);
}

.shop-trust-item svg {
  width: 17px;
  height: 17px;
  flex: none;
  color: var(--shop-accent);
}

.shop-divider {
  border: none;
  border-top: 1px solid var(--shop-line);
  margin: 0 0 40px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 24px;
}

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

@media (max-width: 900px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}

.shop-card {
  text-decoration: none;
  color: inherit;
  display: block;
  opacity: 0;
  animation: shop-fade-up 0.6s var(--shop-ease) both;
  animation-delay: calc(var(--i, 0) * 90ms);
}

.shop-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--shop-showcase);
  overflow: hidden;
  border-radius: var(--shop-radius);
}

.shop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--shop-ease);
}

.shop-card:hover .shop-card-media img {
  transform: scale(1.06);
}

.shop-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--shop-accent);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  z-index: 2;
}

.shop-card-quickview {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(250, 249, 245, 0.96);
  backdrop-filter: blur(4px);
  color: var(--shop-ink);
  padding: 13px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: bottom 0.35s var(--shop-ease);
  z-index: 2;
}

.shop-card-quickview svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--shop-ease);
}

.shop-card:hover .shop-card-quickview {
  bottom: 10px;
}

.shop-card:hover .shop-card-quickview svg {
  transform: translateX(3px);
}

.shop-card-title {
  font-weight: 700;
  font-size: 14.5px;
  text-transform: uppercase;
  margin: 16px 0 4px;
  transition: color 0.2s var(--shop-ease);
}

.shop-card:hover .shop-card-title {
  color: var(--shop-accent-deep);
}

.shop-card-price {
  font-size: 14px;
  color: var(--shop-muted);
}

.shop-card-link {
  display: none;
}

.shop-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 24px;
  transition: gap 0.2s var(--shop-ease);
}

.shop-back:hover {
  gap: 10px;
  color: var(--shop-accent-deep);
}

.shop-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 860px) {
  .shop-product {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.shop-product-main-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--shop-showcase);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: var(--shop-radius);
  overflow: hidden;
}

.shop-product-main-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--shop-ease);
}

.shop-product-main-media:hover img {
  transform: scale(1.035);
}

.shop-media-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(10, 10, 10, 0.78);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
}

.shop-product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--shop-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
}

.shop-product-category {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--shop-muted);
  margin: 0 0 8px;
}

.shop-product-title {
  font-family: var(--font-title);
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 16px;
  line-height: 1.08;
}

.shop-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.shop-price {
  font-size: 26px;
  font-weight: 800;
  transition: opacity 0.15s var(--shop-ease), transform 0.15s var(--shop-ease);
}

.shop-price.is-updating {
  opacity: 0;
  transform: translateY(3px);
}

.shop-price-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--shop-accent-deep);
  border: 1px solid var(--shop-accent-deep);
  border-radius: 999px;
  padding: 4px 10px;
}

.shop-combo-savings {
  font-size: 13px;
  color: var(--shop-muted);
  margin: 0 0 20px;
}

.shop-combo-savings strong {
  color: var(--shop-accent-deep);
}

.shop-hr {
  border: none;
  border-top: 1px solid var(--shop-line);
  margin: 22px 0;
}

.shop-product-desc p {
  font-size: 15px;
  line-height: 1.75em;
  color: var(--shop-ink);
  margin: 0 0 14px;
}

.shop-field-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 22px 0 11px;
}

.shop-field-label span {
  font-weight: 400;
  color: var(--shop-muted);
  text-transform: none;
  letter-spacing: normal;
}

.shop-formats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.shop-format {
  border: 1.5px solid var(--shop-line);
  background: var(--shop-paper);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s var(--shop-ease), background 0.2s var(--shop-ease), color 0.2s var(--shop-ease),
    transform 0.15s var(--shop-ease);
}

.shop-format:hover {
  border-color: var(--shop-ink);
  transform: translateY(-1px);
}

.shop-format.is-selected {
  border-color: var(--shop-ink);
  background: var(--shop-ink);
  color: var(--shop-bg);
  transform: none;
}

.shop-swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.shop-swatch {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1.5px solid var(--shop-line);
  background: var(--shop-paper);
  border-radius: 999px;
  padding: 9px 16px 9px 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s var(--shop-ease), background 0.2s var(--shop-ease), transform 0.15s var(--shop-ease);
}

.shop-swatch:hover {
  border-color: var(--shop-ink);
  transform: translateY(-1px);
}

.shop-swatch-dot {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s var(--shop-ease);
}

.shop-swatch.is-selected {
  border-color: var(--shop-ink);
  background: #f0efe6;
  transform: none;
}

.shop-swatch.is-selected .shop-swatch-dot {
  box-shadow: 0 0 0 3px #f0efe6, 0 0 0 4.5px var(--shop-ink);
}

.shop-sizes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.shop-size {
  min-width: 48px;
  text-align: center;
  border: 1.5px solid var(--shop-line);
  background: var(--shop-paper);
  border-radius: 999px;
  padding: 11px 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s var(--shop-ease), background 0.2s var(--shop-ease), transform 0.15s var(--shop-ease);
}

.shop-size:hover {
  border-color: var(--shop-ink);
  transform: translateY(-1px);
}

.shop-size.is-selected {
  border-color: var(--shop-ink);
  background: var(--shop-ink);
  color: var(--shop-bg);
  transform: none;
}

.shop-size-hint {
  font-size: 12px;
  color: var(--shop-muted);
  margin: 12px 0 0;
}

.shop-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid var(--shop-ink);
  border-radius: 999px;
  padding: 16px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  flex: 1;
  min-width: 200px;
  text-decoration: none;
  transition: transform 0.2s var(--shop-ease), opacity 0.2s var(--shop-ease), background 0.2s var(--shop-ease),
    box-shadow 0.2s var(--shop-ease);
}

.shop-btn-primary {
  background: var(--shop-ink);
  color: var(--shop-bg);
}

.shop-btn-primary:hover:not(:disabled) {
  background: var(--shop-accent);
  border-color: var(--shop-accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(255, 70, 46, 0.55);
}

.shop-btn-secondary {
  background: var(--shop-paper);
  color: var(--shop-ink);
}

.shop-btn-secondary:hover:not(:disabled) {
  background: var(--shop-ink);
  color: var(--shop-bg);
  transform: translateY(-2px);
}

.shop-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.shop-note {
  font-size: 12px;
  color: var(--shop-muted);
  margin-top: 16px;
  line-height: 1.6em;
}

.shop-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  background: var(--shop-paper);
  border-top: 1px solid var(--shop-line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -12px 24px -18px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.3s var(--shop-ease);
  display: none;
}

.shop-sticky-cta.is-visible {
  transform: translateY(0);
}

@media (max-width: 640px) {
  .shop-sticky-cta {
    display: block;
  }
}

.shop-sticky-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shop-sticky-cta-info {
  min-width: 0;
}

.shop-sticky-cta-title {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shop-sticky-cta-price {
  font-size: 15px;
  font-weight: 800;
}

.shop-sticky-cta .shop-btn {
  min-width: 0;
  padding: 13px 18px;
  flex: none;
}

.shop-cart-empty {
  padding: 72px 0;
  text-align: center;
  color: var(--shop-muted);
}

.shop-cart-empty svg {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: var(--shop-line);
}

.shop-cart-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 860px) {
  .shop-cart-layout {
    grid-template-columns: 1fr;
  }
}

.shop-cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--shop-line);
}

.shop-cart-item-media {
  width: 100px;
  height: 100px;
  background: var(--shop-showcase);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
}

.shop-cart-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-cart-item-title {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.shop-cart-item-meta {
  font-size: 12px;
  color: var(--shop-muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
}

.shop-qty {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--shop-line);
  border-radius: 999px;
  padding: 5px 14px;
}

.shop-qty button {
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: 16px;
  transition: color 0.2s var(--shop-ease);
}

.shop-qty button:hover {
  color: var(--shop-accent-deep);
}

.shop-remove {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 16px;
  color: var(--shop-muted);
  transition: color 0.2s var(--shop-ease);
}

.shop-remove:hover {
  color: var(--shop-accent-deep);
}

.shop-item-price {
  text-align: right;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.shop-cart-item-buy {
  grid-column: 1 / -1;
  margin-top: 12px;
}

.shop-summary {
  border: 1px solid var(--shop-line);
  border-radius: var(--shop-radius);
  padding: 26px;
  background: var(--shop-paper);
  position: sticky;
  top: 96px;
}

.shop-summary h2 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 20px;
}

.shop-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
}

.shop-summary-row strong {
  font-weight: 700;
}

.shop-summary-savings {
  color: var(--shop-accent-deep);
  font-weight: 700;
}

.shop-summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 800;
  border-top: 1px solid var(--shop-line);
  padding-top: 16px;
  margin: 16px 0 20px;
}

.shop-continue-shopping {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 4px;
  color: var(--shop-muted);
  transition: color 0.2s var(--shop-ease), gap 0.2s var(--shop-ease);
}

.shop-continue-shopping:hover {
  color: var(--shop-ink);
  gap: 10px;
}

.shop-footer {
  border-top: 1px solid var(--shop-line);
  padding: 36px 32px;
  text-align: center;
  background: var(--shop-paper);
}

.shop-footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin: 0 0 10px;
  font-size: 12px;
}

.shop-footer-legal a {
  text-decoration: none;
  color: var(--shop-muted);
  transition: color 0.2s var(--shop-ease);
}

.shop-footer-legal a:hover {
  color: var(--shop-ink);
}

.shop-footer-copy {
  font-size: 12px;
  color: var(--shop-muted);
}

.shop-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--shop-ink);
  color: var(--shop-bg);
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--shop-ease), transform 0.25s var(--shop-ease);
  z-index: 50;
  max-width: 90vw;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.shop-toast::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--shop-accent);
  flex: none;
}

.shop-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.wa-icon {
  width: 15px;
  height: 15px;
  flex: none;
}

/* --- Desconto de lançamento ------------------------------------------ */

.shop-badge-discount {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--shop-accent);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 6px 11px;
  border-radius: 999px;
  z-index: 2;
}

.shop-card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 16px 0 6px;
}

.shop-card-info .shop-card-title {
  margin: 0;
}

.shop-card-dots {
  display: inline-flex;
  gap: 5px;
  flex: none;
}

.shop-card-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid rgba(10, 10, 10, 0.22);
  display: inline-block;
}

.shop-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.shop-card-price-now {
  font-weight: 800;
  font-size: 15px;
  color: var(--shop-ink);
}

.shop-card-price-was {
  font-size: 13.5px;
  color: var(--shop-muted);
  text-decoration: line-through;
}

.shop-price-was {
  font-size: 17px;
  color: var(--shop-muted);
  text-decoration: line-through;
  transition: opacity 0.15s var(--shop-ease);
}

.shop-price-was.is-updating {
  opacity: 0;
}

.shop-price-off {
  background: var(--shop-accent);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}

.shop-product-badge-discount {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--shop-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 13px;
  border-radius: 999px;
  z-index: 2;
}

/* --- Próxima coleção (coming soon) ----------------------------------- */

.shop-soon {
  margin-top: 84px;
  /* O cabeçalho é sticky: sem isto um scroll até aqui deixava o título
     escondido por baixo dele. */
  scroll-margin-top: 110px;
  background: var(--shop-ink);
  color: var(--shop-bg);
  border-radius: var(--shop-radius);
  padding: 52px 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.shop-soon .shop-eyebrow {
  color: rgba(250, 249, 245, 0.6);
}

.shop-soon-title {
  font-family: var(--font-title);
  font-size: clamp(40px, 6.5vw, 76px);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.shop-soon-lede {
  color: rgba(250, 249, 245, 0.72);
  font-size: 15.5px;
  line-height: 1.65em;
  margin: 0;
  max-width: 420px;
}

.shop-soon-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.shop-soon-card {
  position: relative;
  aspect-ratio: 1;
  border: 1.5px dashed rgba(250, 249, 245, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.3s var(--shop-ease), background 0.3s var(--shop-ease);
}

.shop-soon-card:hover {
  border-color: rgba(255, 70, 46, 0.6);
  background: rgba(255, 70, 46, 0.06);
}

.shop-soon-mark {
  font-family: var(--font-title);
  font-size: clamp(44px, 7vw, 76px);
  color: rgba(250, 249, 245, 0.32);
  line-height: 1;
  transform: translateY(-14px);
}

.shop-soon-censored {
  position: absolute;
  left: 0;
  right: 0;
  top: 64%;
  transform: rotate(-4deg);
  background: var(--shop-accent);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 6px;
}

.shop-soon-panel {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(250, 249, 245, 0.14);
  padding-top: 30px;
}

.shop-soon-panel-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 249, 245, 0.6);
  margin: 0 0 14px;
}

.shop-countdown-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.shop-countdown-unit {
  min-width: 74px;
  border: 1px solid rgba(250, 249, 245, 0.18);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
}

.shop-countdown-unit strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.shop-countdown-unit span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(250, 249, 245, 0.55);
}

/* --- Formulários de newsletter --------------------------------------- */

.shop-news-form-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}

.shop-news-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.shop-news-row input[type="email"] {
  flex: 1 1 240px;
  min-width: 0;
  border: 1.5px solid rgba(250, 249, 245, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: inherit;
  padding: 15px 20px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s var(--shop-ease);
}

.shop-news-row input[type="email"]::placeholder {
  color: rgba(250, 249, 245, 0.45);
}

.shop-news-row input[type="email"]:focus {
  outline: none;
  border-color: var(--shop-accent);
}

.shop-soon .shop-news-row .shop-btn,
.shop-news-panel .shop-news-row .shop-btn {
  flex: 0 0 auto;
  min-width: 140px;
  background: var(--shop-accent);
  border-color: var(--shop-accent);
  color: #fff;
}

.shop-soon .shop-news-row .shop-btn:hover:not(:disabled),
.shop-news-panel .shop-news-row .shop-btn:hover:not(:disabled) {
  background: #fff;
  border-color: #fff;
  color: var(--shop-ink);
}

.shop-news-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.shop-news-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  font-size: 12.5px;
  line-height: 1.5em;
  color: rgba(250, 249, 245, 0.7);
  cursor: pointer;
}

.shop-news-consent input {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--shop-accent);
}

.shop-news-consent a {
  color: inherit;
  text-decoration: underline;
}

.shop-news-status {
  font-size: 13px;
  margin: 12px 0 0;
  min-height: 1em;
  color: rgba(250, 249, 245, 0.85);
}

.shop-news-status.is-error {
  color: #ff9d8c;
}

/* --- Painel lateral da newsletter ------------------------------------ */

.shop-news-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--shop-ink);
  color: var(--shop-bg);
  z-index: 60;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.45s var(--shop-ease);
  box-shadow: -24px 0 60px -30px rgba(0, 0, 0, 0.6);
  overflow-y: auto;
  overscroll-behavior: contain;
  /* Fechado não pode roubar cliques à página que está por baixo. */
  pointer-events: none;
  visibility: hidden;
}

.shop-news-panel.is-open {
  transform: translateX(0);
  pointer-events: auto;
  visibility: visible;
}

.shop-news-panel-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(10, 10, 10, 0.55);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s var(--shop-ease);
}

.shop-news-panel-close:hover {
  background: var(--shop-accent);
}

.shop-news-panel-media {
  flex: none;
  height: 290px;
  overflow: hidden;
  position: relative;
}

.shop-news-panel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0) 45%, var(--shop-ink) 100%);
}

.shop-news-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  display: block;
}

.shop-news-panel-body {
  padding: 6px 28px 32px;
}

.shop-news-panel .shop-eyebrow {
  color: rgba(250, 249, 245, 0.6);
  animation: none;
}

.shop-news-panel-title {
  font-family: var(--font-title);
  font-size: 38px;
  font-weight: 800;
  /* Boldonse tem caixa alta muito alta: com line-height apertado as duas
     linhas encostam uma na outra. */
  line-height: 1.3;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.shop-news-panel-text {
  font-size: 14.5px;
  line-height: 1.6em;
  color: rgba(250, 249, 245, 0.72);
  margin: 0 0 22px;
}

/* --- Responsivo ------------------------------------------------------- */

@media (max-width: 900px) {
  .shop-soon {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 28px;
    margin-top: 64px;
  }
}

@media (max-width: 640px) {
  .shop-soon {
    padding: 32px 20px;
    border-radius: 12px;
  }

  .shop-soon-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .shop-soon-grid .shop-soon-card:nth-child(3) {
    display: none;
  }

  .shop-countdown-unit {
    flex: 1 1 calc(25% - 8px);
    min-width: 0;
    padding: 10px 4px;
  }

  .shop-countdown-unit strong {
    font-size: 21px;
  }

  .shop-countdown-unit span {
    font-size: 10px;
    letter-spacing: 0.04em;
  }

  .shop-news-row .shop-btn,
  .shop-soon .shop-news-row .shop-btn,
  .shop-news-panel .shop-news-row .shop-btn {
    flex: 1 1 100%;
    min-width: 0;
  }

  /* No telemóvel o painel entra por baixo, como um bottom sheet — é o
     gesto natural do polegar e não tapa a página toda. */
  .shop-news-panel {
    top: auto;
    width: 100%;
    max-height: 88vh;
    border-radius: 18px 18px 0 0;
    transform: translateY(105%);
  }

  .shop-news-panel.is-open {
    transform: translateY(0);
  }

  .shop-news-panel-media {
    height: 180px;
  }

  .shop-news-panel-body {
    padding: 6px 20px 26px;
  }

  .shop-news-panel-title {
    font-size: 26px;
  }

  .shop-badge,
  .shop-badge-discount {
    font-size: 10px;
    padding: 5px 9px;
    top: 10px;
  }

  .shop-badge {
    left: 10px;
  }

  .shop-badge-discount {
    right: 10px;
  }

  .shop-price-row {
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .shop-actions .shop-btn {
    flex: 1 1 100%;
    min-width: 0;
  }

  .shop-cart-item {
    grid-template-columns: 76px 1fr;
    gap: 14px;
  }

  .shop-cart-item-media {
    width: 76px;
    height: 76px;
  }

  .shop-item-price {
    grid-column: 2;
    text-align: left;
    margin-top: 2px;
  }

  .shop-summary {
    position: static;
    padding: 20px;
  }

  .shop-footer {
    padding: 28px 20px;
  }
}

@media (max-width: 380px) {
  .shop-countdown-bar {
    font-size: 10.5px;
    padding: 8px 12px;
  }

  .shop-soon-censored {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .shop-size {
    min-width: 42px;
    padding: 10px 4px;
  }

  .shop-format {
    padding: 10px 14px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-card,
  .shop-eyebrow,
  .shop-h1,
  .shop-lede,
  .shop-trust {
    animation: none !important;
    opacity: 1 !important;
  }

  .shop *,
  .shop *::before,
  .shop *::after {
    transition-duration: 0.01ms !important;
  }
}

/* ==================================================================== *
 * Assinatura à mão — editor de colocação                               *
 * ==================================================================== *
 * A lógica é a de aplicar um sticker numa skin de CS: a peça fica por
 * baixo, a assinatura por cima, e arrasta-se/roda-se/escala-se
 * livremente dentro do tecido. O palco tem proporção fixa (a mesma dos
 * mockups, 480x512) para o que se vê aqui ser exatamente o que sai do
 * /api/mockup. */

.shop-sig {
  margin: 28px 0 8px;
  border: 1px solid var(--shop-line);
  border-radius: var(--shop-radius);
  background: var(--shop-paper);
  overflow: hidden;
}

.shop-sig-toggle {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  cursor: pointer;
}

.shop-sig-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.shop-sig-toggle-box {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border: 1.5px solid var(--shop-ink);
  border-radius: 6px;
  position: relative;
  transition: background 0.18s var(--shop-ease), border-color 0.18s var(--shop-ease);
}

.shop-sig-toggle-box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0.4);
  opacity: 0;
  transition: transform 0.18s var(--shop-ease), opacity 0.18s var(--shop-ease);
}

.shop-sig-toggle input:checked + .shop-sig-toggle-box {
  background: var(--shop-accent);
  border-color: var(--shop-accent);
}

.shop-sig-toggle input:checked + .shop-sig-toggle-box::after {
  transform: rotate(45deg) scale(1);
  opacity: 1;
}

.shop-sig-toggle input:focus-visible + .shop-sig-toggle-box {
  outline: 2px solid var(--shop-accent);
  outline-offset: 3px;
}

.shop-sig-toggle-text {
  display: block;
}

.shop-sig-toggle-text strong {
  display: block;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.shop-sig-toggle-text small {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  color: var(--shop-muted);
}

.shop-sig-panel {
  padding: 0 18px 18px;
  border-top: 1px solid var(--shop-line);
  margin-top: 2px;
  padding-top: 18px;
}

/* Segmentado Frente | Costas */
.shop-sig-sides {
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--shop-line);
  border-radius: 999px;
  margin-bottom: 16px;
}

.shop-sig-side {
  flex: 1 1 50%;
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 9px 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--shop-muted);
  cursor: pointer;
  transition: background 0.18s var(--shop-ease), color 0.18s var(--shop-ease);
}

.shop-sig-side.is-selected {
  background: var(--shop-ink);
  color: #fff;
}

.shop-sig-side:focus-visible {
  outline: 2px solid var(--shop-accent);
  outline-offset: 2px;
}

/* Palco */
.shop-sig-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 480 / 512;
  border-radius: 10px;
  overflow: hidden;
  background: #f2f2f2;
  user-select: none;
  -webkit-user-select: none;
}

.shop-sig-base {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Contorno da zona imprimível, só enquanto se arrasta — dá a entender
   onde a assinatura pode ficar sem se estar sempre a ver o guia. */
.shop-sig-stage::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  top: 20%;
  bottom: 8%;
  border: 1px dashed rgba(255, 70, 46, 0.55);
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.18s var(--shop-ease);
  pointer-events: none;
}

.shop-sig.is-dragging .shop-sig-stage::after {
  opacity: 1;
}

.shop-sig-layer {
  position: absolute;
  cursor: grab;
  touch-action: none;
  will-change: transform;
}

.shop-sig.is-dragging .shop-sig-layer {
  cursor: grabbing;
}

.shop-sig-layer::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: border-color 0.18s var(--shop-ease);
}

.shop-sig-layer:hover::before,
.shop-sig-layer:focus-visible::before,
.shop-sig.is-dragging .shop-sig-layer::before {
  border-color: rgba(10, 10, 10, 0.4);
}

.shop-sig-layer:focus-visible {
  outline: none;
}

.shop-sig-layer:focus-visible::before {
  border-color: var(--shop-accent);
  border-width: 2px;
}

.shop-sig-ink {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Pega de rodar/escalar, no canto da caixa. Área de toque generosa: o
   quadrado visível é pequeno, mas o alvo tem 34px. */
.shop-sig-handle {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 34px;
  height: 34px;
  transform: translate(50%, 50%);
  cursor: grab;
  touch-action: none;
}

.shop-sig-handle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  background: var(--shop-accent);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.shop-sig-hint {
  margin: 12px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--shop-muted);
}

.shop-sig-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}

.shop-sig-control {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--shop-muted);
}

.shop-sig-control input[type="range"] {
  display: block;
  width: 100%;
  margin-top: 8px;
  accent-color: var(--shop-accent);
}

.shop-sig-reset {
  margin-top: 14px;
  border: 1px solid var(--shop-line);
  background: transparent;
  border-radius: 999px;
  padding: 8px 16px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.18s var(--shop-ease), color 0.18s var(--shop-ease);
}

.shop-sig-reset:hover {
  border-color: var(--shop-ink);
}

.shop-sig-note {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--shop-muted);
}

/* Miniatura do mockup, no carrinho e no resumo */
.shop-sig-thumb {
  display: block;
  width: 100%;
  max-width: 132px;
  border: 1px solid var(--shop-line);
  border-radius: 8px;
  background: #f2f2f2;
  margin-top: 10px;
}

.shop-item-sig {
  margin: 6px 0 0;
  font-size: 12.5px;
  color: var(--shop-muted);
}

.shop-item-sig strong {
  color: var(--shop-ink);
  font-weight: 700;
}

@media (max-width: 640px) {
  .shop-sig-controls {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ==================================================================== *
 * História e lista de quem saiu                                        *
 * ==================================================================== *
 * Duas secções de contexto, entre a grelha de produtos e o "coming
 * soon": primeiro o porquê (banda escura, é o centro emocional da
 * página), depois a companhia histórica (clara, tipográfica). O escuro
 * e o claro alternam para a página não ler como um bloco só. */

/* Alvos de âncora dentro da loja: o cabeçalho é sticky, por isso sem
   esta folga um salto para uma secção deixava-lhe o topo escondido por
   baixo dele. (.shop-story, .shop-dropouts e .shop-soon trazem a sua.) */
.shop-grid {
  scroll-margin-top: 110px;
}

.shop-hero-link {
  margin: -18px 0 32px;
  font-size: 14px;
  animation: shop-fade-up 0.7s 0.15s var(--shop-ease) both;
}

.shop-hero-link a {
  color: var(--shop-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--shop-line);
  padding-bottom: 2px;
  transition: border-color 0.2s var(--shop-ease);
}

.shop-hero-link a:hover {
  border-color: var(--shop-accent);
}

/* ---- A história -------------------------------------------------- */

.shop-story {
  margin-top: 84px;
  /* O cabeçalho é sticky: sem isto a âncora deixava o título por baixo. */
  scroll-margin-top: 110px;
  background: var(--shop-showcase);
  color: var(--shop-bg);
  border-radius: var(--shop-radius);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 20px 56px;
}

.shop-story .shop-eyebrow {
  color: rgba(250, 249, 245, 0.55);
}

.shop-story-title {
  font-family: var(--font-title);
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0;
}

.shop-story-body {
  max-width: 62ch;
}

.shop-story-body p {
  margin: 0 0 18px;
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(250, 249, 245, 0.78);
}

.shop-story-body p:last-child {
  margin-bottom: 0;
}

/* O fecho é a frase que segura a secção toda: sai do cinzento do resto
   e ganha a serifa itálica que a marca usa nos destaques. */
.shop-story-close {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 22px !important;
  line-height: 1.45 !important;
  color: var(--shop-bg) !important;
  border-left: 2px solid var(--shop-accent);
  padding-left: 18px;
  margin-top: 26px !important;
}

.shop-story-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 40px 0 0;
  padding-top: 32px;
  border-top: 1px solid rgba(250, 249, 245, 0.16);
}

.shop-story-stat dt {
  font-family: var(--font-title);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  color: var(--shop-bg);
}

.shop-story-stat dd {
  margin: 8px 0 0;
  font-size: 12.5px;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: rgba(250, 249, 245, 0.55);
}

/* ---- Quem saiu ---------------------------------------------------- */

.shop-dropouts {
  margin-top: 84px;
  scroll-margin-top: 110px;
}

.shop-dropouts-title {
  font-family: var(--font-title);
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 800;
  line-height: 1.04;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.shop-dropout-list {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid var(--shop-line);
  counter-reset: dropout;
}

/* Uma linha por pessoa, lida como um registo: número, nome, de onde
   saiu, o que construiu. A grelha mantém as colunas alinhadas entre
   linhas, que é o que faz isto parecer uma lista oficial e não cards. */
.shop-dropout {
  display: grid;
  grid-template-columns: 54px minmax(0, 1.1fr) minmax(0, 1.6fr) minmax(0, 0.8fr);
  align-items: baseline;
  gap: 16px;
  /* Folga à direita para a itálica serifada não encostar ao limite: a
     inclinação faz o último glifo sair para lá da caixa de texto. */
  padding: 20px 18px 20px 0;
  border-bottom: 1px solid var(--shop-line);
  transition: background 0.22s var(--shop-ease), padding-left 0.22s var(--shop-ease);
}

.shop-dropout:hover {
  background: var(--shop-paper);
  padding-left: 12px;
}

.shop-dropout-i {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  color: var(--shop-accent);
  letter-spacing: 0.04em;
}

.shop-dropout-name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.shop-dropout-left {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--shop-muted);
}

.shop-dropout-built {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 22px;
  line-height: 1.2;
  text-align: right;
}

.shop-dropouts-note {
  max-width: 68ch;
  margin: 32px 0 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--shop-muted);
}

.shop-dropouts-note strong {
  color: var(--shop-ink);
  font-weight: 700;
}

.shop-dropouts-cta {
  display: inline-flex;
  margin-top: 28px;
  text-decoration: none;
}

@media (max-width: 900px) {
  .shop-story {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 28px;
  }

  .shop-story-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 20px;
  }

  /* A linha deixa de ser uma grelha de colunas e passa a um bloco: o
     número fica na margem, o resto empilha. Com quatro colunas em 400px
     o "de onde saiu" ficava com duas palavras por linha. */
  .shop-dropout {
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: start;
    gap: 4px 12px;
    padding: 18px 0;
  }

  .shop-dropout-i {
    grid-row: 1 / 4;
    font-size: 17px;
    line-height: 1.5;
  }

  .shop-dropout-built {
    text-align: left;
    font-size: 20px;
    margin-top: 4px;
  }
}

@media (max-width: 640px) {
  .shop-story {
    margin-top: 56px;
    padding: 36px 22px;
    border-radius: 12px;
  }

  .shop-story-body p {
    font-size: 15.5px;
  }

  .shop-story-close {
    font-size: 19px !important;
    padding-left: 14px;
  }

  .shop-dropouts {
    margin-top: 56px;
  }

  .shop-dropouts-cta {
    width: 100%;
    justify-content: center;
  }
}
