/* Shared page heading used by wishlist / account / checkout */
.page-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 38px;
}
.page-title h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.4rem, 3.6vw, 3.6rem);
  letter-spacing: -0.02em;
  line-height: 1;
}
.page-title h1 span {
  color: #a59b92;
  font-size: 0.38em;
  font-weight: 400;
  letter-spacing: -0.03em;
}
.page-title > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 6px;
  color: #78695d;
  font-size: 0.83rem;
  text-decoration: none;
}
.ghost-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 15px;
  border: 1px solid #ddd1c4;
  background: #fff;
  color: #4a3f35;
  font: 600 0.78rem var(--sans);
  text-decoration: none;
  cursor: pointer;
}
.ghost-button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------- Wishlist ---------- */
.wishlist-page {
  padding: 56px 0 104px;
  background: #fcfaf7;
}
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.wishlist-grid .product-card__image {
  height: 300px;
}
.product-card__heart.is-active {
  color: #f34672;
}
.product-card__discount {
  padding: 3px 8px;
  border-radius: 4px;
  background: #e6f4ea;
  color: #1e7d3c;
  font-size: 0.68rem;
  font-weight: 700;
}
.wishlist-add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
  padding: 11px;
  border: 1px solid #ddd1c4;
  background: #fff;
  color: #251b14;
  font: 600 0.74rem var(--sans);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
}
.wishlist-add-cart:hover {
  background: #251b14;
  color: #fff;
  border-color: #251b14;
}
.wishlist-card__actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.wishlist-card__actions .wishlist-add-cart {
  flex: 1;
  margin-top: 0;
  border: 0;
  background: #251b14;
  color: var(--accent);
}
.wishlist-card__actions .wishlist-add-cart:hover {
  background: #3a2c1c;
  color: var(--accent);
}
.wishlist-card__actions .product-card__heart {
  position: static;
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 0;
  border: 1px solid var(--line);
  box-shadow: none;
}
.wishlist-card__actions .product-card__heart:hover {
  color: #f34672;
  border-color: #f34672;
  transform: none;
}

/* ---------- Account shell ---------- */
.account-page {
  padding: 56px 0 104px;
  background: #fcfaf7;
}
.account-layout {
  display: grid;
  grid-template-columns: 264px 1fr;
  align-items: start;
  gap: 40px;
}
.account-nav {
  padding: 26px;
  background: #fff;
  border: 1px solid #eadfd3;
}
.account-nav__profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.account-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 0;
  background: #f1e7da;
  color: #956315;
  font-weight: 700;
  font-size: 0.85rem;
}
.account-nav__profile strong {
  display: block;
  font-size: 0.9rem;
}
.account-nav__profile small {
  color: #a59b92;
  font-size: 0.75rem;
}
.account-nav nav {
  display: flex;
  flex-direction: column;
}
.account-nav a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 4px;
  color: #5f5349;
  font-size: 0.87rem;
  text-decoration: none;
}
.account-nav a:hover {
  color: var(--accent);
}
.account-nav a.is-current {
  color: var(--ink);
  font-weight: 700;
}
.account-nav__logout {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: #a5493f;
}

.account-panel {
  padding: 34px;
  background: #fff;
  border: 1px solid #eadfd3;
}
.account-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 20px;
}
.account-panel__header:not(:first-child) {
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.account-panel__header h2 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}
.account-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.account-card {
  padding: 18px;
  background: var(--wash);
  border: 1px solid var(--line);
}
.account-card__tag {
  display: inline-block;
  margin: 0 0 10px;
  padding: 3px 9px;
  background: #f1e7da;
  color: #956315;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.account-card p {
  margin: 0 0 10px;
  color: #5f5349;
  font-size: 0.85rem;
  line-height: 1.6;
}
.account-card__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #8a7b72;
  font-size: 0.8rem;
}
.reward-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  background: linear-gradient(120deg, #f6ecd8, #fbf8f3);
  border: 1px solid #eee0c8;
  color: #7a5a17;
}
.reward-banner strong {
  display: block;
  font-size: 1.1rem;
}
.reward-banner span {
  color: #93855f;
  font-size: 0.83rem;
}

/* ---------- Orders ---------- */
.order-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
}
.order-tabs button,
.order-tabs a {
  display: inline-block;
  padding: 9px 16px;
  border: 1px solid #ddd1c4;
  background: #fff;
  color: #5f5349;
  font: 600 0.78rem var(--sans);
  text-decoration: none;
  cursor: pointer;
}
.order-tabs button.is-active,
.order-tabs a.is-active {
  background: #251b14;
  border-color: #251b14;
  color: #fff;
}
.order-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.order-row {
  display: grid;
  grid-template-columns: 76px 1fr auto auto auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
}
.order-row img {
  width: 76px;
  height: 88px;
  object-fit: cover;
  object-position: top;
  background: #f2ece5;
}
.order-row h3 {
  margin: 5px 0 0;
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}
.order-row h3 span {
  color: #a59b92;
  font-size: 0.78rem;
  font-weight: 400;
}
.order-row__meta {
  margin: 8px 0 0;
  color: #a59b92;
  font-size: 0.78rem;
}
.order-row__price {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 700;
}
.status-pill + .status-pill {
  margin-left: 8px;
}
.status-pill--processing {
  background: #fdf0da;
  color: #9c6a17;
}
.status-pill--delivered {
  background: #e6f4ea;
  color: #1e7d3c;
}
.status-pill--cancelled {
  background: #fbe9e7;
  color: #c0392b;
}
.status-pill--pending {
  background: #eee;
  color: #6b6b6b;
}
.status-pill--shipped {
  background: #e3edfb;
  color: #2a5ca8;
}
.account-empty {
  padding: 30px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- Track order ---------- */
.track-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.track-header h2 {
  margin: 6px 0;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}
.track-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.track-timeline li {
  position: relative;
  display: flex;
  gap: 16px;
  padding-bottom: 30px;
  padding-left: 2px;
}
.track-timeline li:not(:last-child):before {
  content: "";
  position: absolute;
  left: 12px;
  top: 26px;
  bottom: 0;
  width: 1px;
  background: var(--line);
}
.track-timeline__dot {
  display: grid;
  place-items: center;
  flex: none;
  width: 25px;
  height: 25px;
  border-radius: 0;
  background: #f1e7da;
  color: #d8cabb;
}
.track-timeline li.is-done .track-timeline__dot {
  background: #251b14;
  color: #fff;
}
.track-timeline p {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 0.92rem;
}
.track-timeline time {
  color: #a59b92;
  font-size: 0.76rem;
}
.rate-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding: 22px;
  background: var(--wash);
  border: 1px solid var(--line);
}
.rate-banner__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 0;
  background: #fdf0da;
  color: #e0a51c;
}
.rate-banner strong {
  display: block;
  font-size: 0.95rem;
}
.rate-banner span {
  color: #a59b92;
  font-size: 0.8rem;
}
.rate-banner__stars {
  display: flex;
  gap: 3px;
  margin-left: auto;
  color: #d8cabb;
}

/* ---------- Auth ---------- */
.auth-page {
  padding: 64px 0 100px;
  background: #fcfaf7;
}
.auth-layout {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: stretch;
  min-height: 600px;
  background: #eae4e1;
}
.auth-image {
  overflow: hidden;
}
.auth-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.auth-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 9%;
  background: #fff;
}
.auth-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}
.auth-tabs button {
  padding: 0 0 14px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  color: #a59b92;
  font: 600 0.88rem var(--sans);
  cursor: pointer;
  margin-right: 28px;
}
.auth-tabs button.is-active {
  border-color: #251b14;
  color: var(--ink);
}
.auth-form h1 {
  margin: 6px 0 28px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  letter-spacing: -0.02em;
}
.auth-form label {
  display: block;
  margin-bottom: 18px;
}
.auth-form label > span {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  color: #8a7b72;
  font-size: 0.8rem;
}
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"],
.auth-form input[type="tel"] {
  width: 100%;
  height: 48px;
  padding: 0 15px;
  border: 1px solid #ddd1c4;
  font: inherit;
  color: var(--ink);
}
.auth-form__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  font-size: 0.82rem;
}
.auth-form__row .checkbox {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #5f5349;
}
.auth-form__row a {
  color: #8a7b72;
  text-decoration: none;
}
.auth-submit {
  width: 100%;
  justify-content: center;
  gap: 10px;
}
.auth-legal {
  margin-top: 26px;
  color: #a59b92;
  font-size: 0.76rem;
  line-height: 1.6;
}
.auth-legal a {
  color: #8a7b72;
}
.auth-error {
  margin: 0 0 22px;
  padding: 12px 14px;
  border: 1px solid #f0b8b8;
  background: #fdf1f1;
  color: #a3282c;
  font-size: 0.85rem;
}
.auth-success {
  margin: 0 0 22px;
  padding: 12px 14px;
  border: 1px solid #bfe0c4;
  background: #f0f9f1;
  color: #1e6b2c;
  font-size: 0.85rem;
}
.auth-hint {
  margin: 14px 0 0;
  color: #a59b92;
  font-size: 0.76rem;
}

/* ---------- Checkout ---------- */
.checkout-page {
  padding: 56px 0 104px;
  background: #fcfaf7;
}
.checkout-steps {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}
.checkout-steps li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a59b92;
  font-size: 0.83rem;
}
.checkout-steps li span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 0;
  background: var(--wash);
  border: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 700;
}
.checkout-steps li.is-active {
  color: var(--ink);
  font-weight: 700;
}
.checkout-steps li.is-active span {
  background: #251b14;
  border-color: #251b14;
  color: #fff;
}
.checkout-steps li:not(:last-child):after {
  content: "";
  width: 32px;
  height: 1px;
  margin-left: 8px;
  background: var(--line);
  align-self: center;
}
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  align-items: start;
  gap: 50px;
}
.checkout-block {
  padding: 28px;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid #eadfd3;
}
.checkout-block h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  font-size: 1.02rem;
  letter-spacing: -0.03em;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.form-grid label {
  display: block;
  color: #8a7b72;
  font-size: 0.78rem;
}
.form-grid label.span-2 {
  grid-column: span 2;
}
.form-grid input {
  display: block;
  width: 100%;
  height: 46px;
  margin-top: 7px;
  padding: 0 13px;
  border: 1px solid #ddd1c4;
  font: inherit;
  color: var(--ink);
}
.payment-options {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}
.payment-option {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 1;
  padding: 14px;
  border: 1px solid #ddd1c4;
  color: #5f5349;
  font-size: 0.83rem;
  cursor: pointer;
}
.payment-option.is-selected {
  border-color: #251b14;
  color: var(--ink);
  background: var(--wash);
}
.payment-option input {
  margin: 0;
}
.payment-option.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cod-note {
  margin: -12px 0 22px;
  color: #a5493f;
  font-size: 0.78rem;
}
.cod-confirm {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: -6px 0 22px;
  padding: 14px;
  background: var(--wash);
  border: 1px solid #ddd1c4;
  color: #5f5349;
  font-size: 0.8rem;
  line-height: 1.45;
  cursor: pointer;
}
.cod-confirm input {
  margin-top: 2px;
  flex-shrink: 0;
}
.order-confirmed-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.order-confirmed-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: #251b14;
  color: #fff;
  border-radius: 50%;
}
.cod-note-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cod-note-block p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}
.points-hint {
  margin: 0 0 16px;
  color: #5f5349;
  font-size: 0.85rem;
}
.checkout-page .checkout-button {
  width: 100%;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  font: 600 0.9rem var(--sans);
}
.checkout-summary-items {
  margin-bottom: 22px;
}
.checkout-summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.checkout-summary-item img {
  width: 52px;
  height: 60px;
  object-fit: cover;
  object-position: top;
  background: #f2ece5;
}
.checkout-summary-item div {
  flex: 1;
}
.checkout-summary-item p {
  margin: 0;
  font-size: 0.85rem;
}
.checkout-summary-item small {
  color: #a59b92;
  font-size: 0.74rem;
}
.checkout-summary-item span {
  font-weight: 700;
  font-size: 0.87rem;
}

/* ---------- Legal / static pages ---------- */
.legal-page {
  padding: 70px 0 110px;
  background: #fff;
}
.legal-shell {
  max-width: 760px;
}
.legal-page h1 {
  margin: 8px 0 4px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.3rem, 3.6vw, 3.2rem);
  letter-spacing: -0.02em;
}
.legal-updated {
  color: #a59b92;
  font-size: 0.82rem;
  margin: 0 0 40px;
}
.legal-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 46px;
}
.legal-highlights > div {
  padding: 22px;
  background: var(--wash);
  border: 1px solid var(--line);
}
.legal-highlights svg {
  color: var(--accent);
}
.legal-highlights h3 {
  margin: 14px 0 6px;
  font-size: 0.95rem;
}
.legal-highlights p {
  margin: 0;
  color: #7d7169;
  font-size: 0.83rem;
  line-height: 1.6;
}
.legal-page section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.legal-page section h2 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}
.legal-page section p {
  margin: 0;
  color: #5f5349;
  font-size: 0.92rem;
  line-height: 1.75;
}
.legal-page section a {
  color: var(--accent);
}

/* ---------- Blog ---------- */
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.blog-card:hover {
  border-color: #d8cabb;
  box-shadow: 0 24px 44px -26px rgba(36, 25, 15, 0.28);
}
.blog-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blog-card__body {
  padding: 18px 20px 22px;
}
.blog-card__date {
  color: #a59b92;
  font-size: 0.78rem;
  margin: 0 0 6px;
}
.blog-card__body h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.blog-card__body p {
  margin: 0;
  color: #7d7169;
  font-size: 0.87rem;
  line-height: 1.6;
}
.blog-post__image {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin: 24px 0;
}

/* ---------- Size guide ---------- */
.size-guide-page {
  background: var(--wash);
}
.size-guide-hero {
  padding: 56px 0;
  background: #430003;
  text-align: center;
}
.size-guide-hero .store-kicker {
  color: #e8c9a0;
}
.size-guide-hero h1 {
  margin: 8px 0 0;
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  letter-spacing: -0.02em;
}
.size-guide-shell {
  max-width: 760px;
  padding: 50px 0 100px;
}
.size-guide-note {
  padding: 20px 24px;
  margin-bottom: 44px;
  background: var(--rose);
  border: 1px solid var(--line);
  color: #6d6056;
  font-size: 0.9rem;
  line-height: 1.7;
}
.size-guide-note p {
  margin: 0;
}
.size-guide-heading {
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.size-guide-howto {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 52px;
}
.size-guide-howto > div {
  padding: 22px 18px;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
}
.size-guide-howto__num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
}
.size-guide-howto h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: var(--ink);
}
.size-guide-howto p {
  margin: 0;
  color: #7d7169;
  font-size: 0.8rem;
  line-height: 1.6;
}
.size-guide-table {
  margin-bottom: 52px;
  overflow-x: auto;
}
.size-guide-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.size-guide-table th {
  padding: 12px 16px;
  background: #251b14;
  color: #e8c9a0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  white-space: nowrap;
}
.size-guide-table td {
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.size-guide-table tbody tr:nth-child(even) {
  background: var(--rose);
}
.size-guide-help {
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  background: #fff;
  font-size: 0.88rem;
  color: #5f5349;
  line-height: 1.7;
}
.size-guide-help p {
  margin: 0;
}
.size-guide-help a {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 700px) {
  .size-guide-howto {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .wishlist-grid .product-card__image {
    height: 210px;
  }
  .account-layout {
    grid-template-columns: 1fr;
  }
  .account-nav nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 18px;
  }
  .account-nav__profile {
    padding-bottom: 14px;
  }
  .account-nav__logout {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }
  .account-panel {
    padding: 22px;
  }
  .account-cards {
    grid-template-columns: 1fr;
  }
  .order-row {
    grid-template-columns: 60px 1fr;
    grid-template-areas: "img info" "img price" "img status" "img action";
    row-gap: 8px;
  }
  .order-row img {
    grid-area: img;
  }
  .order-row__info {
    grid-area: info;
  }
  .order-row__price {
    grid-area: price;
  }
  .status-pill {
    grid-area: status;
    justify-self: start;
  }
  .order-row .ghost-button {
    grid-area: action;
    justify-self: start;
  }
  .track-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .auth-layout {
    grid-template-columns: 1fr;
  }
  .auth-image {
    display: none;
  }
  .auth-card {
    padding: 38px 6%;
  }
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid label.span-2 {
    grid-column: span 1;
  }
  .payment-options {
    flex-direction: column;
  }
  .legal-highlights {
    grid-template-columns: 1fr;
  }
  .page-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
.account-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}
.account-card__actions a,
.account-card__actions button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--accent, #956315);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}
.address-picker {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.address-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 0.86rem;
}
.address-option.is-selected {
  border-color: var(--accent, #956315);
  background: var(--wash);
}
.discount-row dt,
.discount-row dd {
  color: #1e7d3c;
}
.promo-input.has-error input {
  border-color: #c0392b;
}
.status-pill--requested {
  background: #eee;
  color: #6b6b6b;
}
.status-pill--approved {
  background: #e6f4ea;
  color: #1e7d3c;
}
.status-pill--rejected {
  background: #fbe9e7;
  color: #c0392b;
}
.status-pill--refunded {
  background: #e3edfb;
  color: #2a5ca8;
}
.status-pill--replaced {
  background: #e3edfb;
  color: #2a5ca8;
}
.status-pill--unpaid {
  background: #fdf3e3;
  color: #a5711b;
}
.status-pill--paid {
  background: #e6f4ea;
  color: #1e7d3c;
}
.account-panel form > .form-grid {
  margin-bottom: 18px;
}
