:root {
  --bg: #f6f1ea;
  --surface: rgba(255, 255, 255, 0.86);
  --ink: #1d2430;
  --muted: #697586;
  --line: rgba(29, 36, 48, 0.1);
  --accent: #f05545;
  --accent-soft: #e45c4a;
  --sea: #2c8a56;
  --shadow: 0 22px 60px rgba(31, 38, 45, 0.12);
}

html {
  font-size: 15px;
  min-height: 100%;
}

body.store-shell {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(224, 204, 187, 0.35), transparent 28%),
    linear-gradient(180deg, #fffdfa 0%, var(--bg) 100%);
  font-family: "Cairo", "Segoe UI", Tahoma, sans-serif;
}

a {
  text-decoration: none;
}

.shell-header {
  position: relative;
  z-index: 120;
  padding: 1.5rem 0 0.75rem;
}

.shell-nav {
  position: relative;
  z-index: 120;
  overflow: visible;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand-mark {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--ink);
  line-height: 1.1;
}

.shell-link {
  color: var(--ink);
  font-weight: 600;
}

.cart-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  margin-inline-start: 0.35rem;
  border-radius: 999px;
  padding: 0 0.4rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
}

.cart-count-badge.is-hidden {
  display: none;
}

.language-pill {
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.hero-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  padding: 2rem 0 1rem;
  align-items: stretch;
}

.hero-panel--minimal {
  grid-template-columns: minmax(0, 1fr);
  padding-top: 2.25rem;
}

.home-hero-promo {
  padding-top: 0.35rem;
  margin-bottom: 1.2rem;
}

.home-hero-promo .promo-blocks {
  margin: 0;
}

.home-hero-promo .promo-card {
  min-height: clamp(22rem, 42vw, 31rem);
  border-radius: 2.2rem;
  box-shadow: 0 30px 54px rgba(15, 23, 42, 0.18);
}

.home-hero-promo .promo-card__overlay {
  background:
    linear-gradient(118deg, rgba(15, 23, 42, 0.86) 0%, rgba(15, 23, 42, 0.34) 48%, rgba(15, 23, 42, 0.12) 100%);
}

.home-hero-promo .promo-card__content {
  width: min(100%, 36rem);
  gap: 1rem;
  padding: 2.5rem 2.3rem;
}

.home-hero-promo .promo-card__content h3 {
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  line-height: 1.02;
}

.home-hero-promo .promo-card__content p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  max-width: 30rem;
}

.home-hero-promo .promo-card__button {
  min-height: 3.35rem;
  padding: 0.92rem 1.7rem;
}

.hero-copy,
.glass-card,
.feature-tile {
  border: 1px solid var(--line);
  border-radius: 1.75rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  padding: 2rem;
}

.hero-copy--wide {
  padding: 2.5rem;
  text-align: center;
}

.hero-copy--wide p {
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: #99664f;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.05;
}

.hero-copy p {
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.3rem;
  font-weight: 700;
}

.cta-primary {
  background: var(--accent-soft);
  color: #fff;
}

.cta-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.hero-card-grid {
  display: grid;
  gap: 1rem;
}

.glass-card {
  padding: 1.35rem;
}

.accent-card {
  background: linear-gradient(135deg, rgba(240, 85, 69, 0.12), rgba(44, 138, 86, 0.09));
}

.card-kicker {
  color: var(--sea);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-section,
.products-section {
  padding: 1.5rem 0 1rem;
}

.showcase-section__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.showcase-section__meta strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}

.showcase-section__empty {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.showcase-section__empty h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
}

.showcase-section__empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.promo-interlude {
  padding: 0.25rem 0 1.75rem;
}

.promo-interlude__heading {
  margin-bottom: 1rem;
}

.promo-interlude__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.promo-interlude-card {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  text-decoration: none;
  color: var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.promo-interlude-card:hover,
.promo-interlude-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.12);
  border-color: rgba(203, 93, 46, 0.28);
}

.promo-interlude-card__media {
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 1;
  background: rgba(245, 240, 233, 0.9);
}

.promo-interlude-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-interlude-card__body {
  display: grid;
  gap: 0.28rem;
}

.promo-interlude-card__category {
  color: #99664f;
  font-size: 0.78rem;
  font-weight: 800;
}

.promo-interlude-card__body strong {
  font-size: 1rem;
  line-height: 1.45;
}

.promo-interlude-card__price {
  color: var(--admin-accent, #cb5d2e);
  font-weight: 800;
}

.brands-section {
  padding: 0.9rem 0 1.5rem;
}

.category-tiles-section {
  padding: 0.65rem 0 1.7rem;
}

.category-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
}

.category-tiles--1 {
  grid-template-columns: minmax(0, 1fr);
}

.category-tiles--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.category-tile {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(29, 36, 48, 0.08);
  border-radius: 1.7rem;
  background: #f2efe9;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
  color: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.category-tile[data-featured="true"] {
  grid-column: span 1;
}

.category-tile:hover {
  transform: translateY(-4px);
  color: var(--ink);
  border-color: rgba(29, 36, 48, 0.14);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.1);
}

.category-tile__media {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  background: #f2efe9;
}

.category-tile[data-featured="true"] .category-tile__media {
  min-height: 31rem;
}

.category-tiles--dense .category-tile__media,
.category-tiles--dense .category-tile[data-featured="true"] .category-tile__media {
  min-height: 24rem;
}

.category-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

body.quick-wa-auth-open {
  overflow: hidden;
}

.quick-wa-auth {
  position: fixed;
  inset: 0;
  z-index: 1500;
}

.quick-wa-auth__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(6px);
}

.quick-wa-auth__dialog {
  position: relative;
  width: min(100% - 2rem, 34rem);
  margin: min(9vh, 5rem) auto 0;
  padding: 1.6rem;
  border: 1px solid rgba(29, 36, 48, 0.08);
  border-radius: 1.8rem;
  background: rgba(255, 252, 247, 0.98);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
  animation: quick-wa-pop 240ms ease-out;
}

.quick-wa-auth__dismiss {
  position: absolute;
  inset-inline-start: 1rem;
  top: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: rgba(29, 36, 48, 0.08);
  color: var(--ink);
}

.quick-wa-auth__steps {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.quick-wa-auth__step {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 36, 48, 0.08);
  color: var(--muted);
  font-weight: 800;
}

.quick-wa-auth__step.is-active {
  background: var(--accent-soft);
  color: #fff;
}

.quick-wa-auth__panel {
  display: none;
}

.quick-wa-auth__panel.is-active {
  display: block;
}

.quick-wa-auth__eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: #99664f;
  font-size: 0.78rem;
  font-weight: 800;
}

.quick-wa-auth__dialog h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.15;
}

.quick-wa-auth__dialog p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.quick-wa-auth__label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
  color: var(--ink);
}

.quick-wa-auth__input {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(29, 36, 48, 0.12);
  border-radius: 1rem;
  background: #fff;
  color: var(--ink);
}

.quick-wa-auth__input:focus {
  outline: none;
  border-color: rgba(240, 85, 69, 0.45);
  box-shadow: 0 0 0 4px rgba(240, 85, 69, 0.12);
}

.quick-wa-auth__hint {
  display: block;
  margin-top: 0.5rem;
  color: #667085;
  font-size: 0.84rem;
  line-height: 1.65;
}

.quick-wa-auth__error {
  min-height: 1.35rem;
  margin-top: 0.35rem;
  color: #c93f2f;
  font-size: 0.88rem;
  font-weight: 700;
}

.quick-wa-auth__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1rem;
}

.quick-wa-auth__primary,
.quick-wa-auth__secondary,
.quick-wa-auth__ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
}

.quick-wa-auth__primary {
  border: 0;
  background: var(--ink);
  color: #fff;
}

.quick-wa-auth__secondary,
.quick-wa-auth__ghost {
  border: 1px solid rgba(29, 36, 48, 0.12);
  background: #fff;
  color: var(--ink);
}

.quick-wa-auth__ghost {
  margin-top: 0.6rem;
}

.quick-wa-auth__profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.quick-wa-auth__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 4.2rem;
  overflow: hidden;
  border-radius: 1.3rem;
  background: rgba(29, 36, 48, 0.08);
  color: var(--ink);
  font-size: 2rem;
}

.quick-wa-auth__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-wa-auth__name-block {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px dashed rgba(29, 36, 48, 0.15);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.7);
}

.quick-wa-auth__summary,
.quick-wa-auth__recommendations {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(29, 36, 48, 0.08);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.76);
}

.quick-wa-auth__summary-title,
.quick-wa-auth__recommendations-head strong {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--ink);
  font-size: 1rem;
}

.quick-wa-auth__summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.quick-wa-auth__summary-card {
  display: grid;
  gap: 0.22rem;
  padding: 0.9rem;
  border-radius: 1rem;
  background: rgba(248, 244, 238, 0.95);
  border: 1px solid rgba(29, 36, 48, 0.06);
}

.quick-wa-auth__summary-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(240, 85, 69, 0.12);
  color: var(--accent);
}

.quick-wa-auth__summary-card strong {
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.2;
}

.quick-wa-auth__summary-card span:last-child {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

.quick-wa-auth__recommendations-head p {
  margin-bottom: 0;
}

.quick-wa-auth__recommendations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.quick-wa-auth__recommendation-card {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 0.8rem;
  border-radius: 1rem;
  border: 1px solid rgba(29, 36, 48, 0.08);
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.quick-wa-auth__recommendation-card:hover,
.quick-wa-auth__recommendation-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(240, 85, 69, 0.18);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.quick-wa-auth__recommendation-image {
  width: 4.5rem;
  height: 4.5rem;
  overflow: hidden;
  border-radius: 1rem;
  background: rgba(29, 36, 48, 0.06);
}

.quick-wa-auth__recommendation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-wa-auth__recommendation-body {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.quick-wa-auth__recommendation-category {
  color: #99664f;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.quick-wa-auth__recommendation-body strong {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.45;
}

.quick-wa-auth__recommendation-price {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
}

.quick-wa-auth__recommendation-price del {
  color: var(--muted);
  font-weight: 600;
}

.quick-wa-auth__recommendation-cta {
  grid-column: 1 / -1;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
}

@media (max-width: 640px) {
  .quick-wa-auth__summary-grid,
  .quick-wa-auth__recommendations-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes quick-wa-pop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.category-tile:hover .category-tile__media img {
  transform: scale(1.05);
}

.category-tile__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.04) 0%, rgba(15, 23, 42, 0.14) 40%, rgba(15, 23, 42, 0.78) 100%);
}

.category-tile__badge {
  position: absolute;
  top: 1rem;
  inset-inline-start: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.05rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.1);
}

.category-tile__body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.95rem;
  padding: 1.35rem 1.25rem 1.25rem;
}

.category-tile__eyebrow {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.category-tile__body h3 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.05;
}

.category-tile__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.55;
  max-width: 16rem;
}

.category-tile__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.9rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #111827;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease;
}

.category-tile:hover .category-tile__arrow {
  transform: translateX(-2px);
  background: #fff;
  color: #111827;
}

.category-tile__body > div {
  max-width: 18rem;
}

.category-tiles__footer {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.category-tiles__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.15rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid rgba(29, 36, 48, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.category-tiles__more:hover {
  transform: translateY(-2px);
  border-color: rgba(29, 36, 48, 0.16);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.09);
  color: var(--ink);
}

.brands-marquee {
  position: relative;
  overflow: hidden;
  padding: 0.65rem 0;
  direction: ltr;
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.brands-marquee__track {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 1.5rem;
  width: max-content;
  animation: brands-marquee 28s linear infinite;
}

.brands-marquee:hover .brands-marquee__track {
  animation-play-state: paused;
}

.brand-ticker {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 14rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(29, 36, 48, 0.06);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.76);
  color: #737b86;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.05);
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease;
}

.brand-ticker:hover {
  transform: translateY(-2px);
  color: var(--ink);
  border-color: rgba(29, 36, 48, 0.14);
}

.brand-ticker__logo,
.brand-ticker__mark {
  flex: 0 0 4rem;
  width: 4rem;
  height: 4rem;
  border-radius: 1.15rem;
}

.brand-ticker__logo {
  object-fit: contain;
  padding: 0.35rem;
  background: #fff;
  filter: grayscale(1);
  opacity: 0.78;
}

.brand-ticker:hover .brand-ticker__logo {
  filter: grayscale(0);
  opacity: 1;
}

.brand-ticker__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 36, 48, 0.06);
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 800;
}

.brand-ticker__name {
  color: inherit;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

@keyframes brands-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .brands-marquee {
    mask-image: none;
  }

  .brands-marquee__track {
    gap: 0.9rem;
    animation-duration: 20s;
  }

  .brand-ticker {
    min-width: 11.5rem;
    padding: 0.8rem 0.9rem;
  }

  .brand-ticker__logo,
  .brand-ticker__mark {
    flex-basis: 3rem;
    width: 3rem;
    height: 3rem;
  }

  .brand-ticker__name {
    font-size: 1.05rem;
  }

  .category-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .category-tiles--1,
  .category-tiles--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-tile {
    border-radius: 1.3rem;
  }

  .category-tile__body {
    padding: 0.9rem 0.9rem 1rem;
  }

  .category-tile__body h3 {
    font-size: 1.05rem;
  }

  .category-tiles__footer {
    margin-top: 1rem;
  }

  .home-trust-strip {
    grid-template-columns: 1fr;
  }

  .home-final-cta {
    grid-template-columns: 1fr;
    padding: 1.3rem 1.15rem;
  }

  .home-final-cta__actions {
    justify-content: stretch;
  }

  .home-final-cta__actions .cta-primary,
  .home-final-cta__actions .cta-secondary {
    width: 100%;
  }

  .store-info-page {
    gap: 1rem;
    padding-top: 1rem;
  }

  .store-info-hero,
  .store-info-card,
  .store-branch-card__body {
    padding: 1rem;
  }

  .store-info-hero__stats,
  .store-info-support {
    grid-template-columns: 1fr;
  }

  .store-info-brand {
    grid-template-columns: 1fr;
  }

  .store-info-brand__logo,
  .store-info-brand__fallback {
    width: 4.75rem;
    height: 4.75rem;
  }

  .store-info-card__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

.section-heading {
  margin-bottom: 1.1rem;
}

.section-heading--center {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  margin-bottom: 0.65rem;
}

.section-heading__lead {
  max-width: 42rem;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.8;
}

.secondary-promos-shell {
  padding-top: 0.5rem;
}

.secondary-promos-shell__heading {
  margin-bottom: 0.25rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-tile {
  padding: 1.4rem;
}

.feature-tile p {
  color: var(--muted);
  line-height: 1.7;
}

.showcase-section {
  padding-top: 2.25rem;
}

.showcase-section--recommended {
  padding-top: 2rem;
}

.showcase-section--recommended .showcase-grid {
  margin-top: 0.35rem;
}

.showcase-heading {
  margin-bottom: 1.5rem;
  text-align: center;
}

.showcase-heading p {
  margin: 0;
  color: #566273;
  font-size: clamp(1.1rem, 2vw, 2rem);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
  transition: opacity 170ms ease;
  will-change: opacity;
}

.showcase-grid.is-filtering {
  opacity: 0.62;
}

.showcase-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.showcase-filter {
  border: 1px solid rgba(29, 36, 48, 0.12);
  border-radius: 999px;
  padding: 0.7rem 1.05rem;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.showcase-filter:hover,
.showcase-filter.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.showcase-filter:hover {
  transform: translateY(-1px);
}

.showcase-more {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.home-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.75rem 0 1.25rem;
}

.home-trust-card {
  display: grid;
  grid-template-columns: 3.35rem 1fr;
  gap: 0.95rem;
  align-items: start;
  padding: 1.15rem 1.1rem;
  border: 1px solid rgba(29, 36, 48, 0.08);
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
}

.home-trust-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(240, 85, 69, 0.14), rgba(44, 138, 86, 0.12));
  color: #162032;
  font-size: 1.2rem;
}

.home-trust-card strong {
  display: block;
  margin-bottom: 0.4rem;
  color: #101826;
  font-size: 1.02rem;
  font-weight: 800;
}

.home-trust-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.92rem;
}

.home-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 1.2rem;
  align-items: center;
  margin: 0.75rem 0 2rem;
  padding: 1.6rem 1.75rem;
  border: 1px solid rgba(29, 36, 48, 0.08);
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(246, 241, 234, 0.96)),
    radial-gradient(circle at top left, rgba(240, 85, 69, 0.08), transparent 32%);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
}

.home-final-cta__content h2 {
  margin: 0 0 0.65rem;
  color: #101826;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.12;
}

.home-final-cta__content p {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
  line-height: 1.85;
}

.home-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
}

.showcase-card {
  min-width: 0;
}

.showcase-title-link {
  color: inherit;
}

.showcase-title-link:hover {
  color: var(--accent-soft);
}

.showcase-media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #f2f2f0;
  aspect-ratio: 0.78 / 1;
}

.showcase-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 240ms ease, transform 360ms ease;
}

.showcase-image--primary {
  opacity: 1;
}

.shell-link--account-name {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  padding-inline: 0.35rem;
  text-align: start;
  flex-shrink: 1;
}

.shell-link__eyebrow {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shell-link--account-name strong {
  max-width: 11rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-hub {
  display: grid;
  gap: 1.5rem;
  padding: 1rem 0 2.5rem;
}

.account-hub__hero,
.account-card {
  border: 1px solid var(--line);
  border-radius: 1.75rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.account-hub__hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.9rem 2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(252, 245, 237, 0.88)),
    radial-gradient(circle at top left, rgba(240, 85, 69, 0.08), transparent 45%);
}

.account-hub__hero-copy h1 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.account-hub__hero-copy p,
.account-card__head p,
.account-modern-form p,
.account-empty-state p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.account-hub__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #99664f;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-hub__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.account-hub__hero-actions form {
  margin: 0;
}

.account-hub__layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.35rem;
}

.account-card {
  padding: 1.5rem;
}

.account-card--profile,
.account-card--orders {
  grid-column: span 12;
}

.account-card--addresses,
.account-card--security {
  grid-column: span 6;
}

.account-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.account-card__head h2,
.account-card__head h3 {
  margin: 0.3rem 0 0;
  font-size: 1.25rem;
}

.account-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 1rem;
  background: rgba(240, 85, 69, 0.12);
  color: var(--accent);
  font-size: 1.05rem;
}

.account-modern-form {
  display: grid;
  gap: 1rem;
}

.account-modern-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.account-modern-field {
  display: grid;
  gap: 0.45rem;
}

.account-modern-field--wide {
  grid-column: span 2;
}

.account-modern-field label {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.account-modern-field .form-control,
.account-modern-field .form-select {
  min-height: 3.15rem;
  border: 1px solid rgba(29, 36, 48, 0.08);
  border-radius: 1.05rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.account-modern-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.75rem;
}

.account-addresses {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.account-addresses__list,
.account-addresses__editor {
  display: grid;
  gap: 0.9rem;
}

.account-addresses__editor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.account-addresses__editor-head h3 {
  margin: 0;
  font-size: 1.05rem;
}

.account-reset-link {
  border: none;
  background: none;
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.account-address-card,
.account-address-empty,
.account-order-strip__item,
.account-empty-state,
.account-modern-form--danger {
  border: 1px solid rgba(29, 36, 48, 0.08);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.74);
}

.account-address-card {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
}

.account-address-card.is-default {
  border-color: rgba(44, 138, 86, 0.22);
  box-shadow: 0 12px 30px rgba(44, 138, 86, 0.09);
}

.account-address-card__head,
.account-address-card__actions,
.account-order-strip__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.account-address-card__label {
  font-size: 0.98rem;
  font-weight: 800;
}

.account-address-card__badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  background: rgba(44, 138, 86, 0.12);
  color: var(--sea);
  font-size: 0.8rem;
  font-weight: 800;
}

.account-address-card__actions {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.account-address-card__actions .btn {
  border-radius: 999px;
}

.account-address-empty,
.account-empty-state {
  padding: 1.25rem;
  color: var(--muted);
  text-align: center;
}

.account-map-picker {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 1.25rem;
  background: rgba(247, 242, 236, 0.82);
}

.account-map-picker__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.account-map-picker__map {
  min-height: 19rem;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(29, 36, 48, 0.08);
}

.account-toggle-check {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
}

.account-security-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.account-modern-form--danger {
  padding: 1.2rem;
}

.account-modern-form--danger h3 {
  margin: 0 0 0.5rem;
}

.account-order-strip {
  display: grid;
  gap: 0.8rem;
}

.account-order-strip__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
}

.account-order-strip__item strong {
  font-size: 1.05rem;
}

.account-order-strip__meta {
  color: var(--muted);
  font-weight: 700;
}

.account-order-strip__item .cta-secondary {
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .account-card--addresses,
  .account-card--security {
    grid-column: span 12;
  }

  .account-addresses,
  .account-security-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .shell-link--account-name {
    display: none;
  }

  .account-hub__hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .account-modern-grid {
    grid-template-columns: 1fr;
  }

  .account-modern-field--wide {
    grid-column: span 1;
  }

  .account-order-strip__item {
    grid-template-columns: 1fr;
    justify-items: flex-start;
  }
}

.showcase-image--hover {
  opacity: 0;
}

.showcase-media.is-image-switching .showcase-image--primary {
  animation: showcase-image-swap 240ms ease;
}

.showcase-card:hover .showcase-image--primary {
  opacity: 0;
  transform: scale(1.03);
}

.showcase-card:hover .showcase-image--hover {
  opacity: 1;
  transform: scale(1.03);
}

.showcase-badge,
.showcase-countdown {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.42rem 0.82rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.showcase-badge {
  top: 0.95rem;
  left: 0.95rem;
  background: var(--sea);
  color: #fff;
}

.showcase-card:nth-child(2) .showcase-badge,
.showcase-card:nth-child(3) .showcase-badge {
  background: var(--accent);
}

.showcase-countdown {
  right: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent);
  box-shadow: 0 8px 20px rgba(31, 38, 45, 0.12);
}

.showcase-body {
  padding-top: 1rem;
}

.showcase-body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.22;
}

.showcase-rating {
  margin-bottom: 0.55rem;
}

.showcase-stars {
  position: relative;
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.08em;
}

.showcase-stars__base,
.showcase-stars__fill {
  font-size: 1rem;
}

.showcase-stars__base {
  color: #d6d8de;
}

.showcase-stars__fill {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  white-space: nowrap;
  color: #f1a23a;
}

.showcase-price-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.95rem;
}

.showcase-price-row strong {
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 800;
}

.showcase-price-row span {
  color: #a0a6b1;
  text-decoration: line-through;
  font-size: 1rem;
}

.showcase-swatches {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.showcase-swatch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
}

.showcase-swatch span {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 36, 48, 0.14);
}

.showcase-swatch.is-active {
  border-color: #7d806d;
}

@keyframes showcase-image-swap {
  0% {
    opacity: 0.6;
    transform: scale(0.985);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

[data-product-card][hidden] {
  display: none !important;
}

.shop-page {
  padding-top: 1.2rem;
}

.shop-shell {
  padding: 1.5rem 0 2rem;
}

.shop-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-weight: 700;
}

.shop-breadcrumb a {
  color: var(--muted);
}

.shop-breadcrumb span:not(:last-child)::after,
.shop-breadcrumb a::after {
  content: "/";
  margin-inline-start: 0.55rem;
  color: rgba(105, 117, 134, 0.6);
}

.shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: 1.5rem;
}

.shop-hero__copy,
.shop-stat-card,
.shop-sidebar-card,
.shop-empty-state {
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.shop-hero__copy {
  padding: 1.8rem 1.9rem;
}

.shop-hero__eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: #99664f;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-hero__copy h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 1.08;
}

.shop-hero__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.shop-hero__meta {
  display: grid;
  gap: 1rem;
}

.shop-stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
  padding: 1.25rem 1.4rem;
}

.shop-stat-card strong {
  font-size: 1.6rem;
  font-weight: 800;
}

.shop-stat-card span {
  color: var(--muted);
  font-weight: 700;
}

.shop-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.shop-collections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.shop-collection-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.shop-collection-card.is-active {
  border-color: rgba(240, 85, 69, 0.28);
}

.shop-collection-card__media {
  overflow: hidden;
  border-radius: 1.1rem;
  background: #f2f2f0;
  aspect-ratio: 1 / 1;
}

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

.shop-collection-card__body {
  display: grid;
  gap: 0.2rem;
}

.shop-collection-card__body strong {
  font-size: 1.05rem;
}

.shop-collection-card__body span {
  color: var(--muted);
  font-weight: 700;
}

.shop-sidebar {
  position: sticky;
  top: 1rem;
}

.shop-sidebar-card {
  padding: 1.2rem;
}

.shop-sidebar-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.shop-sidebar-card__head h2 {
  margin: 0;
  font-size: 1.2rem;
}

.shop-clear-filter {
  color: var(--accent);
  font-weight: 800;
}

.shop-category-list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-category-item > .shop-category-list {
  margin-top: 0.45rem;
  padding-inline-start: 1rem;
}

.shop-category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid transparent;
  border-radius: 1rem;
  padding: 0.75rem 0.9rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.45);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.shop-category-link:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-1px);
}

.shop-category-link small {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.shop-category-item.is-active > .shop-category-link {
  border-color: rgba(240, 85, 69, 0.28);
  background: rgba(240, 85, 69, 0.08);
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.shop-sort-form {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.shop-sort-form label {
  color: var(--muted);
  font-weight: 700;
}

.shop-sort-form .form-select {
  min-width: 220px;
  border-radius: 999px;
  padding-inline: 1rem 2.4rem;
  border-color: var(--line);
  background-color: rgba(255, 255, 255, 0.82);
}

.shop-toolbar__label,
.shop-active-filter span {
  color: var(--muted);
  font-weight: 700;
}

.shop-active-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.shop-grid {
  gap: 1.45rem;
}

.shop-card .showcase-media {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.46) 0%, rgba(242,242,240,0.96) 100%),
    #f2f2f0;
}

.shop-card__quick-action {
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  z-index: 2;
  transform: translateX(-50%) translateY(8px);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  background: rgba(17, 17, 17, 0.88);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.shop-card:hover .shop-card__quick-action {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.shop-card__category {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.shop-card .showcase-price-row {
  align-items: center;
}

.shop-card .showcase-price-row small {
  color: var(--muted);
  font-weight: 800;
}

.brands-page {
  display: grid;
  gap: 1.75rem;
  padding: 1rem 0 2.8rem;
}

.brands-page__hero {
  display: grid;
  gap: 1rem;
  align-items: end;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.95fr);
}

.brands-page__search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(29, 36, 48, 0.08);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.brands-page__search input {
  min-height: 3.15rem;
  border: 1px solid rgba(29, 36, 48, 0.1);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  background: #fff;
}

.brands-page__search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 7rem;
  min-height: 3.15rem;
  border: 0;
  border-radius: 999px;
  background: #101826;
  color: #fff;
  font-weight: 800;
}

.brands-page__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.brands-page__card {
  display: grid;
  gap: 0.9rem;
  padding: 1.1rem;
  border: 1px solid rgba(29, 36, 48, 0.08);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
  color: var(--ink);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.brands-page__card:hover,
.brands-page__card.is-active {
  transform: translateY(-3px);
  border-color: rgba(29, 36, 48, 0.16);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.08);
  color: var(--ink);
}

.brands-page__card-media {
  display: grid;
  place-items: center;
  min-height: 5.5rem;
  border-radius: 1.1rem;
  background: #f6f4ef;
  overflow: hidden;
}

.brands-page__card-media img {
  max-width: 78%;
  max-height: 58px;
  object-fit: contain;
}

.brands-page__card-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #101826;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
}

.brands-page__card-body {
  display: grid;
  gap: 0.3rem;
}

.brands-page__card-body strong {
  font-size: 1.05rem;
  font-weight: 800;
}

.brands-page__card-body span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.brands-page__products {
  display: grid;
  gap: 1rem;
}

.brands-page__products-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brands-page__empty {
  padding: 1.6rem;
  border: 1px dashed rgba(29, 36, 48, 0.16);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.shop-empty-state {
  padding: 2rem;
  text-align: center;
}

.shop-empty-state h2 {
  margin: 0 0 0.65rem;
}

.shop-empty-state p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.product-detail-page {
  padding: 2rem 0 1rem;
}

.related-products-section {
  margin-top: 2.5rem;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.product-gallery-main {
  overflow: hidden;
  border-radius: 1.75rem;
  background: #f2f2f0;
}

.product-gallery-main img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 0.82 / 1;
  object-fit: cover;
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.product-thumb {
  padding: 0;
  border: 1px solid transparent;
  border-radius: 1rem;
  overflow: hidden;
  background: #f2f2f0;
  transition: opacity 160ms ease, border-color 160ms ease;
}

.product-thumb img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}

.product-thumb.is-active {
  border-color: #1d2430;
}

.product-thumb.is-muted {
  opacity: 0.45;
}

.product-detail-meta {
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-detail-copy h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.product-detail-quick-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}

.product-detail-quick-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.detail-rating {
  margin-bottom: 0.8rem;
}

.product-detail-price {
  display: flex;
  align-items: end;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.product-detail-price strong {
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 800;
}

.product-detail-price span {
  color: #9ea4ae;
  font-size: 1.15rem;
  text-decoration: line-through;
}

.product-detail-price small {
  color: var(--muted);
  font-weight: 700;
}

.product-detail-intro,
.product-detail-description p {
  color: var(--muted);
  line-height: 1.9;
}

.product-detail-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  background: rgba(240, 85, 69, 0.12);
  color: var(--accent);
  font-weight: 800;
}

.product-detail-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.product-detail-fact {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.75);
}

.product-detail-fact strong {
  color: var(--muted);
  font-size: 0.9rem;
}

.product-detail-fact span {
  color: var(--ink);
  font-weight: 800;
}

.detail-option-group {
  margin-top: 1.2rem;
}

.detail-option-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.detail-option-group label {
  font-weight: 700;
  margin: 0;
}

.detail-selected-option {
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
}

.detail-empty-note {
  color: var(--muted);
  font-weight: 700;
}

.detail-color-swatches,
.detail-size-options,
.detail-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.detail-swatch {
  width: 2.2rem;
  height: 2.2rem;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.detail-swatch span {
  width: 1.8rem;
  height: 1.8rem;
}

.detail-swatch.is-active {
  border-color: var(--ink);
  background: rgba(29, 36, 48, 0.08);
  box-shadow: 0 0 0 4px rgba(29, 36, 48, 0.08);
  transform: translateY(-1px);
}

.detail-swatch:hover:not(.is-unavailable) {
  transform: translateY(-1px);
}

.detail-size-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}

.detail-size-button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.detail-size-button.is-unavailable,
.detail-swatch.is-unavailable {
  opacity: 0.38;
  cursor: not-allowed;
}

.detail-size-button.is-unavailable {
  text-decoration: line-through;
}

.detail-stock-panel {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
}

.detail-stock-status {
  color: var(--muted);
  font-weight: 700;
}

.detail-stock-status.is-in-stock {
  color: #1d7d49;
}

.detail-stock-status.is-out-of-stock {
  color: #b23b32;
}

.detail-variant-sku {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.detail-availability-hint {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

.detail-action-row {
  margin-top: 1.25rem;
}

.product-detail-description {
  margin-top: 1.5rem;
}

.product-detail-description h2 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.cart-page {
  padding: 2rem 0 1rem;
}

.cart-page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cart-page__eyebrow {
  margin: 0 0 0.45rem;
  color: #99664f;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cart-page__header h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.cart-notices {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.cart-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 179, 0, 0.24);
  background: rgba(255, 179, 0, 0.1);
  color: #8d6305;
  line-height: 1.8;
}

.cart-notice i {
  margin-top: 0.15rem;
  color: #c58a00;
}

.cart-empty-state,
.cart-summary-card,
.cart-line {
  border: 1px solid var(--line);
  border-radius: 1.75rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cart-empty-state {
  padding: 2rem;
  text-align: center;
}

.cart-empty-state p {
  margin: 0.75rem 0 1.25rem;
  color: var(--muted);
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: 1.5rem;
  align-items: start;
}

.cart-lines {
  display: grid;
  gap: 1rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  align-items: start;
}

.cart-line__aside {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.cart-line__media {
  overflow: hidden;
  border-radius: 1.1rem;
  background: #f2f2f0;
  display: block;
}

.cart-line__media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.cart-line__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.cart-line__meta h2 {
  margin: 0 0 0.55rem;
  font-size: 1.45rem;
  line-height: 1.35;
  font-weight: 900;
}

.cart-line__meta a {
  color: var(--ink);
}

.cart-line__meta a:hover {
  color: var(--accent);
}

.cart-line__variant,
.cart-line__sku {
  color: var(--muted);
}

.cart-line__variant {
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.cart-line__sku {
  font-size: 0.92rem;
}

.cart-line__fact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin-top: 0.45rem;
  color: #6c788a;
  font-size: 0.94rem;
}

.cart-line__fact-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink);
  font-weight: 700;
}

.cart-line__fact-label i {
  color: #99664f;
}

.cart-line__fact strong {
  color: #c5543f;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.cart-line__fact small {
  color: var(--muted);
  font-size: 0.82rem;
}

.cart-line__limit-note {
  color: #a86d00;
  background: rgba(255, 179, 0, 0.12);
  border: 1px solid rgba(255, 179, 0, 0.2);
  border-radius: 14px;
  padding: 0.55rem 0.8rem;
  font-size: 0.93rem;
  line-height: 1.7;
}

.cart-line__limit-note--below-media {
  margin-top: 0;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.84rem;
  line-height: 1.6;
}

.cart-line__limit-note--below-media i {
  margin-top: 0.12rem;
}

.account-auth-page,
.account-dashboard-page,
.account-orders-page,
.account-order-detail-page {
  padding: 2rem 0 0;
}

.account-auth-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.35rem;
  align-items: stretch;
}

.account-auth-visual,
.account-auth-card,
.account-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  box-shadow: 0 18px 50px rgba(20, 28, 44, 0.06);
}

.account-auth-visual {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  display: grid;
  align-content: start;
  gap: 1.25rem;
  background:
    radial-gradient(circle at top left, rgba(239, 93, 69, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 179, 0, 0.18), transparent 30%),
    linear-gradient(145deg, #fffaf5 0%, #ffffff 100%);
}

.account-auth-visual::after {
  content: "";
  position: absolute;
  inset: auto -5rem -5rem auto;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(239, 93, 69, 0.08);
}

.account-auth-visual__badge {
  width: fit-content;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(20, 28, 44, 0.06);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.account-auth-visual h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 0;
}

.account-auth-visual p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.9;
  margin: 0;
}

.account-auth-benefits {
  display: grid;
  gap: 0.8rem;
}

.account-auth-benefit {
  padding: 1rem 1.05rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 28, 44, 0.06);
  backdrop-filter: blur(8px);
  display: grid;
  gap: 0.25rem;
}

.account-auth-benefit strong {
  font-size: 1rem;
}

.account-auth-benefit span {
  color: var(--muted);
  font-size: 0.94rem;
}

.account-auth-card {
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
}

.account-auth-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  padding: 0.45rem;
  border-radius: 1.25rem;
  background: rgba(20, 28, 44, 0.04);
}

.account-auth-tab {
  border: 0;
  border-radius: 1rem;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  padding: 0.9rem 1rem;
  transition: 180ms ease;
}

.account-auth-tab.is-active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(20, 28, 44, 0.08);
}

.account-auth-card__intro,
.account-panel__header {
  display: grid;
  gap: 0.45rem;
}

.account-auth-card__intro p,
.account-panel__header p,
.account-empty-state p {
  color: var(--muted);
  margin: 0;
}

.account-auth-form {
  display: grid;
  gap: 1rem;
}

.account-auth-hint {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(20, 28, 44, 0.04);
  color: var(--muted);
  line-height: 1.8;
}

.account-auth-step-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-weight: 700;
}

.account-auth-step-divider::before,
.account-auth-step-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.account-dev-code {
  border: 1px dashed rgba(30, 95, 168, 0.35);
  background: rgba(30, 136, 229, 0.08);
  color: #1e5fa8;
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  font-weight: 700;
}

.account-dev-code.is-hidden {
  display: none !important;
}

.account-dashboard-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.25rem;
}

.account-panel {
  padding: 1.5rem;
  display: grid;
  gap: 1.25rem;
}

.account-dashboard-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}

.account-empty-state {
  display: grid;
  gap: 0.5rem;
  padding: 1.2rem;
  border-radius: 1rem;
  background: rgba(20, 28, 44, 0.03);
}

.account-order-list,
.account-order-lines,
.account-orders-table {
  display: grid;
  gap: 0.9rem;
}

.account-order-card,
.account-order-row,
.account-order-line {
  display: grid;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(20, 28, 44, 0.02);
}

.account-order-card {
  grid-template-columns: 1fr auto auto;
}

.account-order-card__meta {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 700;
}

.account-orders-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  overflow: hidden;
}

.account-order-row {
  grid-template-columns: 1.15fr 0.65fr 0.7fr 0.7fr 0.8fr auto;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  background: transparent;
}

.account-order-row:last-child {
  border-bottom: 0;
}

.account-order-row__actions {
  display: flex;
  justify-content: flex-end;
}

.account-order-row__main,
.account-order-row__meta,
.account-order-row__status,
.account-order-row__total {
  display: grid;
  gap: 0.55rem;
}

.account-order-row__main {
  min-width: 0;
}

.account-order-row__status {
  justify-items: start;
}

.account-order-row__total {
  font-weight: 800;
  color: var(--ink);
}

.account-order-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2rem;
  padding: 0.35rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 28, 44, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.account-order-chip--muted {
  background: rgba(20, 28, 44, 0.05);
  color: var(--muted);
}

.account-order-chip--info {
  background: rgba(20, 84, 178, 0.09);
  color: #1454b2;
  border-color: rgba(20, 84, 178, 0.14);
}

.account-order-chip--success {
  background: rgba(44, 138, 86, 0.12);
  color: #2c8a56;
  border-color: rgba(44, 138, 86, 0.16);
}

.account-order-chip--danger {
  background: rgba(233, 88, 69, 0.12);
  color: #c34738;
  border-color: rgba(233, 88, 69, 0.16);
}

.account-order-status-panel {
  margin-bottom: 1.35rem;
}

.account-order-status-panel__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.account-order-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.8rem;
}

.account-order-progress--compact {
  grid-template-columns: repeat(5, minmax(0, auto));
  gap: 0.35rem;
  margin-top: 0.45rem;
}

.account-order-progress__node {
  position: relative;
  display: grid;
  gap: 0.6rem;
  justify-items: center;
  text-align: center;
}

.account-order-progress__node::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  inset-inline-start: calc(50% + 1rem);
  width: calc(100% - 1.2rem);
  height: 2px;
  background: rgba(20, 28, 44, 0.08);
}

.account-order-progress__node:last-child::before {
  display: none;
}

.account-order-progress__step {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 28, 44, 0.12);
  background: #fff;
  color: var(--muted);
  box-shadow: 0 8px 18px rgba(20, 28, 44, 0.05);
}

.account-order-progress__node strong {
  font-size: 0.84rem;
  color: var(--muted);
}

.account-order-progress__node.is-complete::before,
.account-order-progress__node.is-active::before {
  background: rgba(20, 84, 178, 0.28);
}

.account-order-progress__node.is-complete .account-order-progress__step {
  background: #1f6fe5;
  border-color: #1f6fe5;
  color: #fff;
}

.account-order-progress__node.is-complete strong,
.account-order-progress__node.is-active strong {
  color: var(--ink);
}

.account-order-progress__node.is-active .account-order-progress__step {
  border-color: #1f6fe5;
  color: #1454b2;
  box-shadow: 0 0 0 0.25rem rgba(31, 111, 229, 0.11);
}

.account-order-progress.is-cancelled .account-order-progress__node::before {
  background: rgba(233, 88, 69, 0.18);
}

.account-order-progress__node.is-cancelled .account-order-progress__step {
  border-color: rgba(233, 88, 69, 0.24);
  color: #c34738;
  background: rgba(233, 88, 69, 0.08);
}

.account-order-progress__node.is-cancelled strong {
  color: #c34738;
}

.account-order-progress--compact .account-order-progress__step {
  width: 0.72rem;
  height: 0.72rem;
  min-height: 0;
  padding: 0;
  font-size: 0;
  box-shadow: none;
}

.account-order-progress--compact .account-order-progress__node,
.account-order-progress--compact .account-order-progress__step,
.account-order-progress--compact .account-order-progress__step::before {
  display: inline-flex;
}

.account-order-progress--compact .account-order-progress__step.is-complete,
.account-order-progress--compact .account-order-progress__step.is-active,
.account-order-progress--compact .account-order-progress__step.is-cancelled {
  display: inline-flex;
}

.account-order-progress--compact .account-order-progress__node,
.account-order-progress--compact .account-order-progress__node::before,
.account-order-progress--compact .account-order-progress__node strong {
  display: none;
}

.account-order-progress--compact .account-order-progress__step {
  background: rgba(20, 28, 44, 0.1);
}

.account-order-progress--compact .account-order-progress__step.is-complete,
.account-order-progress--compact .account-order-progress__step.is-active {
  background: #1f6fe5;
  border-color: #1f6fe5;
}

.account-order-progress--compact.is-cancelled .account-order-progress__step {
  background: rgba(233, 88, 69, 0.22);
  border-color: rgba(233, 88, 69, 0.2);
}

.account-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.2rem;
}

.account-detail-grid > div {
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(20, 28, 44, 0.02);
}

.account-order-totals {
  display: grid;
  gap: 0.85rem;
}

.account-order-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.account-order-totals__grand {
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
}

@media (max-width: 991.98px) {
  .account-auth-shell,
  .account-dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .account-auth-card,
  .account-auth-visual,
  .account-panel {
    padding: 1.25rem;
  }

  .account-auth-tabs {
    grid-template-columns: 1fr;
  }

  .account-order-card,
  .account-order-row,
  .account-detail-grid {
    grid-template-columns: 1fr;
  }
}

.cart-line__price-block {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.8rem;
}

.cart-line__unit-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--ink);
}

.cart-line__unit-price span,
.cart-line__line-formula {
  color: var(--muted);
  font-size: 0.92rem;
}

.cart-line__line-formula {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  align-items: center;
}

.cart-line__formula-label {
  color: var(--muted);
}

.cart-line__formula-values {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  unicode-bidi: plaintext;
  font-variant-numeric: tabular-nums;
}

.cart-line__formula-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid rgba(20, 28, 44, 0.08);
}

.cart-line__formula-chip--unit {
  background: rgba(30, 136, 229, 0.1);
  color: #1e5fa8;
}

.cart-line__formula-chip--qty {
  min-width: 2.2rem;
  justify-content: center;
  background: rgba(255, 179, 0, 0.12);
  color: #a86d00;
}

.cart-line__formula-chip--total {
  background: rgba(239, 93, 69, 0.12);
  color: var(--accent);
}

.cart-line__formula-symbol {
    color: var(--muted);
    font-weight: 800;
}

.cart-line__pricing .is-loading,
.cart-line__meta .is-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.cart-line__pricing .is-loading::after,
.cart-line__meta .is-loading::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 0.95rem;
    height: 0.95rem;
    margin-top: -0.475rem;
    margin-left: -0.475rem;
    border-radius: 50%;
    border: 2px solid rgba(239, 93, 69, 0.2);
    border-top-color: var(--accent);
    animation: cart-spin 0.8s linear infinite;
}

.cart-line.is-updating {
    opacity: 0.9;
}

.cart-summary-row strong.is-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.cart-summary-row strong.is-loading::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 1rem;
  height: 1rem;
  margin-top: -0.5rem;
  margin-left: -0.5rem;
  border-radius: 50%;
  border: 2px solid rgba(239, 93, 69, 0.2);
  border-top-color: var(--accent);
  animation: cart-spin 0.8s linear infinite;
}

@keyframes cart-spin {
  to {
    transform: rotate(360deg);
  }
}

.cart-line__unit-price strong {
  color: var(--accent);
}

.cart-line__unit-price--old strong {
  color: var(--muted);
  text-decoration: line-through;
}

.cart-line__unit-price--old.is-hidden {
  display: none;
}

.cart-line__pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-line__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.cart-line__quantity {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem;
  background: rgba(255, 255, 255, 0.82);
}

.cart-qty-button {
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 999px;
  background: rgba(29, 36, 48, 0.08);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
}

.cart-qty-button i {
  font-size: 0.85rem;
}

.cart-qty-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.cart-qty-button--remove {
  background: rgba(239, 93, 69, 0.1);
  color: var(--accent);
}

.cart-line__remove-form {
  margin: 0;
}

.cart-line__remove-form .js-loading-button {
  min-width: 2rem;
  padding: 0;
}

.cart-qty-input {
  width: 3rem;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 800;
  color: var(--ink);
}

.cart-qty-input:focus {
  outline: none;
}

.cart-line__pricing strong {
  color: var(--accent);
  font-size: 1.2rem;
}

.cart-summary-card {
  padding: 1.4rem;
}

.cart-summary-card h2 {
  margin: 0 0 1rem;
  font-size: 1.3rem;
}

.cart-fulfillment-card {
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.68);
}

.cart-fulfillment-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1rem;
}

.cart-fulfillment-options {
  display: grid;
  gap: 0.65rem;
}

.cart-choice {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.75rem 0.9rem;
  background: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.cart-choice.is-disabled {
  opacity: 0.5;
}

.cart-branch-group {
  margin-top: 0.9rem;
}

.cart-branch-group.is-hidden {
  display: none;
}

#cart-delivery-panel.is-hidden {
  display: none;
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-summary-row--grand strong {
  color: var(--accent);
  font-size: 1.15rem;
}

.cart-summary-note {
  margin-top: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.94rem;
}

.cart-summary-card__button {
  width: 100%;
  margin-top: 1rem;
}

.checkout-page__intro {
  margin: 0.55rem 0 0;
  color: var(--muted);
  max-width: 54rem;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 380px);
  gap: 1.35rem;
  align-items: start;
}

.checkout-card {
  border: 1px solid var(--line);
  border-radius: 1.75rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.checkout-form-card {
  padding: 1.5rem;
  display: grid;
  gap: 1.4rem;
}

.checkout-summary-card {
  position: sticky;
  top: 1.25rem;
  padding: 1.4rem;
}

.checkout-summary-card__header h2 {
  margin: 0;
  font-size: 1.35rem;
}

.checkout-summary-card__header p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.checkout-section {
  display: grid;
  gap: 1rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.checkout-section:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

.checkout-section__head h2 {
  margin: 0;
  font-size: 1.15rem;
}

.checkout-section__head p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.checkout-address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.checkout-address-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.checkout-address-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-address-card__body {
  display: grid;
  gap: 0.45rem;
  height: 100%;
  padding: 1rem;
  border-radius: 1.2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.checkout-address-card:hover .checkout-address-card__body,
.checkout-address-card.is-active .checkout-address-card__body {
  border-color: rgba(203, 93, 46, 0.45);
  box-shadow: 0 14px 30px rgba(203, 93, 46, 0.12);
  transform: translateY(-2px);
}

.checkout-address-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.checkout-address-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(203, 93, 46, 0.12);
  color: #9e4a23;
  font-size: 0.8rem;
  font-weight: 800;
}

.checkout-address-card__name {
  font-weight: 800;
  color: var(--ink);
}

.checkout-address-card__meta {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.checkout-field {
  min-height: 3.25rem;
  border-radius: 1rem;
}

.checkout-validation-summary {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: #fff3f0;
  border: 1px solid #ffd2c7;
  color: #b5421f;
}

.checkout-fulfillment-panel {
  height: 100%;
  margin-top: 0;
}

.checkout-submit {
  min-height: 3.4rem;
}

.checkout-summary-card__items {
  display: grid;
  gap: 0.85rem;
  margin: 1.2rem 0;
}

.checkout-summary-item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.95rem 1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(223, 228, 233, 0.85);
}

.checkout-summary-item__content {
  display: grid;
  gap: 0.3rem;
}

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

.checkout-summary-item__price {
  white-space: nowrap;
}

.checkout-summary-card__totals {
  display: grid;
  gap: 0.85rem;
}

.checkout-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.2rem 0;
}

.checkout-summary-total span {
  color: var(--muted);
}

.checkout-summary-total--grand {
  margin-top: 0.35rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
}

.checkout-summary-total--grand span,
.checkout-summary-total--grand strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.toast-host {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 2000;
  display: grid;
  gap: 0.75rem;
  width: min(360px, calc(100vw - 2rem));
}

.toast-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.toast-card--success {
  border-color: rgba(44, 138, 86, 0.28);
}

.toast-card--error {
  border-color: rgba(240, 85, 69, 0.32);
}

.toast-card--info {
  border-color: rgba(52, 114, 214, 0.3);
}

.toast-card__icon {
  font-size: 1.15rem;
}

.toast-card--success .toast-card__icon {
  color: #2c8a56;
}

.toast-card--error .toast-card__icon {
  color: #d4493d;
}

.toast-card--info .toast-card__icon {
  color: #3472d6;
}

.toast-card__body {
  color: var(--ink);
  line-height: 1.7;
}

.toast-card__close {
  border: none;
  background: transparent;
  color: var(--muted);
}

.shell-footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
}

@media (max-width: 1200px) {
  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-interlude__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-final-cta {
    grid-template-columns: 1fr;
  }

  .home-final-cta__actions {
    justify-content: flex-start;
  }

  .store-info-hero,
  .store-info-overview,
  .store-branches-grid {
    grid-template-columns: 1fr;
  }

  .store-info-hero__stats {
    min-width: 0;
  }
}

@media (max-width: 991.98px) {
  .hero-panel,
  .feature-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .promo-interlude__grid {
    grid-template-columns: 1fr;
  }

  .shop-hero,
  .shop-collections,
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-page__header {
    flex-direction: column;
    align-items: stretch;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary-card {
    position: static;
  }

  .cart-line {
    grid-template-columns: 1fr;
  }

  .cart-line__aside {
    gap: 0.55rem;
  }

  .cart-line__limit-note--below-media {
    margin-top: 0;
  }

  .cart-line__pricing {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-line__controls {
    justify-content: space-between;
  }
}

/* Account login redesign */
.account-auth-page--minimal {
  min-height: calc(100vh - 180px);
  display: grid;
  place-items: center;
  padding: 3rem 1rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 30%),
    linear-gradient(135deg, #edf3fc 0%, #dfe8f7 100%);
  border-radius: 2rem;
}

.account-auth-shell--minimal {
  width: 100%;
  max-width: 560px;
}

.account-auth-card--minimal {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 2rem 2rem 1.8rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(20, 28, 44, 0.06);
  box-shadow: 0 30px 70px rgba(44, 85, 162, 0.18);
  display: grid;
  gap: 1.3rem;
}

.account-auth-logo {
  display: grid;
  place-items: center;
}

.account-auth-logo__frame {
  width: 152px;
  height: 152px;
  display: grid;
  place-items: center;
  border-radius: 1.8rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid rgba(20, 28, 44, 0.06);
  box-shadow: 0 18px 45px rgba(20, 28, 44, 0.08);
  color: #1f6fe5;
}

.account-auth-logo__frame svg {
  width: 74px;
  height: 74px;
}

.account-auth-card__intro--centered {
  text-align: center;
  display: grid;
  gap: 0.45rem;
}

.account-auth-card__intro--centered h1 {
  margin: 0;
  font-size: 2.3rem;
  font-weight: 800;
  color: #1454b2;
}

.account-auth-card__intro--centered h2 {
  margin: 0;
  font-size: 1.1rem;
}

.account-auth-card__intro--centered p:last-child {
  color: var(--muted);
  margin: 0;
  line-height: 1.8;
}

.account-auth-tabs--minimal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(20, 28, 44, 0.05);
}

.account-auth-tabs--minimal .account-auth-tab {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  padding: 0.8rem 0.7rem;
  transition: 180ms ease;
}

.account-auth-tabs--minimal .account-auth-tab.is-active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(20, 28, 44, 0.08);
}

.account-auth-form--minimal {
  display: grid;
  gap: 0.9rem;
}

.account-input-wrap {
  position: relative;
}

.account-auth-input {
  min-height: 60px;
  padding-inline: 1rem 3.2rem;
  border-radius: 1.05rem;
  font-size: 1.05rem;
  border: 1px solid rgba(20, 28, 44, 0.14);
  background: #fff;
}

.account-auth-input:focus {
  border-color: #1f6fe5;
  box-shadow: 0 0 0 0.2rem rgba(31, 111, 229, 0.12);
}

.account-auth-input__icon {
  position: absolute;
  inset-inline-end: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.3rem;
  height: 1.3rem;
  color: rgba(20, 28, 44, 0.35);
}

.account-auth-input__icon svg {
  width: 100%;
  height: 100%;
}

.account-channel-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.account-choice-chip {
  position: relative;
  margin: 0;
}

.account-choice-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.account-choice-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 28, 44, 0.12);
  background: #fff;
  color: var(--muted);
  font-weight: 700;
}

.account-choice-chip input:checked + span {
  border-color: rgba(31, 111, 229, 0.26);
  background: rgba(31, 111, 229, 0.08);
  color: #1454b2;
}

.account-auth-submit {
  min-height: 64px;
  border-radius: 1.1rem;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(20, 84, 178, 0.22);
}

.account-auth-links {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.account-auth-link {
  border: 0;
  background: transparent;
  color: #1454b2;
  font-weight: 800;
  padding: 0;
}

.account-auth-footer {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}

@media (max-width: 767.98px) {
  .account-auth-card--minimal {
    padding: 1.35rem;
    border-radius: 1.5rem;
  }

  .account-auth-logo__frame {
    width: 122px;
    height: 122px;
  }

  .account-auth-tabs--minimal {
    grid-template-columns: 1fr;
    border-radius: 1.2rem;
  }

  .account-auth-links {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Account login modern */
.auth-v2-page {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 180px);
  display: grid;
  place-items: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #edf4ff 0%, #e4ecfb 52%, #eef4ff 100%);
  border-radius: 2rem;
}

.auth-v2-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.7;
  animation: auth-float 12s ease-in-out infinite;
}

.auth-v2-orb--one {
  width: 18rem;
  height: 18rem;
  top: 8%;
  left: 8%;
  background: rgba(255, 255, 255, 0.9);
}

.auth-v2-orb--two {
  width: 12rem;
  height: 12rem;
  bottom: 10%;
  right: 10%;
  background: rgba(255, 209, 163, 0.38);
  animation-delay: -4s;
}

.auth-v2-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1220px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.auth-v2-side {
  display: grid;
  gap: 1.2rem;
  padding: 1rem 2rem;
  animation: auth-slide-up 700ms ease both;
}

.auth-v2-side__badge {
  width: fit-content;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #1454b2;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(20, 28, 44, 0.07);
}

.auth-v2-side h1 {
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 4.4rem);
  line-height: 1.08;
  color: #102a56;
}

.auth-v2-side p {
  margin: 0;
  max-width: 40rem;
  color: #5d6f8d;
  font-size: 1.08rem;
  line-height: 2;
}

.auth-v2-side__features {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.6rem;
}

.auth-v2-feature {
  display: grid;
  gap: 0.2rem;
  max-width: 31rem;
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(20, 28, 44, 0.05);
  box-shadow: 0 12px 30px rgba(20, 28, 44, 0.05);
}

.auth-v2-feature strong {
  color: #173d79;
}

.auth-v2-feature span {
  color: #687a96;
}

.auth-v2-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(20, 28, 44, 0.06);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 30px 70px rgba(52, 88, 158, 0.16);
  display: grid;
  gap: 1.15rem;
  animation: auth-slide-up 700ms ease 120ms both;
}

.auth-v2-logo {
  display: grid;
  place-items: center;
}

.auth-v2-logo__frame {
  width: 138px;
  height: 138px;
  display: grid;
  place-items: center;
  border-radius: 1.8rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid rgba(20, 28, 44, 0.06);
  box-shadow: 0 18px 45px rgba(20, 28, 44, 0.08);
  color: #1f6fe5;
}

.auth-v2-logo__frame svg {
  width: 68px;
  height: 68px;
}

.auth-v2-heading {
  text-align: center;
  display: grid;
  gap: 0.35rem;
}

.auth-v2-heading__eyebrow {
  color: #5c6f8d;
  font-weight: 800;
}

.auth-v2-heading h2 {
  margin: 0;
  font-size: 2.9rem;
  color: #1454b2;
  font-weight: 800;
}

.auth-v2-heading h3 {
  margin: 0;
  font-size: 1.15rem;
  color: #162946;
}

.auth-v2-heading p {
  margin: 0;
  color: #687a96;
  line-height: 1.8;
  padding-inline: 0.5rem;
}

.auth-v2-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(20, 28, 44, 0.05);
}

.auth-v2-tab {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #72829c;
  padding: 0.85rem 0.8rem;
  font-weight: 800;
  transition: 180ms ease;
}

.auth-v2-tab.is-active {
  background: #fff;
  color: #142949;
  box-shadow: 0 10px 24px rgba(20, 28, 44, 0.08);
}

.auth-v2-form {
  display: grid;
  gap: 0.9rem;
}

.auth-v2-form--verify {
  margin-top: 0.35rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(20, 28, 44, 0.08);
}

.auth-v2-form--verify.is-visible {
  animation: auth-reveal 260ms ease both;
}

.auth-v2-field {
  display: grid;
  gap: 0.35rem;
}

.auth-v2-field label {
  color: #1e355b;
  font-weight: 700;
}

.auth-v2-input-wrap {
  position: relative;
}

.auth-v2-input {
  min-height: 62px;
  border-radius: 1.05rem;
  border: 1px solid rgba(20, 28, 44, 0.14);
  padding-inline: 1rem 3.15rem;
  font-size: 1.05rem;
  background: #fff;
}

.auth-v2-input:focus {
  border-color: #1f6fe5;
  box-shadow: 0 0 0 0.2rem rgba(31, 111, 229, 0.11);
}

.auth-v2-input__icon {
  position: absolute;
  inset-inline-end: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.3rem;
  height: 1.3rem;
  color: rgba(20, 28, 44, 0.34);
}

.auth-v2-input__icon svg {
  width: 100%;
  height: 100%;
}

.auth-v2-channel-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.auth-v2-channel {
  position: relative;
  margin: 0;
}

.auth-v2-channel input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.auth-v2-channel span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 28, 44, 0.12);
  background: #fff;
  color: #677895;
  font-weight: 700;
  transition: 180ms ease;
}

.auth-v2-channel input:checked + span {
  border-color: rgba(31, 111, 229, 0.26);
  background: rgba(31, 111, 229, 0.08);
  color: #1454b2;
}

.auth-v2-note {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(20, 28, 44, 0.04);
  color: #6a7b96;
  line-height: 1.8;
}

.auth-v2-submit {
  min-height: 62px;
  border-radius: 1.1rem;
  font-size: 1.18rem;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(20, 84, 178, 0.22);
}

.auth-v2-step {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(20, 28, 44, 0.05);
  color: #5d708f;
  font-weight: 700;
}

.auth-v2-links {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.auth-v2-link {
  border: 0;
  background: transparent;
  color: #1454b2;
  font-weight: 800;
  padding: 0;
}

.auth-v2-footer {
  text-align: center;
  color: #75849c;
  font-size: 0.98rem;
}

@keyframes auth-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -18px, 0) scale(1.04); }
}

@keyframes auth-slide-up {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes auth-reveal {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 991.98px) {
  .auth-v2-grid {
    grid-template-columns: 1fr;
  }

  .auth-v2-side {
    display: none;
  }

  .auth-v2-card {
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .auth-v2-page {
    padding: 1.4rem 0.6rem;
    border-radius: 1.3rem;
  }

  .auth-v2-card {
    padding: 1.2rem;
    border-radius: 1.5rem;
  }

  .auth-v2-logo__frame {
    width: 116px;
    height: 116px;
  }

  .auth-v2-heading h2 {
    font-size: 2.25rem;
  }

  .auth-v2-tabs {
    grid-template-columns: 1fr;
    border-radius: 1.15rem;
  }

  .auth-v2-links {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Account login modern refresh */
.auth-modern-page {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 180px);
  display: grid;
  place-items: center;
  padding: 2.75rem 1rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.96), transparent 26%),
    radial-gradient(circle at 86% 82%, rgba(255, 219, 186, 0.32), transparent 22%),
    linear-gradient(135deg, #edf3fc 0%, #dfe9fb 46%, #eef4ff 100%);
  border-radius: 2rem;
}

.auth-modern-bg {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(12px);
  animation: auth-modern-float 14s ease-in-out infinite;
}

.auth-modern-bg--one {
  top: 8%;
  right: 8%;
  width: 20rem;
  height: 20rem;
  background: rgba(255, 255, 255, 0.65);
}

.auth-modern-bg--two {
  left: 6%;
  bottom: 8%;
  width: 14rem;
  height: 14rem;
  background: rgba(38, 110, 219, 0.12);
  animation-delay: -5s;
}

.auth-modern-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 460px);
  gap: 2rem;
  align-items: center;
}

.auth-modern-showcase {
  display: grid;
  gap: 1.25rem;
  padding: 1rem 1rem 1rem 2rem;
  animation: auth-modern-rise 700ms ease both;
}

.auth-modern-showcase__badge {
  width: fit-content;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #1454b2;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(20, 28, 44, 0.07);
}

.auth-modern-showcase h1 {
  margin: 0;
  font-size: clamp(2.5rem, 4.2vw, 4.8rem);
  line-height: 1.05;
  color: #102a56;
}

.auth-modern-showcase p {
  margin: 0;
  max-width: 39rem;
  color: #62728c;
  font-size: 1.06rem;
  line-height: 1.95;
}

.auth-modern-showcase__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.35rem;
}

.auth-modern-mini-card {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.05rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(20, 28, 44, 0.05);
  box-shadow: 0 18px 32px rgba(20, 28, 44, 0.05);
}

.auth-modern-mini-card strong {
  color: #173d79;
  font-size: 1rem;
}

.auth-modern-mini-card span {
  color: #6d7d97;
  line-height: 1.75;
  font-size: 0.94rem;
}

.auth-modern-card {
  position: relative;
  display: grid;
  gap: 1.15rem;
  padding: 2rem 1.8rem 1.45rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(20, 28, 44, 0.06);
  box-shadow: 0 32px 80px rgba(52, 88, 158, 0.16);
  animation: auth-modern-rise 700ms ease 120ms both;
}

.auth-modern-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.26), transparent 38%);
  pointer-events: none;
}

.auth-modern-brand {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.85rem;
}

.auth-modern-brand__mark {
  width: 114px;
  height: 114px;
  display: grid;
  place-items: center;
  border-radius: 1.8rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  color: #1f6fe5;
  border: 1px solid rgba(20, 28, 44, 0.06);
  box-shadow: 0 18px 40px rgba(20, 28, 44, 0.08);
  animation: auth-modern-pulse 4.5s ease-in-out infinite;
}

.auth-modern-brand__mark svg {
  width: 58px;
  height: 58px;
}

.auth-modern-brand__copy {
  display: grid;
  justify-items: center;
  gap: 0.15rem;
}

.auth-modern-brand__copy span {
  color: #60718b;
  font-weight: 800;
}

.auth-modern-brand__copy strong {
  color: #1454b2;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 900;
}

.auth-modern-head {
  position: relative;
  z-index: 1;
  text-align: center;
  display: grid;
  gap: 0.45rem;
}

.auth-modern-head h2 {
  margin: 0;
  color: #162946;
  font-size: 1.22rem;
  font-weight: 800;
}

.auth-modern-head p {
  margin: 0;
  color: #6b7b95;
  line-height: 1.85;
}

.auth-modern-tabs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(20, 28, 44, 0.05);
}

.auth-modern-tab {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #72829c;
  padding: 0.85rem 0.8rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.auth-modern-tab:hover {
  color: #173d79;
}

.auth-modern-tab.is-active {
  background: #fff;
  color: #152a49;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(20, 28, 44, 0.08);
}

.auth-modern-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
}

.auth-modern-form--verify {
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(20, 28, 44, 0.08);
}

.auth-modern-form--verify.is-visible {
  animation: auth-modern-reveal 260ms ease both;
}

.auth-modern-field {
  display: grid;
  gap: 0.35rem;
}

.auth-modern-field label {
  color: #1d355c;
  font-weight: 800;
}

.auth-modern-input-wrap {
  position: relative;
}

.auth-modern-input {
  min-height: 60px;
  border-radius: 1.1rem;
  border: 1px solid rgba(20, 28, 44, 0.13);
  background: rgba(255, 255, 255, 0.92);
  padding-inline: 1rem 3.2rem;
  font-size: 1.03rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.auth-modern-input:focus {
  border-color: #1f6fe5;
  box-shadow: 0 0 0 0.22rem rgba(31, 111, 229, 0.11);
  transform: translateY(-1px);
}

.auth-modern-input__icon {
  position: absolute;
  inset-inline-end: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(20, 28, 44, 0.35);
}

.auth-modern-input__icon svg {
  width: 100%;
  height: 100%;
}

.auth-modern-channel-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.auth-modern-channel {
  position: relative;
  margin: 0;
}

.auth-modern-channel input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.auth-modern-channel span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 28, 44, 0.12);
  background: #fff;
  color: #667895;
  font-weight: 800;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.auth-modern-channel input:checked + span {
  border-color: rgba(31, 111, 229, 0.25);
  background: rgba(31, 111, 229, 0.08);
  color: #1454b2;
  transform: translateY(-1px);
}

.auth-modern-note {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(20, 28, 44, 0.045);
  color: #6a7b96;
  line-height: 1.8;
}

.auth-modern-submit {
  min-height: 62px;
  border-radius: 1.2rem;
  font-size: 1.14rem;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(20, 84, 178, 0.22);
}

.auth-modern-step {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  min-height: 40px;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: rgba(20, 28, 44, 0.05);
  color: #60718c;
}

.auth-modern-step span {
  display: inline-grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: #fff;
  color: #1454b2;
  font-size: 0.88rem;
  font-weight: 900;
}

.auth-modern-step strong {
  font-size: 0.95rem;
}

.auth-modern-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.auth-modern-link {
  border: 0;
  background: transparent;
  color: #1454b2;
  font-weight: 800;
  padding: 0;
}

.auth-modern-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #77859d;
  font-size: 0.96rem;
}

@keyframes auth-modern-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -18px, 0) scale(1.04); }
}

@keyframes auth-modern-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes auth-modern-reveal {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes auth-modern-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@media (max-width: 991.98px) {
  .auth-modern-shell {
    grid-template-columns: 1fr;
    max-width: 540px;
  }

  .auth-modern-showcase {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .auth-modern-page {
    padding: 1.25rem 0.55rem;
    border-radius: 1.35rem;
  }

  .auth-modern-card {
    padding: 1.25rem;
    border-radius: 1.5rem;
  }

  .auth-modern-brand__mark {
    width: 96px;
    height: 96px;
  }

  .auth-modern-brand__copy strong {
    font-size: 2rem;
  }

  .auth-modern-tabs {
    grid-template-columns: 1fr;
    border-radius: 1.1rem;
  }

  .auth-modern-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Account login flip card */
.auth-flip-page {
  min-height: calc(100vh - 180px);
  display: grid;
  place-items: center;
  padding: 1.2rem 0.85rem;
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.92), transparent 26%),
    linear-gradient(135deg, #edf3fc 0%, #dfe8f7 55%, #eaf1fc 100%);
  border-radius: 2rem;
}

.auth-flip-shell {
  width: 100%;
  display: grid;
  place-items: center;
}

.auth-flip-card {
  position: relative;
  width: min(100%, 460px);
  min-height: 590px;
  animation: auth-flip-appear 420ms cubic-bezier(.22,1,.36,1) both;
}

.auth-flip-card__face {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  grid-auto-rows: max-content;
  gap: 0.8rem;
  padding: 1.45rem 1.35rem 0.7rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(20, 28, 44, 0.06);
  box-shadow: 0 32px 80px rgba(44, 85, 162, 0.17);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.985);
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
  pointer-events: none;
}

.auth-flip-card__face.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.auth-flip-card__face--front {
  padding-bottom: 0.55rem;
}

.auth-flip-backpanel {
  display: grid;
  align-content: center;
  gap: 0.9rem;
  min-height: 100%;
  padding-block: 0.35rem;
  box-sizing: border-box;
}

.auth-flip-brand {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  text-align: center;
}

.auth-flip-brand__mark {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 1.9rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(20, 28, 44, 0.06);
  box-shadow: 0 18px 40px rgba(20, 28, 44, 0.08);
  color: #1f6fe5;
}

.auth-flip-brand__mark svg {
  width: 46px;
  height: 46px;
}

.auth-flip-brand__eyebrow {
  color: #60718b;
  font-weight: 800;
}

.auth-flip-brand h1 {
  margin: 0;
  color: #1454b2;
  font-size: 2.05rem;
  font-weight: 900;
  line-height: 1;
}

.auth-flip-form {
  display: grid;
  gap: 0.75rem;
}

.auth-flip-field {
  display: grid;
  gap: 0.35rem;
}

.auth-flip-field label {
  color: #1c355c;
  font-weight: 800;
}

.auth-flip-input-wrap {
  position: relative;
}

.auth-flip-input {
  min-height: 54px;
  border-radius: 1.1rem;
  border: 1px solid rgba(20, 28, 44, 0.13);
  background: #fff;
  padding-inline: 1rem 3.15rem;
  font-size: 1.04rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.auth-flip-input:focus {
  border-color: #1f6fe5;
  box-shadow: 0 0 0 0.22rem rgba(31, 111, 229, 0.11);
}

.auth-flip-input__icon {
  position: absolute;
  inset-inline-end: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(20, 28, 44, 0.35);
}

.auth-flip-input__icon svg {
  width: 100%;
  height: 100%;
}

.auth-flip-error {
  min-height: 1.15rem;
  color: #d4493d;
  font-size: 0.88rem;
  font-weight: 700;
}

.auth-flip-field.is-invalid .auth-flip-input {
  border-color: rgba(212, 73, 61, 0.55);
  box-shadow: 0 0 0 0.18rem rgba(212, 73, 61, 0.1);
}

.auth-flip-field.is-shaking {
  animation: auth-input-shake 360ms ease;
}

.auth-flip-remember {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.auth-flip-utility-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.auth-flip-check {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  color: #52647f;
  font-weight: 700;
}

.auth-flip-check input {
  width: 1rem;
  height: 1rem;
  accent-color: #1454b2;
}

.auth-flip-links,
.auth-flip-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.auth-flip-actions--single {
  justify-content: stretch;
}

.auth-flip-link {
  border: 0;
  background: transparent;
  color: #1454b2;
  font-weight: 800;
  padding: 0;
}

.auth-flip-link--back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
}

.auth-flip-register-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  color: #687a95;
  font-weight: 700;
}

.auth-flip-submit,
.auth-flip-secondary {
  min-height: 48px;
  border-radius: 0.95rem;
  font-size: 0.96rem;
  font-weight: 800;
  padding-inline: 1rem;
  border: 1px solid transparent;
}

.auth-flip-submit {
  flex: 1 1 auto;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.auth-flip-submit--primary {
  border-radius: 0.95rem;
  padding: 0.75rem 1rem;
  background: #eb5a47;
  color: #fff;
  box-shadow: 0 10px 22px rgba(235, 90, 71, 0.18);
}

.auth-flip-submit--primary:hover {
  background: #de513e;
  color: #fff;
}

.auth-flip-secondary {
  flex: 1 1 150px;
}

.auth-flip-backhead {
  display: grid;
  gap: 0.8rem;
}

.auth-flip-backhead--centered {
  justify-items: center;
  text-align: center;
  gap: 0.5rem;
}

.auth-flip-back {
  width: fit-content;
  border: 0;
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  background: rgba(20, 28, 44, 0.06);
  color: #173d79;
  font-weight: 800;
}

.auth-flip-backhead__eyebrow {
  color: #60718b;
  font-weight: 800;
}

.auth-flip-backhead h2 {
  margin: 0.15rem 0 0;
  color: #162946;
  font-size: 1.55rem;
  font-weight: 900;
}

.auth-flip-backhead p {
  margin: 0.35rem 0 0;
  color: #697a95;
  line-height: 1.9;
}

.auth-flip-form--back {
  margin-top: 0.3rem;
}

.auth-flip-form--centered {
  justify-items: center;
}

.auth-flip-form--centered .auth-flip-field,
.auth-flip-form--centered .auth-flip-submit,
.auth-flip-form--centered .auth-flip-note,
.auth-flip-form--centered .account-dev-code {
  width: 100%;
}

.auth-flip-input--centered {
  text-align: center;
}

.auth-flip-channel-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.auth-flip-channel-row--centered {
  justify-content: center;
}

.auth-flip-channel {
  position: relative;
  margin: 0;
  flex: 1 1 110px;
  min-width: 110px;
}

.auth-flip-channel input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.auth-flip-channel span {
  display: grid;
  justify-items: center;
  gap: 0.2rem;
  min-height: 84px;
  padding: 0.8rem 0.7rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(20, 28, 44, 0.12);
  background: linear-gradient(180deg, #fff 0%, #f9fbff 100%);
  color: #667895;
  font-weight: 800;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.auth-flip-channel input:checked + span {
  border-color: rgba(31, 111, 229, 0.34);
  background: linear-gradient(180deg, rgba(31, 111, 229, 0.12) 0%, rgba(31, 111, 229, 0.06) 100%);
  color: #1454b2;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(31, 111, 229, 0.14);
}

.auth-flip-channel span svg {
  width: 1.35rem;
  height: 1.35rem;
  color: #5b6f8f;
}

.auth-flip-channel span strong {
  font-size: 0.95rem;
  line-height: 1.1;
}

.auth-flip-channel span small {
  color: #8090a7;
  font-size: 0.74rem;
  font-weight: 700;
}

.auth-flip-channel input:checked + span svg,
.auth-flip-channel input:checked + span small {
  color: #1454b2;
}

.auth-flip-note {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(20, 28, 44, 0.045);
  color: #6a7b96;
  line-height: 1.8;
}

.auth-flip-note--centered {
  text-align: center;
}

.auth-flip-step {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.auth-flip-footer {
  text-align: center;
  color: #77859d;
}

@keyframes auth-flip-appear {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes auth-input-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

@media (max-width: 767.98px) {
  .auth-flip-page {
    padding: 1rem 0.45rem;
    border-radius: 1.35rem;
  }

  .auth-flip-card {
    min-height: 585px;
  }

  .auth-flip-card__face {
    padding: 1.1rem 0.95rem 1rem;
    border-radius: 1.5rem;
  }

  .auth-flip-brand__mark {
    width: 82px;
    height: 82px;
  }

  .auth-flip-brand h1 {
    font-size: 1.85rem;
  }

  .auth-flip-links,
  .auth-flip-actions {
    flex-direction: column;
  }

  .auth-flip-utility-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.shell-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.shell-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.shell-footer__links a {
  color: var(--muted);
  font-weight: 700;
}

.content-page-shell {
  padding: 2rem 0 1rem;
}

.store-info-page {
  display: grid;
  gap: 1.4rem;
  padding: 1.5rem 0 1rem;
}

.store-info-hero,
.store-info-card,
.store-branch-card,
.home-final-cta {
  border: 1px solid rgba(29, 36, 48, 0.08);
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.08);
}

.store-info-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.65rem 1.75rem;
}

.store-info-hero__content h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.06;
  color: #101826;
}

.store-info-hero__content p {
  margin: 0;
  max-width: 46rem;
  color: var(--muted);
  line-height: 1.85;
}

.store-info-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  min-width: min(100%, 30rem);
}

.store-info-stat {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 1.25rem;
  background: rgba(248, 244, 238, 0.92);
  text-align: center;
}

.store-info-stat strong {
  color: #101826;
  font-size: 1.08rem;
  font-weight: 800;
  word-break: break-word;
}

.store-info-stat span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.store-info-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 1.25rem;
  align-items: start;
}

.store-info-card {
  padding: 1.35rem;
}

.store-info-brand {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.store-info-brand__logo,
.store-info-brand__fallback {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 1.5rem;
}

.store-info-brand__logo {
  object-fit: cover;
  background: #fff;
}

.store-info-brand__fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(240, 85, 69, 0.16), rgba(44, 138, 86, 0.14));
  color: #101826;
  font-size: 2rem;
  font-weight: 900;
}

.store-info-brand h2 {
  margin: 0 0 0.45rem;
  color: #101826;
  font-size: 1.6rem;
  font-weight: 900;
}

.store-info-brand p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.store-info-contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.store-info-contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 36, 48, 0.08);
  background: rgba(248, 244, 238, 0.94);
  color: #1d2430;
  font-weight: 700;
}

.store-info-support {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.store-info-support div {
  display: grid;
  gap: 0.3rem;
  padding: 0.95rem 1rem;
  border-radius: 1.2rem;
  background: rgba(248, 244, 238, 0.94);
}

.store-info-support span {
  color: #99664f;
  font-size: 0.82rem;
  font-weight: 800;
}

.store-info-support strong {
  color: #101826;
  font-size: 1rem;
  font-weight: 800;
}

.store-info-card--map iframe,
.store-branch-card__map iframe {
  width: 100%;
  border: 0;
  border-radius: 1.35rem;
  background: #f2efe9;
}

.store-info-card--map {
  display: grid;
  gap: 1rem;
}

.store-info-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.store-info-card__head h3 {
  margin: 0;
  color: #101826;
  font-size: 1.2rem;
  font-weight: 900;
}

.store-info-card__head a {
  color: #cb5d2e;
  font-weight: 800;
}

.store-info-card--map iframe {
  min-height: 20rem;
}

.store-branches-section {
  padding-top: 0.2rem;
}

.store-branches-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.store-branch-card {
  overflow: hidden;
}

.store-branch-card__media {
  position: relative;
  aspect-ratio: 1.7 / 1;
  overflow: hidden;
  background: #f2efe9;
}

.store-branch-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-branch-card__badge {
  position: absolute;
  top: 1rem;
  inset-inline-start: 1rem;
  display: inline-flex;
  align-items: center;
  min-height: 2.05rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #111827;
  font-size: 0.8rem;
  font-weight: 800;
}

.store-branch-card__body {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.store-branch-card__head h3 {
  margin: 0 0 0.3rem;
  color: #101826;
  font-size: 1.45rem;
  font-weight: 900;
}

.store-branch-card__head p,
.store-branch-card__notes {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.store-branch-card__details {
  display: grid;
  gap: 0.6rem;
}

.store-branch-card__details div {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #273244;
}

.store-branch-card__details i {
  color: #cb5d2e;
  margin-top: 0.2rem;
}

.store-branch-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-branch-card__map iframe {
  min-height: 14rem;
}

.content-page-hero,
.content-page-body {
  border: 1px solid var(--line);
  border-radius: 1.75rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.content-page-hero {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.content-page-icon {
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  border-radius: 1.75rem;
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
  color: #1454b2;
  font-size: 2.2rem;
  box-shadow: 0 18px 36px rgba(20, 28, 44, 0.08);
}

.content-page-kicker {
  margin: 0 0 0.4rem;
  color: #99664f;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.content-page-hero h1 {
  margin: 0 0 0.45rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.content-page-summary {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.content-page-body {
  padding: 1.6rem;
  color: var(--muted);
  line-height: 2;
}

@media (max-width: 767.98px) {
  .content-page-hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

.notification-center {
  position: relative;
  z-index: 140;
}

.notification-center__toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(20, 28, 44, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(20, 28, 44, 0.06);
  white-space: nowrap;
}

.notification-center__icon {
  font-size: 1rem;
}

.notification-center__label {
  font-size: 0.92rem;
}

.notification-center__badge {
  min-width: 1.4rem;
  height: 1.4rem;
  padding: 0 0.35rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #e95845;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
}

.notification-center__panel {
  position: absolute;
  inset-inline-end: 0;
  top: calc(100% + 0.8rem);
  width: min(390px, 92vw);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 48px rgba(20, 28, 44, 0.16);
  backdrop-filter: blur(18px);
  z-index: 500;
  overflow: hidden;
}

.notification-center__panel-header,
.notification-center__panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(20, 28, 44, 0.08);
}

.notification-center__panel-footer {
  border-bottom: 0;
  border-top: 1px solid rgba(20, 28, 44, 0.08);
  justify-content: center;
}

.notification-center__mark-all,
.notification-center__view-all {
  color: #1454b2;
  font-size: 0.83rem;
  font-weight: 800;
  background: transparent;
  border: 0;
}

.notification-center__list {
  max-height: 370px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.notification-center__empty {
  padding: 1.15rem 1rem;
  color: var(--muted);
  text-align: center;
}

.notification-center__item {
  display: block;
  padding: 0.95rem 1rem;
  color: inherit;
  border-bottom: 1px solid rgba(20, 28, 44, 0.06);
  transition: background-color 160ms ease, transform 160ms ease;
}

.notification-center__item:last-child {
  border-bottom: 0;
}

.notification-center__item:hover {
  background: rgba(20, 84, 178, 0.05);
  transform: translateY(-1px);
}

.notification-center__item.is-unread {
  background: rgba(20, 84, 178, 0.08);
}

.notification-center__item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.3rem;
}

.notification-center__item-head strong {
  font-size: 0.93rem;
}

.notification-center__item-head time {
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.76rem;
}

.notification-center__item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.84rem;
}

.notification-page-list {
  display: grid;
  gap: 1rem;
}

.notification-page-item,
.notification-page-empty {
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1.2rem 1.25rem;
}

.notification-page-item.is-unread {
  border-color: rgba(20, 84, 178, 0.22);
  box-shadow: 0 22px 38px rgba(20, 84, 178, 0.08);
}

.notification-page-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.notification-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(20, 84, 178, 0.08);
  color: #1454b2;
  font-size: 0.78rem;
  font-weight: 800;
}

.notification-chip--success {
  background: rgba(42, 138, 92, 0.12);
  color: #2a8a5c;
}

.notification-chip--urgent {
  background: rgba(233, 88, 69, 0.12);
  color: #c44c3a;
}

.notification-page-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.12rem;
}

.notification-page-item p {
  margin: 0 0 0.7rem;
  color: var(--muted);
  line-height: 1.85;
}

@media (max-width: 767.98px) {
  .notification-center__label {
    display: none;
  }

  .notification-center__toggle {
    padding-inline: 0.85rem;
  }

  .notification-center__panel {
      inset-inline: 0;
      width: min(100vw - 2rem, 390px);
    }
}

.announcement-bar {
  --announcement-bg: #111111;
  --announcement-text: #ffffff;
  background: var(--announcement-bg);
  color: var(--announcement-text);
  transition: background-color 220ms ease, color 220ms ease;
}

.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
}

.announcement-bar__viewport {
  position: relative;
  width: min(100%, 760px);
  height: 3rem;
  overflow: hidden;
}

.announcement-bar__track {
  display: flex;
  flex-direction: column;
  transition: transform 380ms ease;
}

.announcement-bar__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3rem;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
}

.announcement-bar__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.65rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.announcement-bar__text {
  font-size: 0.96rem;
  line-height: 1.45;
}

.admin-color-preview {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.8rem 0 0.2rem;
}

.admin-color-preview__swatch {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 28, 44, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

@media (max-width: 767.98px) {
  .announcement-bar__inner {
    min-height: 2.55rem;
  }

  .announcement-bar__viewport,
  .announcement-bar__item {
    min-height: 2.55rem;
    height: 2.55rem;
  }

  .announcement-bar__item {
    gap: 0.45rem;
    padding-inline: 0.25rem;
  }

  .announcement-bar__pill {
    min-height: 1.45rem;
    padding-inline: 0.5rem;
    font-size: 0.68rem;
  }

  .announcement-bar__text {
    font-size: 0.84rem;
  }
}

.promo-blocks {
  display: grid;
  gap: 1.5rem;
  margin: 0.35rem 0 2rem;
}

.promo-unit {
  position: relative;
}

.promo-block {
  display: grid;
  gap: 1.25rem;
}

.promo-slider {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: 0 28px 52px rgba(15, 23, 42, 0.14);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #0f172a 0%, #111827 100%);
}

.promo-slider__viewport {
  overflow: hidden;
  border-radius: inherit;
  direction: ltr;
}

.promo-slider__track {
  display: flex;
  width: 100%;
  direction: ltr;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.promo-slider__slide {
  display: block;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
}

.promo-card--slider {
  width: 100%;
  min-height: 26rem;
  border-radius: 2rem;
  opacity: 1;
  transform: none;
  animation: none;
}

.promo-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  box-shadow: 0 18px 28px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.promo-slider__nav:hover {
  transform: translateY(-50%) scale(1.04);
  background: #ffffff;
  box-shadow: 0 22px 34px rgba(15, 23, 42, 0.2);
}

.promo-slider__nav--prev {
  inset-inline-start: 1rem;
}

.promo-slider__nav--next {
  inset-inline-end: 1rem;
}

.promo-slider__slide .promo-card__content {
  width: min(calc(100% - 7.5rem), 29rem);
  margin-inline-start: 4.5rem;
}

.home-hero-promo .promo-slider__slide .promo-card__content {
  width: min(calc(100% - 8rem), 36rem);
  margin-inline-start: 4.75rem;
}

.promo-slider__dots {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 1.2rem;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.55rem;
}

.promo-slider__dot {
  width: 0.8rem;
  height: 0.8rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  transition: width 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.promo-slider__dot.is-active {
  width: 1.7rem;
  background: #ffffff;
  transform: translateY(-1px);
}

.promo-block--single {
  grid-template-columns: minmax(0, 1fr);
}

.promo-block--double,
.promo-block--split-left,
.promo-block--split-right {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.promo-block--triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.promo-block--split-left .promo-card:first-child,
.promo-block--split-right .promo-card:last-child {
  grid-row: span 2;
  min-height: 100%;
}

.promo-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 18.5rem;
  overflow: hidden;
  border-radius: 1.85rem;
  text-decoration: none;
  color: #fff;
  background: #0f172a;
  isolation: isolate;
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.16);
  transform: translateY(18px);
  opacity: 0;
  animation: promo-card-rise 520ms ease forwards;
}

.promo-block .promo-card:nth-child(2) {
  animation-delay: 80ms;
}

.promo-block .promo-card:nth-child(3) {
  animation-delay: 160ms;
}

.promo-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.promo-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.28) 48%, rgba(15, 23, 42, 0.18) 100%);
  transition: background 320ms ease, opacity 320ms ease;
}

.promo-card__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
  width: min(100%, 29rem);
  padding: 2rem 1.8rem;
  transition: transform 260ms ease;
  text-align: start;
}

.promo-card__content h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2.65rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.promo-card__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 34rem;
}

.promo-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 3.2rem;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  color: #111827;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(17, 24, 39, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.promo-unit--clean .promo-card__overlay {
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(15,23,42,0.16) 50%, rgba(15,23,42,0.44) 100%);
}

.promo-unit--clean .promo-card__button {
  background: #f8fafc;
}

.promo-unit--clean .promo-card__content {
  width: min(100%, 25rem);
}

.promo-unit--split .promo-card__overlay {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.54) 34%, rgba(15, 23, 42, 0.1) 100%);
}

.promo-unit--split .promo-card__content {
  width: min(100%, 22rem);
}

.promo-unit--card .promo-card {
  min-height: 19rem;
  background: #ffffff;
  color: #111827;
  box-shadow: 0 24px 40px rgba(15, 23, 42, 0.12);
}

.promo-unit--card .promo-card__overlay {
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.32) 42%, rgba(255,255,255,0.92) 100%);
}

.promo-unit--card .promo-card__content h3,
.promo-unit--card .promo-card__content p {
  color: #111827;
}

.promo-unit--card .promo-card__button {
  background: #111827;
  color: #ffffff;
}

.promo-unit--card .promo-card:hover .promo-card__button,
.promo-unit--card .promo-card:focus-visible .promo-card__button {
  background: #0f172a;
}

.promo-unit--overlay .promo-card__content,
.promo-unit--split .promo-card__content {
  padding-inline-end: 3rem;
}

[dir="ltr"] .promo-unit--overlay .promo-card__content,
[dir="ltr"] .promo-unit--split .promo-card__content {
  padding-inline-end: 1.8rem;
  padding-inline-start: 3rem;
}

[dir="ltr"] .promo-unit--split .promo-card__overlay {
  background: linear-gradient(270deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.54) 34%, rgba(15, 23, 42, 0.1) 100%);
}

[dir="ltr"] .promo-slider__dots {
  direction: ltr;
}

.promo-slider::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  height: 6rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.12) 100%);
}

.promo-card:hover .promo-card__image,
.promo-card:focus-visible .promo-card__image {
  transform: scale(1.06);
  filter: saturate(1.04);
}

.promo-card:hover .promo-card__overlay,
.promo-card:focus-visible .promo-card__overlay {
  background:
    linear-gradient(140deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.34) 48%, rgba(15, 23, 42, 0.16) 100%);
}

.promo-card:hover .promo-card__content,
.promo-card:focus-visible .promo-card__content {
  transform: translateY(-4px);
}

.promo-card:hover .promo-card__button,
.promo-card:focus-visible .promo-card__button {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(17, 24, 39, 0.18);
  background: #ffffff;
}

.promo-card:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.86);
  outline-offset: 3px;
}

.promotion-landing {
  display: grid;
  gap: 2rem;
  margin: 2rem 0 3rem;
}

.promotion-landing__hero {
  position: relative;
  display: grid;
  align-items: stretch;
  min-height: 22rem;
  overflow: hidden;
  border-radius: 2rem;
  background: #0f172a;
  box-shadow: 0 28px 52px rgba(15, 23, 42, 0.14);
}

.promotion-landing__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.76) 0%, rgba(15, 23, 42, 0.35) 52%, rgba(15, 23, 42, 0.16) 100%);
}

.promotion-landing__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promotion-landing__hero-copy {
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: 0;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
  width: min(100%, 42rem);
  padding: 2.5rem;
  color: #fff;
}

.promotion-landing__hero-copy h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.promotion-landing__hero-copy p {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  line-height: 1.85;
}

@keyframes promo-card-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1199.98px) {
  .promo-card {
    min-height: 16.5rem;
  }

  .promo-card--slider {
    min-height: 22rem;
  }

  .promo-slider__slide .promo-card__content {
    width: min(calc(100% - 6.5rem), 27rem);
    margin-inline-start: 4rem;
  }

  .promo-unit--overlay .promo-card__content,
  .promo-unit--split .promo-card__content {
    padding-inline-end: 2.2rem;
  }

  [dir="ltr"] .promo-unit--overlay .promo-card__content,
  [dir="ltr"] .promo-unit--split .promo-card__content {
    padding-inline-end: 1.45rem;
    padding-inline-start: 2.2rem;
  }

  .promo-card__content {
    padding: 1.75rem 1.45rem;
  }

  .promo-card__content h3 {
    font-size: clamp(1.35rem, 1.8vw, 2.1rem);
  }
}

@media (max-width: 991.98px) {
  .promo-block--triple,
  .promo-block--double,
  .promo-block--split-left,
  .promo-block--split-right {
    grid-template-columns: 1fr;
  }

  .promo-block--split-left .promo-card:first-child,
  .promo-block--split-right .promo-card:last-child {
    grid-row: auto;
  }

  .promotion-landing__hero {
    min-height: 18rem;
  }
}

@media (max-width: 767.98px) {
  .promo-blocks {
    gap: 1rem;
    margin: 0.25rem 0 1.5rem;
  }

  .promo-card {
    min-height: 14.25rem;
    border-radius: 1.5rem;
  }

  .promo-card--slider {
    min-height: 17rem;
    border-radius: 1.5rem;
  }

  .promo-slider__slide .promo-card__content {
    width: min(calc(100% - 5.5rem), 100%);
    margin-inline-start: 3.25rem;
  }

  .promo-card__content {
    gap: 0.7rem;
    padding: 1.4rem 1.15rem;
  }

  .promo-card__content h3 {
    font-size: 1.35rem;
  }

  .promo-card__content p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .promo-card__button {
    min-height: 2.8rem;
    padding: 0.72rem 1.2rem;
    font-size: 0.92rem;
  }

  .promo-unit--overlay .promo-card__content,
  .promo-unit--split .promo-card__content,
  .promo-unit--clean .promo-card__content {
    width: 100%;
    padding-inline-end: 1.15rem;
  }

  [dir="ltr"] .promo-unit--overlay .promo-card__content,
  [dir="ltr"] .promo-unit--split .promo-card__content,
  [dir="ltr"] .promo-unit--clean .promo-card__content {
    padding-inline-end: 1.15rem;
    padding-inline-start: 1.15rem;
  }

  .promo-slider__nav {
    width: 2.5rem;
    height: 2.5rem;
  }

  .promo-slider__nav--prev {
    inset-inline-start: 0.7rem;
  }

  .promo-slider__nav--next {
    inset-inline-end: 0.7rem;
  }

  .promo-slider__dots {
    inset-block-end: 0.85rem;
  }

  .promo-slider__dot {
    width: 0.66rem;
    height: 0.66rem;
  }

  .promo-slider__dot.is-active {
    width: 1.35rem;
  }

  .promotion-landing {
    gap: 1.4rem;
    margin: 1.25rem 0 2rem;
  }

  .promotion-landing__hero {
    min-height: 15rem;
    border-radius: 1.5rem;
  }

  .promotion-landing__hero-copy {
    width: 100%;
    padding: 1.5rem 1.2rem;
  }
}

.shell-header {
  padding: 1rem 0 1.2rem;
}

.shell-nav--refined {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.15rem 1.35rem;
}

.shell-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease;
}

.shell-nav__brand:hover {
  transform: translateY(-1px);
}

.brand-mark-wrap {
  display: grid;
  gap: 0.18rem;
}

.brand-emblem {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 48%),
    linear-gradient(145deg, #172235 0%, #24324a 100%);
  box-shadow:
    0 16px 30px rgba(23, 34, 53, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.brand-emblem__core {
  position: relative;
  width: 1.35rem;
  height: 1.35rem;
  border: 0.18rem solid rgba(255, 255, 255, 0.96);
  border-radius: 0.42rem;
  transform: rotate(45deg);
}

.brand-emblem__spark {
  position: absolute;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8f5b 0%, #f25b42 100%);
  box-shadow: 0 0 0 0.28rem rgba(242, 91, 66, 0.14);
}

.brand-emblem__spark--one {
  top: 0.48rem;
  inset-inline-end: 0.46rem;
}

.brand-emblem__spark--two {
  bottom: 0.46rem;
  inset-inline-start: 0.44rem;
  background: linear-gradient(135deg, #ffcb57 0%, #ff9656 100%);
  box-shadow: 0 0 0 0.28rem rgba(255, 150, 86, 0.16);
}

.shell-nav__brand-subtitle {
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1.35;
}

.shell-nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.shell-nav__actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: nowrap;
  min-width: 0;
}

.shell-link {
  position: relative;
  color: var(--ink);
  font-weight: 700;
}

.shell-link.is-active::after,
.shell-link:hover::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.shell-link--account {
  color: #5b6778;
}

.account-menu {
  position: relative;
}

.account-menu summary {
  list-style: none;
}

.account-menu summary::-webkit-details-marker {
  display: none;
}

.account-menu__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 2.9rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(29, 36, 48, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(20, 28, 44, 0.06);
  cursor: pointer;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.account-menu__toggle:hover,
.account-menu[open] .account-menu__toggle {
  transform: translateY(-1px);
  border-color: rgba(29, 36, 48, 0.14);
  box-shadow: 0 16px 32px rgba(20, 28, 44, 0.1);
}

.account-menu__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #172235 0%, #24324a 100%);
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  overflow: hidden;
}

.account-menu__avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.account-menu__text {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
}

.account-menu__eyebrow {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.account-menu__text strong {
  max-width: 9.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--ink);
  font-size: 0.96rem;
}

.account-menu__chevron {
  color: #6b7280;
  font-size: 0.84rem;
  transition: transform 180ms ease;
}

.account-menu[open] .account-menu__chevron {
  transform: rotate(180deg);
}

.account-menu__panel {
  position: absolute;
  top: calc(100% + 0.6rem);
  inset-inline-end: 0;
  z-index: 160;
  min-width: 15rem;
  padding: 0.55rem;
  border: 1px solid rgba(29, 36, 48, 0.08);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 40px rgba(20, 28, 44, 0.14);
}

.account-menu__item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.82rem 0.95rem;
  border: 0;
  border-radius: 0.95rem;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  text-align: start;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.account-menu__item:hover,
.account-menu__item.is-active {
  background: rgba(23, 34, 53, 0.06);
  color: #111827;
  transform: translateY(-1px);
}

.account-menu__item--danger {
  color: #b42318;
}

.account-menu__item--danger:hover {
  background: rgba(180, 35, 24, 0.08);
  color: #991b1b;
}

.shell-icon-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.shell-icon-link {
  position: relative;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 2.9rem;
  height: 2.9rem;
  padding: 0 0.92rem;
  border: 1px solid rgba(29, 36, 48, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #101826;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease;
}

.shell-icon-link i {
  font-size: 1.08rem;
}

.shell-icon-link__label {
  font-size: 0.88rem;
  font-weight: 800;
}

.shell-icon-link--utility {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(16, 24, 38, 0.06);
}

.shell-icon-link--search {
  background: linear-gradient(135deg, #172235 0%, #24324a 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 16px 32px rgba(23, 34, 53, 0.18);
}

.shell-icon-link--search .shell-icon-link__label {
  color: #fff;
}

.showcase-card {
  position: relative;
}

.showcase-card__actions {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  left: auto;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.showcase-cart-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.65rem;
  border: 1px solid rgba(29, 36, 48, 0.08);
  border-radius: 999px;
  background: rgba(16, 24, 38, 0.92);
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
}

.showcase-cart-state i {
  font-size: 0.95rem;
}

.showcase-favorite {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 2.9rem;
  min-height: 2.9rem;
  padding: 0.7rem;
  border: 1px solid rgba(29, 36, 48, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
  line-height: 1;
}

.showcase-favorite:hover {
  transform: translateY(-2px);
}

.showcase-favorite i {
  font-size: 1rem;
}

.showcase-favorite.is-active {
  background: #101826;
  color: #fff;
}

.showcase-favorite--detail {
  padding-inline: 1rem 1.15rem;
  font-weight: 800;
}

.product-detail-toolbar {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.header-search-panel {
  position: absolute;
  inset-inline: 0;
  top: calc(100% + 0.85rem);
  z-index: 130;
  direction: inherit;
}

.header-search-panel__shell {
  margin-inline: auto;
  width: min(100%, 1080px);
  padding: 1rem;
  border: 1px solid rgba(29, 36, 48, 0.08);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(18px);
}

.header-search-panel__form {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(29, 36, 48, 0.08);
  border-radius: 1.2rem;
  background: #fff;
}

.header-search-panel__form i {
  color: var(--muted);
  font-size: 1.1rem;
}

.header-search-panel__form input {
  border: 0;
  outline: none;
  background: transparent;
  min-width: 0;
}

.header-search-panel__form button {
  border: 0;
  border-radius: 999px;
  background: #101826;
  color: #fff;
  font-weight: 800;
  padding: 0.8rem 1.15rem;
}

.header-search-panel__results {
  margin-top: 1rem;
}

.header-search-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.95fr);
    gap: 1rem;
    align-items: start;
}

.header-search-group {
    display: grid;
    gap: 0.8rem;
}

.header-search-group:first-child {
    grid-row: 1 / span 2;
}

.header-search-group:not(:first-child) {
    align-content: start;
}

.header-search-group__links {
    align-content: start;
}

.header-search-group__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.header-search-group__head strong {
  font-size: 0.96rem;
}

.header-search-group__head a {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-search-group__products,
.header-search-group__links {
    display: grid;
    gap: 0.7rem;
}

.header-search-result {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 0.8rem;
    align-items: center;
    padding: 0.7rem;
    border: 1px solid rgba(29, 36, 48, 0.08);
    border-radius: 1rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 250, 0.94));
    color: #111827;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

[dir="rtl"] .header-search-result {
    grid-template-columns: minmax(0, 1fr) 68px;
}

.header-search-result:hover {
    transform: translateY(-2px);
    border-color: rgba(29, 36, 48, 0.14);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
}

.header-search-result img {
    width: 68px;
    height: 68px;
    border-radius: 0.85rem;
    object-fit: cover;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.header-search-result__body {
    display: grid;
    gap: 0.22rem;
    min-width: 0;
}

.header-search-result__body strong {
    font-size: 0.95rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.header-search-result__body span,
.header-search-result__body small {
    color: var(--muted);
    overflow-wrap: anywhere;
}

.header-search-result__body span {
    font-size: 0.86rem;
}

.header-search-result__body small {
    font-size: 0.9rem;
    font-weight: 700;
    color: #42526b;
}

.header-search-link-chip {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(29, 36, 48, 0.08);
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(255, 250, 245, 0.96), rgba(248, 248, 246, 0.92));
    color: #1f2937;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-search-link-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(138, 90, 67, 0.25);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.header-search-group:not(:first-child) .header-search-link-chip {
    min-height: 2.55rem;
    width: 100%;
    justify-content: flex-start;
    border-radius: 0.95rem;
    padding-inline: 0.95rem;
}

.header-search-panel__empty {
    padding: 1rem;
    border: 1px dashed rgba(29, 36, 48, 0.14);
    border-radius: 1rem;
    color: var(--muted);
    background: rgba(248, 248, 246, 0.65);
}

.header-search-starter,
.search-live-grid--starter {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 0.9rem;
}

@media (max-width: 991.98px) {
  .header-search-grid {
    grid-template-columns: 1fr;
  }

  .header-search-group:first-child {
    grid-row: auto;
  }

  .header-search-panel__shell {
    width: min(100%, 680px);
  }
}

@media (max-width: 575.98px) {
  .header-search-panel {
    top: calc(100% + 0.6rem);
  }

  .header-search-panel__shell {
    padding: 0.85rem;
    border-radius: 1.25rem;
  }

  .header-search-panel__form {
    grid-template-columns: auto 1fr;
  }

  .header-search-panel__form button {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }

  .header-search-result {
    padding: 0.65rem;
  }

  [dir="rtl"] .header-search-result,
  [dir="ltr"] .header-search-result {
    grid-template-columns: minmax(0, 1fr) 60px;
  }

  .header-search-result img {
    width: 60px;
    height: 60px;
  }
}

.shell-icon-link:hover,
.shell-icon-link.is-active {
  transform: translateY(-2px);
  border-color: rgba(29, 36, 48, 0.16);
  box-shadow: 0 14px 28px rgba(20, 28, 44, 0.1);
  color: #000;
}

.shell-icon-link--search:hover,
.shell-icon-link--search.is-active {
  color: #fff;
  border-color: transparent;
  box-shadow: 0 18px 34px rgba(23, 34, 53, 0.24);
}

.shell-icon-badge {
  position: absolute;
  top: -0.2rem;
  inset-inline-end: -0.15rem;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.28rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
}

.language-pill--secondary {
  background: rgba(17, 24, 39, 0.08);
  color: #101826;
}

.site-footer {
  margin-top: 2.5rem;
  padding: 0 0 1.5rem;
}

.site-footer__shell {
  border-top: 1px solid rgba(29, 36, 48, 0.08);
  padding-top: 2rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 0.7fr)) minmax(280px, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
}

.site-footer__brand,
.site-footer__newsletter,
.site-footer__links-column {
  display: grid;
  gap: 0.85rem;
}

.site-footer__logo {
  color: #0f172a;
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.site-footer__address,
.site-footer__newsletter p,
.site-footer__newsletter small {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.site-footer__accent-link {
  color: var(--accent);
  font-weight: 800;
}

.site-footer__contact {
  color: #2b3442;
  font-size: 1.1rem;
  font-weight: 700;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.site-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 36, 48, 0.1);
  color: #111827;
  background: rgba(255, 255, 255, 0.72);
  font-size: 1.15rem;
}

.site-footer__links-column h3,
.site-footer__newsletter h3 {
  margin: 0;
  color: #101826;
  font-size: 1.3rem;
  font-weight: 900;
}

.site-footer__links {
  display: grid;
  gap: 0.8rem;
}

.site-footer__links a {
  color: #536071;
  font-weight: 700;
}

.site-footer__newsletter-form {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem;
  border: 1px solid rgba(29, 36, 48, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.site-footer__newsletter-form input {
  width: 100%;
  border: 0;
  background: transparent;
  color: #0f172a;
  padding: 0.7rem 0.85rem;
  outline: none;
}

.site-footer__newsletter-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: #020617;
  color: #fff;
  font-size: 1.2rem;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(29, 36, 48, 0.08);
}

.site-footer__meta,
.site-footer__payments {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.site-footer__meta span,
.site-footer__payments span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 36, 48, 0.1);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.site-footer__copyright {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.search-page {
  display: grid;
  gap: 1.8rem;
  padding: 1.1rem 0 2rem;
  isolation: isolate;
}

.search-page__hero,
.search-page__results-shell,
.search-page__empty {
  border: 1px solid var(--line);
  border-radius: 1.85rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.search-page__hero {
  position: relative;
  z-index: 5;
  display: grid;
  gap: 1.2rem;
  padding: 1.8rem;
}

.search-page__form-shell {
  position: relative;
  z-index: 12;
}

.search-page__copy h1,
.search-page__results-head h2,
.search-page__empty h3 {
  margin: 0 0 0.45rem;
}

.search-page__copy p,
.search-page__results-head p,
.search-page__empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.search-page__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
}

.search-page__form input {
  min-height: 3.65rem;
  border: 1px solid rgba(29, 36, 48, 0.1);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.9rem 1rem;
  font-size: 1.02rem;
  outline: none;
}

.search-page__form input:focus {
  border-color: rgba(30, 64, 175, 0.24);
  box-shadow: 0 0 0 0.35rem rgba(59, 130, 246, 0.08);
}

.search-page__form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 9.5rem;
  border: 0;
  border-radius: 1.15rem;
  background: #121b2b;
  color: #fff;
  font-weight: 800;
  padding: 0.85rem 1.2rem;
}

.search-page__chips {
    display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.search-page__starter-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 0 0 1rem;
}

.search-page__starter-card {
    border: 1px solid rgba(29, 36, 48, 0.08);
    border-radius: 1.35rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.94));
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
    padding: 1rem 1.05rem;
}

.search-page__starter-kicker {
    display: inline-flex;
    margin-bottom: 0.75rem;
    color: #9a654d;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.search-page__starter-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.search-page__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 36, 48, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: #223043;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.search-page__did-you-mean,
.search-live-did-you-mean {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    max-width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(213, 146, 69, 0.18);
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(255, 248, 238, 0.98), rgba(255, 252, 246, 0.96));
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.search-page__did-you-mean {
    margin: 0 0 1rem;
}

.search-live-did-you-mean {
    margin-bottom: 0.85rem;
}

.search-page__did-you-mean-label,
.search-live-did-you-mean__label {
    color: #9a654d;
    font-size: 0.82rem;
    font-weight: 800;
}

.search-page__did-you-mean-link strong,
.search-live-did-you-mean strong {
    color: #172132;
    font-size: 0.98rem;
}

.search-page__chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.08);
  border-color: rgba(29, 36, 48, 0.18);
}

.search-page__chip--soft {
  background: rgba(255, 247, 237, 0.8);
}

.search-page__assist-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.search-page__assist-card {
  border: 1px solid rgba(29, 36, 48, 0.08);
  border-radius: 1.55rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 252, 0.9));
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.08);
  padding: 1.2rem 1.25rem;
  animation: searchCardRise 420ms ease;
}

.search-page__assist-kicker {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: #9a654d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-page__assist-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  color: #172132;
}

.search-page__assist-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.search-live-panel {
  position: absolute;
  inset-inline: 0;
  top: calc(100% + 0.7rem);
  z-index: 60;
  border: 1px solid rgba(29, 36, 48, 0.1);
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 46px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(8px) scale(0.985);
  transition: opacity 180ms ease, transform 180ms ease;
}

.search-live-panel.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.search-live-panel__body {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.search-live-panel__message {
  color: #667085;
  line-height: 1.7;
}

.search-live-panel__message.is-soft {
    color: #7b8796;
}

.search-match {
    display: inline;
    padding: 0 0.18em;
    border-radius: 0.42rem;
    background: linear-gradient(180deg, rgba(255, 234, 204, 0.96), rgba(255, 244, 226, 0.96));
    color: #172132;
    box-shadow: inset 0 0 0 1px rgba(213, 146, 69, 0.18);
}

.search-live-panel__loading {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.search-live-panel__pulse {
  height: 0.78rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(226, 232, 240, 0.6), rgba(248, 250, 252, 0.95), rgba(226, 232, 240, 0.6));
  background-size: 200% 100%;
  animation: searchPulse 1.2s ease-in-out infinite;
}

.search-live-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.95fr);
    gap: 0.9rem 1rem;
    align-items: start;
}

.search-live-group {
    display: grid;
    gap: 0.75rem;
    padding-top: 0.2rem;
}

.search-live-group--wide {
    grid-row: 1 / span 2;
}

.search-live-grid > .search-live-group:not(.search-live-group--wide) {
    align-content: start;
}

.search-live-group__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding-bottom: 0.15rem;
}

.search-live-group__head strong {
    color: #172132;
    font-size: 0.96rem;
}

.search-live-group__head a {
    color: #8a5a43;
    font-weight: 800;
    white-space: nowrap;
}

.search-live-group__products {
    display: grid;
    gap: 0.65rem;
}

.search-live-product {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 0.8rem;
    align-items: center;
    padding: 0.75rem;
    border-radius: 1rem;
    border: 1px solid rgba(29, 36, 48, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.94));
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
    animation: searchSuggestRise 260ms ease both;
}

.search-live-product:hover {
    transform: translateY(-2px);
    border-color: rgba(29, 36, 48, 0.16);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
}

.search-live-product img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 0.9rem;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.search-live-product__body {
    display: grid;
    gap: 0.22rem;
    min-width: 0;
}

.search-live-product__body strong {
    color: #172132;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-live-product__body span,
.search-live-product__body small {
    color: #6b7280;
    overflow-wrap: anywhere;
}

.search-live-product__body span {
    font-size: 0.86rem;
}

.search-live-product__body small {
    font-size: 0.9rem;
    font-weight: 700;
    color: #42526b;
}

.search-live-group__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.search-live-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.35rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 247, 237, 0.96), rgba(250, 242, 233, 0.9));
    color: #223043;
    font-weight: 700;
    border: 1px solid rgba(138, 90, 67, 0.12);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    animation: searchSuggestRise 260ms ease both;
}

.search-live-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(138, 90, 67, 0.26);
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
}

.search-live-grid > .search-live-group:not(.search-live-group--wide) .search-live-chip {
    width: 100%;
    justify-content: flex-start;
    min-height: 2.55rem;
    border-radius: 0.95rem;
    padding-inline: 0.95rem;
}

.search-live-group__products > :nth-child(2),
.search-live-group__chips > :nth-child(2) {
    animation-delay: 40ms;
}

.search-live-group__products > :nth-child(3),
.search-live-group__chips > :nth-child(3) {
    animation-delay: 80ms;
}

.search-live-group__products > :nth-child(4),
.search-live-group__chips > :nth-child(4) {
    animation-delay: 120ms;
}

.search-results-grid > * {
    animation: searchCardRise 420ms ease both;
}

@keyframes searchCardRise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes searchSuggestRise {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .search-live-grid {
        grid-template-columns: 1fr;
    }

    .search-live-group--wide {
        grid-row: auto;
    }

    .search-page__starter-panel {
        grid-template-columns: 1fr;
    }
}

@keyframes searchPulse {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.search-page__results-shell {
  position: relative;
  z-index: 1;
  padding: 1.6rem;
}

.search-page__results-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.search-page__kicker {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: #9a654d;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.search-page__empty {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  padding: 2rem;
  text-align: center;
}

.search-page__empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 999px;
  background: rgba(20, 84, 178, 0.08);
  color: #1454b2;
  font-size: 1.8rem;
}

.search-page__empty-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.marketing-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
}

.marketing-popup.is-visible {
  pointer-events: auto;
}

.marketing-popup--center {
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.marketing-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  opacity: 0;
  transition: opacity 220ms ease;
}

.marketing-popup__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1fr);
  width: min(1050px, 100%);
  overflow: hidden;
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 36px 80px rgba(15, 23, 42, 0.28);
  transform: translateY(22px) scale(0.96);
  opacity: 0;
  transition: transform 240ms ease, opacity 240ms ease;
}

.marketing-popup.is-visible .marketing-popup__backdrop {
  opacity: 1;
}

.marketing-popup.is-visible .marketing-popup__panel,
.marketing-popup.is-visible .marketing-popup__toast-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.marketing-popup__media img,
.marketing-popup__toast-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.marketing-popup__body {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 2.25rem 2.25rem 2rem;
}

.marketing-popup__eyebrow {
  color: #111827;
  font-size: 0.95rem;
  font-weight: 800;
}

.marketing-popup__body h3 {
  margin: 0;
  color: #e24d47;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

.marketing-popup__body p {
  margin: 0;
  color: #465265;
  font-size: 1.08rem;
  line-height: 1.9;
}

.marketing-popup__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 3.35rem;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  background: #101826;
  color: #fff;
  font-weight: 800;
}

.marketing-popup__close,
.marketing-popup__toast-close {
  position: absolute;
  top: 1.2rem;
  inset-inline-end: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #111827;
  font-size: 1rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.marketing-popup--toast {
  inset: auto 1.2rem 1.2rem auto;
  width: min(420px, calc(100vw - 2rem));
}

.marketing-popup--toast[dir="ltr"] {
  inset: auto auto 1.2rem 1.2rem;
}

.marketing-popup__toast-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 82px 1fr;
  gap: 0.95rem;
  align-items: center;
  padding: 1rem;
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 48px rgba(15, 23, 42, 0.2);
  transform: translateY(18px) scale(0.96);
  opacity: 0;
  transition: transform 240ms ease, opacity 240ms ease;
}

.marketing-popup__toast-icon {
  align-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background: rgba(226, 77, 71, 0.14);
  color: #cf433b;
  font-size: 1.05rem;
}

.marketing-popup__toast-media {
  overflow: hidden;
  height: 82px;
  border-radius: 0.85rem;
  background: #f3f4f6;
}

.marketing-popup__toast-body {
  display: grid;
  gap: 0.35rem;
  padding-inline-end: 2.2rem;
}

.marketing-popup--toast[dir="ltr"] .marketing-popup__toast-card {
  grid-template-columns: 1fr 82px auto;
}

.marketing-popup--toast[dir="ltr"] .marketing-popup__toast-body {
  order: 1;
  padding-inline-end: 3.1rem;
}

.marketing-popup--toast[dir="ltr"] .marketing-popup__toast-media {
  order: 2;
}

.marketing-popup--toast[dir="ltr"] .marketing-popup__toast-icon {
  order: 3;
  align-self: start;
}

.marketing-popup__toast-subtitle {
  color: #6b7280;
  font-size: 0.92rem;
}

.marketing-popup__toast-body h4 {
  margin: 0;
  color: #111827;
  font-size: 1.25rem;
}

.marketing-popup__toast-body p {
  margin: 0;
  color: #6b7280;
  font-size: 0.92rem;
  line-height: 1.6;
}

.marketing-popup__toast-link {
  width: fit-content;
  color: #111827;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.35rem;
}

@media (max-width: 1199.98px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1499.98px) and (min-width: 992px) {
  .shell-nav--refined {
    gap: 1rem;
  }

  .shell-nav__actions {
    gap: 0.5rem;
  }

  .shell-icon-link__label,
  .notification-center__label,
  .shell-link__eyebrow,
  .shell-nav__brand-subtitle,
  .account-menu__eyebrow {
    display: none;
  }

  .shell-icon-link,
  .notification-center__toggle {
    width: 2.9rem;
    min-width: 2.9rem;
    padding-inline: 0;
    justify-content: center;
  }

  .shell-link--account-name strong {
    max-width: 7rem;
  }

  .account-menu__text strong {
    max-width: 7rem;
  }
}

@media (max-width: 991.98px) {
  .shell-nav--refined {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .shell-nav__brand,
  .shell-nav__actions {
    justify-items: center;
    justify-content: center;
    text-align: center;
  }

  .search-page__results-head,
  .site-footer__bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .marketing-popup__panel {
    grid-template-columns: 1fr;
  }

  .marketing-popup__media {
    min-height: 240px;
  }

  .shell-icon-links {
    justify-content: center;
  }

  .shell-icon-link__label {
    display: none;
  }

  .shell-icon-link {
    width: 2.9rem;
    min-width: 2.9rem;
    padding: 0;
  }

  .account-menu__eyebrow,
  .account-menu__text strong {
    display: none;
  }

  .account-menu__toggle {
    padding-inline: 0.5rem;
  }
}

@media (max-width: 767.98px) {
  .shell-nav--refined,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .shell-nav__menu,
  .shell-nav__actions {
    justify-content: center;
  }

  .search-page__hero,
  .search-page__results-shell {
    padding: 1.2rem;
  }

  .search-page__assist-grid {
    grid-template-columns: 1fr;
  }

  .search-page__form {
    grid-template-columns: 1fr;
  }

  .search-live-panel {
    position: static;
    margin-top: 0.75rem;
  }

  .marketing-popup--center {
    padding: 1rem;
  }

  .marketing-popup__body {
    padding: 1.4rem 1.15rem 1.3rem;
  }

  .home-hero-promo .promo-card {
    min-height: 20rem;
    border-radius: 1.7rem;
  }

  .home-hero-promo .promo-card__content {
    padding: 1.6rem 1.35rem;
  }

  .marketing-popup__body h3 {
    font-size: 2.3rem;
  }

  .marketing-popup--toast {
    inset: auto 0.8rem 0.8rem 0.8rem;
    width: auto;
  }

  .marketing-popup__toast-card {
    grid-template-columns: 1fr;
  }

  .marketing-popup__toast-media {
    height: 160px;
  }

  .category-tile[data-featured="true"] {
    grid-column: span 1;
  }

  .category-tile__media,
  .category-tile[data-featured="true"] .category-tile__media {
    min-height: 18.5rem;
  }

  .category-tiles--dense .category-tile__media,
  .category-tiles--dense .category-tile[data-featured="true"] .category-tile__media {
    min-height: 17rem;
  }

  .category-tile__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
  }

  .category-tile__body h3 {
    font-size: 1.5rem;
  }

  .category-tile__body p {
    max-width: 14rem;
  }

  .category-tile__arrow {
    width: fit-content;
  }

  .category-tiles__more {
    width: 100%;
  }

  .marketing-popup__toast-body {
    padding-inline-end: 0;
  }
}

.customer-account-page {
  display: grid;
  gap: 2rem;
  padding: 1.5rem 0 2.8rem;
}

.customer-account-page__hero {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  padding: 1rem 0 1.4rem;
  text-align: center;
}

.customer-account-page__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #9aa3b2;
  font-weight: 700;
}

.customer-account-page__breadcrumb a {
  color: #9aa3b2;
}

.customer-account-page__hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.customer-account-page__hero p {
  width: min(100%, 48rem);
  margin: 0;
  color: #5f6b7d;
  font-size: 1.08rem;
  line-height: 1.9;
}

.customer-account-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.customer-account-sidebar,
.customer-account-panel-card,
.customer-account-stat,
.customer-account-order-card {
  border: 1px solid rgba(29, 36, 48, 0.08);
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.customer-account-sidebar {
  position: sticky;
  top: 1rem;
  overflow: hidden;
}

.customer-account-sidebar__profile {
  display: grid;
  gap: 0.35rem;
  padding: 1.45rem 1.4rem;
  border-bottom: 1px solid rgba(29, 36, 48, 0.08);
  background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(248,242,236,0.92));
}

.customer-account-sidebar__eyebrow {
  color: #9aa3b2;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.customer-account-sidebar__profile strong {
  font-size: 1.35rem;
  line-height: 1.2;
}

.customer-account-sidebar__profile span,
.customer-account-sidebar__profile small {
  color: #5f6b7d;
}

.customer-account-sidebar__menu,
.customer-account-sidebar__logout {
  display: grid;
}

.customer-account-tab {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(29, 36, 48, 0.08);
  background: transparent;
  padding: 1.2rem 1.35rem;
  color: #5f6b7d;
  font-size: 1rem;
  font-weight: 700;
  text-align: start;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.customer-account-tab:last-child {
  border-bottom: 0;
}

.customer-account-tab i {
  font-size: 1.25rem;
}

.customer-account-tab:hover,
.customer-account-tab.is-active {
  background: rgba(15, 23, 42, 0.04);
  color: #101826;
}

.customer-account-tab.is-active {
  box-shadow: inset 3px 0 0 #101826;
}

.customer-account-tab--logout {
  color: #4f5c6d;
}

.customer-account-content {
  display: grid;
}

.customer-account-panel {
  display: none;
  gap: 1.3rem;
}

.customer-account-panel.is-active {
  display: grid;
}

.customer-account-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.customer-account-section__head--compact {
  align-items: start;
}

.customer-account-section__head h2,
.customer-account-section__head h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.customer-account-section__head h3 {
  font-size: 1.35rem;
}

.customer-account-section__head p {
  margin: 0;
  color: #657285;
  line-height: 1.8;
}

.customer-account-link-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.customer-account-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.customer-account-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.35rem;
}

.customer-account-stat span {
  display: block;
  color: #687588;
  font-weight: 700;
}

.customer-account-stat strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 2rem;
  line-height: 1;
}

.customer-account-stat i {
  color: #111827;
  font-size: 1.8rem;
}

.customer-account-panel-card {
  padding: 1.5rem;
}

.customer-account-table-wrap {
  overflow-x: auto;
}

.customer-account-table {
  width: 100%;
  border-collapse: collapse;
}

.customer-account-table th,
.customer-account-table td {
  padding: 1rem 0.75rem;
  border-bottom: 1px solid rgba(29, 36, 48, 0.08);
  text-align: start;
}

.customer-account-table th {
  color: #687588;
  font-weight: 800;
}

.customer-account-table tbody tr:last-child td {
  border-bottom: 0;
}

.customer-account-order-link {
  display: inline-flex;
  margin-bottom: 0.25rem;
  color: #101826;
  font-weight: 800;
}

.customer-account-table small {
  display: block;
  color: #8b95a5;
}

.customer-account-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.customer-account-status.is-pending {
  background: rgba(250, 215, 134, 0.28);
  color: #bf7f13;
}

.customer-account-status.is-delivery {
  background: rgba(188, 184, 255, 0.26);
  color: #6e60d8;
}

.customer-account-status.is-completed {
  background: rgba(187, 235, 186, 0.32);
  color: #2a8d3f;
}

.customer-account-status.is-cancelled {
  background: rgba(245, 198, 198, 0.34);
  color: #b84646;
}

.customer-account-empty {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  padding: 1.5rem;
  border: 1px dashed rgba(29, 36, 48, 0.12);
  border-radius: 1.3rem;
  color: #6b7789;
  text-align: center;
  background: rgba(250, 248, 245, 0.74);
}

.customer-account-empty--slim {
  padding: 1.25rem;
}

.customer-account-empty i {
  font-size: 2rem;
  color: #101826;
}

.customer-account-empty h4,
.customer-account-empty p {
  margin: 0;
}

.customer-account-filter-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.customer-account-filter {
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #687588;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.25rem 0.15rem 0.55rem;
}

.customer-account-filter.is-active {
  border-bottom-color: #111827;
  color: #111827;
}

.customer-account-orders-list {
  display: grid;
  gap: 1rem;
}

.customer-account-order-card {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
}

.customer-account-order-card__head,
.customer-account-order-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.customer-account-order-card__head span,
.customer-account-order-card__body span,
.customer-account-order-card__foot span {
  color: #697586;
  font-size: 0.94rem;
}

.customer-account-order-card__head strong,
.customer-account-order-card__body strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.1rem;
}

.customer-account-order-card__body {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.customer-account-address-layout,
.customer-account-settings-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.25rem;
}

.customer-account-address-list {
  display: grid;
  gap: 0.85rem;
}

.customer-account-address-card {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(29, 36, 48, 0.08);
  border-radius: 1.25rem;
  background: rgba(248, 248, 246, 0.84);
}

.customer-account-address-card.is-default {
  border-color: rgba(44, 138, 86, 0.25);
  box-shadow: 0 18px 34px rgba(44, 138, 86, 0.08);
}

.customer-account-address-card__label {
  font-size: 0.96rem;
  font-weight: 800;
}

.customer-account-address-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  margin-inline-start: 0.55rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(44, 138, 86, 0.14);
  color: #2c8a56;
  font-size: 0.8rem;
  font-weight: 800;
}

.customer-account-address-card__body {
  display: grid;
  gap: 0.2rem;
}

.customer-account-address-card__body span,
.customer-account-address-card__body small,
.customer-account-address-card__body p {
  margin: 0;
  color: #637083;
}

.customer-account-address-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.customer-account-form {
  display: grid;
  gap: 1rem;
}

.customer-account-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.customer-account-form__field {
  display: grid;
  gap: 0.4rem;
}

.customer-account-form__field--wide {
  grid-column: span 2;
}

.customer-account-form__field label {
  color: #111827;
  font-size: 0.95rem;
  font-weight: 700;
}

.customer-account-form .form-control,
.customer-account-form .form-select {
  min-height: 3.3rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(29, 36, 48, 0.09);
  background: rgba(255, 255, 255, 0.9);
}

.customer-account-form__actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.customer-account-check {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #172030;
  font-weight: 700;
}

.customer-account-map-card {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 1.3rem;
  background: rgba(247, 242, 236, 0.82);
}

.customer-account-map-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #687588;
  font-size: 0.92rem;
}

.customer-account-map {
  min-height: 20rem;
  border: 1px solid rgba(29, 36, 48, 0.08);
  border-radius: 1.15rem;
  overflow: hidden;
}

.customer-account-settings-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.customer-account-panel-card--danger {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(253, 244, 244, 0.96));
}

@media (max-width: 1199.98px) {
  .customer-account-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-account-shell {
    grid-template-columns: 290px minmax(0, 1fr);
  }
}

@media (max-width: 991.98px) {
  .customer-account-shell,
  .customer-account-address-layout,
  .customer-account-settings-grid {
    grid-template-columns: 1fr;
  }

  .customer-account-sidebar {
    position: static;
  }

  .customer-account-order-card__body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-account-panel-card--danger {
    grid-column: span 1;
  }
}

@media (max-width: 767.98px) {
  .customer-account-page {
    gap: 1.4rem;
  }

  .customer-account-page__hero p {
    font-size: 0.98rem;
  }

  .customer-account-stats,
  .customer-account-form__grid,
  .customer-account-order-card__body {
    grid-template-columns: 1fr;
  }

.customer-account-form__field--wide {
      grid-column: span 1;
    }

  .customer-account-order-card__head,
  .customer-account-order-card__foot,
  .customer-account-map-card__head,
  .customer-account-section__head {
    align-items: start;
    flex-direction: column;
  }
}

.account-hub {
  display: grid;
  gap: 2rem;
  padding: 2rem 0 3rem;
}

.account-hub__hero {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 0.9rem;
  text-align: start;
  padding: 2.25rem 2rem 2rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top left, rgba(244, 236, 221, 0.78), transparent 36%),
    radial-gradient(circle at bottom right, rgba(244, 236, 221, 0.45), transparent 34%),
    #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.account-hub__hero::before,
.account-hub__hero::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.65), rgba(255,255,255,0));
  pointer-events: none;
}

.account-hub__hero::before {
  top: -6rem;
  inset-inline-start: -4rem;
}

.account-hub__hero::after {
  bottom: -8rem;
  inset-inline-end: -5rem;
}

.account-hub__breadcrumb {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 0.55rem;
  color: #9aa3b2;
  font-size: 0.96rem;
}

.account-hub__breadcrumb a {
  color: #9aa3b2;
}

.account-hub__hero p {
  position: relative;
  z-index: 1;
  width: min(100%, 64rem);
  margin: 0;
  color: #66758a;
  font-size: 1rem;
  line-height: 1.9;
}

[dir="rtl"] .account-hub__hero,
html[dir="rtl"] .account-hub__hero {
  justify-items: end;
  text-align: right;
}

[dir="rtl"] .account-hub__breadcrumb,
html[dir="rtl"] .account-hub__breadcrumb {
  justify-content: flex-end;
}

[dir="rtl"] .account-hub__hero p,
html[dir="rtl"] .account-hub__hero p {
  margin-inline-start: auto;
}

.account-hub__shell {
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.account-hub__sidebar,
.account-hub__card,
.account-hub__stat,
.account-hub__order {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1.75rem;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.account-hub__sidebar {
  overflow: hidden;
  position: sticky;
  top: 1rem;
}

.account-hub__profile {
  display: grid;
  grid-template-columns: 4.8rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.35rem;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.account-hub__avatar {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #101826, #394252);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 800;
}

.account-hub__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-hub__avatar--large {
  width: 6.5rem;
  height: 6.5rem;
  font-size: 1.8rem;
}

.account-hub__profile-copy {
  display: grid;
  gap: 0.18rem;
}

.account-hub__profile-copy small,
.account-hub__profile-copy span {
  color: #6b7687;
}

.account-hub__profile-copy strong {
  font-size: 1.22rem;
  line-height: 1.2;
}

.account-hub__menu,
.account-hub__logout-form {
  display: grid;
}

.account-hub__menu-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.18rem 1.3rem;
  border: 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background: transparent;
  color: #5e6979;
  font-size: 1.06rem;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.account-hub__menu-item:last-child {
  border-bottom: 0;
}

.account-hub__menu-item:hover,
.account-hub__menu-item.is-active {
  background: #f6f7f9;
  color: #101826;
}

.account-hub__menu-item.is-active {
  box-shadow: inset 3px 0 0 #101826;
}

.account-hub__menu-item--logout {
  color: #5e6979;
}

.account-hub__content {
  display: grid;
}

.account-hub__panel {
  display: none;
  gap: 1.25rem;
}

.account-hub__panel.is-active {
  display: grid;
}

.account-hub__section-head,
.account-hub__card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.account-hub__section-head h2,
.account-hub__card-head h3 {
  margin: 0 0 0.4rem;
  color: #101826;
}

.account-hub__section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.account-hub__card-head h3 {
  font-size: 1.35rem;
}

.account-hub__section-head p,
.account-hub__card-head p {
  margin: 0;
  color: #6b7687;
  line-height: 1.8;
}

.account-hub__text-link {
  border: 0;
  background: transparent;
  color: #101826;
  font-weight: 800;
}

.account-hub__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.account-hub__stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.4rem;
}

.account-hub__stat span {
  display: block;
  color: #6c7788;
  font-weight: 700;
}

.account-hub__stat strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 2rem;
  line-height: 1;
  color: #101826;
}

.account-hub__stat i {
  font-size: 1.75rem;
  color: #101826;
}

.account-hub__card {
  padding: 1.5rem;
}

.account-hub__card--soft {
  background: linear-gradient(180deg, #fff, #fbfbfc);
}

.account-hub__table-wrap {
  overflow-x: auto;
}

.account-hub__table {
  width: 100%;
  border-collapse: collapse;
}

.account-hub__table th,
.account-hub__table td {
  padding: 1rem 0.8rem;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  text-align: start;
}

.account-hub__table th {
  color: #677384;
  font-weight: 800;
}

.account-hub__table tbody tr:last-child td {
  border-bottom: 0;
}

.account-hub__table a {
  color: #101826;
  font-weight: 800;
}

.account-hub__table small {
  display: block;
  color: #99a2b1;
}

.account-hub__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.15rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.account-hub__status.is-pending {
  background: #fff3dc;
  color: #bd7e15;
}

.account-hub__status.is-delivery {
  background: #f0edff;
  color: #6c60d5;
}

.account-hub__status.is-completed {
  background: #e6f6e4;
  color: #2f8a43;
}

.account-hub__status.is-cancelled {
  background: #fdeaea;
  color: #be4e4e;
}

.account-hub__empty {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  padding: 1.8rem;
  text-align: center;
}

.account-hub__empty--slim {
  padding: 1.15rem;
}

.account-hub__empty i {
  font-size: 2rem;
  color: #101826;
}

.account-hub__empty h4,
.account-hub__empty p {
  margin: 0;
}

.account-hub__empty p {
  color: #6c7788;
}

.account-hub__filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.account-hub__filter {
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #718093;
  font-size: 1rem;
  font-weight: 800;
  padding: 0.2rem 0;
}

.account-hub__filter.is-active {
  color: #101826;
  border-bottom-color: #101826;
}

.account-hub__orders {
  display: grid;
  gap: 1rem;
}

.account-hub__order {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
}

.account-hub__order-head,
.account-hub__order-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.account-hub__order-head span,
.account-hub__order-grid span,
.account-hub__order-foot span {
  color: #718093;
  font-size: 0.95rem;
}

.account-hub__order-head strong,
.account-hub__order-grid strong {
  display: block;
  margin-top: 0.2rem;
  color: #101826;
  font-size: 1.08rem;
}

.account-hub__order-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.account-hub__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.7rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: #101826;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: none;
}

.account-hub__button:hover {
  color: #fff;
  background: #1b2739;
}

.account-hub__button--ghost {
  background: #fff;
  color: #101826;
  border: 1px solid rgba(17, 24, 39, 0.1);
}

.account-hub__button--ghost:hover {
  background: #f7f8fa;
  color: #101826;
}

.account-hub__button--compact {
  min-height: 2.75rem;
  padding: 0.62rem 1rem;
  gap: 0.45rem;
  font-size: 0.92rem;
}

.account-hub__split,
.account-hub__settings-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1.25rem;
}

.account-hub__address-list {
  display: grid;
  gap: 0.9rem;
}

.account-hub__address {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1.2rem;
  background: #fbfbfc;
}

.account-hub__address.is-default {
  border-color: rgba(16, 24, 38, 0.18);
}

.account-hub__address-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.account-hub__address-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.85rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: #101826;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
}

.account-hub__address-body {
  display: grid;
  gap: 0.22rem;
}

.account-hub__address-body span,
.account-hub__address-body p,
.account-hub__address-body small {
  margin: 0;
  color: #697588;
}

.account-hub__address-actions,
.account-hub__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.account-hub__mini-button {
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: #fff;
  color: #101826;
  border-radius: 999px;
  padding: 0.48rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.account-hub__mini-button--danger {
  color: #b54444;
}

.account-hub__form {
  display: grid;
  gap: 1rem;
}

.account-hub__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.account-hub__field {
  display: grid;
  gap: 0.45rem;
}

.account-hub__field--wide {
  grid-column: span 2;
}

.account-hub__field label {
  color: #101826;
  font-weight: 700;
}

.account-hub__form .form-control,
.account-hub__form .form-select {
  min-height: 3.15rem;
  border-radius: 1rem;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: #fff;
  box-shadow: none;
}

.account-hub__form .form-control:focus,
.account-hub__form .form-select:focus {
  border-color: rgba(16, 24, 38, 0.28);
  box-shadow: 0 0 0 0.18rem rgba(16, 24, 38, 0.08);
}

.account-hub__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #101826;
  font-weight: 600;
}

.account-hub__map-card {
  display: grid;
  gap: 0.75rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1.3rem;
  padding: 1rem;
  background: #fbfbfc;
}

.account-hub__map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.account-hub__map-copy {
  display: grid;
  gap: 0.25rem;
}

.account-hub__map-head span {
  color: #758296;
  font-size: 0.92rem;
}

.account-hub__map-hint {
  margin: -0.15rem 0 0;
  color: #758296;
  font-size: 0.92rem;
}

.account-hub__map {
  min-height: 18rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #eef2f7;
}

.account-hub__map .leaflet-container {
  width: 100%;
  height: 100%;
  background: #eef2f7;
}

.account-hub__avatar-editor {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding-bottom: 0.25rem;
}

.account-hub__avatar-meta {
  display: grid;
  gap: 0.35rem;
}

.account-hub__avatar-meta p {
  margin: 0;
  color: #6b7687;
}

@media (max-width: 1199px) {
  .account-hub__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .account-hub__order-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .account-hub__shell,
  .account-hub__split,
  .account-hub__settings-grid {
    grid-template-columns: 1fr;
  }

  .account-hub__sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .account-hub {
    gap: 1.35rem;
  }

  .account-hub__hero {
    padding: 1.7rem 1.25rem 1.45rem;
    border-radius: 1.5rem;
  }

  .account-hub__stats,
  .account-hub__order-grid,
  .account-hub__form-grid {
    grid-template-columns: 1fr;
  }

  .account-hub__field--wide {
    grid-column: span 1;
  }

  .account-hub__section-head,
  .account-hub__card-head,
  .account-hub__order-head,
  .account-hub__order-foot,
  .account-hub__map-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .account-hub__avatar-editor,
  .account-hub__profile {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .brands-page__hero {
    grid-template-columns: 1fr;
  }

  .brands-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brands-page__products-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .brands-page__search {
    grid-template-columns: 1fr;
  }

  .brands-page__search button {
    width: 100%;
  }

  .brands-page__grid {
    grid-template-columns: 1fr;
  }
}

.scroll-top-button {
  --scroll-top-size: 3.5rem;
  position: fixed;
  inset-inline-end: 1.25rem;
  inset-block-end: 1.25rem;
  width: var(--scroll-top-size);
  height: var(--scroll-top-size);
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #12233f;
  box-shadow: 0 18px 38px rgba(16, 33, 58, 0.16), 0 4px 10px rgba(16, 33, 58, 0.09);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1550;
  opacity: 0;
  transform: translateY(16px) scale(0.92);
  transition: opacity 180ms ease, transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
  pointer-events: none;
  overflow: hidden;
  isolation: isolate;
}

.scroll-top-button.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scroll-top-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 42px rgba(16, 33, 58, 0.2), 0 4px 12px rgba(16, 33, 58, 0.1);
}

.scroll-top-button:active {
  transform: translateY(-1px) scale(0.98);
}

.scroll-top-button:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(22, 65, 142, 0.16), 0 20px 42px rgba(16, 33, 58, 0.2);
}

.scroll-top-button__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.scroll-top-button__track,
.scroll-top-button__progress {
  fill: none;
  stroke-width: 2;
}

.scroll-top-button__track {
  stroke: rgba(16, 33, 58, 0.12);
}

.scroll-top-button__progress {
  stroke: #0f2343;
  stroke-linecap: round;
  stroke-dasharray: 131.95;
  stroke-dashoffset: 131.95;
  transition: stroke-dashoffset 140ms linear;
}

.scroll-top-button__icon {
  position: relative;
  z-index: 1;
  width: 2.3rem;
  height: 2.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  transition: transform 220ms ease;
}

.scroll-top-button:hover .scroll-top-button__icon {
  transform: translateY(-1px);
}

.scroll-top-button__icon i {
  font-size: 1.15rem;
  line-height: 1;
}

@media (max-width: 767px) {
  .scroll-top-button {
    --scroll-top-size: 3.2rem;
    inset-inline-end: 1rem;
    inset-block-end: 1rem;
  }
}

.home-discovery {
  position: relative;
  isolation: isolate;
  margin: 1.45rem 0 2rem;
  padding: 1.45rem 1.35rem 1rem;
  border: 1px solid rgba(29, 36, 48, 0.08);
  border-radius: 2.25rem;
  background:
    radial-gradient(circle at top right, rgba(240, 85, 69, 0.1), transparent 32%),
    radial-gradient(circle at bottom left, rgba(19, 35, 60, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 238, 0.92));
  box-shadow: 0 24px 68px rgba(16, 33, 58, 0.1);
  overflow: clip;
}

.home-discovery::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 38%, rgba(255, 255, 255, 0.14));
  pointer-events: none;
  z-index: -1;
}

.home-discovery__heading {
  margin-bottom: 1.05rem;
}

.home-discovery__heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  background: rgba(19, 35, 60, 0.06);
  box-shadow: inset 0 0 0 1px rgba(19, 35, 60, 0.06);
}

.home-discovery__heading h2 {
  max-width: none;
  margin-inline: auto;
  margin-bottom: 0.55rem;
}

.home-discovery__heading .section-heading__lead {
  max-width: 92ch;
  margin-inline: auto;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .home-discovery__heading h2 {
    white-space: nowrap;
    font-size: clamp(2rem, 2.7vw, 3rem);
  }

  .home-discovery__heading .section-heading__lead {
    white-space: nowrap;
  }
}

.home-discovery__switches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.home-discovery__switch {
  border: 1px solid rgba(29, 36, 48, 0.1);
  border-radius: 1.55rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 247, 243, 0.82));
  box-shadow: 0 18px 38px rgba(16, 33, 58, 0.07);
  padding: 1.1rem 1.15rem 1.05rem;
  text-align: start;
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.home-discovery__switch-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(19, 35, 60, 0.07);
  color: #13233c;
  font-size: 1rem;
  box-shadow: inset 0 0 0 1px rgba(19, 35, 60, 0.05);
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.home-discovery__switch::before {
  content: "";
  position: absolute;
  inset-inline-start: 1rem;
  inset-inline-end: 1rem;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(240, 85, 69, 0), rgba(240, 85, 69, 0.72), rgba(240, 85, 69, 0));
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.home-discovery__switch strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.home-discovery__switch span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.home-discovery__switch:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(16, 33, 58, 0.12);
  border-color: rgba(29, 36, 48, 0.16);
}

.home-discovery__switch:hover .home-discovery__switch-icon {
  transform: translateY(-1px) scale(1.03);
}

.home-discovery__switch.is-active {
  border-color: rgba(240, 85, 69, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 246, 241, 0.96));
  box-shadow: 0 24px 56px rgba(16, 33, 58, 0.13);
}

.home-discovery__switch.is-active::before {
  opacity: 1;
  transform: translateY(0);
}

.home-discovery__switch[data-home-discovery-tab="personal"].is-active {
  border-color: rgba(56, 116, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 255, 0.96));
}

.home-discovery__switch[data-home-discovery-tab="personal"].is-active .home-discovery__switch-icon {
  background: rgba(56, 116, 255, 0.12);
  color: #2754bb;
  box-shadow: inset 0 0 0 1px rgba(56, 116, 255, 0.12);
}

.home-discovery__switch[data-home-discovery-tab="personal"].is-active::before {
  background: linear-gradient(90deg, rgba(56, 116, 255, 0), rgba(56, 116, 255, 0.74), rgba(56, 116, 255, 0));
}

.home-discovery__switch[data-home-discovery-tab="deals"].is-active {
  border-color: rgba(240, 85, 69, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 246, 241, 0.96));
}

.home-discovery__switch[data-home-discovery-tab="deals"].is-active .home-discovery__switch-icon {
  background: rgba(240, 85, 69, 0.12);
  color: #c64a3d;
  box-shadow: inset 0 0 0 1px rgba(240, 85, 69, 0.12);
}

.home-discovery__switch[data-home-discovery-tab="deals"].is-active::before {
  background: linear-gradient(90deg, rgba(240, 85, 69, 0), rgba(240, 85, 69, 0.74), rgba(240, 85, 69, 0));
}

.home-discovery__switch[data-home-discovery-tab="budget"].is-active {
  border-color: rgba(63, 141, 101, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(243, 250, 245, 0.96));
}

.home-discovery__switch[data-home-discovery-tab="budget"].is-active .home-discovery__switch-icon {
  background: rgba(63, 141, 101, 0.12);
  color: #2f6d4d;
  box-shadow: inset 0 0 0 1px rgba(63, 141, 101, 0.12);
}

.home-discovery__switch[data-home-discovery-tab="budget"].is-active::before {
  background: linear-gradient(90deg, rgba(63, 141, 101, 0), rgba(63, 141, 101, 0.74), rgba(63, 141, 101, 0));
}

.home-discovery__panels {
  position: relative;
}

.home-discovery__panel {
  border: 1px solid rgba(29, 36, 48, 0.08);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 252, 248, 0.92));
  box-shadow:
    0 22px 60px rgba(16, 33, 58, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  padding: 1.45rem;
  animation: homeDiscoveryEnter 260ms ease;
}

.home-discovery__panel[data-home-discovery-panel="personal"] {
  background:
    radial-gradient(circle at top right, rgba(56, 116, 255, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.94));
}

.home-discovery__panel[data-home-discovery-panel="deals"] {
  background:
    radial-gradient(circle at top right, rgba(240, 85, 69, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 243, 0.94));
}

.home-discovery__panel[data-home-discovery-panel="budget"] {
  background:
    radial-gradient(circle at top right, rgba(63, 141, 101, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 247, 0.94));
}

.home-discovery__panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.home-discovery__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.4rem 0.78rem;
  background: rgba(15, 35, 67, 0.06);
  color: #10213a;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  box-shadow: inset 0 0 0 1px rgba(15, 35, 67, 0.06);
}

.home-discovery__panel[data-home-discovery-panel="personal"] .home-discovery__kicker {
  background: rgba(56, 116, 255, 0.08);
  color: #2754bb;
  box-shadow: inset 0 0 0 1px rgba(56, 116, 255, 0.1);
}

.home-discovery__panel[data-home-discovery-panel="deals"] .home-discovery__kicker {
  background: rgba(240, 85, 69, 0.08);
  color: #c64a3d;
  box-shadow: inset 0 0 0 1px rgba(240, 85, 69, 0.1);
}

.home-discovery__panel[data-home-discovery-panel="budget"] .home-discovery__kicker {
  background: rgba(63, 141, 101, 0.08);
  color: #2f6d4d;
  box-shadow: inset 0 0 0 1px rgba(63, 141, 101, 0.1);
}

.home-discovery__panel-head h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  font-weight: 900;
}

.home-discovery__panel-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  max-width: 62ch;
}

.home-discovery__link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.86rem 1.1rem;
  background: #13233c;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(16, 33, 58, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.home-discovery__link:hover {
  color: #fff;
  background: #0f1d32;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(16, 33, 58, 0.2);
}

.home-discovery__panel[data-home-discovery-panel="personal"] .home-discovery__link {
  background: linear-gradient(135deg, #2f62d9, #2149a8);
}

.home-discovery__panel[data-home-discovery-panel="personal"] .home-discovery__link:hover {
  background: linear-gradient(135deg, #2a57c2, #1c4093);
}

.home-discovery__panel[data-home-discovery-panel="deals"] .home-discovery__link {
  background: linear-gradient(135deg, #ef6248, #d74a31);
}

.home-discovery__panel[data-home-discovery-panel="deals"] .home-discovery__link:hover {
  background: linear-gradient(135deg, #de563f, #c7412b);
}

.home-discovery__panel[data-home-discovery-panel="budget"] .home-discovery__link {
  background: linear-gradient(135deg, #3e8c64, #2f6e4d);
}

.home-discovery__panel[data-home-discovery-panel="budget"] .home-discovery__link:hover {
  background: linear-gradient(135deg, #387d5a, #2a6245);
}

@keyframes homeDiscoveryEnter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .home-discovery {
    padding: 1.25rem 1rem 0.95rem;
    border-radius: 1.8rem;
  }

  .home-discovery__heading h2,
  .home-discovery__heading .section-heading__lead {
    white-space: normal;
  }

  .home-discovery__switches {
    grid-template-columns: 1fr;
  }

  .home-discovery__panel-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .home-discovery {
    margin: 1.25rem 0 1.75rem;
    padding: 1.1rem 0.8rem 0.75rem;
    border-radius: 1.5rem;
  }

  .home-discovery__heading {
    margin-bottom: 0.95rem;
  }

  .home-discovery__panel {
    padding: 1.1rem;
    border-radius: 1.5rem;
  }

  .home-discovery__link {
    width: 100%;
  }
}

.negotiation-center__panel {
  display: grid;
  gap: 1.35rem;
}

.negotiation-center__panel-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.negotiation-center__panel-head h2 {
  margin: 0 0 0.35rem;
  font-size: 1.6rem;
}

.negotiation-center__panel-head p,
.negotiation-center__hint {
  margin: 0;
  color: rgba(44, 57, 76, 0.72);
}

.negotiation-card {
  position: relative;
}

.negotiation-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: #162033;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.negotiation-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.75rem;
  color: #1f2c43;
  font-size: 0.95rem;
}

.negotiation-card__meta--soft {
  color: rgba(44, 57, 76, 0.72);
  font-size: 0.87rem;
}

.negotiation-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.negotiation-inline-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 245, 240, 0.92));
  border: 1px solid rgba(215, 203, 188, 0.6);
}

.negotiation-page__accepted-note {
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.98), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(134, 239, 172, 0.45);
}

.negotiation-page__accepted-note p {
  color: rgba(36, 48, 64, 0.78);
  line-height: 1.9;
}

.negotiation-page__accepted-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.negotiation-page .product-detail-fact #negotiation-status {
  font-weight: 800;
  color: #182235;
}

.negotiation-hub,
.negotiation-product {
  gap: 1.6rem;
  max-width: 1120px;
  margin-inline: auto;
}

.negotiation-hub__hero,
.negotiation-product__hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(220, 208, 190, 0.88);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top left, rgba(191, 219, 254, 0.38), transparent 30%),
    radial-gradient(circle at top right, rgba(253, 230, 138, 0.26), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 246, 239, 0.98));
  box-shadow: 0 24px 60px rgba(12, 18, 28, 0.08);
}

.negotiation-hub__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1.5rem;
  padding: 2rem;
  align-items: start;
}

.negotiation-hub__hero-copy h1,
.negotiation-product__summary h1 {
  margin: 0.35rem 0 0.85rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}

.negotiation-hub__hero-copy p,
.negotiation-product__description {
  margin: 0;
  color: rgba(42, 54, 72, 0.76);
  line-height: 1.95;
  font-size: 1rem;
}

.negotiation-hub__eyebrow,
.negotiation-product__eyebrow,
.negotiation-hub__section-kicker,
.negotiation-product__card-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #8b5e34;
  border: 1px solid rgba(201, 184, 159, 0.65);
  font-weight: 800;
  font-size: 0.82rem;
}

.negotiation-hub__hero-stats {
  display: grid;
  gap: 0.85rem;
}

.negotiation-hub__stat {
  padding: 1rem 1.05rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 209, 193, 0.78);
  display: grid;
  gap: 0.3rem;
}

.negotiation-hub__stat strong {
  font-size: 1.5rem;
  color: #111827;
}

.negotiation-hub__stat span {
  color: rgba(42, 54, 72, 0.75);
  line-height: 1.7;
}

.negotiation-hub__section,
.negotiation-product__card {
  border: 1px solid rgba(223, 212, 198, 0.88);
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.05);
}

.negotiation-hub__section {
  padding: 1.6rem;
  display: grid;
  gap: 1.35rem;
}

.negotiation-hub__section--history {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 246, 241, 0.96));
}

.negotiation-hub__section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.negotiation-hub__section-head h2,
.negotiation-product__card-head h2 {
  margin: 0.45rem 0 0.4rem;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.negotiation-hub__section-head p,
.negotiation-hub__note,
.negotiation-product__body-copy {
  margin: 0;
  color: rgba(42, 54, 72, 0.76);
  line-height: 1.85;
}

.negotiation-hub__note {
  max-width: 25rem;
}

.negotiation-hub__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.negotiation-hub__product,
.negotiation-hub__history-card,
.negotiation-hub__empty {
  border: 1px solid rgba(224, 214, 201, 0.9);
  border-radius: 1.55rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(250, 247, 242, 0.98));
  overflow: hidden;
}

.negotiation-hub__product {
  display: grid;
  grid-template-rows: 214px 1fr;
  max-width: 100%;
}

.negotiation-hub__product-media img,
.negotiation-hub__history-media img,
.negotiation-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.negotiation-hub__product-body,
.negotiation-hub__empty {
  padding: 1.15rem;
}

.negotiation-hub__product-badge {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: #172033;
  font-size: 0.82rem;
  font-weight: 800;
}

.negotiation-hub__product h3,
.negotiation-hub__empty h3,
.negotiation-hub__history-head h3 {
  margin: 0 0 0.45rem;
}

.negotiation-hub__product h3 a,
.negotiation-hub__history-head h3 {
  color: #111827;
  text-decoration: none;
}

.negotiation-hub__product-description {
  margin: 0 0 0.9rem;
  color: rgba(42, 54, 72, 0.72);
  line-height: 1.8;
}

.negotiation-hub__product-price,
.negotiation-product__price,
.negotiation-product__accepted-price,
.negotiation-product__counter-box {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.negotiation-hub__product-price strong,
.negotiation-product__price strong,
.negotiation-product__accepted-price strong,
.negotiation-product__counter-box strong {
  font-size: 1.45rem;
  color: #111827;
}

.negotiation-hub__product-status,
.negotiation-hub__product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.negotiation-hub__product-status {
  color: #182235;
}

.negotiation-hub__product-status strong {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
}

.negotiation-hub__product-status b {
  font-weight: 900;
}

.negotiation-hub__product-meta {
  color: rgba(42, 54, 72, 0.7);
  font-size: 0.9rem;
}

.negotiation-hub__product-actions,
.negotiation-hub__history-actions,
.negotiation-product__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.negotiation-hub__history-list {
  display: grid;
  gap: 1rem;
  max-width: 980px;
  margin-inline: auto;
}

.negotiation-hub__history-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1rem;
  align-items: center;
}

.negotiation-hub__history-media {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 1.2rem;
}

.negotiation-hub__history-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.negotiation-hub__history-head p {
  margin: 0;
  color: rgba(42, 54, 72, 0.72);
}

.negotiation-hub__history-status {
  display: inline-flex;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: #172033;
  font-weight: 800;
  white-space: nowrap;
}

.negotiation-hub__history-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.95rem;
}

.negotiation-hub__history-stats div,
.negotiation-product__facts div {
  border: 1px solid rgba(222, 211, 196, 0.86);
  border-radius: 1rem;
  padding: 0.85rem 0.9rem;
  background: rgba(255, 255, 255, 0.86);
  display: grid;
  gap: 0.28rem;
}

.negotiation-hub__history-stats strong,
.negotiation-product__facts strong {
  font-size: 0.78rem;
  color: rgba(42, 54, 72, 0.64);
}

.negotiation-hub__history-stats span,
.negotiation-product__facts span {
  font-weight: 800;
  color: #162033;
}

.negotiation-product__hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 1.5rem;
  padding: 1.5rem;
  align-items: stretch;
}

.negotiation-product__media {
  overflow: hidden;
  border-radius: 1.7rem;
  min-height: 26rem;
}

.negotiation-product__summary {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.negotiation-product__price small,
.negotiation-product__accepted-price small,
.negotiation-product__counter-box small {
  color: rgba(42, 54, 72, 0.72);
}

.negotiation-product__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.negotiation-product__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.1rem;
  align-items: start;
}

.negotiation-product__main,
.negotiation-product__side {
  display: grid;
  gap: 1rem;
}

.negotiation-product__side {
  max-width: 420px;
}

.negotiation-product__card {
  padding: 1.25rem;
}

.negotiation-product__card--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 246, 240, 0.95));
}

.negotiation-product__card--highlight {
  background: linear-gradient(135deg, rgba(255, 249, 235, 0.98), rgba(255, 255, 255, 0.96));
}

.negotiation-product__card--success {
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.98), rgba(255, 255, 255, 0.96));
}

.negotiation-product__card--accent {
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.98), rgba(255, 255, 255, 0.96));
}

.negotiation-product__offer-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  margin-top: 1rem;
}

.negotiation-product__cta-row {
  align-items: center;
  justify-content: space-between;
}

.negotiation-product__counter-box {
  margin: 1rem 0;
}

.negotiation-product__steps {
  margin: 0;
  padding-inline-start: 1.2rem;
  display: grid;
  gap: 0.6rem;
  color: rgba(42, 54, 72, 0.8);
  line-height: 1.9;
}

.negotiation-product .timeline-stack__item {
  border-radius: 1.15rem;
  background: rgba(250, 247, 242, 0.9);
}

.negotiation-countdown-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.92);
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: #9a3412;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.negotiation-countdown-chip.is-urgent {
  animation: negotiationTimerPulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.22);
}

.negotiation-countdown-chip.is-expired,
.negotiation-countdown-chip.is-expired strong {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(248, 113, 113, 0.28);
  color: #991b1b;
  animation: none;
}

.cta-primary.is-disabled,
.cta-secondary.is-disabled,
a.is-disabled {
  pointer-events: none;
  opacity: 0.55;
  filter: grayscale(0.15);
}

.negotiation-checkout__card {
  max-width: 960px;
  margin-inline: auto;
}

.negotiation-checkout__countdown-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

@keyframes negotiationTimerPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.18);
  }
  50% {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 0 0 8px rgba(249, 115, 22, 0);
  }
}

.negotiation-dialog-open {
  overflow: hidden;
}

.negotiation-dialog {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.negotiation-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 23, 0.54);
  backdrop-filter: blur(6px);
  animation: fadeIn 180ms ease;
}

.negotiation-dialog__panel {
  position: relative;
  width: min(1080px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  margin: 1rem auto;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(250, 247, 242, 0.985));
  box-shadow: 0 32px 80px rgba(8, 14, 24, 0.22);
  border: 1px solid rgba(222, 214, 201, 0.78);
  animation: slideUpSoft 220ms ease;
}

.negotiation-dialog__close {
  position: sticky;
  top: 1rem;
  margin-inline-start: auto;
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  margin-top: 1rem;
  margin-inline-end: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(207, 198, 184, 0.9);
  background: rgba(255, 255, 255, 0.95);
  color: #1d2738;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.negotiation-dialog__content {
  padding: 0.25rem 1.4rem 1.4rem;
}

.negotiation-dialog__loading {
  min-height: 18rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: rgba(37, 48, 66, 0.78);
  font-weight: 700;
}

.negotiation-dialog__hero {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.negotiation-dialog__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 19rem;
  border-radius: 1.7rem;
}

.negotiation-dialog__copy {
  display: grid;
  gap: 0.85rem;
}

.negotiation-dialog__eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 0.36rem 0.78rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: #1a2740;
  font-size: 0.82rem;
  font-weight: 800;
}

.negotiation-dialog__copy h2 {
  margin: 0;
  font-size: clamp(1.75rem, 2vw, 2.3rem);
}

.negotiation-dialog__description {
  margin: 0;
  color: rgba(44, 57, 76, 0.74);
  font-size: 1rem;
  line-height: 1.85;
}

.negotiation-dialog__price {
  font-size: 1.45rem;
  font-weight: 900;
  color: #0f172a;
}

.negotiation-dialog__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.negotiation-dialog__stats div,
.negotiation-dialog__card {
  border: 1px solid rgba(216, 206, 191, 0.78);
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.92);
}

.negotiation-dialog__stats div {
  display: grid;
  gap: 0.3rem;
  padding: 0.9rem 1rem;
}

.negotiation-dialog__stats strong {
  color: rgba(34, 45, 64, 0.68);
  font-size: 0.82rem;
}

.negotiation-dialog__stats span {
  font-weight: 800;
  color: #172033;
}

.negotiation-dialog__expiry {
  color: #b45309;
  font-weight: 700;
}

.negotiation-dialog__flash {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  font-weight: 700;
}

.negotiation-dialog__flash--success {
  background: rgba(22, 163, 74, 0.1);
  color: #166534;
}

.negotiation-dialog__flash--error {
  background: rgba(220, 38, 38, 0.1);
  color: #991b1b;
}

.negotiation-dialog__body {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.negotiation-dialog__column {
  display: grid;
  gap: 1rem;
}

.negotiation-dialog__card {
  padding: 1.15rem;
}

.negotiation-dialog__card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
}

.negotiation-dialog__card p {
  margin: 0;
  color: rgba(44, 57, 76, 0.76);
  line-height: 1.8;
}

.negotiation-dialog__submit-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  margin-top: 1rem;
}

.negotiation-dialog__card--accent {
  background: linear-gradient(135deg, rgba(255, 247, 237, 0.98), rgba(255, 255, 255, 0.94));
}

.negotiation-dialog__card--success {
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.98), rgba(255, 255, 255, 0.94));
}

.negotiation-dialog__counter-price {
  margin: 0.85rem 0;
  font-size: 1.55rem;
  font-weight: 900;
  color: #111827;
}

.negotiation-dialog__history-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.negotiation-dialog__history-head a {
  color: #9a3412;
  font-weight: 800;
}

.negotiation-page .timeline-stack__item {
  border-radius: 1.2rem;
}

@media (max-width: 991px) {
  .negotiation-hub__hero,
  .negotiation-product__hero,
  .negotiation-product__layout,
  .negotiation-hub__history-card {
    grid-template-columns: 1fr;
  }

  .negotiation-product__side,
  .negotiation-hub__history-list {
    max-width: none;
  }

  .negotiation-hub__section-head,
  .negotiation-hub__history-head,
  .negotiation-hub__product-status,
  .negotiation-hub__product-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .negotiation-hub__history-stats,
  .negotiation-product__facts {
    grid-template-columns: 1fr 1fr;
  }

  .negotiation-center__panel-head,
  .negotiation-card__meta,
  .negotiation-dialog__history-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .negotiation-dialog__hero,
  .negotiation-dialog__body {
    grid-template-columns: 1fr;
  }

  .negotiation-dialog__stats {
    grid-template-columns: 1fr;
  }

  .negotiation-page__accepted-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 767px) {
  .negotiation-hub__hero,
  .negotiation-hub__section,
  .negotiation-product__hero,
  .negotiation-product__card {
    padding: 1rem;
  }

  .negotiation-hub,
  .negotiation-product {
    max-width: min(100%, 100%);
  }

  .negotiation-hub__history-media {
    width: 100%;
    height: 180px;
  }

  .negotiation-hub__history-stats,
  .negotiation-product__facts,
  .negotiation-product__offer-form {
    grid-template-columns: 1fr;
  }

  .negotiation-checkout__countdown-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .negotiation-hub__product-actions a,
  .negotiation-hub__history-actions a,
  .negotiation-product__cta-row a,
  .negotiation-product__offer-form .cta-primary {
    width: 100%;
  }

  .negotiation-dialog__panel {
    width: min(100vw - 1rem, 100%);
    margin: 0.5rem auto;
    border-radius: 1.35rem;
  }

  .negotiation-dialog__content {
    padding: 0.2rem 0.9rem 1rem;
  }

  .negotiation-dialog__submit-row,
  .negotiation-card__actions {
    grid-template-columns: 1fr;
  }

  .negotiation-dialog__submit-row .cta-primary,
  .negotiation-card__actions a,
  .negotiation-card__actions button {
    width: 100%;
  }

  .negotiation-dialog__media img {
    min-height: 14rem;
  }
}
