/**
 * Lurking.Me pricing — product rows + tier compare grid.
 */

.shop-hero {
  padding: clamp(2.5rem, 8vw, 4rem) 0 clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
}
.shop-hero__inner {
  max-width: 40rem;
  margin: 0 auto;
}

/* Sleek lane: centred type, hairline catalog rows */

.shop-hero--sleek .shop-hero__inner {
  max-width: 34rem;
  text-align: center;
}

.shop-hero__eyeline {
  margin: 0 0 clamp(1.1rem, 3vw, 1.65rem);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.32);
}

.shop-hero--sleek .shop-hero__title {
  margin: 0 0 1rem;
  font-weight: 500;
  font-size: clamp(2rem, 5.5vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.shop-hero--sleek .shop-hero__lead {
  margin: 0 auto;
  max-width: 32rem;
  font-size: 0.9575rem;
  line-height: 1.65;
}

.shop-stack--sleek {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.35rem);
  padding-bottom: clamp(2.5rem, 8vw, 4rem);
  max-width: min(52rem, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.shop-stack--sleek .shop-card {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0a0a;
  backdrop-filter: blur(48px);
  -webkit-backdrop-filter: blur(48px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 40px rgba(0, 0, 0, 0.35);
  transition:
    border-color 0.5s ease,
    background 0.5s ease,
    box-shadow 0.5s ease;
}

/* Vanity marketplace parity: emerald rail + light sheen sweep */
.shop-stack--sleek .shop-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 2px;
  height: 100%;
  pointer-events: none;
  background: #10b981;
  border-radius: 0.875rem 0 0 0.875rem;
  transition: background 0.5s ease;
}
.shop-stack--sleek .shop-card:hover::before,
.shop-stack--sleek .shop-card:focus-within::before {
  background: #34d399;
}
.shop-stack--sleek .shop-card--guild::before {
  background: #ca8a04;
}
.shop-stack--sleek .shop-card--guild:hover::before,
.shop-stack--sleek .shop-card--guild:focus-within::before {
  background: #facc15;
}

.shop-stack--sleek .shop-card::after {
  content: '';
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 45%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0.03) 55%,
    transparent 100%
  );
  transition: transform 1s ease-in-out;
}
.shop-stack--sleek .shop-card:hover::after,
.shop-stack--sleek .shop-card:focus-within::after {
  transform: translateX(100%);
}

@media (prefers-reduced-motion: reduce) {
  .shop-stack--sleek .shop-card::after {
    transition: none;
    transform: none;
    opacity: 0;
  }
}

.shop-stack--sleek .shop-card > * {
  position: relative;
  z-index: 1;
}

.shop-stack--sleek .shop-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: #080808;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 48px rgba(0, 0, 0, 0.45);
}

.shop-stack--sleek .shop-card--lead {
  border-color: rgba(255, 255, 255, 0.12);
}

.shop-stack--sleek .shop-card__main {
  padding: clamp(1.25rem, 3.5vw, 1.65rem) clamp(1.15rem, 3vw, 1.5rem) clamp(1rem, 2.5vw, 1.25rem);
  gap: 1.35rem;
}

.shop-stack--sleek .shop-card__lead {
  gap: 1rem;
}

.shop-stack--sleek .shop-card__icon {
  display: flex;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 0.75rem;
}

.shop-stack--sleek .shop-card__icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.shop-stack--sleek .shop-card__h {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.shop-stack--sleek .shop-card__tag {
  font-size: 0.5625rem;
  letter-spacing: 0.26em;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.shop-stack--sleek .shop-card__desc {
  font-size: 0.84375rem;
  line-height: 1.6;
}

.shop-stack--sleek .shop-card__price .shop-card__usd {
  font-variant-numeric: tabular-nums;
  font-weight: 550;
  font-size: clamp(1.38rem, 3vw, 1.72rem);
  letter-spacing: -0.03em;
}

.shop-stack--sleek .shop-card__lifetime {
  opacity: 0.28;
  letter-spacing: 0.2em;
}

.shop-stack--sleek .shop-cta {
  margin-top: 1rem;
  padding: 0.58rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
}
.shop-stack--sleek .shop-cta--primary {
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
  color: rgba(250, 250, 250, 0.96);
}
.shop-stack--sleek .shop-cta--primary:hover {
  background: rgba(250, 250, 250, 0.98);
  border-color: rgba(250, 250, 250, 0.98);
  color: #0a0a0a;
  box-shadow: none;
  filter: none;
}

.shop-card__foot--sleek {
  padding: 0.85rem clamp(1.15rem, 3vw, 1.5rem) clamp(1.1rem, 2.5vw, 1.35rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 0.8rem 0.8rem;
}

.shop-stack--sleek .shop-card__foot--sleek {
  border-top-style: solid;
}

.shop-card__feats--sleek {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.shop-stack--sleek .shop-card__feats--sleek {
  opacity: 0.78;
}

.shop-stack--sleek .shop-card:hover .shop-card__feats--sleek {
  opacity: 0.92;
}

.shop-card__feats--sleek li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
}

.shop-card__feats--sleek li:not(:last-child)::after {
  content: none;
}

.shop-card__feats--sleek .shop-check svg {
  width: 0.78rem;
  height: 0.78rem;
  stroke-width: 2;
  opacity: 0.55;
}

.shop-sublink-wrap--sleek {
  justify-content: center;
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2rem) 0 clamp(0.75rem, 2vw, 1.25rem);
}
.shop-sublink--sleek {
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
  font-size: 0.8125rem;
  color: rgba(250, 250, 250, 0.38);
  padding-bottom: 0.06rem;
  border-bottom: 1px solid transparent;
}
.shop-sublink--sleek:hover {
  color: rgba(250, 250, 250, 0.88);
  border-bottom-color: rgba(250, 250, 250, 0.22);
}

@media (min-width: 900px) {
  .shop-stack--sleek .shop-bento__pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 1.35rem);
    align-items: stretch;
  }
  .shop-stack--sleek .shop-bento__pair .shop-card {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .shop-stack--sleek .shop-bento__pair .shop-card__foot {
    margin-top: auto;
  }

  /* Narrow split columns: stack price + CTAs full-width so labels aren’t clipped */
  .shop-stack--sleek .shop-bento__pair .shop-card__main {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }
  .shop-stack--sleek .shop-bento__pair .shop-card__lead {
    width: 100%;
  }
  .shop-stack--sleek .shop-bento__pair .shop-card__buy {
    width: 100%;
    min-width: 0;
    align-items: stretch;
    text-align: left;
  }
  .shop-stack--sleek .shop-bento__pair .shop-card__lifetime {
    text-align: left;
  }
  .shop-stack--sleek .shop-bento__pair .shop-cta {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .shop-stack--sleek .shop-bento__pair .shop-cart-add__btn {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 899px) {
  .shop-stack--sleek .shop-bento__pair {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2.5vw, 1.35rem);
  }
}
.shop-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.55);
  margin-bottom: 1rem;
}
.shop-eyebrow svg {
  width: 0.95rem;
  height: 0.95rem;
  opacity: 0.85;
}

.shop-hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--display, Syne, system-ui, sans-serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 5vw, 2.65rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--paper, #fafafa);
}

.shop-hero__grad {
  display: inline;
  color: inherit;
}

.shop-hero__lead {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.62;
  color: rgba(250, 250, 250, 0.58);
}
.shop-hero__lead em {
  font-style: italic;
  color: rgba(253, 250, 250, 0.88);
  font-weight: 600;
}
.shop-hero__lead strong {
  color: rgba(250, 250, 250, 0.92);
}

.shop-hero__lead-a {
  color: rgba(234, 179, 8, 0.95);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}
.shop-hero--sleek .shop-hero__lead-a:hover {
  color: #facc15;
}

.shop-stack--sleek .shop-guild-section {
  margin-top: clamp(1.25rem, 3vw, 2rem);
  padding-top: clamp(1.25rem, 3vw, 1.75rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.shop-guild-section__eyeline {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(202, 138, 4, 0.75);
}
.shop-guild-section__h {
  margin: 0 0 0.65rem;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(250, 250, 250, 0.94);
}
.shop-guild-section__lead {
  margin: 0;
  font-size: 0.9125rem;
  line-height: 1.65;
  color: rgba(250, 250, 250, 0.55);
  max-width: 52rem;
}
.shop-guild-section__lead a {
  color: rgba(234, 179, 8, 0.92);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.shop-guild-section__lead a:hover {
  color: #facc15;
}
.shop-guild-section__code {
  font-size: 0.88em;
  padding: 0.12em 0.4em;
  border-radius: 0.3em;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(250, 250, 250, 0.85);
}
.shop-cart-hint {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(250, 250, 250, 0.42);
  max-width: 20rem;
}
.shop-card--guild-addon .shop-card__main {
  padding-bottom: 1.1rem;
}

/* ---- Stacked cards ---- */

.shop-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: clamp(3rem, 10vw, 5rem);
  max-width: min(72rem, calc(100% - 2rem));
}

.shop-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #050505;
  backdrop-filter: blur(28px);
  transition:
    border-color 0.4s ease,
    background 0.4s ease,
    box-shadow 0.35s ease;
}
.shop-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(10, 10, 12, 0.98);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 26px 64px rgba(0, 0, 0, 0.5);
}

.shop-card--feature,
.shop-card--lead {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(0, 0, 0, 0.4);
}

.shop-card__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.35rem 1.35rem 1rem;
}
@media (min-width: 1200px) {
  .shop-card__main {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.85rem;
    gap: 1.75rem;
  }
}

.shop-card__lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}
@media (min-width: 900px) {
  .shop-card__lead {
    flex-direction: row;
    align-items: center;
    gap: 1.35rem;
  }
}

.shop-card__icon {
  flex-shrink: 0;
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.45s ease, border-color 0.35s ease;
}
.shop-card:hover .shop-card__icon {
  transform: scale(1.06);
}
.shop-card__icon svg {
  width: 1.65rem;
  height: 1.65rem;
}
.shop-card__icon--lite svg {
  filter: none;
}

.shop-card__dot {
  position: absolute;
  top: -0.2rem;
  right: -0.15rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: rgba(250, 250, 250, 0.9);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
}

.shop-card__titles {
  flex: 1;
  min-width: 0;
}
.shop-card__title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin-bottom: 0.35rem;
}
.shop-card__h {
  margin: 0;
  font-family: var(--display, Syne, system-ui, sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.shop-card__tag {
  padding: 0.15rem 0.42rem;
  border-radius: 0.15rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(250, 250, 250, 0.78);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.shop-card__desc {
  margin: 0;
  max-width: 28rem;
  font-size: 0.895rem;
  line-height: 1.54;
  color: rgba(250, 250, 250, 0.5);
}

.shop-card__buy {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 1200px) {
  .shop-card__buy {
    width: auto;
    min-width: 11rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    align-items: flex-end;
    text-align: right;
  }
}

.shop-card__price .shop-card__usd {
  font-family: var(--display, Syne, system-ui, sans-serif);
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-weight: 600;
  color: var(--paper);
}
.shop-card__per {
  font-size: 0.95rem;
  font-weight: 400;
  opacity: 0.45;
  margin-left: 0.2rem;
}
.shop-card__lifetime {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.53rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.2;
}
@media (min-width: 1200px) {
  .shop-card__lifetime {
    text-align: right;
  }
}

.shop-cta {
  margin-top: 0.85rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.72rem 1.35rem;
  border-radius: 1rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 0.15s ease,
    box-shadow 0.25s ease,
    filter 0.2s ease,
    background 0.2s ease;
}
@media (min-width: 1200px) {
  .shop-cta {
    width: auto;
    min-width: 12rem;
  }
}

.shop-cta:active {
  transform: translateY(2px);
}
.shop-cta--primary {
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: rgba(250, 250, 250, 0.98);
  color: #080808;
  text-decoration: none;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.shop-cta--primary:hover {
  filter: brightness(1.05);
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.shop-cta--disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.shop-card__foot {
  padding: 0.85rem 1.35rem 1.05rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.015);
}
@media (min-width: 960px) {
  .shop-card__foot:not(.shop-card__foot--split) {
    padding-left: 1.85rem;
    padding-right: 1.85rem;
  }
}

.shop-card__feats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 0.45;
  transition: opacity 0.45s ease;
}
.shop-card:hover .shop-card__feats {
  opacity: 0.92;
}

.shop-card__feats li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.865rem;
  color: rgba(250, 250, 250, 0.78);
}

.shop-check {
  display: flex;
  color: rgba(250, 250, 250, 0.75);
}
.shop-check svg {
  width: 0.82rem;
  height: 0.82rem;
  flex-shrink: 0;
}

.shop-sublink-wrap {
  display: flex;
  justify-content: flex-end;
  margin: -0.5rem 0 0;
  padding: 0 0.15rem;
}
.shop-sublink {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.32);
  text-decoration: none;
  transition: color 0.2s ease;
}
.shop-sublink:hover {
  color: rgba(250, 250, 250, 0.7);
}
.shop-sublink__ico {
  width: 0.82rem;
  height: 0.82rem;
}

/* Sleek comparison table overrides */
.shop-compare--sleek.shop-compare {
  margin-left: auto;
  margin-right: auto;
}

.shop-compare--sleek .shop-compare__eyeline {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.26);
}

.shop-compare--sleek .shop-compare__head--sleek {
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.shop-compare--sleek .shop-compare__h {
  margin: 0 0 0.75rem;
  font-weight: 550;
  font-size: clamp(1.5rem, 4.2vw, 2rem);
  letter-spacing: -0.04em;
}

.shop-compare--sleek .shop-compare__sub {
  font-size: 0.9015rem;
  line-height: 1.64;
}
.shop-compare--sleek .shop-compare__sub-a {
  color: rgba(234, 179, 8, 0.92);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.shop-compare--sleek .shop-compare__sub-a:hover {
  color: #facc15;
}

.shop-compare--sleek .shop-compare__grid {
  border-style: solid;
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.09);
}

.shop-compare--sleek .shop-compare__scroll {
  border-radius: 0;
}

.shop-compare--sleek .shop-compare__col-head {
  border-bottom-style: solid;
}

.shop-compare--sleek .shop-compare__btn {
  border-radius: 999px;
  border-width: 1px;
  padding-top: 0.62rem;
  padding-bottom: 0.62rem;
  font-weight: 600;
}

.shop-compare--sleek .shop-compare__btn--primary {
  background: transparent;
  color: rgba(250, 250, 250, 0.95);
  border-color: rgba(255, 255, 255, 0.4);
}

.shop-compare--sleek .shop-compare__btn--primary:hover {
  background: rgba(250, 250, 250, 0.98);
  color: #090909;
  border-color: rgba(250, 250, 250, 0.98);
}

@media (min-width: 900px) {
  .shop-compare--sleek .shop-compare__corner {
    border-right-style: solid;
  }
  .shop-compare--sleek .shop-compare__col-head {
    border-right-style: solid;
  }

  .shop-compare--sleek.shop-compare .shop-compare__grid {
    margin-left: auto;
    margin-right: auto;
    max-width: 58rem;
  }
}

/* Compare */

.shop-compare {
  padding-bottom: clamp(3.5rem, 12vw, 6rem);
}
.shop-compare__head {
  margin-bottom: clamp(2rem, 5vw, 2.85rem);
}
.shop-compare__h {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-size: clamp(1.85rem, 5vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--paper);
}
.shop-compare__sub {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.52;
  color: rgba(250, 250, 250, 0.45);
}

.shop-compare__scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0.35rem;
}

.shop-compare__grid {
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 0.35rem;
  overflow: hidden;
  min-width: min(100%, 44rem);
}
@media (max-width: 899px) {
  .shop-compare__scroll {
    margin: 0 -0.65rem;
    padding: 0 0.65rem calc(0.65rem + env(safe-area-inset-bottom, 0));
  }
  .shop-compare__grid {
    min-width: 40rem;
  }
}

.shop-compare__corner {
  display: none;
}
@media (min-width: 900px) {
  .shop-compare__corner {
    display: block;
    border-right: 1px dashed rgba(255, 255, 255, 0.1);
    min-height: 1px;
  }
}

@media (min-width: 900px) {
  .shop-compare__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(11rem, 1fr));
  }

  .shop-compare__grid > *:nth-child(4n) {
    border-right: none !important;
  }
}

.shop-compare__col-head {
  padding: 1.5rem 1.25rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
@media (min-width: 900px) {
  .shop-compare__col-head {
    border-right: 1px dashed rgba(255, 255, 255, 0.1);
    border-bottom: none;
  }
}
@media (min-width: 900px) {
  .shop-compare__col-head:last-of-type {
    border-right: none;
  }
}
.shop-compare__col-head--accent {
  background: rgba(255, 255, 255, 0.02);
}
.shop-compare__col-head--hot {
  background: rgba(255, 255, 255, 0.035);
}

.shop-compare__eyebrow {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.55);
}
.shop-compare__eyebrow--mute {
  color: rgba(255, 255, 255, 0.35);
}

.shop-compare__plan {
  margin: 0.4rem 0 0;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--paper);
}

.shop-compare__blurb {
  margin: 0.6rem 0 1.1rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: rgba(250, 250, 250, 0.4);
}

.shop-compare__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.6rem 1rem;
  border-radius: 0.72rem;
  font-size: 0.53rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.shop-compare__btn--ghost {
  border: 2px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--paper);
}
.shop-compare__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.07);
}
.shop-compare__btn--primary {
  border: 2px solid rgba(255, 255, 255, 0.88);
  background: rgba(250, 250, 250, 0.98);
  color: #080808;
}
.shop-compare__btn--primary:hover {
  background: #ffffff;
}

/* Feature rows */

@media (min-width: 900px) {
  .shop-crow.shop-crow--row {
    display: contents;
  }
}

@media (min-width: 900px) {
  .shop-crow__label,
  .shop-crow__cell {
    padding: 1rem 1.25rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    border-right: 1px dashed rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    font-size: 0.835rem;
    font-weight: 500;
    color: rgba(255, 250, 250, 0.48);
    transition:
      background 0.2s ease,
      color 0.2s ease;
  }

}

.shop-crow__cell--accent {
  background: rgba(255, 255, 255, 0.015);
}

.shop-cval {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.shop-cval--yes svg,
.shop-cval--no svg {
  width: 0.68rem;
  height: 0.68rem;
}
.shop-cval--yes {
  color: rgba(250, 250, 250, 0.85);
}
.shop-cval--no {
  color: rgba(255, 255, 255, 0.1);
}

.shop-cval--text {
  font-family: ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(250, 250, 250, 0.32);
}

.shop-crow__cell--accent .shop-cval--text {
  color: rgba(250, 250, 250, 0.5);
}

.shop-compare__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

.shop-compare__meta span {
  letter-spacing: 0.42em;
}
.shop-compare__meta::before,
.shop-compare__meta::after {
  content: "";
  flex: 0 0 3rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* Sleek comparison: unify grid lines on narrow viewports */
.shop-compare--sleek .shop-crow__label,
.shop-compare--sleek .shop-crow__cell {
  border-style: solid;
}

.shop-compare--sleek .shop-compare__btn--ghost {
  border-radius: 999px;
  border-width: 1px;
  font-weight: 600;
}

.shop-compare--sleek .shop-compare__meta {
  justify-content: center;
}

/* Cart page + pricing “Add to cart” helpers */
.shop-cart-add {
  margin-top: 0.55rem;
}
.shop-cart-add__btn {
  font-size: 0.72rem !important;
  padding: 0.35rem 0.85rem !important;
}
.shop-cart-hint {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  line-height: 1.35;
  opacity: 0.72;
  font-weight: 500;
}
.cart-page .shop-cart-flash {
  margin: 0 0 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  font-size: 0.88rem;
}
.cart-page .shop-cart-flash--ok {
  background: rgba(52, 211, 153, 0.12);
  color: rgba(220, 252, 231, 0.95);
}
.cart-page .shop-cart-flash--err {
  background: rgba(248, 113, 113, 0.12);
  color: rgba(254, 226, 226, 0.95);
}
.cart-page .shop-cart-lines {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cart-page .shop-cart-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cart-page .shop-cart-line__main {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.cart-page .shop-cart-line__label {
  font-weight: 600;
}
.cart-page .shop-cart-line__detail {
  font-size: 0.78rem;
  opacity: 0.65;
}
.cart-page .shop-cart-line__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}
.cart-page .shop-cart-line__rm-btn {
  font-size: 0.72rem !important;
  padding: 0.25rem 0.55rem !important;
}
.cart-page .shop-cart-total {
  margin-top: 1rem;
}
.cart-page .shop-cart-checkout {
  margin-top: 1.25rem;
}
.cart-page .shop-cart-muted {
  opacity: 0.65;
}
.cart-page .shop-cart-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.35rem;
}
.cart-page .shop-cart-clear-form {
  margin: 0;
}
.cart-page .shop-cart-clear-all {
  font-size: 0.78rem !important;
  padding: 0.35rem 0.75rem !important;
}
