﻿/* pages.css — Help, Contact, Reviews, Privacy, About */
/* โ”€โ”€ Help / Contact / Reviews pages (cloned from shoop) โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.help-page { background: #fafafa; }

.help-body {
  margin-top: 0;
  padding-top: 0.75rem;
  padding-bottom: 3rem;
}
@media (min-width: 1025px) {
  .help-body {
    padding-top: 2rem;
    padding-bottom: 5rem;
  }
}

.help-body--compact {
  margin-top: 0;
  padding-top: 0.5rem;
  padding-bottom: 3rem;
}
@media (min-width: 1025px) {
  .help-body--compact {
    padding-top: 1.5rem;
    padding-bottom: 5rem;
  }
}

/* tec-container-85 โ€” narrower container like shoop */
.tec-container-85 {
  margin-left: auto;
  margin-right: auto;
  width: 92%;
  min-width: 0;
  max-width: var(--content-max);
}
@media (min-width: 640px) {
  .tec-container-85 { width: 85%; }
}

/* Help layout: article + TOC sidebar */
.help-layout {
  display: grid;
  gap: 1rem;
}
@media (min-width: 1025px) {
  .help-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 2.5rem;
  }
  .help-layout article { order: 2; }
  .help-layout nav.help-toc { order: 1; }
}

.help-layout > * {
  min-width: 0;
}

/* TOC sidebar */
.help-toc {
  z-index: 40;
  border-radius: 1rem;
  border: 1px solid rgba(0,0,0,0.06);
  background: #fff;
  padding: 1rem;
}
@media (min-width: 1025px) {
  .help-toc {
    position: -webkit-sticky;
    position: sticky;
    top: var(--shop-header-sticky-offset);
    align-self: start;
  }
}

.help-toc__heading {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(0,0,0,0.40);
}

.help-toc__list {
  margin: 0;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.help-toc__link {
  display: block;
  border-radius: 0.5rem;
  padding: 0.375rem 0.5rem;
  font-size: 0.75rem;
  line-height: 1.375;
  color: rgba(0,0,0,0.60);
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
}
.help-toc__link:hover {
  background: rgba(0,0,0,0.04);
  color: #000;
}

.help-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Help section card */
.help-section {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  padding: 1rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.04);
  scroll-margin-top: calc(var(--shop-header-sticky-offset) + 0.5rem);
}
@media (min-width: 1025px) {
  .help-section { padding: 2rem; }
}

.help-section__title {
  overflow-wrap: break-word;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
  margin: 0;
}
@media (min-width: 1025px) {
  .help-section__title { font-size: 1.25rem; }
}

.help-section__body { padding-top: 1.25rem; }

.help-lead {
  overflow-wrap: break-word;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(0,0,0,0.60);
  margin: 0;
}
@media (min-width: 1025px) {
  .help-lead { font-size: 1rem; }
}

/* Numbered steps */
.help-steps {
  margin: 1.25rem 0 0;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.help-steps__item {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(0,0,0,0.70);
}

.help-steps__num {
  display: flex;
  height: 1.5rem;
  width: 1.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #eff6ff;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e40af;
}

/* Social profile cards */
.help-social-profiles {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .help-social-profiles { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1025px) {
  .help-social-profiles { grid-template-columns: repeat(3, 1fr); }
}

.help-social-profile {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0,0,0,0.06);
  background: #fafafa;
  padding: 0.75rem;
  text-decoration: none;
  color: #000;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.help-social-profile:hover {
  border-color: rgba(0,0,0,0.12);
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.help-social-profile__avatar {
  position: relative;
  height: 3.5rem;
  width: 3.5rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 9999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-social-profile__avatar--line {
  border-color: rgba(6,199,85,0.30);
  background: #06c755;
}

.help-social-profile__avatar-fallback {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.help-social-profile__avatar-fallback--facebook { background: #1877f2; }
.help-social-profile__avatar-fallback--instagram { background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%); }
.help-social-profile__avatar-fallback--line { background: #06c755; }
.help-social-profile__avatar-fallback--linktree { background: #43e660; color: #000; }

.help-social-profile__avatar-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.help-social-profile__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: #000;
  margin: 0;
}

.help-social-profile__badge {
  margin-top: 0.125rem;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.40);
  margin: 0.125rem 0 0;
}

/* FAQ */
.help-faq {
  margin: 0;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.help-faq__item {
  border-radius: 0.75rem;
  border: 1px solid rgba(0,0,0,0.06);
  background: #fafafa;
  padding: 1rem;
}

.help-faq__question {
  overflow-wrap: break-word;
  font-size: 0.875rem;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.help-faq__answer {
  margin: 0.5rem 0 0;
  overflow-wrap: break-word;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(0,0,0,0.60);
}

.help-note {
  margin-top: 1.25rem;
  overflow-wrap: break-word;
  font-size: 0.75rem;
  line-height: 1.625;
  color: rgba(0,0,0,0.45);
}

/* Size table */
.help-size-table__heading {
  display: block;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
}
.help-size-table__heading:first-child { margin-top: 0; }

.help-size-table-wrap {
  overflow-x: auto;
  border-radius: 0.5rem;
  border: 1px solid rgba(0,0,0,0.10);
}

.help-size-table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.875rem;
}

.help-size-table th {
  background: #f7f7f7;
  padding: 0.625rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(0,0,0,0.55);
}

.help-size-table td {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 0.625rem 0.75rem;
  color: rgba(0,0,0,0.80);
}

.help-size-tips {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(0,0,0,0.65);
}

.help-size-tips p { margin: 0; }

.help-size-tips__warning {
  font-weight: 600;
  color: #dc2626;
}

/* Inline link */
.help-inline-link {
  overflow-wrap: break-all;
  font-weight: 600;
  color: rgba(0,0,0,0.70);
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,0.20);
  text-underline-offset: 2px;
  transition: color 0.12s;
}
.help-inline-link:hover { color: #000; }

/* โ”€โ”€ Contact page โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */
.contact-page__grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 1025px) {
  .contact-page__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 1.5rem;
  }
}

.contact-page__aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-page__actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.contact-cards { display: grid; gap: 0.75rem; }

.contact-card {
  border-radius: 0.75rem;
  border: 1px solid rgba(0,0,0,0.06);
  background: #fafafa;
  padding: 1rem;
}
@media (min-width: 1025px) {
  .contact-card { padding: 1.25rem; }
}

.contact-card__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(0,0,0,0.40);
}

.contact-card__value {
  margin-top: 0.25rem;
  display: block;
  overflow-wrap: break-all;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
}

.contact-card__hint {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.625;
  color: rgba(0,0,0,0.50);
}

.contact-card--social { background: #fff; }

.contact-social-profiles {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.625rem;
}
@media (min-width: 640px) {
  .contact-social-profiles { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}
@media (min-width: 1025px) {
  .contact-social-profiles { grid-template-columns: 1fr; gap: 0.625rem; }
}

.contact-social-profiles .help-social-profile { background: #fafafa; padding: 0.875rem; }
.contact-social-profiles .help-social-profile__name { white-space: normal; overflow-wrap: break-word; font-size: 0.9375rem; }

/* Policy list */
.policy-list {
  margin: 0;
  list-style: disc;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.policy-list li {
  overflow-wrap: break-word;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(0,0,0,0.70);
}

/* CTA button */
.policy-contact-btn {
  display: inline-flex;
  margin-top: 1.5rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #000;
  padding: 0 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
}
.policy-contact-btn:hover { background: rgba(0,0,0,0.88); }
.policy-contact-btn:active { transform: scale(0.98); }

/* โ”€โ”€ Review form โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */
.review-form {
  border-radius: 1rem;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  padding: 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 1025px) {
  .review-form { padding: 1.5rem; }
}

.review-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.review-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
}

.review-form__input {
  height: 2.75rem;
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(0,0,0,0.10);
  background: #fafafa;
  padding: 0 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #000;
  outline: none;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.review-form__input:focus { border-color: rgba(0,0,0,0.20); background: #fff; }
.review-form__input:disabled { opacity: 0.45; cursor: not-allowed; }

.review-form__textarea {
  min-height: 6.5rem;
  width: 100%;
  resize: vertical;
  border-radius: 0.75rem;
  border: 1px solid rgba(0,0,0,0.10);
  background: #fafafa;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: #000;
  outline: none;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.review-form__textarea:focus { border-color: rgba(0,0,0,0.20); background: #fff; }

.review-form__counter {
  text-align: right;
  font-size: 0.75rem;
  color: rgba(0,0,0,0.45);
}

.review-form__checkbox {
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(0,0,0,0.75);
}

.review-form__error {
  font-size: 0.75rem;
  font-weight: 500;
  color: #dc2626;
}

.review-form__submit {
  display: flex;
  height: 2.75rem;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #000;
  border: 0;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.15s;
}
.review-form__submit:hover { background: rgba(0,0,0,0.88); }
.review-form__submit:disabled { opacity: 0.50; cursor: not-allowed; }

.review-thanks {
  display: flex;
  min-height: 12rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}

.review-thanks__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  margin: 0;
}

/* Star rating — shoop clone (click/half-star) */
.review-star {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
  color: #f5c400;
}

.review-star--sm {
  width: 1rem;
  height: 1rem;
}

.review-star--md {
  width: 1.75rem;
  height: 1.75rem;
}

.review-star__outline {
  display: block;
  width: 100%;
  height: 100%;
  color: rgba(0, 0, 0, 0.2);
}

.review-star__fill {
  pointer-events: none;
  position: absolute;
  inset: 0;
  color: #f5c400;
  -webkit-clip-path: inset(0 calc((1 - var(--star-fill, 0)) * 100%) 0 0);
  clip-path: inset(0 calc((1 - var(--star-fill, 0)) * 100%) 0 0);
}

.review-star__fill svg {
  display: block;
  width: 100%;
  height: 100%;
}

.review-stars-display {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
}

.review-stars-input {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.review-stars-input__star {
  position: relative;
  display: inline-flex;
}

.review-stars-input__half {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  width: 50%;
  cursor: pointer;
  border: 0;
  background: transparent;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.review-stars-input__half--left {
  left: 0;
}

.review-stars-input__half--right {
  right: 0;
}

/* Size chart images */
.help-size-charts {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .help-size-charts { grid-template-columns: repeat(2, 1fr); }
}
.help-size-chart-frame {
  overflow: hidden;
  border-radius: 0.75rem;
  background: #fff;
}
.help-size-chart-frame__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* Empty state */
.help-empty {
  border-radius: 0.75rem;
  border: 1px dashed rgba(0,0,0,0.1);
  background: #fafafa;
  padding: 2.5rem 1rem;
  text-align: center;
}
.help-empty__title {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(0,0,0,0.7);
  margin: 0;
}
.help-empty__text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(0,0,0,0.4);
  line-height: 1.6;
}

/* Contact action cards */
.contact-action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #000;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-action-link:hover {
  border-color: rgba(0,0,0,0.14);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.contact-action-link__icon {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: #fff;
  overflow: hidden;
}
.contact-action-link__icon--avatar {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  color: #fff;
}
.contact-action-link__icon--linktree {
  color: #000;
}
.contact-action-link__avatar-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.contact-action-link__avatar-img--contain {
  object-fit: contain;
  padding: 0.4rem;
}
.contact-action-link__icon-fallback {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.contact-action-link__title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
}
.contact-action-link__sub {
  display: block;
  font-size: 0.75rem;
  color: rgba(0,0,0,0.45);
  margin-top: 0.125rem;
}
.contact-card__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 0.75rem;
}
.policy-contact-btn--primary { background: #000; color: #fff; }

/* ── Policy page ──────────────────────────────────────────────────────────── */
.policy-page {
  background: #fafafa;
}

.policy-block {
  margin-top: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fafafa;
  padding: 1rem;
}

.policy-block__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.policy-block__body {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(0, 0, 0, 0.6);
}

.policy-block__body p {
  margin: 0 0 0.5rem;
}

.policy-block__body p:last-child {
  margin-bottom: 0;
}

.policy-rights {
  margin: 1.25rem 0 0;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.policy-rights li {
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fafafa;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(0, 0, 0, 0.65);
}

.policy-rights strong {
  color: #000;
}

.policy-faq {
  margin-top: 1.5rem;
}

.policy-faq__heading {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
}

.policy-faq .help-faq__question {
  font-size: 0.875rem;
}

/* ── About page layout ────────────────────────────────────────────────────── */
.about-content {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ── TOC: desktop sidebar only (matches shoop) ──────────────────────────── */
.help-toc--sidebar {
  display: none;
}

@media (min-width: 1025px) {
  .help-toc--sidebar {
    display: block;
  }
}

/* ── Social profile cards (help order section) ────────────────────────────── */
.help-social-profile__meta {
  min-width: 0;
}

.help-social-profile__avatar-line {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  background: #06c755;
}

.help-social-profile__icon {
  width: 1.5rem;
  height: 1.5rem;
}

.help-social-profile__icon--lg {
  width: 1.75rem;
  height: 1.75rem;
}

.help-social-profile__icon--img {
  object-fit: contain;
}

.help-social-profile__avatar-fallback--facebook {
  background: #1877f2;
  color: #fff;
}

.help-social-profile__avatar-fallback--instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
  color: #fff;
}

.help-social-profile__avatar-fallback--line {
  background: #06c755;
  color: #fff;
}

.help-social-profile__avatar-fallback--linktree {
  background: #43e660;
  color: #000;
}

/* Favorites page */
.favorites-page {
  padding: 1.5rem 0 2.5rem;
}

@media (min-width: 1025px) {
  .favorites-page {
    padding: 2.5rem 0 3rem;
  }
}

.favorites-page__inner {
  max-width: 72rem;
}

.favorites-page__hero {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

@media (min-width: 640px) {
  .favorites-page__hero {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 2rem;
  }
}

.favorites-page__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
}

.favorites-page__title {
  margin: 0.25rem 0 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
}

@media (min-width: 1025px) {
  .favorites-page__title {
    font-size: 1.875rem;
  }
}

.favorites-page__desc {
  margin: 0.5rem 0 0;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.55);
}

.favorites-page__count {
  margin: 0;
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.7);
}

.favorites-page__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1.5rem;
  border: 1px dashed rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
  background: #fff;
  text-align: center;
}

.favorites-page__empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: #fff8e1;
  color: #8a6500;
}

.favorites-page__empty-icon svg {
  width: 2rem;
  height: 2rem;
}

.favorites-page__empty-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
}

.favorites-page__empty-desc {
  margin: 0.5rem 0 0;
  max-width: 20rem;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.55);
}

.favorites-page__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  margin-top: 1.5rem;
  padding: 0 1.5rem;
  border-radius: 9999px;
  background: #000;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s;
}

.favorites-page__cta:hover {
  background: rgba(0, 0, 0, 0.9);
}

