/* ── Shop (Amazon-style grid) ── */

.btn--outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-brown-800);
  background: var(--color-surface);
  border: 1px solid rgba(var(--rgb-accent), 0.4);
  border-radius: 100px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--transition);
}

.btn--outline:hover {
  background: var(--color-brown-50);
  border-color: var(--color-brown-500);
  transform: translateY(-1px);
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.shop-toolbar__count {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.shop-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.35s var(--transition), transform 0.35s var(--transition);
  height: 100%;
}

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

.shop-card__image {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--color-bg-warm) 0%, var(--color-brown-50) 100%);
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--color-brown-50);
}

.shop-card__image svg {
  width: 72px;
  height: 72px;
  color: var(--color-brown-700);
}

.shop-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.shop-card__title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-brown-900);
  line-height: 1.45;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-card__stars {
  font-size: 0.75rem;
  color: #B8860B;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.shop-card__price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-brown-800);
  margin-bottom: 4px;
}

.shop-card__price-note {
  font-size: 0.6875rem;
  color: var(--color-text-light);
  margin-bottom: 14px;
}

.shop-card__buy {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  padding: 10px 16px;
  font-size: 0.8125rem;
}

.shop-banner {
  margin-top: 48px;
  padding: 32px;
  background: var(--accent-banner);
  border-radius: var(--radius-lg);
  color: var(--color-bg-warm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.shop-banner__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.shop-banner__text {
  font-size: 0.875rem;
  opacity: 0.85;
}

/* ── Checkout ── */

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.checkout-summary {
  padding: 32px;
  background: var(--color-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.checkout-summary__label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brown-500);
  margin-bottom: 16px;
}

.checkout-item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-brown-50);
}

.checkout-item__icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brown-50);
  border-radius: var(--radius-sm);
  font-size: 2rem;
}

.checkout-item__icon svg {
  width: 36px;
  height: 36px;
  color: var(--color-brown-700);
}

.checkout-item__name {
  font-weight: 500;
  color: var(--color-brown-900);
  margin-bottom: 4px;
}

.checkout-item__meta {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 8px;
}

.checkout-total__label {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.checkout-total__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-brown-800);
}

.checkout-form {
  padding: 32px;
  background: var(--color-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.checkout-form__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-brown-900);
  margin-bottom: 24px;
}

.checkout-field {
  margin-bottom: 18px;
}

.checkout-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-brown-700);
  margin-bottom: 6px;
}

.checkout-field input,
.checkout-field select {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 0.9375rem;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  background: var(--color-bg-warm);
  color: var(--color-text);
}

.checkout-field input:focus,
.checkout-field select:focus {
  outline: none;
  border-color: var(--color-brown-500);
  box-shadow: 0 0 0 3px var(--border-subtle);
}

.checkout-pay-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.checkout-pay-btn {
  padding: 14px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-brown-800);
  background: var(--color-bg-warm);
  transition: border-color 0.3s, background 0.3s;
}

.checkout-pay-btn.is-selected {
  border-color: var(--color-brown-700);
  background: var(--color-brown-50);
}

.checkout-note {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-top: 16px;
  line-height: 1.6;
}

.checkout-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.checkout-success.is-visible {
  display: block;
}

.checkout-success__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

/* ── About hero + team drawer ── */

.page-hero__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}

.page-hero__action {
  flex-shrink: 0;
  padding-bottom: 8px;
}

.team-drawer {
  position: fixed;
  inset: 0;
  z-index: 1600;
  pointer-events: none;
  visibility: hidden;
}

.team-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.team-drawer__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-modal);
  opacity: 0;
  transition: opacity 0.4s var(--transition);
  z-index: 1;
}

.team-drawer.is-open .team-drawer__overlay {
  opacity: 1;
}

.team-drawer__panel {
  --team-drawer-width: min(480px, 100vw);
  position: absolute;
  top: 0;
  right: 0;
  width: var(--team-drawer-width);
  height: 100%;
  background: var(--color-surface);
  box-shadow: -8px 0 40px rgba(var(--rgb-theme), 0.12);
  transform: translateX(100%);
  transition: transform 0.45s var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 3;
}

.team-drawer.is-open .team-drawer__panel {
  transform: translateX(0);
}

.team-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 18px;
  border-bottom: 1px solid var(--color-brown-50);
}

.team-drawer__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-brown-900);
}

.team-drawer__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-text-muted);
  transition: background 0.3s;
}

.team-drawer__close:hover {
  background: var(--color-brown-50);
}

.team-drawer__list {
  flex: 1;
  overflow-y: auto;
  padding: 16px 18px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.team-member {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 168px;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-surface) 55%);
  overflow: hidden;
  transition: box-shadow 0.35s var(--transition), transform 0.35s var(--transition);
}

.team-member:hover {
  box-shadow: 0 10px 28px rgba(var(--rgb-theme), 0.1);
  transform: translateY(-2px);
}

.team-member__photo {
  width: 100%;
  height: 100%;
  min-height: 168px;
  padding: 0;
  border: none;
  border-radius: 0;
  overflow: hidden;
  background: var(--color-brown-50);
  position: relative;
}

.team-member__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(255,255,255,0.08));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s;
}

.team-member__photo:hover::after,
.team-member__photo:focus-visible::after {
  opacity: 1;
}

.team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.55s var(--transition);
}

.team-member__photo:hover img,
.team-member__photo:focus-visible img {
  transform: scale(1.05);
}

.team-member__photo:focus-visible {
  outline: 2px solid var(--color-brown-500);
  outline-offset: -2px;
}

.team-member__identity {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 16px;
  text-align: left;
}

.team-member__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-brown-900);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Member bio — slides left out from behind the photo column */
.member-bio {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  visibility: hidden;
}

.member-bio.is-open {
  pointer-events: auto;
  visibility: visible;
}

.member-bio__panel {
  --team-drawer-width: min(480px, 100vw);
  position: absolute;
  top: 0;
  right: var(--team-drawer-width);
  width: min(400px, calc(100vw - var(--team-drawer-width)));
  max-width: 400px;
  height: 100%;
  background: var(--color-surface);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* tucked under the team list (behind photos), then slides left into view */
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: auto;
}

.member-bio.is-open .member-bio__panel {
  transform: translateX(0);
}

.member-bio__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text-muted);
  font-size: 1.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.member-bio__close:hover {
  background: #fff;
  color: var(--color-brown-800);
}

.member-bio__media {
  flex: 0 0 42%;
  min-height: 220px;
  overflow: hidden;
  background: var(--color-brown-50);
}

.member-bio__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.04);
  transition: transform 0.7s var(--transition);
}

.member-bio.is-open .member-bio__photo {
  transform: scale(1);
}

.member-bio__content {
  flex: 1;
  overflow-y: auto;
  padding: 28px 28px 36px;
}

.member-bio__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-brown-500);
  margin-bottom: 10px;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.45s 0.12s var(--transition), transform 0.45s 0.12s var(--transition);
}

.member-bio__name {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-brown-900);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateX(22px);
  transition: opacity 0.45s 0.18s var(--transition), transform 0.45s 0.18s var(--transition);
}

.member-bio__role {
  font-size: 0.875rem;
  color: var(--color-brown-500);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateX(22px);
  transition: opacity 0.45s 0.24s var(--transition), transform 0.45s 0.24s var(--transition);
}

.member-bio__text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  text-align: left;
  opacity: 0;
  transform: translateX(22px);
  transition: opacity 0.45s 0.3s var(--transition), transform 0.45s 0.3s var(--transition);
}

.member-bio.is-open .member-bio__eyebrow,
.member-bio.is-open .member-bio__name,
.member-bio.is-open .member-bio__role,
.member-bio.is-open .member-bio__text {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 720px) {
  .member-bio__panel {
    --team-drawer-width: 46vw;
    right: var(--team-drawer-width);
    width: min(54vw, 340px);
    max-width: none;
  }
}

@media (max-width: 480px) {
  .team-drawer__panel {
    width: 100vw;
    --team-drawer-width: 100vw;
  }

  .team-member {
    min-height: 148px;
  }

  .team-member__photo {
    min-height: 148px;
  }

  /* Rise above the full-width drawer; emerge from photo side toward the left */
  .member-bio__panel {
    right: auto;
    left: 0;
    width: min(90vw, 360px);
    max-width: none;
    z-index: 4;
    transform: translateX(42%);
    opacity: 0;
    box-shadow: 8px 0 36px rgba(0, 0, 0, 0.14);
  }

  .member-bio.is-open .member-bio__panel {
    transform: translateX(0);
    opacity: 1;
  }

  .member-bio__media {
    flex-basis: 36%;
    min-height: 180px;
  }
}

/* VIP subscribe modal */
.vip-modal {
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  visibility: hidden;
}

.vip-modal.is-open {
  pointer-events: auto;
  visibility: visible;
}

.vip-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 24, 18, 0.45);
  opacity: 0;
  transition: opacity 0.35s var(--transition);
}

.vip-modal.is-open .vip-modal__overlay {
  opacity: 1;
}

.vip-modal__panel {
  position: relative;
  z-index: 1;
  width: min(400px, 100%);
  max-height: min(90vh, 680px);
  overflow-y: auto;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  padding: 32px 28px 28px;
  transform: translateY(14px) scale(0.98);
  opacity: 0;
  transition: transform 0.35s var(--transition), opacity 0.35s var(--transition);
}

.vip-modal.is-open .vip-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.vip-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--color-text-muted);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vip-modal__close:hover {
  background: var(--color-brown-50);
}

.vip-modal__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--color-brown-900);
  margin-bottom: 20px;
}

.vip-modal__field {
  margin-bottom: 16px;
}

.vip-modal__field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-brown-700);
  margin-bottom: 6px;
}

.vip-modal__field input {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 0.9375rem;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  background: var(--color-bg-warm);
  color: var(--color-text);
}

.vip-modal__field input:focus {
  outline: none;
  border-color: var(--color-brown-500);
  box-shadow: 0 0 0 3px var(--border-subtle);
}

.vip-modal__error {
  font-size: 0.8125rem;
  color: #b33a3a;
  margin-bottom: 12px;
}

.vip-modal__submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.vip-modal__pay,
.vip-modal__success {
  text-align: center;
}

.vip-modal__pay-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-brown-900);
  margin-bottom: 6px;
}

.vip-modal__pay-hint {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 18px;
}

.vip-modal__qr {
  display: block;
  width: min(240px, 100%);
  height: auto;
  margin: 0 auto 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.vip-modal__success-icon {
  width: 56px;
  height: 56px;
  margin: 8px auto 16px;
  border-radius: 50%;
  background: var(--color-brown-50);
  color: var(--color-brown-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.vip-modal__success-text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.pricing-card__yearly-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
}

/* ── Reviews masonry ── */

.reviews-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  max-width: 100%;
}

.reviews-masonry .review-bubble {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  max-width: none;
  margin: 0;
}

.review-bubble--s4 { grid-column: span 4; }
.review-bubble--s5 { grid-column: span 5; }
.review-bubble--s6 { grid-column: span 6; }
.review-bubble--s7 { grid-column: span 7; }
.review-bubble--s8 { grid-column: span 8; }

.review-bubble--tilt-l { transform: rotate(-1.5deg); }
.review-bubble--tilt-r { transform: rotate(1.2deg); }
.review-bubble--tilt-none { transform: rotate(0); }

.review-bubble--sm { padding: 16px 18px; }
.review-bubble--sm .review-bubble__text { font-size: 0.875rem; }

.review-bubble--lg { padding: 24px 26px; }
.review-bubble--lg .review-bubble__text {
  font-size: 1.05rem;
  line-height: 1.75;
}

.review-bubble__tail { display: none; }

.reviews-section {
  padding: 100px 0 120px;
}

.reviews-cloud {
  min-height: auto;
  max-width: none;
}

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

  .page-hero__row {
    grid-template-columns: 1fr;
  }

  .page-hero__action {
    padding-bottom: 0;
  }

  .review-bubble--s4,
  .review-bubble--s5,
  .review-bubble--s6,
  .review-bubble--s7,
  .review-bubble--s8 {
    grid-column: span 12;
  }

  .review-bubble--tilt-l,
  .review-bubble--tilt-r {
    transform: none;
  }
}

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

  .shop-card__image { padding: 0; }
  .shop-card__image svg { width: 48px; height: 48px; }
}

/* ── Buy modal ── */

.buy-modal {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  visibility: hidden;
}

.buy-modal.is-open {
  pointer-events: auto;
  visibility: visible;
}

.buy-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 24, 18, 0.45);
  opacity: 0;
  transition: opacity 0.35s var(--transition);
}

.buy-modal.is-open .buy-modal__overlay {
  opacity: 1;
}

.buy-modal__panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(92vh, 820px);
  overflow-y: auto;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  transition: transform 0.35s var(--transition), opacity 0.35s var(--transition);
}

.buy-modal.is-open .buy-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.buy-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text-muted);
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buy-modal__hero {
  position: relative;
  aspect-ratio: 1.35;
  background: var(--color-brown-50);
  overflow: hidden;
  touch-action: pan-y;
}

.buy-modal__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s var(--transition);
}

.buy-modal__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.buy-modal__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.buy-modal__arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-brown-900);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13);
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.2s;
}

.buy-modal__arrow:hover {
  background: var(--color-surface);
  transform: translateY(-50%) scale(1.05);
}

.buy-modal__arrow span {
  font-size: 1.8rem;
  line-height: 0.8;
  transform: translateY(-1px);
}

.buy-modal__arrow--prev { left: 12px; }
.buy-modal__arrow--next { right: 12px; }

.buy-modal__dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 1;
  display: flex;
  gap: 7px;
  padding: 7px 9px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.82);
  transform: translateX(-50%);
  backdrop-filter: blur(6px);
}

.buy-modal__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 50%;
  background: rgba(47, 38, 28, 0.3);
  transition: width 0.25s, background 0.25s;
}

.buy-modal__dot.is-active {
  width: 20px;
  border-radius: 100px;
  background: var(--color-brown-800);
}

@media (prefers-reduced-motion: reduce) {
  .buy-modal__track { transition: none; }
}

.buy-modal__body {
  padding: 26px 30px 32px;
}

.buy-modal__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--color-brown-900);
  margin-bottom: 4px;
}

.buy-modal__price {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--color-brown-800);
  margin-bottom: 20px;
}

.buy-modal__field {
  margin-bottom: 18px;
}

.buy-modal__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-brown-700);
  margin-bottom: 8px;
}

.buy-modal__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.buy-modal__option {
  padding: 8px 14px;
  font: inherit;
  font-size: 0.8125rem;
  cursor: pointer;
  border: 1px solid var(--border-medium);
  border-radius: 100px;
  background: var(--color-bg-warm);
  color: var(--color-brown-800);
  transition: border-color 0.2s, background 0.2s;
}

.buy-modal__option.is-selected,
.buy-modal__option:hover {
  border-color: var(--color-brown-700);
  background: var(--color-brown-50);
}

.buy-modal__shipping {
  padding: 0;
  margin: 0;
  border: 0;
}

.buy-modal__shipping-title {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-brown-900);
}

.buy-modal__shipping .buy-modal__field {
  margin-bottom: 14px;
}

.buy-modal__field input {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 0.9375rem;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  background: var(--color-bg-warm);
  color: var(--color-text);
}

.buy-modal__field input:focus {
  outline: none;
  border-color: var(--color-brown-500);
  box-shadow: 0 0 0 3px var(--border-subtle);
}

.buy-modal__error {
  font-size: 0.8125rem;
  color: #b33a3a;
  margin-bottom: 12px;
}

.buy-modal__submit {
  width: 100%;
  justify-content: center;
}

@media (max-width: 600px) {
  .buy-modal { padding: 14px; }

  .buy-modal__panel {
    max-height: 94vh;
  }

  .buy-modal__hero { aspect-ratio: 1.1; }

  .buy-modal__body {
    padding: 22px 24px 28px;
  }

  .buy-modal__title { font-size: 1.35rem; }
  .buy-modal__price { font-size: 1.5rem; }
}

.buy-modal__pay {
  padding: 40px 24px 28px;
  text-align: center;
}

.buy-modal__pay-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-brown-900);
  margin-bottom: 6px;
}

.buy-modal__pay-hint {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.buy-modal__qr {
  display: block;
  width: min(260px, 100%);
  height: auto;
  margin: 0 auto 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

/* ── About entry guide ── */

.about-guide-active .page-hero__action {
  position: relative;
  z-index: 5;
}

.about-guide-active #teamDrawerOpen {
  animation: about-guide-pulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(var(--rgb-accent), 0.45);
}

@keyframes about-guide-pulse {
  0% { box-shadow: 0 0 0 0 rgba(var(--rgb-accent), 0.4); transform: scale(1); }
  70% { box-shadow: 0 0 0 14px rgba(var(--rgb-accent), 0); transform: scale(1.03); }
  100% { box-shadow: 0 0 0 0 rgba(var(--rgb-accent), 0); transform: scale(1); }
}

.about-guide-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 100px;
  background: rgba(var(--rgb-theme), 0.18);
  backdrop-filter: blur(10px);
  font-size: 0.8125rem;
  letter-spacing: 0;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.about-guide-hint::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.about-guide-hint[hidden] {
  display: none;
}
