:root {
  --brand: #217456;
  --brand-dark: #124e3b;
  --ink: #18221f;
  --muted: #63716c;
  --line: #dce4de;
  --soft: #f5f7f2;
  --accent: #c98b2e;
  --safe-top: env(safe-area-inset-top, 0px);
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(33, 116, 86, 0.1), transparent 26%),
    linear-gradient(180deg, #eef5ef 0, #f7faf7 100%);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: max(var(--safe-top), 0px);
  pointer-events: none;
  background: var(--brand);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  line-height: 1;
}

.react-topbar,
.react-tabs,
main {
  width: min(520px, 100%);
  margin: 0 auto;
}

.react-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  gap: 8px;
  padding: calc(12px + var(--safe-top)) 12px 10px;
  background: var(--brand);
}

.react-topbar:has(+ .react-menu-backdrop) {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 40;
  transform: translateX(-50%);
}

.react-topbar-main {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px 42px;
  gap: 8px;
  align-items: center;
}

.react-customer-row {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 5px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 800;
}

.react-customer-hello {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.react-customer-hello strong,
.react-customer-address {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.react-customer-address {
  justify-self: end;
  max-width: 100%;
  opacity: 0.92;
}

.react-customer-row .react-verified-badge {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.react-customer-row .react-verified-badge::after {
  background-size: 7px 6px;
}

.round-icon {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--brand);
  background: #fff;
  font-weight: 900;
}

.cart-icon b,
.chat-icon b {
  position: absolute;
  right: 0;
  bottom: 1px;
  display: grid;
  min-width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--brand-dark);
  font-size: 0.72rem;
}

.react-search input {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
}

.react-install-prompt {
  display: grid;
  width: min(520px, 100%);
  margin: 0 auto;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid #dfe8e2;
  background: #fffdf7;
}

.react-install-prompt.profile {
  width: 100%;
  margin: 0;
  padding: 12px;
  border: 1px solid #dfe8e2;
  border-radius: 8px;
  background: #fff;
}

.react-install-prompt.profile .react-install-card {
  grid-template-columns: 42px minmax(0, 1fr);
}

.react-install-prompt.profile .react-install-actions {
  grid-template-columns: 1fr 1fr;
}

.react-install-prompt.profile .react-install-actions button:last-child {
  color: var(--brand);
  background: #eef7f2;
}

.react-install-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 34px;
  gap: 10px;
  align-items: center;
}

.react-install-card img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(18, 78, 59, 0.14);
}

.react-install-card strong,
.react-install-card span {
  display: block;
  line-height: 1.2;
}

.react-install-card strong {
  font-size: 0.92rem;
}

.react-install-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.react-install-card > button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: #f2f6f3;
}

.react-install-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.react-install-actions button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  color: var(--brand);
  background: #eef7f2;
  font-weight: 900;
}

.react-install-actions button:first-child {
  color: #fff;
  background: var(--brand);
}

.react-install-steps {
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid #dfe8e2;
  border-radius: 8px;
  background: #fff;
}

.react-install-steps b {
  color: var(--brand);
}

.react-install-steps ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.react-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: grid;
  align-items: start;
  justify-items: center;
  padding-top: calc(64px + var(--safe-top));
  background: rgba(18, 78, 59, 0.28);
}

.react-topbar.has-customer-row + .react-menu-backdrop {
  padding-top: calc(102px + var(--safe-top));
}

.react-menu-panel {
  display: grid;
  width: min(520px, calc(100% - 20px));
  max-height: calc(100dvh - 84px - var(--safe-top));
  overflow-y: auto;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 0 0 12px 12px;
  background: #fff;
  box-shadow: 0 24px 48px rgba(18, 34, 31, 0.18);
}

.react-menu-panel.logged-out {
  gap: 8px;
  padding-top: 12px;
}

.react-menu-profile {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.react-menu-profile div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.react-menu-profile strong {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
}

.react-menu-profile strong,
.react-menu-profile span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.react-menu-profile span {
  color: var(--muted);
  font-weight: 800;
}

.react-menu-home,
.react-menu-links a,
.react-menu-logout {
  display: grid;
  align-items: center;
  min-height: 58px;
  border-radius: 8px;
  font-weight: 900;
}

.react-menu-home {
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  padding: 0 12px;
  color: #fff;
  background: var(--brand);
}

.react-menu-home .material-symbols-rounded,
.react-menu-links .material-symbols-rounded,
.react-menu-logout .material-symbols-rounded {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
}

.react-menu-home .material-symbols-rounded {
  color: var(--brand);
  background: #fff;
}

.react-menu-links {
  display: grid;
  gap: 8px;
}

.react-menu-links a {
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.react-menu-links .material-symbols-rounded {
  color: var(--brand);
  background: #eaf6ef;
}

.react-menu-links div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.react-menu-links strong,
.react-menu-links small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.react-menu-links small {
  color: var(--muted);
  font-weight: 800;
}

.react-menu-links b {
  color: var(--brand);
}

.react-menu-logout {
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  border: 1px solid #f0d2d2;
  padding: 10px 12px;
  color: #a83232;
  background: #fff0f0;
  text-align: left;
}

.react-menu-logout .material-symbols-rounded {
  color: #a83232;
  background: #ffe0e0;
}

.react-tabs {
  position: sticky;
  top: 64px;
  z-index: 9;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 18px rgba(13, 30, 25, 0.08);
}

.react-topbar.has-customer-row + .react-tabs {
  top: 106px;
}

.react-topbar.has-customer-row + .react-tabs + .react-category-panel {
  top: 148px;
}

.react-tabs button {
  border: 0;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
  white-space: nowrap;
}

.react-tabs .react-more-tab {
  position: sticky;
  right: 0;
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  box-shadow: -8px 0 12px #fff;
}

.react-tabs .react-more-tab.is-open .material-symbols-rounded {
  transform: rotate(180deg);
}

.react-tabs button.active {
  color: var(--brand);
}

.react-category-panel {
  position: sticky;
  top: 106px;
  z-index: 8;
  display: grid;
  width: min(520px, 100%);
  gap: 12px;
  margin: 0 auto;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.react-interest-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.react-interest-head strong {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--ink);
}

.react-interest-head span {
  color: var(--muted);
  font-size: 0.72rem;
}

.react-interest-head button {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: #f7faf8;
}

.react-interest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 10px;
}

.react-interest-chips button {
  border: 0;
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--ink);
  background: #f7faf8;
  font-weight: 900;
}

.react-interest-chips button.active {
  color: var(--brand);
}

.react-print-ideas {
  justify-self: start;
  border-radius: 999px;
  padding: 10px 16px;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
}

main {
  min-height: 100vh;
  background: #fff;
}

.react-hero {
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 34px 18px 42px;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(13, 30, 25, 0.96), rgba(33, 116, 86, 0.58)),
    #20352e;
}

.react-hero.has-slides {
  padding: 0;
  color: inherit;
  background: #fff;
}

.react-hero-slide-image {
  display: block;
  width: 100%;
  aspect-ratio: 1560 / 705;
  object-fit: cover;
  background: #10251f;
}

.react-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(15, 30, 26, 0.28);
}

.react-hero-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.62);
}

.react-hero-dots button.active {
  width: 18px;
  background: #fff;
}

.react-hero p {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.react-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.7rem, 13vw, 4.1rem);
  line-height: 0.98;
}

.react-hero span {
  display: block;
  max-width: 28rem;
  font-size: 1.05rem;
  line-height: 1.5;
}

.react-stories-section {
  display: grid;
  gap: 8px;
  padding: 14px 12px 10px;
  background: #fff;
  border-bottom: 1px solid #edf1ee;
}

.react-stories-head {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0 2px;
}

.react-stories-head .eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.react-stories-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.12;
}

.react-stories-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 78px;
  align-items: start;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  min-height: 92px;
  padding: 0 2px 6px;
  scrollbar-width: none;
}

.react-stories-row::-webkit-scrollbar {
  display: none;
}

.react-story-bubble {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 6px;
  min-height: 90px;
  min-width: 0;
  border: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.react-story-bubble span {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 66px;
  height: 66px;
  aspect-ratio: 1 / 1;
  padding: 3px;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--brand), var(--steel));
  box-sizing: border-box;
}

.react-story-bubble img {
  position: absolute;
  inset: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  display: block;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-sizing: border-box;
  background: #fff;
}

.react-story-bubble i {
  position: absolute;
  right: -3px;
  bottom: 2px;
  padding: 2px 5px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-size: 0.54rem;
  font-style: normal;
  font-weight: 900;
}

.react-story-bubble strong {
  width: 100%;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: normal;
}

.react-story-viewer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 12px;
  background: rgba(9, 18, 16, 0.82);
}

.react-story-card {
  position: relative;
  width: min(430px, 100%);
  height: min(720px, calc(100dvh - 24px));
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: #101513;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.react-story-card > img,
.react-story-card > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.react-story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.86));
}

.react-story-progress {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 12px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18px, 1fr));
  gap: 4px;
}

.react-story-progress span {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.react-story-progress i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #fff;
}

.react-story-progress .done i {
  width: 100%;
}

.react-story-progress .active i {
  animation: reactStoryProgress 6500ms linear forwards;
}

@keyframes reactStoryProgress {
  from { width: 0; }
  to { width: 100%; }
}

.react-story-hit {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 38%;
  border: 0;
  background: transparent;
}

.react-story-hit.prev {
  left: 0;
}

.react-story-hit.next {
  right: 0;
}

.react-story-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: grid;
  gap: 10px;
  padding: 24px;
}

.react-story-content p,
.react-story-content h2,
.react-story-content span {
  margin: 0;
}

.react-story-content p {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.react-story-content h2 {
  font-size: clamp(2rem, 10vw, 3.2rem);
  line-height: 0.98;
}

.react-story-content span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.react-story-content a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.86rem;
  font-weight: 900;
}

.react-story-close {
  position: fixed;
  top: max(12px, env(safe-area-inset-top));
  right: max(12px, env(safe-area-inset-right));
  z-index: 90;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.react-section {
  padding: 18px 12px 32px;
  background: var(--soft);
}

.react-section h2 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.react-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}

.react-product-card {
  display: grid;
  align-content: start;
  gap: 4px;
  min-width: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.react-product-image {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  border-radius: 7px;
  background: #f8faf8;
}

.react-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.react-favorite-button {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 2;
  display: inline-flex;
  gap: 2px;
  align-items: center;
  min-width: 34px;
  height: 34px;
  border: 1px solid rgba(19, 45, 38, 0.12);
  border-radius: 999px;
  padding: 0 8px 0 7px;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(19, 45, 38, 0.12);
  cursor: pointer;
}

.react-favorite-button .material-symbols-rounded {
  font-size: 1.08rem;
  font-variation-settings: "FILL" 0, "wght" 700, "GRAD" 0, "opsz" 20;
}

.react-favorite-button.active .material-symbols-rounded {
  color: #d33a3a;
  font-variation-settings: "FILL" 1, "wght" 800, "GRAD" 0, "opsz" 20;
}

.react-favorite-button small {
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 900;
}

.react-favorite-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 2;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(19, 45, 38, 0.12);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(19, 45, 38, 0.12);
  cursor: pointer;
}

.react-favorite-remove .material-symbols-rounded {
  font-size: 1rem;
  font-variation-settings: "FILL" 0, "wght" 800, "GRAD" 0, "opsz" 20;
}

.react-product-card small {
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.react-product-card strong {
  font-size: 0.84rem;
  line-height: 1.12;
}

.react-empty-list {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.react-empty-list strong {
  font-size: 0.96rem;
}

.react-empty-list span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.react-card-price {
  display: grid;
  gap: 1px;
  margin-top: 1px;
}

.react-card-price p {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: baseline;
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
}

.react-card-price p sup {
  font-size: 0.58em;
  line-height: 1;
}

.react-card-price p em {
  padding: 2px 5px;
  border-radius: 999px;
  background: #fff1e8;
  color: #bf4d28;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 900;
}

.react-old-price {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-decoration: line-through;
}

.react-product-badge {
  position: absolute;
  left: 6px;
  bottom: 6px;
  display: inline-flex;
  gap: 3px;
  align-items: center;
  max-width: calc(100% - 12px);
  padding: 4px 6px;
  border-radius: 5px;
  background: #c76442;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.react-product-badge .material-symbols-rounded {
  font-size: 0.75rem;
  line-height: 1;
}

.react-product-badge.campaign-flash {
  background: #ffd84a;
  color: #2c2410;
  box-shadow: 0 0 0 1px rgba(121, 82, 0, 0.12);
}

.react-product-badge.campaign-clearance {
  background: #ff6a1a;
}

.react-product-badge.campaign-launch {
  background: #1f7f5c;
}

.react-product-badge.campaign-flash .material-symbols-rounded {
  color: #f4a900;
  font-variation-settings: "FILL" 1, "wght" 900, "GRAD" 0, "opsz" 20;
}

.react-product-badge.campaign-clearance .material-symbols-rounded {
  color: #fff4d8;
  font-variation-settings: "FILL" 1, "wght" 900, "GRAD" 0, "opsz" 20;
}

.react-flash-ticker {
  display: flex;
  max-width: 100%;
  overflow: hidden;
  border-radius: 5px;
  padding: 3px 0;
  color: #7a4e00;
  background: #fff5c2;
  font-size: 0.62rem;
  font-weight: 900;
  white-space: nowrap;
}

.react-flash-ticker span {
  min-width: max-content;
  padding-inline: 8px;
  animation: reactFlashTicker 8s linear infinite;
}

@keyframes reactFlashTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.react-stars {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  min-width: 0;
  color: #f5b301;
  font-size: 0.82rem;
  font-weight: 900;
}

.react-stars.compact {
  gap: 4px;
  font-size: 0.72rem;
}

.react-stars b,
.react-stars em {
  color: var(--ink);
  font-style: normal;
}

.react-star-row {
  display: inline-flex;
  gap: 1px;
  line-height: 1;
}

.react-star {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  color: #d8dfd9;
  line-height: 1;
}

.react-star span {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.react-star span:first-child {
  z-index: 1;
  color: #f5b301;
}

.react-star span:last-child {
  color: #d8dfd9;
}

.free-shipping {
  color: #008d4d;
  font-size: 0.78rem;
  font-weight: 900;
}

.react-product-page {
  display: grid;
  gap: 12px;
  padding: 12px;
  background: var(--soft);
}

.react-product-nav {
  position: fixed;
  top: 64px;
  z-index: 8;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(520px, 100%);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.react-topbar.has-customer-row + .react-product-page .react-product-nav {
  top: 106px;
}

.react-product-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.react-product-nav button {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 900;
}

.react-product-nav button.active,
.react-product-nav button:focus,
.react-product-nav button:hover {
  color: var(--brand);
}

.react-gallery,
.react-detail-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.react-gallery {
  display: grid;
  gap: 10px;
  padding: 10px;
}

.react-main-media {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: #f8faf8;
  cursor: zoom-in;
}

.react-main-media img,
.react-main-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.react-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.react-thumbs button {
  position: relative;
  display: grid;
  flex: 0 0 66px;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #f8faf8;
}

.react-thumbs button.active {
  border-color: var(--brand);
}

.react-thumbs img,
.react-thumbs video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.react-media-play {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.48);
  transform: translate(-50%, -50%);
}

.react-detail-card {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.react-detail-card > small {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.react-detail-card h1 {
  margin: 0;
  font-size: 1.82rem;
  line-height: 1.04;
}

.product-rating {
  display: flex;
  margin-top: -2px;
}

.product-rating .react-stars {
  font-size: 0.86rem;
}

.react-price {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--brand);
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1;
}

.product-free-shipping {
  display: block;
  padding: 12px 14px;
  border-radius: 7px;
  background: #e9f7ef;
  font-size: 1rem;
}

.react-options {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
}

.react-stock-line {
  display: flex;
  justify-content: flex-end;
  color: var(--ink);
  font-size: 0.82rem;
}

.react-color-list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
}

.react-color-list button {
  display: grid;
  gap: 4px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
}

.react-color-list button span {
  display: block;
  width: 44px;
  height: 44px;
  border: 2px solid var(--line);
  border-radius: 999px;
}

.react-color-list button.active span {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(33, 116, 86, 0.14);
}

.react-color-list em {
  max-width: 64px;
  overflow: hidden;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.react-quantity-row {
  display: grid;
  grid-template-columns: auto 58px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 12px;
  border-radius: 7px;
  background: #f1f4f1;
  font-weight: 900;
}

.react-quantity-row select {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  font-weight: 900;
}

.react-quantity-row span:last-child {
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.react-actions {
  display: grid;
  gap: 10px;
}

.react-buy,
.react-add {
  display: grid;
  min-height: 52px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
}

.react-buy {
  color: #fff;
  background: #3485f7;
}

.react-add {
  grid-auto-flow: column;
  justify-content: center;
  gap: 8px;
  color: #3485f7;
  background: #e7f1ff;
}

.react-status {
  margin: 0;
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--brand-dark);
  background: #e9f7ef;
  font-weight: 900;
}

.react-payment {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid #cfe2ff;
  border-radius: 8px;
  background: #f4f9ff;
}

.react-payment span {
  color: var(--muted);
  line-height: 1.5;
}

.react-product-info {
  display: grid;
  gap: 12px;
}

.react-info-panel {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.react-info-panel small {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.react-info-panel h2 {
  margin: 0;
  font-size: 1.2rem;
}

.react-info-description p,
.react-feature-list,
.react-spec-list,
.react-spec-list dd {
  margin: 0;
}

.react-info-description p {
  color: var(--muted);
  line-height: 1.55;
}

.react-feature-list {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.react-feature-list li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  background: #f7faf8;
  font-weight: 900;
}

.react-feature-list li::before {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.react-spec-list {
  display: grid;
  gap: 8px;
}

.react-spec-list div {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f7faf8;
}

.react-spec-list dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.react-spec-list dd {
  color: var(--ink);
  font-weight: 900;
}

.react-reviews h2,
.react-related-section h2 {
  margin: 0;
  font-size: 1.35rem;
}

.react-review-list {
  display: grid;
  gap: 10px;
}

.react-review-card {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.react-review-head {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.react-review-head strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.react-review-head .react-verified-badge {
  margin-left: 0;
}

.react-review-head .react-stars {
  justify-self: end;
}

.react-review-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
  object-fit: cover;
}

.react-verified-badge {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  vertical-align: middle;
  background: #0b73e8;
  clip-path: polygon(50% 0%, 58% 9%, 69% 3%, 75% 14%, 87% 13%, 88% 27%, 100% 34%, 94% 46%, 100% 58%, 90% 67%, 91% 80%, 78% 84%, 72% 96%, 59% 92%, 50% 100%, 41% 92%, 28% 96%, 22% 84%, 9% 80%, 10% 67%, 0% 58%, 6% 46%, 0% 34%, 12% 27%, 13% 13%, 25% 14%, 31% 3%, 42% 9%);
}

.react-verified-badge::after {
  position: absolute;
  inset: 0;
  background: center / 8px 7px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1.5 5.1 4.7 8.2 10.5 1.7' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  content: "";
}

.react-review-card p,
.react-empty {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.react-review-media {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.react-review-media button {
  position: relative;
  display: grid;
  flex: 0 0 72px;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf8;
}

.react-review-media img,
.react-review-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.react-review-media .material-symbols-rounded {
  position: absolute;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.52);
}

.react-related-section {
  padding-bottom: 48px;
}

.react-lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: max(18px, env(safe-area-inset-top)) 14px max(72px, env(safe-area-inset-bottom));
  background: rgba(13, 30, 25, 0.92);
}

body.react-lightbox-open {
  overflow: hidden;
}

.react-lightbox-media {
  display: grid;
  width: min(520px, 100%);
  max-height: 78vh;
  place-items: center;
}

.react-lightbox-media img,
.react-lightbox-media video {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 8px;
  background: #fff;
}

.react-lightbox-close,
.react-lightbox-arrow,
.react-lightbox-bottom-close {
  position: fixed;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--brand);
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.react-lightbox-close {
  top: max(14px, env(safe-area-inset-top));
  right: max(14px, calc((100vw - min(520px, 100vw)) / 2 + 14px));
}

.react-lightbox-arrow.left {
  left: 14px;
}

.react-lightbox-arrow.right {
  right: 14px;
}

.react-lightbox-count {
  position: fixed;
  bottom: max(82px, calc(env(safe-area-inset-bottom) + 62px));
  left: 50%;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 900;
  transform: translateX(-50%);
}

.react-lightbox-bottom-close {
  bottom: max(16px, env(safe-area-inset-bottom));
  left: 50%;
  width: min(220px, calc(100vw - 40px));
  height: 48px;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 900;
  transform: translateX(-50%);
}

.react-cart-page {
  display: grid;
  gap: 12px;
  padding: 14px 12px 40px;
  background: var(--soft);
}

.react-cart-header {
  padding: 12px 4px 4px;
}

.react-cart-header p {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.react-cart-header h1 {
  margin: 0;
  font-size: 1.7rem;
}

.react-cart-list {
  display: grid;
  gap: 10px;
}

.react-cart-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.react-cart-media {
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #f8faf8;
}

.react-cart-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.react-cart-info {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.react-cart-info strong,
.react-cart-info span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.react-cart-info span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.react-cart-info em {
  color: #008d4d;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 900;
}

.react-cart-info b {
  margin-top: 3px;
  font-size: 1rem;
}

.react-cart-controls {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) 54px;
  gap: 8px;
}

.react-cart-delivery input {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
}

.react-cart-stepper {
  display: grid;
  grid-template-columns: 48px minmax(54px, 1fr) 48px;
  align-items: center;
  min-height: 44px;
  overflow: hidden;
  border: 1px solid #cfe1d8;
  border-radius: 8px;
  background: #f8fbf8;
}

.react-cart-stepper strong {
  display: grid;
  min-height: 44px;
  place-items: center;
  color: var(--brand);
  font-size: 1.15rem;
  font-weight: 950;
  background: #fff;
}

.react-cart-controls button {
  display: grid;
  width: 100%;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  font: inherit;
  cursor: pointer;
}

.react-cart-stepper button {
  border-radius: 0;
  color: var(--brand);
  background: #eaf5ef;
}

.react-cart-stepper button:disabled {
  color: #9ca8a2;
  cursor: not-allowed;
  background: #f1f4f2;
}

.react-cart-controls > button {
  color: #a83232;
  background: #fff0f0;
}

.react-cart-delivery label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 900;
}

.react-cart-delivery input {
  padding: 0 12px;
  color: var(--ink);
}

.react-cart-address-grid {
  display: grid;
  gap: 10px;
}

.react-destination-card {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid #bfe5d4;
  border-radius: 8px;
  color: var(--muted);
  background: #eefaf3;
  font-weight: 800;
}

.react-destination-card strong {
  color: var(--ink);
}

.react-coupon-ok,
.react-coupon-error,
.react-cart-status {
  margin: 0;
  font-weight: 900;
  line-height: 1.35;
}

.react-coupon-ok {
  color: #008d4d;
}

.react-coupon-error,
.react-cart-status {
  color: #a83232;
}

.react-shipping-options {
  display: grid;
  gap: 8px;
}

.react-shipping-option {
  display: grid;
  grid-template-columns: 24px 78px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}

.react-shipping-option input {
  width: 18px;
  min-height: 18px;
}

.react-shipping-option img {
  width: 78px;
  max-height: 34px;
  object-fit: contain;
}

.react-shipping-option span {
  display: grid;
  min-width: 0;
}

.react-shipping-option strong,
.react-shipping-option small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.react-shipping-option small {
  color: var(--muted);
  font-size: 0.78rem;
}

.react-shipping-option b {
  font-size: 0.92rem;
}

.react-shipping-note {
  padding: 12px;
  border-radius: 8px;
  color: #0f5264;
  background: #e9f6fb;
  font-weight: 900;
}

.react-shipping-note.free {
  display: grid;
  gap: 4px;
  color: #006d42;
  background: #e6f6ee;
}

.react-shipping-note.free span,
.react-shipping-note.free small {
  color: #315a4a;
  font-weight: 800;
}

.react-shipping-note.free small {
  font-size: 0.78rem;
}

.react-cart-summary {
  display: grid;
  gap: 9px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.react-cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.react-cart-summary div:last-of-type {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 1.2rem;
}

.react-cart-summary button {
  min-height: 52px;
  margin-top: 4px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
}

.react-cart-summary button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.react-add-confirmation {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid #bfe5d4;
  border-radius: 8px;
  background: #effaf4;
}

.react-add-confirmation strong,
.react-add-confirmation span {
  display: block;
}

.react-add-confirmation span {
  color: var(--muted);
  font-weight: 800;
}

.react-add-confirmation div:last-child {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.react-add-confirmation a,
.react-add-confirmation button,
.react-chat-product-link {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
}

.react-add-confirmation a {
  color: #fff;
  background: var(--brand);
}

.react-add-confirmation button,
.react-chat-product-link {
  border: 1px solid var(--line);
  color: var(--brand);
  background: #f7fbf8;
}

.react-account-cta,
.react-primary-link,
.react-secondary-link {
  display: grid;
  min-height: 48px;
  place-items: center;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}

.react-account-cta,
.react-primary-link {
  color: #fff;
  background: var(--brand);
}

.react-secondary-link {
  color: var(--ink);
  background: #eff5f1;
}

.react-account-page {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px 14px 28px;
}

.react-account-hero {
  display: grid;
  gap: 6px;
}

.react-account-hero small,
.react-account-card label span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.react-account-hero h1,
.react-account-hero p {
  margin: 0;
}

.react-account-hero h1 {
  font-size: clamp(2rem, 10vw, 3rem);
  line-height: 0.98;
}

.react-account-hero p {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.react-account-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.react-google-button {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.react-google-mark {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: #4285f4;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  font-weight: 900;
  -webkit-text-fill-color: #fff;
}

.react-account-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 900;
}

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

.react-account-form {
  display: grid;
  gap: 12px;
}

.react-account-form label {
  display: grid;
  gap: 6px;
}

.react-account-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
}

.react-account-form textarea {
  width: 100%;
  min-height: 118px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
}

.react-account-form label small {
  color: var(--muted);
  font-weight: 800;
}

.react-account-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.react-account-form button,
.react-danger-button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
}

.react-account-form button {
  color: #fff;
  background: var(--brand);
}

.react-danger-button {
  color: #a83232;
  background: #fff0f0;
}

.react-session-card {
  grid-template-columns: 1fr;
}

.react-session-card div {
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.react-session-card strong {
  font-size: 1.15rem;
}

.react-session-card span,
.react-account-status {
  color: var(--muted);
  font-weight: 800;
}

.react-account-status {
  margin: 0;
  line-height: 1.35;
}

.react-orders-page {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px 14px 28px;
}

.react-requests-page {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px 14px 28px;
}

.react-chat-page {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px 14px 28px;
}

.react-profile-page {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px 14px 28px;
}

.react-affiliate-page {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px 14px 28px;
}

.react-page-title {
  display: grid;
  gap: 5px;
}

.react-page-title p,
.react-section-heading p {
  margin: 0;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.react-page-title h1,
.react-section-heading h2 {
  margin: 0;
  line-height: 1.05;
}

.react-page-title h1 {
  font-size: clamp(2rem, 10vw, 3rem);
}

.react-page-title span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.react-empty-card,
.react-affiliate-hero,
.react-affiliate-code,
.react-affiliate-products,
.react-affiliate-product {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.react-empty-card {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.react-empty-card > .material-symbols-rounded {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  color: var(--brand);
  background: #eaf6f0;
}

.react-empty-card strong {
  font-size: 1.25rem;
}

.react-empty-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.4;
}

.react-affiliate-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.react-affiliate-hero div {
  display: grid;
  gap: 5px;
  padding: 14px;
  background: #fff;
}

.react-affiliate-hero span,
.react-affiliate-code small,
.react-affiliate-product small,
.react-affiliate-product span {
  color: var(--muted);
  font-weight: 800;
}

.react-affiliate-hero strong {
  color: var(--brand);
  font-size: 1.45rem;
}

.react-affiliate-code {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 14px;
}

.react-affiliate-code div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.react-affiliate-code strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.react-affiliate-code button,
.react-affiliate-actions button,
.react-affiliate-actions a {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  padding: 0 12px;
  font-weight: 900;
}

.react-affiliate-code button,
.react-affiliate-actions button {
  color: #fff;
  background: var(--brand);
}

.react-affiliate-products {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.react-section-heading {
  display: grid;
  gap: 3px;
}

.react-affiliate-product {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
}

.react-affiliate-thumb {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
  font-weight: 900;
}

.react-affiliate-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.react-affiliate-product > div:nth-child(2) {
  display: grid;
  align-content: start;
  gap: 4px;
  min-width: 0;
}

.react-affiliate-product strong,
.react-affiliate-product span,
.react-affiliate-product b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.react-affiliate-product b {
  color: var(--brand);
}

.react-affiliate-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.react-affiliate-actions a {
  color: var(--brand);
  background: #eaf6f0;
}

.react-affiliate-flow {
  align-content: start;
}

.react-affiliate-flow-card {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
}

.react-affiliate-flow-card strong,
.react-affiliate-flow-card p,
.react-affiliate-flow-card small,
.react-affiliate-flow-card time {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.react-affiliate-flow-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.react-receipt-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.react-receipt-link {
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--brand);
  background: #eaf6f0;
  font-size: 0.78rem;
  font-weight: 900;
}

.react-affiliate-flow-card time {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.react-affiliate-flow-status {
  justify-self: start;
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--brand);
  background: #eaf6f0;
  font-size: 0.76rem;
  font-weight: 900;
}

.react-affiliate-flow-status.order {
  color: #9a5a00;
  background: #fff4dc;
}

.react-partner-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0 4px;
  scrollbar-width: none;
}

.react-partner-filters::-webkit-scrollbar {
  display: none;
}

.react-partner-filters button {
  flex: 0 0 auto;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--muted);
  background: #fff;
  font-weight: 900;
}

.react-partner-filters button.active {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}

.react-affiliate-empty {
  padding: 14px;
  border-radius: 8px;
  color: var(--muted);
  background: var(--soft);
  font-weight: 800;
  line-height: 1.35;
}

.react-profile-summary {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.react-profile-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
  object-fit: cover;
}

.react-profile-avatar.large {
  width: 78px;
  height: 78px;
  font-size: 1.7rem;
}

.react-profile-summary div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.react-profile-summary strong {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  font-size: 1.15rem;
}

.react-profile-summary strong,
.react-profile-summary span,
.react-profile-summary small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.react-profile-summary span,
.react-profile-summary small {
  color: var(--muted);
  font-weight: 800;
}

.react-orders-list,
.react-requests-list {
  display: grid;
  gap: 12px;
}

.react-order-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.react-order-card.pending {
  border-color: #bfe5d4;
  background: #f4fbf7;
}

.react-order-main {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.react-order-thumb {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
}

.react-order-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.react-order-main div:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.react-order-main strong,
.react-order-main span,
.react-order-main small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.react-order-main span,
.react-order-main small {
  color: var(--muted);
  font-weight: 800;
}

.react-order-main b {
  white-space: nowrap;
}

.react-order-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.react-order-facts span,
.react-order-details div span {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 10px;
  border-radius: 8px;
  color: var(--muted);
  background: var(--soft);
  font-weight: 800;
}

.react-order-facts b,
.react-order-details b {
  color: var(--ink);
}

.react-order-actions {
  display: grid;
  gap: 8px;
}

.react-order-actions small {
  color: var(--muted);
  font-weight: 900;
}

.react-order-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  margin: 0;
  padding: 10px;
  border-radius: 8px;
  background: #f7faf8;
  list-style: none;
}

.react-order-timeline li {
  position: relative;
  display: grid;
  gap: 5px;
  justify-items: center;
  color: var(--muted);
  text-align: center;
}

.react-order-timeline li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: #d9e5df;
}

.react-order-timeline li:first-child::before {
  display: none;
}

.react-order-timeline li > span {
  z-index: 1;
  width: 16px;
  height: 16px;
  border: 2px solid #cfded6;
  border-radius: 999px;
  background: #fff;
}

.react-order-timeline li.done > span,
.react-order-timeline li.current > span {
  border-color: var(--brand);
  background: var(--brand);
}

.react-order-timeline li.done::before,
.react-order-timeline li.current::before {
  background: var(--brand);
}

.react-order-timeline li.current > span {
  box-shadow: 0 0 0 4px rgba(33, 126, 88, 0.16);
}

.react-order-timeline strong,
.react-order-timeline small {
  display: block;
  line-height: 1.15;
}

.react-order-timeline strong {
  color: var(--ink);
  font-size: 0.72rem;
}

.chat-icon b {
  background: #d34c3f;
}

.react-order-timeline small {
  font-size: 0.65rem;
  font-weight: 800;
}

.react-order-timeline.canceled li > span,
.react-order-timeline li.canceled > span {
  border-color: #d34c3f;
  background: #d34c3f;
}

.react-order-details {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.react-order-details summary {
  cursor: pointer;
  color: var(--brand);
  font-weight: 900;
}

.react-order-details div {
  display: grid;
  gap: 8px;
  padding-top: 10px;
}

.react-request-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.react-request-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.react-request-head div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.react-request-head strong,
.react-request-head span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.react-request-head span,
.react-request-head small,
.react-request-card p {
  color: var(--muted);
  font-weight: 800;
}

.react-request-card p {
  margin: 0;
  line-height: 1.4;
}

.react-request-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.react-request-meta span {
  display: grid;
  gap: 2px;
  padding: 10px;
  border-radius: 8px;
  color: var(--muted);
  background: var(--soft);
  font-weight: 800;
}

.react-request-meta b {
  color: var(--ink);
}

.react-request-messages {
  display: grid;
  gap: 6px;
}

.react-request-messages span {
  justify-self: start;
  max-width: 92%;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--muted);
  background: var(--soft);
  font-weight: 800;
  line-height: 1.35;
}

.react-request-messages span.admin {
  justify-self: end;
  color: #0f5264;
  background: #e9f6fb;
}

.react-request-reply {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.react-request-reply input {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  font-weight: 800;
}

.react-request-reply button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
}

.react-chat-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.react-chat-card > p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.react-chat-context {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px;
  border-radius: 8px;
  color: var(--brand);
  background: #effaf4;
  font-weight: 900;
}

.react-chat-context a {
  margin-left: auto;
  color: var(--brand);
  font-size: 0.82rem;
}

.react-chat-thread {
  display: grid;
  gap: 8px;
  max-height: 52vh;
  overflow-y: auto;
  padding: 4px;
}

.react-chat-message {
  display: grid;
  gap: 4px;
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.35;
}

.react-chat-message.customer {
  justify-self: end;
  color: #fff;
  background: var(--brand);
}

.react-chat-message.admin {
  justify-self: start;
  color: var(--ink);
  background: var(--soft);
}

.react-chat-message small {
  opacity: 0.78;
  font-size: 0.72rem;
  font-weight: 900;
}

.react-chat-empty {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 28px 16px;
  border-radius: 8px;
  background: var(--soft);
  text-align: center;
}

.react-chat-empty .material-symbols-rounded {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 999px;
  color: var(--brand);
  background: #fff;
  font-size: 1.8rem;
}

.react-chat-empty strong,
.react-chat-empty p {
  margin: 0;
}

.react-chat-empty p {
  color: var(--muted);
  font-weight: 800;
}

.react-chat-form {
  display: grid;
  gap: 8px;
}

.react-chat-form textarea {
  width: 100%;
  min-height: 92px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  font-weight: 800;
}

.react-chat-form button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
}

@media (max-width: 420px) {
  .react-order-main {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .react-order-main > b {
    grid-column: 2;
  }

  .react-order-facts {
    grid-template-columns: 1fr;
  }

  .react-order-timeline {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .react-order-timeline li {
    grid-template-columns: 18px minmax(0, 1fr);
    justify-items: start;
    text-align: left;
  }

  .react-order-timeline li::before {
    top: -10px;
    left: 7px;
    width: 2px;
    height: 18px;
  }

  .react-order-timeline strong {
    font-size: 0.78rem;
  }

  .react-request-meta,
  .react-request-reply {
    grid-template-columns: 1fr;
  }
}

.react-empty-cart {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 36px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.react-empty-cart .material-symbols-rounded {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  color: var(--brand);
  background: #e9f7ef;
  font-size: 2rem;
}

.react-empty-cart h2,
.react-empty-cart p {
  margin: 0;
}

.react-empty-cart p {
  color: var(--muted);
}

.react-empty-cart .react-buy {
  width: 100%;
  color: #fff;
}
