:root {
  --teal: #2b8080;
  --teal-dark: #113f43;
  --green: #00a84f;
  --ink: #101820;
  --muted: #68727d;
  --line: #e9edf0;
  --surface: #ffffff;
  --soft: #f6f7f8;
  --container: 1180px;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(16, 24, 32, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  background: var(--surface);
  letter-spacing: 0;
}

body,
button,
input {
  font: 400 16px/1.5 "Segoe UI", Arial, Helvetica, sans-serif;
}

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

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  box-shadow: 0 1px 0 rgba(16, 24, 32, 0.08);
}

.promo-bar {
  display: grid;
  min-height: 44px;
  place-items: center;
  margin: 0;
  padding: 9px 16px;
  color: #fff;
  background: var(--teal);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.header-main {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 118px;
  margin: 0 auto;
  padding: 22px clamp(28px, 10vw, 210px);
}

.brand {
  position: absolute;
  left: 50%;
  display: inline-flex;
  align-items: center;
  width: min(190px, 28vw);
  transform: translateX(-50%);
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 15px;
  grid-column: 3;
}

.menu-button,
.icon-button,
.account-button {
  border: 0;
  background: transparent;
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 36px;
  height: 36px;
  padding: 7px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.icon-button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  padding: 0;
}

.icon-button svg,
.account-button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.account-button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
}

.account-button svg {
  width: 22px;
  height: 22px;
}

.account-button.is-logged {
  width: 36px;
  height: 36px;
}

.account-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
}

.account-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 20;
  display: grid;
  width: min(280px, calc(100vw - 32px));
  padding: 10px;
  background: #fff;
  border: 1px solid #e1e5e8;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.account-menu-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px 8px 12px;
  border-bottom: 1px solid #edf0f2;
}

.account-menu-header strong,
.account-menu-header div span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-menu-header strong {
  color: #05070a;
  font-size: 14px;
}

.account-menu-header div span {
  color: #68727d;
  font-size: 12px;
}

.account-menu a,
.account-menu button {
  display: block;
  width: 100%;
  padding: 11px 10px;
  color: #15191d;
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.account-menu a:hover,
.account-menu button:hover {
  color: var(--teal-dark);
  background: #e9f3f1;
}

.category-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  min-height: 52px;
  padding: 16px 20px 13px;
  overflow-x: auto;
  background: #f5f5f5;
  white-space: nowrap;
  scrollbar-width: thin;
}

.category-nav a {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.category-nav a:hover {
  color: var(--teal);
}

.category-nav a.is-active,
.category-nav a[aria-current="page"] {
  color: var(--teal);
  background: #e9f3f1;
  border-radius: 6px;
}

.hero,
.wide-banner {
  overflow: hidden;
  background: #edf2f5;
}

.hero {
  position: relative;
  z-index: 0;
  isolation: isolate;
}

.hero-slider-track {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  transform: translateX(100%);
  will-change: transform;
  transition: transform 420ms ease;
}

.hero-slide.is-active {
  position: relative;
  z-index: 1;
  transform: translateX(0);
}

.hero-slide.is-leaving {
  z-index: 2;
  transform: translateX(-100%);
}

.hero-slide img {
  display: block;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: clamp(110px, 14vw, 210px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 55%, #fff 100%);
  content: "";
}

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

.hero img,
.wide-banner img {
  width: 100%;
  object-fit: cover;
}

.hero img {
  min-height: 360px;
  max-height: 640px;
  object-position: center;
}

.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 28px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading.align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-heading span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
}

.collection-heading {
  max-width: none;
  margin-bottom: 26px;
  text-align: left;
}

.collection-heading h1 {
  font-size: clamp(30px, 3.2vw, 38px);
}

.collections {
  max-width: 1360px;
}

.home-featured {
  position: relative;
  z-index: 1;
  isolation: isolate;
  max-width: 1360px;
  margin-top: -62px;
  padding-top: 0;
  padding-bottom: 24px;
}

.home-featured-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.home-featured .catalog-product-info h2 {
  max-width: 320px;
}

.home-featured-empty {
  min-height: 220px;
}

.collection-grid {
  position: relative;
  display: flex;
  gap: 4px;
  height: 540px;
  min-width: 0;
}

.collection-target {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

.collection-card {
  position: relative;
  display: block;
  flex: 1 1 0;
  overflow: hidden;
  min-width: 0;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: none;
  isolation: isolate;
  transition: flex 360ms ease;
  -webkit-tap-highlight-color: transparent;
}

.collection-card:focus,
.collection-card:focus-visible,
.collection-card:active,
.collection-card:target,
.collection-card img:focus {
  outline: none;
  box-shadow: none;
}

.collection-card:first-child {
  flex: 3.1 1 0;
}

.collection-grid:hover .collection-card {
  flex: 1 1 0;
}

.collection-grid:hover .collection-card:hover {
  flex: 3.1 1 0;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98);
  transform: scale(1.01);
  transition: transform 360ms ease, filter 360ms ease;
}

.collection-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(16, 24, 32, 0.12), rgba(16, 24, 32, 0.02));
  pointer-events: none;
}

.collection-card::before {
  position: absolute;
  right: 0;
  left: 0;
  top: 92px;
  z-index: 2;
  height: 2px;
  content: "";
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: scaleX(0.75);
  transform-origin: left;
  transition: opacity 260ms ease, transform 360ms ease;
}

.collection-card:first-child::before,
.collection-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.collection-grid:hover .collection-card:first-child:not(:hover)::before {
  opacity: 0;
  transform: scaleX(0.75);
}

.collection-card span {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  display: inline-block;
  width: max-content;
  max-width: 360px;
  padding: 0;
  color: #fff;
  background: transparent;
  border-radius: 0;
  font-size: clamp(36px, 4.2vw, 48px);
  font-weight: 900;
  line-height: 0.96;
  text-align: left;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(16, 24, 32, 0.24);
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  transition: left 360ms ease, bottom 360ms ease, transform 360ms ease;
}

.collection-card:first-child span,
.collection-card:hover span {
  top: 28px;
  bottom: auto;
  left: 28px;
  max-width: calc(100% - 56px);
  transform: none;
  writing-mode: horizontal-tb;
}

.collection-grid:hover .collection-card:first-child:not(:hover) span {
  top: auto;
  bottom: 28px;
  left: 50%;
  max-width: 360px;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
}

.collection-card:hover img,
.collection-card:first-child img {
  filter: saturate(1.04);
  transform: scale(1.045);
}

.collection-grid:hover .collection-card:first-child:not(:hover) img {
  filter: saturate(0.98);
  transform: scale(1.01);
}

.video-showcase {
  max-width: none;
  padding: 10px 42px 64px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 22px;
  max-width: 1520px;
  margin: 0 auto;
}

.video-card {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(16, 24, 32, 0.28);
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #101820;
  object-fit: cover;
}

.wide-banner {
  margin: 6px 0 0;
}

.wide-banner img {
  max-height: 520px;
  min-height: 280px;
  object-position: center;
}

.benefits {
  background: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 68px 28px 62px;
}

.benefit-item {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.benefit-item svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-item strong {
  display: block;
  color: #05070a;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 750;
  line-height: 1.18;
  text-transform: uppercase;
}

.benefit-item p {
  margin: 0;
  color: #2c2f33;
  font-size: 14px;
  line-height: 1.25;
}

.login-page {
  min-height: 560px;
  padding: 58px 28px 76px;
  background: #f7f8f8;
}

.login-shell {
  display: grid;
  max-width: 460px;
  margin: 0 auto;
}

.register-heading {
  margin: 0 0 18px;
  color: #05070a;
  font-size: 28px;
  line-height: 1.15;
  text-align: center;
}

.login-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.login-copy h1 {
  max-width: 430px;
  margin: 0 0 22px;
  color: #05070a;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.08;
}

.login-benefits {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.login-benefits li {
  position: relative;
  padding-left: 24px;
  color: #3e464d;
  font-size: 16px;
}

.login-benefits li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--teal);
  border-radius: 50%;
}

.login-panel {
  position: relative;
  padding: 32px;
  background: #fff;
  border: 1px solid #edf0f2;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(16, 24, 32, 0.07);
}

.login-panel h1 {
  margin: 0 0 24px;
  color: #05070a;
  font-size: 30px;
  line-height: 1.1;
}

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

.register-panel > .login-form {
  padding-top: 34px;
}

.register-extra-fields {
  display: grid;
  gap: 12px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 900ms cubic-bezier(0.22, 1, 0.36, 1), opacity 420ms ease, transform 620ms ease;
}

.login-form.is-expanded .register-extra-fields {
  max-height: 760px;
  opacity: 1;
  transform: translateY(0);
}

.register-field {
  display: grid;
  gap: 12px;
  opacity: 0;
  transform: translateY(-18px);
  transition: opacity 460ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.login-form.is-expanded .register-field {
  opacity: 1;
  transform: translateY(0);
}

.login-form.is-expanded .register-field:nth-child(1) {
  transition-delay: 120ms;
}

.login-form.is-expanded .register-field:nth-child(2) {
  transition-delay: 300ms;
}

.login-form.is-expanded .register-field:nth-child(3) {
  transition-delay: 480ms;
}

.login-form.is-expanded .register-field:nth-child(4) {
  transition-delay: 660ms;
}

.login-form.is-expanded .register-field:nth-child(5) {
  transition-delay: 780ms;
}

.login-form.is-expanded .register-field:nth-child(6) {
  transition-delay: 900ms;
}

.login-form label {
  color: #15191d;
  font-size: 14px;
  font-weight: 750;
}

.login-form input[type="email"],
.login-form input[type="password"],
.login-form input[type="text"] {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  color: var(--ink);
  background: #f7f8f8;
  border: 1px solid #e1e5e8;
  border-radius: 6px;
  outline: none;
}

.login-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43, 128, 128, 0.12);
}

.login-form input[type="password"]::-ms-reveal,
.login-form input[type="password"]::-ms-clear {
  display: none;
}

.password-field {
  position: relative;
  display: grid;
}

.password-field input[type="password"],
.password-field input[type="text"] {
  width: 100%;
  padding-right: 52px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  display: none;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  color: #515960;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  transform: translateY(-50%);
}

.password-field:focus-within .password-toggle {
  display: grid;
}

.password-toggle:hover,
.password-toggle:focus-visible,
.password-toggle.is-visible {
  color: var(--teal-dark);
  background: #e9f3f1;
}

.password-toggle:focus-visible {
  outline: 3px solid rgba(43, 128, 128, 0.18);
}

.password-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.login-options {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin: 4px 0 8px;
}

.login-options label {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #515960;
  font-weight: 500;
}

.login-options a {
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 750;
}

.text-button {
  padding: 0;
  color: var(--teal-dark);
  background: transparent;
  border: 0;
  font-size: 14px;
  font-weight: 750;
}

.terms-text {
  margin: 4px 0 8px;
  color: #515960;
  font-size: 13px;
  line-height: 1.45;
}

.terms-text a {
  color: var(--teal-dark);
  font-weight: 750;
}

.login-submit {
  min-height: 52px;
  color: #fff;
  background: var(--teal);
  border: 0;
  border-radius: 6px;
  font-weight: 850;
  text-transform: uppercase;
}

.login-submit:hover {
  background: var(--teal-dark);
}

.login-submit:disabled,
.login-submit[disabled] {
  color: #7a8580;
  background: #d9e1dd;
  cursor: not-allowed;
  opacity: 0.8;
}

.login-submit:disabled:hover,
.login-submit[disabled]:hover {
  background: #d9e1dd;
}

.login-secondary {
  display: grid;
  min-height: 52px;
  place-items: center;
  margin-top: 12px;
  color: var(--teal-dark);
  background: #fff;
  border: 1px solid var(--teal);
  border-radius: 6px;
  font-weight: 850;
  text-transform: uppercase;
}

.recover-options {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.recover-card {
  display: grid;
  gap: 12px;
  align-content: center;
  justify-items: center;
  min-height: 132px;
  padding: 18px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #e1e5e8;
  border-radius: 8px;
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.recover-card:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.08);
  transform: translateY(-2px);
}

.recover-card svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--teal-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.recover-card strong {
  max-width: 100%;
  overflow-wrap: normal;
  font-size: 15px;
  line-height: 1.25;
}

.recover-view h1 {
  margin: 34px 0 24px;
  padding-left: 0;
}

.recover-close {
  position: absolute;
  top: 26px;
  left: 18px;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  width: auto;
  height: 24px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
}

.recover-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.recover-close span {
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
}

.recover-view .recover-form,
.recover-view .recover-success {
  padding-top: 4px;
}

.recover-view .login-submit {
  width: 100%;
}

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

.recover-form h2,
.recover-success h2 {
  margin: 0 0 8px;
  color: #05070a;
  font-size: 22px;
  line-height: 1.15;
}

.recover-form label {
  color: #15191d;
  font-size: 14px;
  font-weight: 750;
}

.recover-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  color: var(--ink);
  background: #f7f8f8;
  border: 1px solid #e1e5e8;
  border-radius: 6px;
  outline: none;
}

.recover-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43, 128, 128, 0.12);
}

.recover-form .login-submit {
  margin-top: 4px;
}

.recover-resend {
  display: grid;
  width: 100%;
  min-height: 52px;
  place-items: center;
  padding: 0 18px;
  color: var(--teal-dark);
  background: #fff;
  border: 1px solid var(--teal);
  border-radius: 6px;
  font-weight: 850;
  text-transform: uppercase;
}

.recover-message,
.recover-success p,
.password-rules,
.form-error {
  margin: 0 0 6px;
  color: #515960;
  font-size: 14px;
  line-height: 1.4;
}

.form-error {
  color: #b42318;
  font-weight: 750;
}

.form-success {
  margin: 0 0 6px;
  color: #067647;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.register-success {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.register-success svg {
  width: 54px;
  height: 54px;
  padding: 13px;
  color: #067647;
  background: #dcfae6;
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.register-success.is-warning svg {
  color: #b54708;
  background: #fff4df;
}

.register-success h1 {
  margin: 0;
  color: #05070a;
  font-size: 30px;
  line-height: 1.1;
}

.register-success p {
  margin: 0;
  color: #515960;
}

.register-success .login-submit {
  display: grid;
  width: 100%;
  place-items: center;
}

.account-page {
  min-height: calc(100vh - 214px);
  padding: 48px 20px 72px;
  background: #f7f8f8;
}

.account-shell {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.account-shell h1 {
  margin: 0;
  color: #05070a;
  font-size: 30px;
  line-height: 1.1;
}

.account-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: #fff;
  border: 1px solid #edf0f2;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(16, 24, 32, 0.07);
}

.account-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.account-sidebar {
  display: grid;
  gap: 6px;
  padding: 10px;
  background: #fff;
  border: 1px solid #edf0f2;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(16, 24, 32, 0.07);
}

.account-sidebar button {
  width: 100%;
  padding: 12px 12px;
  color: #15191d;
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 750;
  text-align: left;
}

.account-sidebar button:hover,
.account-sidebar button.is-active {
  color: var(--teal-dark);
  background: #e9f3f1;
}

.account-section-heading {
  display: grid;
  gap: 4px;
}

.account-section-heading span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.account-section-heading h2 {
  margin: 0;
  color: #05070a;
  font-size: 24px;
  line-height: 1.15;
}

.account-panel .login-submit {
  display: grid;
  width: min(100%, 280px);
  place-items: center;
}

.account-details {
  display: grid;
  gap: 14px;
  margin: 0;
}

.account-details div {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid #edf0f2;
}

.account-details dt {
  color: #68727d;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.account-details dd {
  margin: 0;
  color: #15191d;
  font-weight: 700;
}

.account-profile-form,
.account-password-form {
  display: grid;
  gap: 12px;
}

.account-readonly-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.account-readonly-field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.account-readonly-field span {
  color: #68727d;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.account-readonly-field strong {
  overflow: hidden;
  color: #15191d;
  font-size: 15px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-edit-field {
  display: grid;
  gap: 8px;
  max-width: 360px;
}

.account-edit-field label,
.account-password-form label {
  color: #15191d;
  font-size: 14px;
  font-weight: 750;
}

.account-edit-field input,
.account-password-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  color: var(--ink);
  background: #f7f8f8;
  border: 1px solid #e1e5e8;
  border-radius: 6px;
  outline: none;
}

.account-edit-field input:focus,
.account-password-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43, 128, 128, 0.12);
}

.account-profile-form .login-submit,
.account-password-form .login-submit {
  width: min(100%, 260px);
}

.account-password-form {
  padding-top: 18px;
  border-top: 1px solid #edf0f2;
}

.account-password-form h3 {
  margin: 0;
  color: #05070a;
  font-size: 20px;
  line-height: 1.2;
}

.account-orders-list {
  display: grid;
  gap: 14px;
}

.account-orders-empty {
  display: grid;
  justify-items: start;
  gap: 8px;
  padding: 22px;
  background: #f7f8f8;
  border: 1px solid #dfe4e7;
  border-radius: 8px;
}

.account-orders-empty strong {
  color: #15191d;
  font-size: 17px;
}

.account-orders-empty span {
  color: #5f686f;
}

.account-orders-empty a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  color: #fff;
  background: var(--teal);
  border-radius: 6px;
  font-weight: 850;
}

.account-order-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid #e5e9ec;
  border-left: 4px solid #f2a61d;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(16, 24, 32, 0.06);
}

.account-order-card.is-paid {
  border-left-color: var(--green);
}

.account-order-card.is-failed {
  border-left-color: #d64242;
}

.account-order-main {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
}

.account-order-main h3 {
  margin: 2px 0 6px;
  color: #05070a;
  font-size: 18px;
  line-height: 1.2;
}

.account-order-main p {
  margin: 0;
  color: #5f686f;
  font-size: 14px;
}

.account-order-kicker {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-order-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  flex: 0 0 auto;
  padding: 0 10px;
  color: #76500a;
  background: #fff5dc;
  border: 1px solid #efd089;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.account-order-status.is-paid {
  color: #006d35;
  background: #e9f9f0;
  border-color: rgba(0, 168, 79, 0.28);
}

.account-order-status.is-failed {
  color: #8b2424;
  background: #fff0f0;
  border-color: #f0b4b4;
}

.account-order-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.account-order-meta div {
  min-width: 0;
  padding: 12px;
  background: #f8faf9;
  border: 1px solid #e5ebe8;
  border-radius: 8px;
}

.account-order-meta dt {
  margin: 0 0 4px;
  color: #68727d;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.account-order-meta dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
}

.account-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.account-order-actions button,
.account-order-actions a {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: #fff;
  background: var(--teal-dark);
  border: 0;
  border-radius: 6px;
  font-weight: 850;
}

.account-order-actions button:hover:not(:disabled) {
  background: #0b2e31;
}

.account-order-actions .account-order-invoice {
  color: #fff;
  background: var(--teal);
}

.account-order-actions .account-order-invoice:hover {
  background: var(--teal-dark);
}

.account-order-actions button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.account-delivery-panel {
  display: grid;
  gap: 18px;
  margin-top: 4px;
  padding: 20px;
  background: linear-gradient(135deg, #f1faf8, #fbfdfc);
  border: 1px solid #cfe5e0;
  border-radius: 10px;
  animation: account-order-expand 220ms ease-out;
}

@keyframes account-order-expand {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.account-delivery-heading { display: flex; gap: 14px; align-items: flex-start; justify-content: space-between; }
.account-delivery-heading > div { display: grid; gap: 2px; }
.account-delivery-heading > div > span { color: #3c7774; font-size: 11px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.account-delivery-heading h4 { margin: 0; color: var(--teal-dark); font-size: 18px; }
.account-delivery-carrier { max-width: 45%; padding: 7px 10px; color: #285a57; background: #e2f2ee; border-radius: 999px; font-size: 12px; font-weight: 850; text-align: right; }
.account-delivery-timeline { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.account-delivery-timeline li { position: relative; display: grid; grid-template-columns: 28px 1fr; gap: 11px; min-height: 59px; color: #84908f; }
.account-delivery-timeline li:not(:last-child)::before { position: absolute; top: 27px; left: 12px; width: 3px; height: calc(100% - 22px); background: #d5e2df; content: ""; }
.account-delivery-timeline li > span { z-index: 1; display: grid; width: 27px; height: 27px; place-items: center; color: #fff; background: #c4d2d0; border: 4px solid #f5fbf9; border-radius: 50%; font-size: 12px; font-weight: 900; }
.account-delivery-timeline li.is-complete { color: #1d5652; }
.account-delivery-timeline li.is-complete > span { background: #16806d; }
.account-delivery-timeline li.is-complete:not(:last-child)::before { background: #49a895; }
.account-delivery-timeline li.is-active > span { background: var(--teal); box-shadow: 0 0 0 5px rgba(43, 128, 128, .14); }
.account-delivery-timeline li div { display: grid; gap: 3px; padding-bottom: 12px; }
.account-delivery-timeline strong { font-size: 14px; }
.account-delivery-timeline small { color: #647271; font-size: 12px; }
.account-tracking-code { display: grid; gap: 7px; padding: 14px; background: #fff; border: 1px dashed #9cc8c0; border-radius: 8px; }
.account-tracking-code > span { color: #47726d; font-size: 11px; font-weight: 900; text-transform: uppercase; }
.account-tracking-code strong { overflow-wrap: anywhere; color: var(--teal-dark); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 16px; letter-spacing: .04em; }
.account-tracking-code p { margin: 0; color: #687775; font-size: 13px; }
.account-tracking-code div { display: flex; flex-wrap: wrap; gap: 8px; }
.account-tracking-code button, .account-tracking-code a { display: inline-flex; min-height: 34px; align-items: center; padding: 0 11px; color: var(--teal-dark); background: #e8f4f2; border: 0; border-radius: 5px; font-size: 12px; font-weight: 850; }
.account-tracking-code a { color: #fff; background: var(--teal); }

@media (max-width: 560px) {
  .account-delivery-panel { padding: 15px; }
  .account-delivery-heading { display: grid; }
  .account-delivery-carrier { max-width: 100%; justify-self: start; text-align: left; }
}

.account-back-link {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-weight: 800;
}

.account-order-detail-summary,
.account-order-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.account-order-detail-summary {
  margin: 18px 0;
}

.account-order-detail-summary div,
.account-order-detail-grid div,
.account-order-detail-items div {
  padding: 14px;
  border: 1px solid #e5e9ec;
  border-radius: 8px;
}

.account-order-detail-summary span,
.account-order-detail-grid dt {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.account-order-detail-summary strong,
.account-order-detail-grid dd {
  margin: 0;
  color: var(--teal-dark);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.account-order-detail-section {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #e5e9ec;
}

.account-order-detail-section h2 {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 19px;
}

.account-order-detail-items {
  display: grid;
  gap: 9px;
}

.account-order-detail-items div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.account-address-manager {
  display: grid;
  gap: 14px;
}

.account-address-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: #f7f8f8;
  border: 1px solid #e1e5e8;
  border-radius: 8px;
}

.account-address-toolbar strong {
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 850;
}

.account-address-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.account-address-card,
.account-address-empty,
.account-address-slot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 8px;
}

.account-address-card.is-active {
  border-color: var(--teal);
  background: #f5fbfa;
  box-shadow:
    inset 0 0 0 1px rgba(43, 128, 128, 0.12),
    0 12px 24px rgba(16, 24, 32, 0.06);
}

.account-address-card[data-select-address] {
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    background-color 220ms ease;
}

.account-address-card[data-select-address]:hover {
  border-color: rgba(43, 128, 128, 0.5);
  transform: translateY(-1px);
}

.account-address-card.is-editing {
  grid-template-columns: 1fr;
  border-color: var(--teal);
}

.account-address-empty {
  grid-template-columns: 1fr;
  background: #fbfcfc;
}

.account-address-slot {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  min-height: 118px;
  align-content: center;
  justify-items: center;
  padding: 0;
  color: rgba(43, 128, 128, 0.72);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfc 100%);
  border: 2px dashed #a9c7c3;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(43, 128, 128, 0.04);
  appearance: none;
  cursor: pointer;
  font: inherit;
  text-align: center;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.account-address-slot.is-editing {
  min-height: 138px;
  place-items: center;
  padding: 16px;
  background: #fff;
  border-style: solid;
  border-color: var(--teal);
  box-shadow:
    inset 0 0 0 1px rgba(43, 128, 128, 0.08),
    0 12px 24px rgba(16, 24, 32, 0.06);
  cursor: default;
  animation: account-address-slot-open 260ms ease both;
}

.account-address-slot:hover {
  background: #f5fbfa;
  border-color: var(--teal);
  box-shadow:
    inset 0 0 0 1px rgba(43, 128, 128, 0.1),
    0 12px 24px rgba(16, 24, 32, 0.06);
  transform: translateY(-1px);
}

.account-address-slot:focus-visible {
  outline: 3px solid rgba(43, 128, 128, 0.2);
  outline-offset: 3px;
}

.account-address-slot.is-editing:hover {
  background: #fff;
  transform: none;
}

.account-address-card-content,
.account-address-empty {
  min-width: 0;
}

.account-address-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  padding: 0 10px;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.account-address-card .account-address-badge {
  color: #fff;
}

.account-address-card strong,
.account-address-empty strong,
.account-address-slot strong {
  display: block;
  overflow: hidden;
  color: inherit;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-address-slot strong[hidden] {
  display: none;
}

.account-address-slot-kicker {
  color: rgba(43, 128, 128, 0.5);
  font-size: 13px;
  font-weight: 650;
}

.account-address-slot-kicker[hidden] {
  display: none;
}

.account-address-slot > strong {
  font-weight: 500;
}

.account-address-form-host {
  width: 100%;
}

.account-address-card span,
.account-address-card small,
.account-address-empty span,
.account-address-slot span {
  display: block;
  overflow: hidden;
  margin-top: 3px;
  color: #5b6570;
  font-size: 13px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-address-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.account-address-card-actions button {
  min-height: 36px;
  padding: 0 12px;
  color: var(--teal-dark);
  background: #fff;
  border: 1px solid #d7e5e3;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.account-address-card-actions button:hover {
  background: #e9f3f1;
}

.account-address-card-actions [data-remove-address] {
  color: #8a1f11;
  background: #fff5f2;
  border-color: #ffd1c7;
}

.account-address-card-actions [data-remove-address]:hover {
  background: #ffe8e0;
}

.account-address-manager > .form-error,
.account-address-manager > .form-success {
  margin: 0;
}

.account-address-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #edf0f2;
}

.account-address-slot .account-address-form {
  justify-items: center;
  padding-top: 0;
  border-top: 0;
  animation: account-address-form-in 260ms ease both;
}

.account-address-form[hidden] {
  display: none;
}

.account-address-form-title {
  grid-column: 1 / -1;
  color: #11171d;
  font-size: 16px;
  font-weight: 850;
}

.account-address-slot .account-address-form-title {
  display: none;
}

.account-address-form label {
  display: grid;
  gap: 6px;
  color: #15191d;
  font-size: 14px;
  font-weight: 750;
}

.account-address-form > label:first-of-type {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 240px);
  max-width: 240px;
  text-align: center;
}

.account-address-form [data-account-address-detail][hidden] {
  display: none;
}

.account-address-form [data-account-address-detail] {
  animation: account-address-field-in 300ms ease both;
}

.account-address-form.has-address-details [data-account-address-detail]:nth-of-type(2) {
  animation-delay: 40ms;
}

.account-address-form.has-address-details [data-account-address-detail]:nth-of-type(3) {
  animation-delay: 90ms;
}

.account-address-form.has-address-details [data-account-address-detail]:nth-of-type(4) {
  animation-delay: 140ms;
}

.account-address-form.has-address-details [data-account-address-detail]:nth-of-type(5) {
  animation-delay: 190ms;
}

.account-address-form.has-address-details [data-account-address-detail]:nth-of-type(6) {
  animation-delay: 240ms;
}

.account-address-form.has-address-details [data-account-address-detail]:nth-of-type(7) {
  animation-delay: 290ms;
}

.account-address-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: #f7f8f8;
  border: 1px solid #e1e5e8;
  border-radius: 6px;
  outline: none;
}

.account-address-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43, 128, 128, 0.12);
}

.account-address-form input.is-invalid {
  border-color: #d92d20;
  background: #fff7f6;
}

.account-address-form input.is-invalid:focus {
  border-color: #d92d20;
  box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.14);
}

.account-field-error {
  color: #b42318;
  font-size: 12px;
  font-weight: 700;
}

.account-address-form input[readonly] {
  color: #5b6570;
  background: #eef2f2;
  cursor: not-allowed;
}

.account-address-form input[readonly]:focus {
  border-color: #d6dddf;
  box-shadow: none;
}

.account-address-form input[aria-busy="true"] {
  background-image: linear-gradient(90deg, #f7f8f8, #e9f3f1, #f7f8f8);
  background-size: 200% 100%;
  animation: checkout-loading-field 900ms linear infinite;
}

.account-address-form .login-submit {
  width: min(100%, 620px);
  min-height: 42px;
  text-transform: none;
}

.account-address-form-actions {
  display: grid;
  grid-column: 1 / -1;
  justify-items: center;
  gap: 10px;
}

.account-address-form-actions[hidden] {
  display: none;
}

.account-address-cancel {
  width: min(100%, 620px);
  min-height: 42px;
  padding: 0 18px;
  color: var(--teal-dark);
  background: #fff;
  border: 1px solid #d7e5e3;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.account-address-cancel:hover {
  background: #e9f3f1;
}

.account-address-remove {
  width: min(100%, 620px);
  min-height: 42px;
  padding: 0 18px;
  color: #8a1f11;
  background: #fff5f2;
  border: 1px solid #ffd1c7;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.account-address-remove:hover {
  background: #ffe8e0;
}

.account-address-remove[hidden] {
  display: none;
}

@keyframes account-address-slot-open {
  from {
    border-color: #a9c7c3;
    box-shadow: inset 0 0 0 1px rgba(43, 128, 128, 0.04);
  }

  to {
    border-color: var(--teal);
    box-shadow:
      inset 0 0 0 1px rgba(43, 128, 128, 0.08),
      0 12px 24px rgba(16, 24, 32, 0.06);
  }
}

@keyframes account-address-form-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

@keyframes account-address-field-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

@media (max-width: 760px) {
  .account-layout {
    grid-template-columns: 1fr;
  }

  .account-sidebar {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
  }

  .account-sidebar button {
    white-space: nowrap;
  }

  .account-order-main {
    display: grid;
  }

  .account-order-status {
    width: fit-content;
  }

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

  .account-order-actions {
    display: grid;
  }

  .account-order-actions button,
  .account-order-actions a {
    width: 100%;
  }

  .account-address-card,
  .account-address-slot,
  .account-address-form {
    grid-template-columns: 1fr;
  }

  .account-address-card button {
    justify-self: start;
  }
}

.recover-success {
  display: grid;
  gap: 12px;
}

.create-account {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #edf0f2;
}

.create-account strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.create-account a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--teal-dark);
  border: 1px solid var(--teal);
  border-radius: 6px;
  font-weight: 800;
}

.catalog-page {
  background: #f7f8f8;
}

.catalog-hero {
  display: grid;
  min-height: 290px;
  align-items: end;
  padding: 62px 28px 44px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 63, 67, 0.86), rgba(17, 63, 67, 0.46)),
    url("../images/home/BANNER_PRINCIPAL_-_CASA_DO_CHEIRO_PC.webp") center/cover;
}

.catalog-hero > div {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.catalog-hero span {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.catalog-hero p {
  max-width: 560px;
  margin: 14px 0 0;
  font-size: 18px;
  line-height: 1.4;
}

.catalog-shell {
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 36px 28px 72px;
}

.catalog-filter {
  align-self: start;
  padding: 24px;
  background: #fff;
  border: 1px solid #e6eaed;
  border-radius: 8px;
}

.catalog-filter h2 {
  margin: 0 0 14px;
  color: #05070a;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-filter h2:not(:first-child) {
  margin-top: 28px;
}

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

.filter-list a,
.filter-check {
  color: #3f474f;
  font-size: 15px;
}

.filter-list a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #eef1f3;
}

.filter-list a:hover {
  color: var(--teal);
}

.filter-check {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0 0 10px;
}

.catalog-content {
  min-width: 0;
}

.catalog-toolbar {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.catalog-toolbar p {
  margin: 0;
  color: #4f5962;
}

.catalog-toolbar-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.catalog-toolbar label {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #4f5962;
  font-size: 14px;
  font-weight: 750;
}

.catalog-toolbar select {
  min-height: 42px;
  padding: 0 36px 0 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 6px;
}

.catalog-view-toggle {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 6px;
}

.catalog-view-toggle button {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 38px;
  height: 34px;
  gap: 3px;
  padding: 7px;
  background: transparent;
  border: 0;
  border-radius: 4px;
}

.catalog-view-toggle span {
  display: block;
  background: #7c8790;
  border-radius: 2px;
}

.catalog-view-toggle button.is-active {
  background: #e9f3f1;
}

.catalog-view-toggle button.is-active span {
  background: var(--teal-dark);
}

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

.catalog-grid.is-view-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.catalog-empty-state {
  grid-column: 1 / -1;
  min-height: 180px;
  display: grid;
  place-items: center;
  color: #4f5962;
  background: #fff;
  border: 1px solid #e5e9ec;
  border-radius: 8px;
}

.product-card {
  display: grid;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e9ec;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.05);
}

.product-card:target {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43, 128, 128, 0.14), 0 12px 28px rgba(16, 24, 32, 0.06);
}

.product-media {
  display: block;
  overflow: hidden;
  background: #edf2f3;
}

.product-media img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  transition: transform 260ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
}

.product-info {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.product-tag {
  justify-self: start;
  padding: 4px 8px;
  color: var(--teal-dark);
  background: #e9f3f1;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.product-info h2 {
  margin: 0;
  color: #05070a;
  font-size: 19px;
  line-height: 1.18;
}

.product-info p {
  min-height: 44px;
  margin: 0;
  color: #59636c;
  font-size: 14px;
  line-height: 1.4;
}

.product-info strong {
  display: block;
  color: var(--teal-dark);
  font-size: 24px;
  line-height: 1.1;
}

.product-info button {
  min-height: 46px;
  color: #fff;
  background: var(--teal);
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-info button:hover {
  background: var(--teal-dark);
}

.product-featured .product-media img {
  object-position: center;
}

.catalog-product-card {
  overflow: hidden;
  border: 1px solid #dce1e5;
  border-radius: 4px;
  box-shadow: none;
  animation: product-card-in 420ms ease both;
  animation-delay: calc(var(--card-index, 0) * 55ms);
}

.catalog-product-card .product-media {
  background: #eceeef;
}

.catalog-product-media {
  position: relative;
}

.catalog-product-media a {
  display: block;
}

.catalog-product-card .product-media img {
  aspect-ratio: 0.82 / 1;
  object-fit: cover;
}

.catalog-cart-icon {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 63, 67, 0.16);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.14);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.catalog-cart-icon:hover {
  color: #fff;
  background: var(--teal);
  transform: translateY(-2px);
}

.catalog-cart-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.catalog-product-info {
  justify-items: center;
  gap: 6px;
  padding: 15px 18px 18px;
  text-align: center;
}

.catalog-product-info h2 {
  max-width: 250px;
  min-height: 58px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.85;
}

.catalog-product-info h2 a {
  font-weight: inherit;
}

.catalog-product-info strong {
  color: var(--teal-dark);
  font-size: 23px;
  font-weight: 900;
}

.catalog-product-info p {
  min-height: 0;
  margin: -4px 0 8px;
  color: #5f686f;
  font-size: 14px;
  line-height: 1.2;
}

.catalog-product-info p b {
  color: #15191d;
  font-weight: 900;
}

.catalog-product-info .shipping-badge {
  width: 100%;
  min-height: 36px;
  color: #19b86d;
  background: #fff;
  border: 1px dashed #19c37d;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
}

.catalog-product-info .shipping-badge b {
  margin-left: 6px;
  color: #10a464;
  font-weight: 900;
}

.catalog-grid.is-view-compact .catalog-cart-icon {
  right: 9px;
  bottom: 9px;
  width: 38px;
  height: 38px;
}

.catalog-grid.is-view-compact .catalog-cart-icon svg {
  width: 19px;
  height: 19px;
}

.catalog-grid.is-view-compact .catalog-product-info {
  gap: 5px;
  padding: 12px 12px 14px;
}

.catalog-grid.is-view-compact .catalog-product-info h2 {
  max-width: 210px;
  min-height: 48px;
  font-size: 14px;
  line-height: 1.55;
}

.catalog-grid.is-view-compact .catalog-product-info strong {
  font-size: 20px;
}

.catalog-grid.is-view-compact .catalog-product-info p {
  font-size: 12px;
}

.catalog-grid.is-view-compact .catalog-product-info .shipping-badge {
  min-height: 28px;
  padding: 0 8px;
  font-size: 10px;
}

@keyframes product-card-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

.product-page {
  background: #f7f8f8;
  padding: 28px;
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(100%, 1260px);
  margin: 0 auto 22px;
  color: #64707a;
  font-size: 14px;
}

.product-breadcrumb a:hover {
  color: var(--teal);
}

.product-breadcrumb strong {
  color: var(--ink);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 460px;
  gap: 28px;
  width: min(100%, 1260px);
  margin: 0 auto;
  align-items: start;
}

.product-gallery,
.product-buybox,
.product-details-tabs article,
.product-empty {
  background: #fff;
  border: 1px solid #e5e9ec;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.04);
}

.product-gallery {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.product-main-image {
  overflow: hidden;
  background: #edf2f3;
  border-radius: 8px;
}

.product-main-image img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.product-thumbs button {
  overflow: hidden;
  padding: 0;
  background: #f4f6f7;
  border: 2px solid transparent;
  border-radius: 8px;
}

.product-thumbs button.is-active {
  border-color: var(--teal);
}

.product-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-buybox {
  position: sticky;
  top: 170px;
  display: grid;
  gap: 18px;
  padding: 24px;
}

.product-buybox h1 {
  margin: 0;
  color: #05070a;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.06;
}

.product-buybox p {
  margin: 0;
  color: #56616a;
}

.product-price-row {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid #edf0f2;
  border-bottom: 1px solid #edf0f2;
}

.product-price-row strong {
  color: var(--teal-dark);
  font-size: 32px;
  line-height: 1;
}

.product-price-row span {
  color: #067647;
  font-size: 14px;
  font-weight: 850;
}

.product-variant-group h2,
.product-quantity label,
.product-shipping label {
  margin: 0 0 8px;
  color: #1c242b;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-options button {
  min-height: 40px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 6px;
  font-weight: 800;
}

.variant-options button.is-active {
  color: var(--teal-dark);
  background: #e9f3f1;
  border-color: var(--teal);
}

.product-quantity > div,
.product-shipping > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0;
  overflow: hidden;
  border: 1px solid #dfe4e7;
  border-radius: 6px;
}

.product-quantity button,
.product-quantity input,
.product-shipping input,
.product-shipping button {
  min-height: 46px;
  border: 0;
}

.product-quantity button {
  width: 46px;
  color: var(--teal-dark);
  background: #f7f8f8;
  font-size: 22px;
}

.product-quantity input,
.product-shipping input {
  min-width: 0;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  text-align: center;
  outline: none;
}

.product-buy-button {
  display: grid;
  min-height: 52px;
  place-items: center;
  padding: 0 18px;
  color: #fff;
  background: var(--teal);
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-buy-button:hover {
  background: var(--teal-dark);
}

.product-shipping > div {
  grid-template-columns: 1fr auto;
}

.product-shipping input {
  text-align: left;
}

.product-shipping button {
  padding: 0 16px;
  color: var(--teal-dark);
  background: #e9f3f1;
  font-weight: 900;
}

.product-trust-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: #46505a;
  font-size: 14px;
  list-style: none;
}

.product-trust-list li::before {
  content: "✓ ";
  color: #067647;
  font-weight: 900;
}

.product-details-tabs,
.related-products {
  display: grid;
  gap: 16px;
  width: min(100%, 1260px);
  margin: 24px auto 0;
}

.product-details-tabs {
  grid-template-columns: 1.25fr 1fr 1fr;
}

.product-details-tabs article {
  padding: 22px;
}

.product-details-tabs h2 {
  margin: 0 0 12px;
  color: #05070a;
  font-size: 22px;
}

.product-details-tabs p {
  margin: 0;
  color: #56616a;
}

.product-specs {
  display: grid;
  gap: 10px;
  margin: 0;
}

.product-specs div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #edf0f2;
}

.product-specs dt {
  color: #64707a;
}

.product-specs dd {
  margin: 0;
  color: #05070a;
  font-weight: 850;
}

.related-products {
  padding-bottom: 52px;
}

.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-empty {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 42px;
  text-align: center;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(16, 24, 32, 0.34);
  opacity: 0;
  transition: opacity 220ms ease;
}

.cart-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 90;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(420px, 92vw);
  background: #fff;
  box-shadow: -22px 0 48px rgba(16, 24, 32, 0.16);
  transform: translateX(105%);
  transition: transform 260ms ease;
}

.cart-is-open .cart-overlay {
  opacity: 1;
}

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

.cart-header {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px;
  border-bottom: 1px solid #edf0f2;
}

.cart-header span {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.cart-header h2 {
  margin: 0;
  color: #05070a;
  font-size: 24px;
  font-weight: 650;
}

.cart-header button,
.cart-remove {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #4c555d;
  background: #f5f7f8;
  border: 0;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 14px;
  overflow-y: auto;
  padding: 18px;
}

.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid #e7ebee;
  border-radius: 8px;
}

.cart-item img {
  width: 82px;
  height: 96px;
  background: #edf0f2;
  border-radius: 6px;
  object-fit: cover;
}

.cart-item h3 {
  margin: 0 0 5px;
  color: #11171d;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.25;
}

.cart-item p {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 17px;
  font-weight: 750;
}

.cart-qty {
  display: inline-grid;
  grid-template-columns: 32px 38px 32px;
  overflow: hidden;
  border: 1px solid #dfe4e7;
  border-radius: 6px;
}

.cart-qty button,
.cart-qty span {
  display: grid;
  min-height: 32px;
  place-items: center;
  background: #fff;
  border: 0;
  color: #172027;
}

.cart-qty span {
  font-size: 14px;
}

.cart-empty {
  padding: 42px 20px;
  color: #5b6570;
  text-align: center;
}

.cart-empty h3 {
  margin: 0 0 6px;
  color: #11171d;
  font-size: 20px;
  font-weight: 650;
}

.cart-empty p {
  margin: 0;
}

.cart-footer {
  display: grid;
  gap: 16px;
  padding: 18px 20px 20px;
  background: #fff;
  border-top: 1px solid #edf0f2;
}

.cart-footer[hidden] {
  display: none;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.cart-total span {
  color: #4d5963;
  font-size: 15px;
}

.cart-total strong {
  color: var(--teal-dark);
  font-size: 24px;
  font-weight: 750;
}

.cart-footer button {
  min-height: 52px;
  color: #fff;
  background: #04a63c;
  border: 0;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 750;
}

.cart-trigger {
  position: relative;
}

.cart-trigger::after {
  position: absolute;
  top: -4px;
  right: -5px;
  display: grid;
  min-width: 17px;
  height: 17px;
  place-items: center;
  padding: 0 4px;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
  content: attr(data-cart-count);
  font-size: 10px;
  font-weight: 750;
  line-height: 1;
}

.cart-trigger[data-cart-count="0"]::after {
  display: none;
}

.checkout-page {
  min-height: calc(100vh - 132px);
  padding: 34px 24px 72px;
  background: #f7f8f8;
}

.checkout-shell {
  display: grid;
  gap: 22px;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.checkout-heading {
  display: grid;
  gap: 5px;
}

.checkout-heading span,
.checkout-panel-heading span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.checkout-heading h1 {
  margin: 0;
  color: #05070a;
  font-size: 34px;
  line-height: 1.08;
}

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

.checkout-flow {
  position: relative;
  display: grid;
  gap: 16px;
  perspective: 1200px;
  --checkout-enter-x: 24px;
  --checkout-leave-x: -18px;
}

.checkout-flow.is-moving-back {
  --checkout-enter-x: -24px;
  --checkout-leave-x: 18px;
}

.checkout-panel,
.checkout-summary {
  background: #fff;
  border: 1px solid #e4e8eb;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.04);
}

.checkout-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  padding: 22px;
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: top center;
  transition:
    opacity 260ms ease,
    filter 260ms ease,
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 240ms ease,
    box-shadow 240ms ease;
  will-change: opacity, filter, transform;
}

.checkout-panel[hidden] {
  display: none;
}

.checkout-panel.is-active {
  z-index: 2;
  border-color: rgba(43, 128, 128, 0.28);
  box-shadow: 0 18px 42px rgba(16, 24, 32, 0.08);
}

.checkout-panel.is-entering {
  opacity: 0;
  filter: blur(1px);
  transform: translate3d(var(--checkout-enter-x), 12px, 0) scale(0.985);
}

.checkout-panel.is-leaving {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  filter: blur(1px);
  transform: translate3d(var(--checkout-leave-x), -8px, 0) scale(0.985);
}

.checkout-panel-heading {
  display: flex;
  gap: 12px;
  align-items: center;
}

.checkout-panel-heading span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(43, 128, 128, 0.2);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.checkout-panel.is-active .checkout-panel-heading span {
  animation: checkout-step-pop 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.checkout-panel-heading h2,
.checkout-summary h2 {
  margin: 0;
  color: #05070a;
  font-size: 20px;
  line-height: 1.2;
}

.checkout-panel-note {
  margin: -4px 0 0;
  color: #5b6570;
  font-size: 14px;
}

.checkout-address-list,
.checkout-review-list,
.checkout-shipping-options,
.checkout-payment-options {
  display: grid;
  gap: 10px;
}

.checkout-address-list .account-address-card {
  width: 100%;
}

.checkout-address-list .account-address-card[data-select-address] {
  cursor: default;
}

.checkout-address-choice-panel {
  display: grid;
  gap: 10px;
  animation: checkout-item-in 320ms ease both;
}

.checkout-review-block {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.checkout-review-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 112px 110px 112px auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: linear-gradient(180deg, #fff, #fbfcfc);
  border: 1px solid #dfe4e7;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(16, 24, 32, 0.04);
  opacity: 0;
  transform: translateY(10px);
  animation: checkout-item-in 360ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(var(--item-index, 0) * 70ms);
}

.checkout-review-item img {
  width: 78px;
  height: 92px;
  background: #edf0f2;
  border-radius: 6px;
  object-fit: cover;
}

.checkout-review-info,
.checkout-review-quantity,
.checkout-review-price,
.checkout-review-total {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.checkout-review-info strong {
  overflow: hidden;
  color: #11171d;
  font-size: 16px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-review-info span,
.checkout-review-quantity span,
.checkout-review-price span,
.checkout-review-total span {
  color: #66717b;
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.checkout-review-quantity,
.checkout-review-price,
.checkout-review-total {
  justify-items: end;
  text-align: right;
}

.checkout-review-qty-control {
  display: inline-grid;
  grid-template-columns: 32px 38px 32px;
  overflow: hidden;
  border: 1px solid #d7e5e3;
  border-radius: 999px;
}

.checkout-review-qty-control button,
.checkout-review-qty-control strong {
  display: grid;
  height: 34px;
  place-items: center;
}

.checkout-review-qty-control button {
  padding: 0;
  color: var(--teal-dark);
  background: #fff;
  border: 0;
  font-size: 16px;
  line-height: 1;
}

.checkout-review-qty-control button:hover {
  background: #e9f3f1;
}

.checkout-review-qty-control strong {
  color: var(--teal-dark);
  background: #e9f3f1;
  font-size: 15px;
}

.checkout-review-price strong {
  color: #15191d;
  font-size: 15px;
  font-weight: 750;
}

.checkout-review-total strong {
  color: var(--teal-dark);
  font-size: 17px;
  font-weight: 850;
}

.checkout-review-remove {
  justify-self: end;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  padding: 0;
  color: var(--teal-dark);
  background: transparent;
  border: 1px solid #d7e5e3;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 750;
  line-height: 1;
}

.checkout-review-remove:hover {
  background: #e9f3f1;
  border-color: var(--teal);
}

.checkout-address-card,
.checkout-shipping-card,
.checkout-payment-options label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid #dfe4e7;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  animation: checkout-item-in 360ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(var(--item-index, 0) * 70ms);
  transition:
    border-color 180ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    background-color 220ms ease;
}

.checkout-address-card {
  align-items: center;
}

.checkout-selected-address {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 16px;
  align-items: center;
  padding: 14px 12px;
  background: #f5fbfa;
  border: 1px solid var(--teal);
  border-radius: 8px;
  box-shadow: none;
  opacity: 0;
  transform: translateY(10px);
  animation: checkout-item-in 360ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.checkout-selected-address span {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.checkout-selected-address strong {
  grid-column: 1;
  color: #11171d;
  font-size: 16px;
  font-weight: 850;
}

.checkout-selected-address p {
  overflow: hidden;
  grid-column: 1;
  margin: 0;
  color: #24313a;
  font-size: 14px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-selected-address small {
  grid-column: 1;
  color: #5b6570;
  font-size: 12px;
}

.checkout-change-address {
  grid-column: 2;
  grid-row: 1 / span 4;
  justify-self: end;
  min-height: 36px;
  margin-top: 0;
  padding: 0 14px;
}

.checkout-address-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(5, 7, 10, 0.42);
  animation: checkout-modal-backdrop-in 180ms ease both;
}

.checkout-address-modal {
  display: grid;
  width: min(100%, 760px);
  max-height: min(88vh, 820px);
  gap: 16px;
  overflow: auto;
  padding: 22px;
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(5, 7, 10, 0.2);
  animation: checkout-modal-in 220ms ease both;
}

.checkout-address-modal-heading {
  display: flex;
  gap: 14px;
  align-items: start;
  justify-content: space-between;
}

.checkout-address-modal-heading span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.checkout-address-modal-heading h3 {
  margin: 3px 0 0;
  color: #05070a;
  font-size: 22px;
  line-height: 1.16;
}

.checkout-address-modal-heading button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--teal-dark);
  background: #f5fbfa;
  border: 1px solid #d7e5e3;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.checkout-address-modal-grid {
  display: grid;
  gap: 12px;
}

.checkout-address-modal-grid .account-address-card,
.checkout-address-modal-grid .account-address-slot {
  width: 100%;
}

.checkout-address-modal-grid .account-address-card {
  min-height: 112px;
}

.checkout-address-modal-grid .account-address-card[data-modal-address-id],
.checkout-address-modal-grid .account-address-card[data-inline-select-address] {
  cursor: pointer;
}

.checkout-address-modal-card,
.checkout-address-modal-slot {
  display: grid;
  min-height: 112px;
  gap: 4px;
  padding: 14px;
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 8px;
  cursor: pointer;
}

.checkout-address-modal-card {
  align-content: center;
  transition:
    border-color 180ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    background-color 220ms ease;
}

.checkout-address-modal-card:hover {
  border-color: rgba(43, 128, 128, 0.52);
  transform: translateY(-1px);
}

.checkout-address-modal-card.is-active {
  background: #f5fbfa;
  border-color: var(--teal);
  box-shadow: inset 0 0 0 1px rgba(43, 128, 128, 0.12);
}

.checkout-address-modal-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  padding: 0 10px;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.checkout-address-modal-card strong {
  color: #11171d;
  font-size: 15px;
  font-weight: 850;
}

.checkout-address-modal-card p,
.checkout-address-modal-card small {
  overflow: hidden;
  margin: 0;
  color: #5b6570;
  font-size: 13px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-address-modal-slot {
  min-height: 118px;
  align-content: center;
  justify-items: center;
  color: rgba(43, 128, 128, 0.72);
  background: linear-gradient(180deg, #fff 0%, #fbfcfc 100%);
  border: 2px dashed #a9c7c3;
}

.checkout-address-modal-slot.is-editing {
  cursor: default;
  border-style: solid;
  border-color: var(--teal);
  box-shadow:
    inset 0 0 0 1px rgba(43, 128, 128, 0.08),
    0 12px 24px rgba(16, 24, 32, 0.06);
  animation: account-address-slot-open 260ms ease both;
}

.checkout-address-modal-slot > span {
  color: rgba(43, 128, 128, 0.5);
  font-size: 13px;
  font-weight: 650;
}

.checkout-address-modal-slot > strong {
  padding: 10px 18px;
  color: inherit;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(43, 128, 128, 0.34);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
}

.checkout-address-modal-slot [hidden] {
  display: none;
}

.checkout-address-form-host {
  width: 100%;
}

.checkout-address-modal .checkout-address-form-host > .checkout-address-form:not(.has-address-details) {
  justify-items: center;
}

.checkout-address-modal .checkout-address-form-host > .checkout-address-form:not(.has-address-details) .checkout-zip-field {
  justify-self: center;
  width: min(100%, 240px);
  text-align: center;
}

.checkout-address-modal-slot .checkout-address-form {
  justify-items: center;
  margin-top: 0;
  animation: checkout-item-in 260ms ease both;
}

.checkout-address-modal-slot .checkout-zip-field {
  justify-self: center;
  width: min(100%, 240px);
  text-align: center;
}

.checkout-address-modal-slot .checkout-address-form [data-address-detail] {
  animation: account-address-field-in 300ms ease both;
}

.checkout-shipping-card {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
}

.checkout-address-card:has(input:checked),
.checkout-shipping-card:has(input:checked),
.checkout-payment-options label:has(input:checked) {
  border-color: var(--teal);
  background: #f5fbfa;
  box-shadow: 0 0 0 3px rgba(43, 128, 128, 0.12);
  transform: translateY(-1px);
}

.checkout-address-card:hover,
.checkout-shipping-card:hover,
.checkout-payment-options label:hover {
  border-color: rgba(43, 128, 128, 0.48);
  transform: translateY(-2px);
}

.checkout-shipping-card.is-cheapest {
  background:
    linear-gradient(90deg, rgba(0, 168, 79, 0.1), rgba(0, 168, 79, 0) 42%),
    #fff;
  border-color: rgba(0, 168, 79, 0.46);
}

.checkout-shipping-card.is-fastest {
  background:
    linear-gradient(90deg, rgba(47, 109, 246, 0.1), rgba(47, 109, 246, 0) 42%),
    #fff;
  border-color: rgba(47, 109, 246, 0.46);
}

.checkout-shipping-card.is-cheapest.is-fastest {
  background:
    linear-gradient(90deg, rgba(0, 168, 79, 0.12), rgba(0, 168, 79, 0) 36%),
    linear-gradient(100deg, rgba(47, 109, 246, 0.1), rgba(47, 109, 246, 0) 64%),
    #fff;
  border-color: rgba(43, 128, 128, 0.42);
}

.checkout-shipping-card.is-cheapest:has(input:checked),
.checkout-shipping-card.is-fastest:has(input:checked) {
  box-shadow: 0 0 0 3px rgba(43, 128, 128, 0.12), 0 12px 24px rgba(16, 24, 32, 0.06);
}

.checkout-address-card input,
.checkout-shipping-card input,
.checkout-payment-options input {
  margin-top: 3px;
  accent-color: var(--teal);
}

.checkout-address-card span,
.checkout-shipping-card span,
.checkout-payment-options span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.checkout-address-card strong,
.checkout-shipping-card strong,
.checkout-payment-options strong,
.checkout-empty-state strong {
  color: #11171d;
  font-size: 15px;
  font-weight: 750;
}

.checkout-address-card small,
.checkout-shipping-card small,
.checkout-payment-options small,
.checkout-empty-state span {
  color: #5b6570;
  font-size: 13px;
  line-height: 1.35;
}

.checkout-payment-options {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.checkout-payment-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px;
  color: #59636c;
  background: #f7f8f8;
  border: 1px solid #dfe4e7;
  border-radius: 8px;
}

.checkout-payment-options .checkout-payment-card {
  position: relative;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto auto;
  gap: 13px;
  aspect-ratio: 1;
  min-height: 218px;
  padding: 16px;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
}

.checkout-payment-options .checkout-payment-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  content: "";
  transition: opacity 220ms ease;
}

.checkout-payment-options .checkout-payment-card > * {
  position: relative;
  z-index: 1;
}

.checkout-payment-card-pix::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 180, 165, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(0, 180, 165, 0.14), rgba(255, 255, 255, 0) 58%);
}

.checkout-payment-card-credit::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(29, 78, 216, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(27, 38, 59, 0.08), rgba(255, 255, 255, 0) 60%);
}

.checkout-payment-card-boleto::before {
  background:
    radial-gradient(circle at 50% 16%, rgba(43, 128, 128, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(43, 128, 128, 0.1), rgba(255, 255, 255, 0) 58%);
}

.checkout-payment-options .checkout-payment-card:has(input:checked)::before {
  opacity: 1;
}

.checkout-payment-options .checkout-payment-card:has(input:checked) {
  border-color: #00a99a;
  box-shadow:
    inset 0 0 0 1px rgba(0, 169, 154, 0.42),
    0 14px 32px rgba(16, 24, 32, 0.08),
    0 0 0 3px rgba(0, 169, 154, 0.12);
}

.checkout-payment-options .checkout-payment-card > input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.payment-art {
  position: relative;
  display: grid !important;
  place-items: center;
  align-self: center;
  justify-self: center;
  width: min(100%, 132px);
  aspect-ratio: 1;
  min-width: 0;
}

.payment-art-pix {
  width: 128px;
  padding: 0;
  background: transparent;
  transition: transform 220ms ease;
}

.pix-mark {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.pix-glyph {
  filter: drop-shadow(0 8px 12px rgba(0, 120, 108, 0.13));
}

.pix-block {
  fill: #00b7a8;
}

.pix-block-right,
.pix-block-left {
  fill: #11bdb4;
}

.checkout-payment-card:has(input:checked) .payment-art-pix {
  transform: translateY(-2px) scale(1.03);
}

.payment-art-card {
  width: min(100%, 150px);
  aspect-ratio: 1.55;
  align-self: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, #1e293b, #25586b 58%, #2b8080);
  border-radius: 14px;
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.18);
}

.payment-art-boleto {
  place-items: stretch !important;
  align-content: center;
  gap: 9px;
  width: min(100%, 132px);
  aspect-ratio: 1.1;
  padding: 16px 14px;
  background: linear-gradient(180deg, #fff, #f7fafa);
  border: 1px solid rgba(43, 128, 128, 0.2);
  border-radius: 10px;
  box-shadow: 0 18px 34px rgba(16, 24, 32, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.boleto-line,
.boleto-cut,
.boleto-barcode {
  display: block;
  width: 100%;
}

.boleto-line {
  height: 6px;
  background: #d8e4e4;
  border-radius: 999px;
}

.boleto-line-long {
  align-self: start;
}

.boleto-line-medium {
  width: 72%;
  align-self: start;
}

.boleto-cut {
  height: 1px;
  margin: 4px 0;
  background-image: linear-gradient(90deg, rgba(43, 128, 128, 0.35) 50%, transparent 0);
  background-size: 10px 1px;
}

.boleto-barcode {
  height: 38px;
  background:
    linear-gradient(90deg,
      #123 0 3px,
      transparent 3px 7px,
      #123 7px 9px,
      transparent 9px 13px,
      #123 13px 18px,
      transparent 18px 21px,
      #123 21px 23px,
      transparent 23px 29px,
      #123 29px 32px,
      transparent 32px 36px,
      #123 36px 42px,
      transparent 42px 46px,
      #123 46px 49px,
      transparent 49px 55px,
      #123 55px 58px,
      transparent 58px 62px,
      #123 62px 68px,
      transparent 68px 100%);
  border-radius: 2px;
}

.checkout-payment-card:has(input:checked) .payment-art-boleto {
  transform: translateY(-2px) scale(1.02);
}

.payment-art-card i {
  position: absolute;
  display: block;
}

.card-stripe {
  inset: 17px 0 auto;
  height: 18px;
  background: rgba(255, 255, 255, 0.2);
}

.card-chip {
  top: 46px;
  left: 18px;
  width: 30px;
  height: 24px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(128, 83, 18, 0.42) 49% 51%, transparent 52%),
    linear-gradient(#f8c15d, #e1a138);
  border: 1px solid rgba(95, 57, 10, 0.25);
  border-radius: 6px;
}

.card-line {
  left: 58px;
  height: 5px;
  background: rgba(255, 255, 255, 0.58);
  border-radius: 999px;
}

.card-line-short {
  top: 50px;
  width: 46px;
}

.card-line-long {
  top: 62px;
  width: 70px;
}

.card-brand {
  right: 18px;
  bottom: 15px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.card-brand-one {
  right: 36px;
  background: rgba(255, 196, 67, 0.9);
}

.card-brand-two {
  background: rgba(239, 68, 68, 0.82);
  mix-blend-mode: screen;
}

.payment-copy {
  gap: 5px !important;
  text-align: center;
}

.checkout-payment-options .payment-copy strong {
  font-size: 17px;
  font-weight: 900;
}

.checkout-payment-options .payment-copy small {
  max-width: 18ch;
  justify-self: center;
}

.checkout-card-form {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: #f7f8f8;
  border: 1px solid #dfe4e7;
  border-radius: 8px;
}

.checkout-card-form[hidden] {
  display: none;
}

.checkout-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checkout-card-grid label {
  display: grid;
  gap: 6px;
  color: #15191d;
  font-size: 13px;
  font-weight: 750;
}

.checkout-card-grid label:nth-child(1),
.checkout-card-grid label:nth-child(2) {
  grid-column: 1 / -1;
}

.checkout-card-grid input,
.checkout-card-grid select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 6px;
  outline: none;
}

.checkout-card-grid input:focus,
.checkout-card-grid select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43, 128, 128, 0.12);
}

.card-number-field {
  position: relative;
  display: block;
}

.card-number-field input {
  padding-right: 96px;
}

.payment-card-brand {
  position: absolute;
  top: 50%;
  right: 9px;
  display: inline-flex;
  width: 68px;
  height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  color: #101820;
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(16, 24, 32, 0.08);
  transform: translateY(-50%);
  pointer-events: none;
}

.payment-card-brand[hidden] {
  display: none;
}

.brand-logo {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.brand-logo-visa {
  color: #1434cb;
  font-size: 15px;
  font-style: italic;
}

.brand-logo-mastercard {
  background: #111827;
}

.brand-logo-mastercard i {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  opacity: 0.9;
}

.brand-logo-mastercard i:first-child {
  left: 19px;
  background: #eb001b;
}

.brand-logo-mastercard i:last-child {
  right: 19px;
  background: #f79e1b;
  mix-blend-mode: screen;
}

.brand-logo-amex {
  color: #fff;
  background: #2e77bb;
  font-size: 13px;
}

.brand-logo-elo {
  background: #111827;
  color: #fff;
  font-size: 14px;
}

.brand-logo-elo i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.brand-logo-elo i:first-child {
  top: 5px;
  right: 16px;
  background: #ffd400;
}

.brand-logo-elo i:nth-of-type(2) {
  right: 10px;
  bottom: 7px;
  background: #00a4e0;
}

.brand-logo-elo i:nth-of-type(3) {
  left: 11px;
  bottom: 6px;
  background: #ef3e42;
}

.brand-logo-hipercard {
  color: #fff;
  background: #c9141b;
  font-size: 10px;
}

.brand-logo-diners {
  background: #fff;
}

.brand-logo-diners i {
  width: 38px;
  height: 20px;
  background:
    radial-gradient(circle at 37% 50%, #fff 0 7px, transparent 7.5px),
    linear-gradient(90deg, #0079be 0 50%, #005f98 50%);
  border-radius: 999px;
}

.brand-logo-discover {
  align-content: center;
  overflow: hidden;
  color: #111827;
  background: #fff;
  font-size: 9px;
}

.brand-logo-discover i {
  position: absolute;
  right: -6px;
  bottom: -12px;
  width: 44px;
  height: 24px;
  background: #f58220;
  border-radius: 50%;
  z-index: 0;
}

.brand-logo-discover b {
  position: relative;
  z-index: 1;
}

.checkout-payment-result {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: #f2fbf8;
  border: 1px solid rgba(0, 168, 79, 0.22);
  border-radius: 8px;
}

.checkout-payment-result[hidden] {
  display: none;
}

.checkout-payment-result strong {
  color: #0d3f2a;
  font-size: 15px;
  font-weight: 900;
}

.checkout-payment-result span,
.checkout-payment-result label {
  color: #315347;
  font-size: 13px;
}

.checkout-payment-result img {
  width: 190px;
  max-width: 100%;
  padding: 8px;
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 6px;
}

.checkout-payment-result textarea {
  width: 100%;
  min-height: 96px;
  margin-top: 6px;
  padding: 10px;
  color: #10251d;
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 6px;
  resize: vertical;
}

.checkout-payment-result a {
  width: fit-content;
  color: var(--teal-dark);
  font-weight: 850;
}

.pix-payment-page {
  min-height: calc(100vh - 162px);
  padding: clamp(28px, 6vw, 72px) 20px;
  background: #f6f7f8;
}

.pix-payment-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 22px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.pix-payment-status,
.pix-payment-code,
.pix-payment-empty {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pix-payment-status {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 54px);
}

.pix-payment-kicker {
  width: fit-content;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pix-status-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.pix-status-pulse {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  background: #f2a61d;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(242, 166, 29, 0.34);
  animation: pix-status-pulse 1400ms ease-out infinite;
}

.pix-status-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  color: #76500a;
  background: #fff5dc;
  border: 1px solid #efd089;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.pix-payment-shell[data-payment-status="paid"] .pix-status-pulse {
  background: var(--green);
  animation: none;
  box-shadow: 0 0 0 0 rgba(0, 168, 79, 0.28);
}

.pix-payment-shell[data-payment-status="paid"] .pix-status-badge {
  color: #006d35;
  background: #e9f9f0;
  border-color: rgba(0, 168, 79, 0.28);
}

.pix-payment-shell[data-payment-status="failed"] .pix-status-pulse,
.pix-payment-shell[data-payment-status="expired"] .pix-status-pulse {
  background: #d64242;
  animation: none;
  box-shadow: none;
}

.pix-payment-shell[data-payment-status="failed"] .pix-status-badge,
.pix-payment-shell[data-payment-status="expired"] .pix-status-badge {
  color: #8b2424;
  background: #fff0f0;
  border-color: #f0b4b4;
}

.pix-payment-status h1 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.03;
  letter-spacing: 0;
}

.pix-payment-status p {
  max-width: 560px;
  margin: 18px 0 0;
  color: #4f5c66;
  font-size: 18px;
  line-height: 1.55;
}

.pix-payment-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 32px 0 0;
}

.pix-payment-meta div {
  min-width: 0;
  padding: 14px;
  background: #f8faf9;
  border: 1px solid #e5ebe8;
  border-radius: 8px;
}

.pix-payment-meta dt {
  margin: 0 0 6px;
  color: #68727d;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pix-payment-meta dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--teal-dark);
  font-size: 17px;
  font-weight: 900;
}

.pix-payment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pix-secondary-button,
.pix-copy-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}

.pix-secondary-button {
  padding: 0 16px;
  color: var(--teal-dark);
  background: #fff;
  border: 1px solid #cfdad9;
}

.pix-secondary-button:hover {
  border-color: var(--teal);
}

.pix-payment-code {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(22px, 4vw, 32px);
}

.pix-qr-frame {
  display: grid;
  width: min(100%, 312px);
  aspect-ratio: 1;
  place-items: center;
  margin: 0 auto;
  padding: 18px;
  background: #fff;
  border: 1px solid #dfe6e5;
  border-radius: 8px;
}

.pix-qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pix-qr-placeholder {
  display: grid;
  width: min(210px, 74%);
  aspect-ratio: 1;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  transform: rotate(45deg);
}

.pix-qr-placeholder span {
  background: var(--green);
  border-radius: 12px;
}

.pix-qr-placeholder span:nth-child(2) {
  background: var(--teal);
  transform: translate(16px, 16px);
}

.pix-qr-placeholder span:nth-child(3) {
  background: #f2a61d;
}

.pix-code-field {
  display: grid;
  gap: 8px;
  color: #315347;
  font-size: 13px;
  font-weight: 850;
}

.pix-code-field textarea {
  width: 100%;
  min-height: 164px;
  padding: 14px;
  color: #10251d;
  background: #f8faf9;
  border: 1px solid #dfe6e5;
  border-radius: 8px;
  font: 700 14px/1.5 "Segoe UI", Arial, Helvetica, sans-serif;
  resize: vertical;
}

.pix-copy-button {
  width: 100%;
  padding: 0 18px;
  color: #fff;
  background: var(--teal-dark);
  border: 0;
}

.pix-copy-button:hover:not(:disabled) {
  background: #0b2e31;
}

.pix-copy-button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.pix-copy-feedback {
  margin: 0;
  color: #006d35;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.pix-payment-confirmation {
  display: grid;
  min-height: 360px;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 32px;
  color: #086a38;
  text-align: center;
}

.pix-payment-confirmation svg {
  width: 88px;
  height: 88px;
  padding: 20px;
  overflow: visible;
  border-radius: 50%;
  background: #dff6e8;
  stroke: #08783f;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.pix-payment-confirmation strong {
  font-size: 21px;
}

.pix-payment-confirmation span {
  max-width: 280px;
  color: #3d5d4b;
  line-height: 1.5;
}

.pix-confirmation-notice {
  max-width: 360px;
  margin: 10px 0 0;
  color: #66747a;
  font-size: 13px;
  line-height: 1.45;
}

.pix-copy-feedback.is-error {
  color: #8b2424;
}

.pix-payment-empty {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: clamp(30px, 5vw, 52px);
  text-align: center;
}

.pix-payment-empty strong {
  color: var(--ink);
  font-size: 24px;
}

.pix-payment-empty span {
  max-width: 440px;
  color: #55636e;
}

.boleto-slip-frame {
  display: grid;
  gap: 14px;
  width: min(100%, 312px);
  margin: 0 auto;
  padding: 24px 22px;
  background: linear-gradient(180deg, #fff, #f8faf9);
  border: 1px solid #dfe6e5;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(16, 24, 32, 0.08);
}

.boleto-slip-line,
.boleto-slip-cut,
.boleto-slip-bars {
  display: block;
  width: 72%;
}

.boleto-slip-line {
  height: 9px;
  background: #d8e4e4;
  border-radius: 999px;
}

.boleto-slip-line.is-wide {
  width: 100%;
}

.boleto-slip-cut {
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background-image: linear-gradient(90deg, rgba(43, 128, 128, 0.35) 50%, transparent 0);
  background-size: 12px 1px;
}

.boleto-slip-bars {
  width: 100%;
  height: 64px;
  background:
    linear-gradient(90deg,
      #10251d 0 4px,
      transparent 4px 9px,
      #10251d 9px 12px,
      transparent 12px 18px,
      #10251d 18px 26px,
      transparent 26px 31px,
      #10251d 31px 34px,
      transparent 34px 42px,
      #10251d 42px 47px,
      transparent 47px 53px,
      #10251d 53px 62px,
      transparent 62px 68px,
      #10251d 68px 72px,
      transparent 72px 82px,
      #10251d 82px 88px,
      transparent 88px 94px,
      #10251d 94px 100%);
  border-radius: 2px;
}

.boleto-open-button {
  width: 100%;
}

.card-confirmation-mark {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin-bottom: 22px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(0, 168, 79, 0.22);
}

.card-confirmation-mark svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.card-confirmation-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(145deg, rgba(0, 168, 79, 0.08), rgba(255, 255, 255, 0) 46%),
    #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.card-receipt-kicker {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.card-receipt-list {
  display: grid;
  gap: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #e5ebe8;
  border-radius: 8px;
}

.card-receipt-list div {
  display: grid;
  grid-template-columns: minmax(110px, 0.7fr) minmax(0, 1fr);
  gap: 16px;
  padding: 15px;
  background: #fff;
  border-bottom: 1px solid #e5ebe8;
}

.card-receipt-list div:last-child {
  border-bottom: 0;
}

.card-receipt-list dt,
.card-receipt-list dd {
  margin: 0;
}

.card-receipt-list dt {
  color: #68727d;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.card-receipt-list dd {
  overflow-wrap: anywhere;
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 900;
}

@keyframes pix-status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 166, 29, 0.34);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(242, 166, 29, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(242, 166, 29, 0);
  }
}

@media (max-width: 860px) {
  .pix-payment-page {
    padding: 20px 14px 34px;
  }

  .pix-payment-shell {
    grid-template-columns: 1fr;
  }

  .pix-payment-status {
    min-height: 0;
  }

  .pix-payment-meta {
    grid-template-columns: 1fr;
  }

  .pix-payment-actions {
    display: grid;
  }

  .pix-secondary-button {
    width: 100%;
  }

  .card-receipt-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.checkout-shipping-card .checkout-shipping-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 2px 0;
}

.checkout-shipping-badge {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  width: fit-content;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.checkout-shipping-badge.is-cheapest {
  color: #006d35;
  background: rgba(0, 168, 79, 0.12);
  border: 1px solid rgba(0, 168, 79, 0.32);
}

.checkout-shipping-badge.is-fastest {
  color: #1749b5;
  background: rgba(47, 109, 246, 0.12);
  border: 1px solid rgba(47, 109, 246, 0.28);
}

.checkout-shipping-card b {
  color: var(--teal-dark);
  font-size: 15px;
}

.checkout-coupon-details {
  border-top: 1px solid #edf0f2;
  padding-top: 14px;
}

.checkout-coupon-details[open] {
  animation: checkout-details-open 260ms ease;
}

.checkout-coupon-details summary {
  color: var(--teal-dark);
  cursor: pointer;
  font-weight: 750;
}

.checkout-coupon-details {
  margin-top: 4px;
}

.checkout-coupon-details summary {
  color: #59636c;
  font-size: 13px;
  font-weight: 650;
}

.checkout-address-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.checkout-address-form[hidden] {
  display: none;
}

.checkout-zip-field {
  grid-column: 1 / -1;
  max-width: 280px;
}

.checkout-address-form [data-address-detail] {
  opacity: 0;
  transform: translateY(8px);
  animation: checkout-item-in 260ms ease forwards;
}

.checkout-address-form [data-address-detail][hidden] {
  display: none;
}

.checkout-address-form.has-address-details [data-address-detail]:nth-of-type(1) {
  animation-delay: 20ms;
}

.checkout-address-form.has-address-details [data-address-detail]:nth-of-type(2) {
  animation-delay: 45ms;
}

.checkout-address-form.has-address-details [data-address-detail]:nth-of-type(3) {
  animation-delay: 70ms;
}

.checkout-address-form input[aria-busy="true"] {
  background-image: linear-gradient(90deg, #f7f8f8, #e9f3f1, #f7f8f8);
  background-size: 200% 100%;
  animation: checkout-loading-field 900ms linear infinite;
}

.checkout-address-form label,
.checkout-coupon-form {
  display: grid;
  gap: 6px;
}

.checkout-address-form label {
  color: #15191d;
  font-size: 14px;
  font-weight: 750;
}

.checkout-address-form input,
.checkout-coupon-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: #f7f8f8;
  border: 1px solid #dfe4e7;
  border-radius: 6px;
  outline: none;
}

.checkout-address-form input:focus,
.checkout-coupon-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43, 128, 128, 0.12);
}

.checkout-address-form input[readonly] {
  color: #5b6570;
  background: #eef2f2;
  cursor: not-allowed;
}

.checkout-address-form input[readonly]:focus {
  border-color: #d6dddf;
  box-shadow: none;
}

.checkout-coupon-form {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 10px;
}

.checkout-step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.checkout-coupon-form button,
.checkout-secondary-button,
.checkout-submit,
.checkout-next-button,
.checkout-back-button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  font-weight: 750;
  transition:
    background-color 180ms ease,
    box-shadow 220ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

.checkout-coupon-form button,
.checkout-secondary-button,
.checkout-back-button {
  color: var(--teal-dark);
  background: #e9f3f1;
}

.checkout-next-button {
  justify-self: end;
  color: #fff;
  background: var(--teal);
}

.checkout-coupon-form button:hover,
.checkout-secondary-button:hover,
.checkout-submit:hover,
.checkout-next-button:hover,
.checkout-back-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(16, 24, 32, 0.12);
}

.checkout-back-button {
  background: #eef1f3;
}

.checkout-secondary-button {
  justify-self: start;
}

.checkout-address-form button[type="submit"][data-address-detail] {
  justify-self: center;
}

.checkout-panel > .checkout-next-button {
  justify-self: end;
}

.checkout-summary {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 16px;
  padding: 20px;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.checkout-summary.is-updating {
  animation: checkout-summary-pulse 360ms ease;
}

.checkout-summary-items {
  display: grid;
  gap: 12px;
  max-height: 330px;
  overflow-y: auto;
  padding-right: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.checkout-summary-items::-webkit-scrollbar {
  display: none;
}

.checkout-summary-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  opacity: 0;
  transform: translateX(8px);
  animation: checkout-item-in 340ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(var(--item-index, 0) * 55ms);
}

.checkout-summary-item img {
  width: 58px;
  height: 68px;
  background: #edf0f2;
  border-radius: 6px;
  object-fit: cover;
}

.checkout-summary-item div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.checkout-summary-item strong {
  overflow: hidden;
  color: #15191d;
  font-size: 14px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-summary-item span {
  color: #66717b;
  font-size: 13px;
}

.checkout-summary-item b {
  color: var(--teal-dark);
  font-size: 14px;
}

.checkout-totals {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid #edf0f2;
}

.checkout-totals div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.checkout-totals dt,
.checkout-totals dd {
  margin: 0;
}

.checkout-totals dt {
  color: #5b6570;
}

.checkout-totals dd {
  color: #15191d;
  font-weight: 750;
}

.checkout-grand-total {
  padding-top: 10px;
  border-top: 1px solid #edf0f2;
}

.checkout-grand-total dt,
.checkout-grand-total dd {
  color: #05070a;
  font-size: 20px;
  font-weight: 850;
}

.checkout-submit {
  width: 100%;
  min-height: 54px;
  color: #fff;
  background: #04a63c;
  font-size: 17px;
  animation: checkout-item-in 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.checkout-summary-continue {
  width: 100%;
  min-height: 54px;
  color: #fff;
  background: var(--teal);
  border: 0;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 750;
  animation: checkout-item-in 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.checkout-summary-continue:hover {
  background: var(--teal-dark);
}

.checkout-message {
  margin: 0;
  color: #b42318;
  font-size: 14px;
  font-weight: 700;
}

.checkout-message.is-success {
  color: #067647;
}

.checkout-empty-state {
  display: grid;
  gap: 5px;
  padding: 16px;
  background: #f7f8f8;
  border-radius: 8px;
  animation: checkout-item-in 320ms ease both;
}

.checkout-empty-state a {
  color: var(--teal-dark);
  font-weight: 750;
}

@keyframes checkout-item-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.99);
  }

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

@keyframes checkout-loading-field {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}

@keyframes checkout-modal-backdrop-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes checkout-modal-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

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

@keyframes checkout-step-pop {
  0% {
    transform: scale(0.82);
    box-shadow: 0 0 0 0 rgba(43, 128, 128, 0.2);
  }

  55% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(43, 128, 128, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(43, 128, 128, 0);
  }
}

@keyframes checkout-summary-pulse {
  0% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(16, 24, 32, 0.08);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes checkout-details-open {
  from {
    opacity: 0.72;
    transform: translateY(-4px);
  }

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

@media (prefers-reduced-motion: reduce) {
  .checkout-panel,
  .checkout-review-item,
  .checkout-address-card,
  .checkout-shipping-card,
  .checkout-payment-options label,
  .checkout-summary,
  .checkout-summary-item,
  .checkout-submit,
  .checkout-empty-state {
    animation: none;
    transition: none;
  }
}

.product-page {
  background: #fff;
  padding-top: 14px;
}

.product-breadcrumb {
  width: min(100%, 1200px);
  margin-bottom: 24px;
  color: #667085;
  font-size: 13px;
}

.product-detail {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.98fr);
  gap: 24px;
  width: min(100%, 1200px);
}

.product-gallery,
.product-buybox {
  border-color: #dfe3e7;
  border-radius: 4px;
  box-shadow: none;
}

.product-gallery {
  padding: 30px;
}

.product-main-image {
  position: relative;
  display: grid;
  place-items: center;
  background: #eef0f2;
  border-radius: 0;
}

.product-main-image img {
  width: 100%;
  max-height: 646px;
  aspect-ratio: 1 / 1.08;
  object-fit: contain;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #5e656b;
  background: transparent;
  border: 0;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
}

.gallery-arrow.prev {
  left: 0;
}

.gallery-arrow.next {
  right: 0;
}

.product-thumbs {
  grid-template-columns: repeat(4, 74px);
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.product-thumbs button {
  background: #edf0f2;
  border: 1px solid #c9d0d6;
  border-radius: 6px;
}

.product-thumbs button.is-active {
  border: 2px solid #05070a;
  box-shadow: 0 0 0 1px #05070a;
}

.product-buybox {
  position: static;
  align-content: start;
  gap: 12px;
  padding: 26px;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.product-badges span {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  min-height: 25px;
  padding: 0 7px;
  border-radius: 3px;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.badge-national {
  color: #00a84f;
  border: 1px solid #00a84f;
}

.product-badges .badge-national {
  color: #009b3a;
  background: #fff;
  border: 1px solid #00a84f;
  border-radius: 4px;
}

.badge-flag-brazil {
  display: block;
  width: 18px;
  height: 14px;
  flex: 0 0 auto;
}

.badge-muted {
  color: #9fa4a8;
  background: #f2f3f3;
}

.badge-exclusive {
  color: #1f565b;
  background: #9acfd0;
}

.product-buybox h1 {
  padding-bottom: 10px;
  border-bottom: 1px solid #d7dce0;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.25;
}

.product-price-row {
  display: grid;
  gap: 4px;
  justify-content: start;
  padding: 16px 0 0;
  border: 0;
}

.product-price-row strong {
  color: #14484d;
  font-size: 26px;
  font-weight: 900;
}

.product-price-row span {
  color: #2b2f33;
  font-size: 15px;
  font-weight: 400;
}

.product-price-row b {
  color: #05070a;
  font-weight: 900;
}

.payment-actions {
  display: grid;
  justify-items: start;
  gap: 7px;
}

.payment-actions button {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  color: #252a2f;
  background: #fff;
  border: 1px solid #dfe3e7;
  border-radius: 4px;
  font-size: 15px;
}

.payment-actions svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.payment-actions strong {
  color: #1d2d31;
}

.payment-actions b {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  padding: 0 7px;
  color: #fff;
  background: var(--teal);
  border-radius: 4px;
  font-size: 13px;
}

.buy-row {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.product-quantity > div {
  grid-template-columns: 40px 1fr 40px;
  border-color: #eef0f2;
}

.product-quantity button,
.product-quantity input {
  min-height: 60px;
  background: #fff;
}

.product-quantity input {
  appearance: textfield;
  -moz-appearance: textfield;
}

.product-quantity input::-webkit-outer-spin-button,
.product-quantity input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

.product-quantity button,
.product-quantity input {
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.product-quantity input {
  color: #1c242b;
  font-weight: 500;
}

.product-buy-button {
  min-height: 60px;
  background: #04a63c;
  border-radius: 8px;
  font-size: 18px;
  text-transform: none;
}

.product-buy-button:hover {
  background: #008f32;
}

.payment-strip {
  position: relative;
  margin-top: 8px;
  padding: 20px 12px 10px;
  border: 1px solid #e4e7ea;
  border-radius: 4px;
}

.payment-strip h2 {
  position: absolute;
  top: -11px;
  left: 50%;
  margin: 0;
  padding: 0 12px;
  color: #111;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  transform: translateX(-50%);
}

.payment-strip div,
.payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.payment-card-flag {
  display: block;
  width: 45px;
  height: 28px;
  flex: 0 0 auto;
}

.payment-strip span {
  display: grid;
  min-width: 44px;
  min-height: 30px;
  place-items: center;
  color: #17415f;
  background: #fff;
  border: 1px solid #e6eaee;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
}

.product-experience {
  margin-top: 10px;
}

.product-experience h2 {
  margin: 0 0 20px;
  color: #05070a;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

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

.experience-grid article {
  position: relative;
  overflow: hidden;
  background: #edf0f2;
  border-radius: 10px;
}

.experience-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.experience-grid button {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #20252a;
  background: rgba(255, 255, 255, 0.86);
  border: 0;
  border-radius: 50%;
  font-size: 17px;
}

.product-details-tabs,
.related-products {
  width: min(100%, 1200px);
}

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

.product-how-to {
  position: relative;
  width: min(100%, 1200px);
  margin: 24px auto 0;
  background: #fff;
}

.how-to-progress {
  display: grid;
  grid-template-columns: repeat(var(--how-to-step-count, 4), minmax(0, 1fr));
  height: 42px;
  overflow: hidden;
  background: #f5f1ed;
  border-radius: 5px;
}

.how-to-progress span {
  position: relative;
  display: block;
  background: #f5f1ed;
  transition: background 220ms ease;
}

.how-to-progress span.is-active {
  background: #8accc8;
}

.how-to-progress b {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 24px;
  height: 20px;
  place-items: center;
  padding-right: 4px;
  color: #fff;
  background: #242628;
  clip-path: polygon(0 18%, 62% 18%, 62% 0, 100% 50%, 62% 100%, 62% 82%, 0 82%);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.how-to-content {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(40px, 7vw, 94px);
  align-items: center;
  min-height: 560px;
  padding: 40px 70px 0;
}

.how-to-content h2 {
  margin: 0;
  color: #05070a;
  font-size: clamp(38px, 4.6vw, 56px);
  font-weight: 400;
  line-height: 1.05;
}

.how-to-media {
  display: grid;
  width: 100%;
  min-height: 500px;
  place-items: center;
  background: #adadad;
  border-radius: 8px;
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: opacity 180ms ease, transform 220ms ease, background 220ms ease;
}

.product-how-to[data-how-to-current="2"] .how-to-media {
  background: #b7b7b7;
}

.product-how-to[data-how-to-current="3"] .how-to-media {
  background: #a5a5a5;
}

.product-how-to[data-how-to-current="4"] .how-to-media {
  background: #b0b0b0;
}

.product-how-to[data-how-to-direction="next"] .how-to-media.is-leaving {
  opacity: 0;
  transform: translateX(-26px) scale(0.985);
}

.product-how-to[data-how-to-direction="prev"] .how-to-media.is-leaving {
  opacity: 0;
  transform: translateX(26px) scale(0.985);
}

.product-how-to[data-how-to-direction="next"] .how-to-media.is-entering {
  animation: how-to-enter-next 280ms ease both;
}

.product-how-to[data-how-to-direction="prev"] .how-to-media.is-entering {
  animation: how-to-enter-prev 280ms ease both;
}

@keyframes how-to-enter-next {
  from {
    opacity: 0;
    transform: translateX(26px) scale(0.985);
  }

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

@keyframes how-to-enter-prev {
  from {
    opacity: 0;
    transform: translateX(-26px) scale(0.985);
  }

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

.how-to-media svg {
  width: min(28%, 140px);
  min-width: 96px;
  fill: none;
  stroke: #0f1011;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.how-to-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  border-radius: inherit;
}

.how-to-arrow {
  position: absolute;
  top: calc(42px + 50%);
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #05070a;
  background: #fff;
  border: 1px solid #0c0d0e;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(16, 24, 32, 0.14);
  transform: translateY(-50%);
}

.how-to-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.how-to-arrow-prev {
  left: -72px;
}

.how-to-arrow-next {
  right: -72px;
}

.admin-body {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100vh;
  background: #f4f6f7;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  display: grid;
  align-content: start;
  gap: 28px;
  height: 100vh;
  padding: 26px 18px;
  background: #fff;
  border-right: 1px solid #e4e8eb;
}

.admin-brand {
  display: inline-flex;
  width: 170px;
  margin: 0 auto;
}

.admin-brand img {
  width: 100%;
  height: auto;
}

.admin-nav {
  display: grid;
  gap: 6px;
}

.admin-nav button {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  color: #39424a;
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  text-align: left;
}

.admin-nav button:hover,
.admin-nav button.is-active {
  color: var(--teal-dark);
  background: #e9f3f1;
}

.admin-nav svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.admin-main {
  min-width: 0;
  padding: 28px;
}

.admin-topbar {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.admin-topbar span,
.admin-section-heading span,
.admin-metrics span {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-topbar h1,
.admin-section-heading h2 {
  margin: 0;
  color: #05070a;
  line-height: 1.1;
}

.admin-topbar h1 {
  font-size: 34px;
}

.admin-section-heading h2 {
  font-size: 22px;
}

.admin-user {
  display: flex;
  gap: 12px;
  align-items: center;
}

.admin-user span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--teal-dark);
  border-radius: 50%;
  font-size: 12px;
}

.admin-user a,
.admin-user button {
  color: var(--teal-dark);
  background: transparent;
  border: 0;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.admin-metrics article,
.admin-panel {
  background: #fff;
  border: 1px solid #e4e8eb;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.04);
}

.admin-metrics article {
  padding: 18px;
}

.admin-metrics strong {
  display: block;
  margin-top: 6px;
  color: #05070a;
  font-size: 28px;
  line-height: 1;
}

.admin-metrics small {
  display: block;
  margin-top: 10px;
  color: #66737d;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
}

.admin-metrics small b {
  color: inherit;
}

.admin-metrics small.is-positive {
  color: #067647;
}

.admin-metrics small.is-negative {
  color: #b42318;
}

.admin-dashboard {
  display: grid;
  gap: 18px;
}

.admin-dashboard-toolbar {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid #e4e8eb;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.04);
}

.admin-dashboard-toolbar .admin-section-heading p {
  max-width: 660px;
  margin: 9px 0 0;
  color: #66737d;
  font-size: 14px;
  line-height: 1.45;
}

.admin-period-tabs,
.admin-chart-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px;
  background: #f1f5f5;
  border: 1px solid #dbe4e4;
  border-radius: 8px;
}

.admin-period-tabs button,
.admin-chart-tabs button {
  min-height: 34px;
  padding: 0 12px;
  color: #3c4851;
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.admin-period-tabs button:hover,
.admin-period-tabs button.is-active,
.admin-chart-tabs button:hover,
.admin-chart-tabs button.is-active {
  color: #fff;
  background: var(--teal-dark);
}

.admin-analytics-kpis {
  margin-bottom: 0;
}

.admin-analytics-kpis article {
  min-height: 126px;
}

.admin-analytics-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.85fr);
  gap: 18px;
  align-items: start;
}

.admin-analytics-wide {
  grid-column: 1 / -1;
}

.admin-chart-heading {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
}

.admin-chart-wrap {
  min-height: 318px;
  margin-top: 18px;
}

.analytics-chart {
  display: grid;
  gap: 14px;
}

.analytics-chart svg {
  display: block;
  width: 100%;
  min-height: 270px;
}

.analytics-chart-grid {
  stroke: #edf1f3;
  stroke-width: 1;
}

.analytics-chart-axis {
  fill: #69747d;
  font-size: 11px;
  font-weight: 800;
}

.analytics-chart-current {
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.4;
}

.analytics-chart-previous {
  fill: none;
  stroke: #8b9aa4;
  stroke-dasharray: 7 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.analytics-chart-dot {
  fill: #fff;
  stroke: var(--teal);
  stroke-width: 2.2;
}

.analytics-chart-dot.previous {
  stroke: #8b9aa4;
}

.analytics-chart-legend,
.analytics-chart-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.analytics-chart-legend span,
.analytics-chart-summary span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #58646e;
  font-size: 13px;
  font-weight: 850;
}

.analytics-chart-legend i {
  width: 24px;
  height: 3px;
  background: var(--teal);
  border-radius: 999px;
}

.analytics-chart-legend .is-previous i {
  background: repeating-linear-gradient(90deg, #8b9aa4 0 7px, transparent 7px 12px);
}

.analytics-chart-summary {
  justify-content: space-between;
  padding: 13px 0 0;
  border-top: 1px solid #edf0f2;
}

.analytics-chart-summary strong {
  color: #05070a;
  font-size: 14px;
  font-weight: 900;
}

.analytics-chart-summary strong.is-positive {
  color: #067647;
}

.analytics-chart-summary strong.is-negative {
  color: #b42318;
}

.analytics-breakdown-list,
.analytics-funnel {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.analytics-breakdown-row {
  display: grid;
  gap: 8px;
}

.analytics-breakdown-meta,
.analytics-funnel-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.analytics-breakdown-meta span,
.analytics-funnel-meta span {
  color: #59636c;
  font-size: 14px;
  font-weight: 800;
}

.analytics-breakdown-meta strong,
.analytics-funnel-meta strong {
  color: #05070a;
  font-size: 14px;
  font-weight: 900;
}

.analytics-progress {
  height: 9px;
  overflow: hidden;
  background: #edf2f3;
  border-radius: 999px;
}

.analytics-progress span {
  display: block;
  height: 100%;
  background: var(--analytics-bar, linear-gradient(90deg, var(--teal), #00a84f));
  border-radius: inherit;
}

.analytics-funnel-step {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.analytics-rank-list li {
  align-items: flex-start;
}

.analytics-rank-list em {
  display: block;
  margin-top: 4px;
  color: #71808a;
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
}

.admin-general-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-summary-list {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
}

.admin-summary-list div,
.admin-rank-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid #edf0f2;
}

.admin-summary-list dt,
.admin-rank-list span {
  color: #59636c;
  font-size: 14px;
}

.admin-summary-list dd,
.admin-rank-list strong {
  margin: 0;
  color: #05070a;
  font-size: 15px;
  font-weight: 900;
}

.admin-rank-list {
  display: grid;
  gap: 2px;
  margin: 18px 0 0;
  padding: 0;
  list-style-position: inside;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) 360px;
  gap: 18px;
  align-items: start;
}

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

.catalog-product-editor .catalog-component-panel {
  order: -2;
}

.admin-wide {
  grid-column: 1 / -1;
}

.admin-panel {
  padding: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.form-grid label {
  display: grid;
  gap: 7px;
  color: #20272e;
  font-size: 14px;
  font-weight: 800;
}

.form-grid input,
.form-grid select,
.form-grid textarea,
.admin-search input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: #f7f8f8;
  border: 1px solid #dfe4e7;
  border-radius: 6px;
  outline: none;
}

.form-grid textarea {
  min-height: 104px;
  padding-top: 11px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus,
.admin-search input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43, 128, 128, 0.12);
}

.form-wide {
  grid-column: 1 / -1;
}

.olist-product-data {
  padding: 14px;
  background: #f7fbfa;
  border: 1px solid #cfe4e0;
  border-radius: 8px;
}

.olist-product-data .admin-section-heading h3 {
  margin: 2px 0 0;
  color: #0b171c;
  font-size: 17px;
}

.olist-product-data-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 13px;
}

.olist-product-data-grid label {
  display: grid;
  gap: 6px;
  color: #315055;
  font-size: 12px;
  font-weight: 850;
}

.olist-product-data-grid input[readonly] {
  min-height: 40px;
  color: #385259;
  background: #eef3f3;
  border-color: #d8e2e2;
  cursor: default;
}

.image-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.image-drop span {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  color: var(--teal-dark);
  background: #f7fbfa;
  border: 1px dashed #9bc5c0;
  border-radius: 8px;
  font-weight: 850;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.image-drop:hover span,
.image-drop:focus-within span {
  background: #eef8f6;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43, 128, 128, 0.1);
  transform: translateY(-1px);
}

.image-drop.is-dragging span {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal-dark);
  box-shadow: 0 12px 28px rgba(17, 63, 67, 0.18);
  transform: translateY(-2px) scale(1.01);
  animation: image-drop-pulse 900ms ease-in-out infinite;
}

.image-drop svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

@keyframes image-drop-pulse {
  0%,
  100% {
    box-shadow: 0 12px 28px rgba(17, 63, 67, 0.18);
  }

  50% {
    box-shadow: 0 16px 34px rgba(17, 63, 67, 0.28);
  }
}

.admin-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 18px;
}

.admin-button {
  min-height: 46px;
  padding: 0 18px;
  color: #fff;
  background: var(--teal);
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-button:hover {
  background: var(--teal-dark);
}

.admin-button.secondary {
  color: var(--teal-dark);
  background: #fff;
  border: 1px solid var(--teal);
}

.product-preview {
  position: sticky;
  top: 22px;
}

.admin-preview-card {
  margin-top: 20px;
  box-shadow: none;
}

.product-table-panel {
  margin-top: 18px;
}

.coupon-admin {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.coupon-list-panel {
  margin-top: 0;
}

.coupon-toggle {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 10px !important;
  align-items: center;
  min-height: 46px;
  padding: 0 12px;
  background: #f7f8f8;
  border: 1px solid #dfe4e7;
  border-radius: 6px;
  cursor: pointer;
}

.coupon-toggle input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--teal);
}

.coupon-toggle span {
  color: #20272e;
  font-size: 14px;
  font-weight: 850;
}

.admin-table-header {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.admin-search {
  width: min(320px, 100%);
}

.admin-table-controls {
  display: flex;
  gap: 12px;
  align-items: center;
}

.admin-sync-status {
  min-height: 20px;
  margin: -8px 0 14px;
  color: #59636c;
  font-size: 13px;
}

.product-table-wrap {
  overflow-x: auto;
}

.product-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.product-table th,
.product-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #edf0f2;
  text-align: left;
  vertical-align: middle;
}

.product-table th {
  color: #59636c;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-table td {
  color: #20272e;
  font-size: 14px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-pill.active {
  color: #067647;
  background: #dcfae6;
}

.status-pill.warning,
.status-pill.draft {
  color: #93370d;
  background: #fef0c7;
}

.status-pill.paused {
  color: #b42318;
  background: #fee4e2;
}

.table-actions {
  display: flex;
  gap: 8px;
}

.table-actions a,
.table-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 10px;
  color: var(--teal-dark);
  background: #fff;
  border: 1px solid #d7e5e3;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.coupon-table strong {
  letter-spacing: 0.04em;
}

.coupon-table {
  min-width: 900px;
}

.coupon-confirm-modal[hidden] {
  display: none !important;
}

.coupon-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
}

.coupon-confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 10, 0.46);
  border: 0;
}

.coupon-confirm-panel {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  padding: 22px;
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(5, 7, 10, 0.22);
}

.coupon-confirm-summary {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.coupon-confirm-summary div {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #edf0f2;
}

.coupon-confirm-summary dt,
.coupon-confirm-summary dd {
  margin: 0;
}

.coupon-confirm-summary dt {
  color: #59636c;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.coupon-confirm-summary dd {
  color: #11171d;
  font-weight: 850;
  text-align: right;
}

.catalog-component-panel {
  padding: 0;
  overflow: hidden;
}

.catalog-source-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
  background: #edf1f2;
}

.catalog-source-card {
  min-height: 350px;
  padding: 16px;
  background: #fff;
  border: 1px solid #d9e0e2;
  border-radius: 8px;
}

.catalog-source-product .catalog-component-grid {
  margin-top: 8px;
}

.catalog-source-product .admin-section-heading h2 {
  font-size: 18px;
  white-space: nowrap;
}

.catalog-source-product .catalog-component-slot {
  width: 158px;
  margin: 0 auto;
}

.catalog-source-product .catalog-component-slot.is-add {
  width: 100%;
  min-height: 290px;
  height: 290px;
  padding: 0;
  border: 1px dashed #9bc5c0;
}

.catalog-component-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: 12px;
  align-content: start;
}

.catalog-photo-section {
  min-width: 0;
}

.catalog-photo-section > .admin-section-heading {
  margin-bottom: 0;
}

.catalog-photo-section span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalog-photo-section h3 {
  margin: 2px 0 0;
  color: #05070a;
  font-size: 18px;
}

.catalog-photo-section .catalog-cover-preview {
  margin-top: 0;
}

.catalog-component-grid > p {
  margin: 0;
  color: #59636c;
  font-size: 14px;
}

.catalog-component-slot {
  position: relative;
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 210px;
  padding: 11px;
  color: #20272e;
  background: #f7f8f8;
  border: 1px solid #edf0f2;
  border-radius: 8px;
  text-align: left;
}

.catalog-component-slot.is-add {
  place-items: center;
  align-content: center;
  color: var(--teal-dark);
  background: #f7fbfa;
  border: 1px dashed #9bc5c0;
  text-align: center;
}

.catalog-component-slot.is-add:hover {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43, 128, 128, 0.1);
}

.catalog-component-slot.is-out-of-stock {
  background: #fff5f3;
  border-color: #f2c8c0;
  box-shadow: inset 3px 0 0 #b42318;
}

.catalog-component-slot.is-add:disabled {
  cursor: default;
  opacity: 0.62;
}

.catalog-component-add-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.catalog-component-slot-media,
.catalog-component-option-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid #edf0f2;
  border-radius: 6px;
}

.catalog-component-slot-media {
  width: 100%;
  aspect-ratio: 1;
}

.catalog-component-slot-media img,
.catalog-component-option-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.catalog-component-slot strong,
.catalog-component-slot small,
.catalog-component-option-copy strong,
.catalog-component-option-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-component-slot strong {
  font-size: 13px;
  font-weight: 900;
}

.catalog-component-slot small {
  color: #59636c;
  font-size: 12px;
}

.catalog-component-slot .catalog-component-stock {
  color: #1f6f4a;
  font-weight: 900;
}

.catalog-component-slot .catalog-component-stock.is-out {
  color: #b42318;
}

.catalog-component-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--teal-dark);
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 6px;
  font-size: 21px;
  line-height: 1;
}

.catalog-component-quantity {
  display: grid;
  gap: 4px;
  color: #59636c;
  font-size: 12px;
  font-weight: 800;
}

.catalog-component-stepper {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 6px;
}

.catalog-component-stepper button {
  display: grid;
  min-width: 0;
  min-height: 36px;
  place-items: center;
  padding: 0;
  color: var(--teal-dark);
  background: #f7fbfa;
  border: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.catalog-component-stepper button:hover {
  background: #e9f3f1;
}

.catalog-component-stepper input {
  width: 100%;
  min-width: 0;
  min-height: 36px;
  padding: 0 6px;
  color: #20272e;
  background: #fff;
  border: 0;
  border-right: 1px solid #dfe4e7;
  border-left: 1px solid #dfe4e7;
  font-weight: 900;
  text-align: center;
  outline: none;
}

.catalog-component-stepper input::-webkit-outer-spin-button,
.catalog-component-stepper input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.catalog-component-stepper input[type="number"] {
  appearance: textfield;
}

.catalog-component-picker[hidden] {
  display: none;
}

.catalog-component-picker {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.catalog-component-picker-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 10, 0.46);
  border: 0;
}

.catalog-component-picker-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  width: min(780px, 100%);
  max-height: min(720px, calc(100vh - 48px));
  padding: 22px;
  background: #fff;
  border: 1px solid #e4e8eb;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(5, 7, 10, 0.22);
}

.catalog-component-picker-header {
  display: flex;
  gap: 16px;
  align-items: start;
  justify-content: space-between;
}

.catalog-component-picker-header > button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--teal-dark);
  background: #f7f8f8;
  border: 1px solid #dfe4e7;
  border-radius: 6px;
  font-size: 26px;
  line-height: 1;
}

.catalog-component-search {
  display: block;
  width: 100%;
  margin-top: 18px;
}

.catalog-component-picker-list {
  display: grid;
  gap: 9px;
  margin-top: 14px;
  overflow: auto;
  padding-right: 2px;
}

.catalog-component-picker-list > p {
  margin: 0;
  color: #59636c;
  font-size: 14px;
}

.catalog-component-option {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 10px;
  color: #20272e;
  background: #f7f8f8;
  border: 1px solid #edf0f2;
  border-radius: 8px;
  text-align: left;
}

.catalog-component-option:hover {
  background: #f7fbfa;
  border-color: #9bc5c0;
}

.catalog-component-option.is-selected {
  background: #edf8f6;
  border-color: var(--teal);
  box-shadow: inset 3px 0 0 var(--teal);
}

.catalog-component-option.is-out-of-stock {
  border-color: #f2c8c0;
  box-shadow: inset 3px 0 0 #b42318;
}

.catalog-component-option.is-selected em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 9px;
  color: #067647;
  background: #dcfae6;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
}

.catalog-component-option-media {
  width: 58px;
  aspect-ratio: 1;
}

.catalog-component-option-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.catalog-component-option-copy strong {
  font-size: 14px;
  font-weight: 900;
}

.catalog-component-option-copy small,
.catalog-component-option em {
  color: #59636c;
  font-size: 12px;
}

.catalog-component-option-copy .catalog-component-stock {
  color: #1f6f4a;
  font-weight: 900;
}

.catalog-component-option-copy .catalog-component-stock.is-out {
  color: #b42318;
}

.catalog-component-option em {
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.catalog-category-field {
  display: grid;
  gap: 10px;
}

.catalog-category-field > label,
.catalog-category-label {
  color: #20272e;
  font-size: 14px;
  font-weight: 800;
}

.catalog-category-field select {
  min-height: 138px;
  padding: 8px 10px;
  line-height: 1.45;
}

.catalog-category-field select option {
  padding: 7px 8px;
}

.catalog-category-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-category-selected {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 42px;
  padding: 8px;
  background: #f7f8f8;
  border: 1px solid #e2e8ea;
  border-radius: 8px;
}

.catalog-category-selected > span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  color: #59636c;
  font-size: 13px;
  font-weight: 700;
}

.catalog-category-chip {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 30px;
  max-width: 100%;
  padding: 0 9px;
  color: var(--teal-dark);
  background: #e8f5f3;
  border: 1px solid #9bc5c0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.catalog-category-chip span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-category-chip strong {
  font-size: 16px;
  line-height: 1;
}

.catalog-category-picker {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 8px;
  max-height: 260px;
  overflow: auto;
  padding: 10px;
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 8px;
}

.catalog-category-picker > p {
  grid-column: 1 / -1;
  margin: 0;
  color: #59636c;
  font-size: 14px;
  font-weight: 700;
}

.catalog-category-options {
  display: contents;
}

.catalog-category-options > p {
  margin: 0;
  color: #59636c;
  font-size: 14px;
  font-weight: 700;
}

.catalog-category-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  min-height: 58px;
  padding: 10px;
  background: #f7f8f8;
  border: 1px solid #edf0f2;
  border-radius: 8px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.catalog-category-option-label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-width: 0;
  cursor: pointer;
}

.catalog-category-option:hover,
.catalog-category-option.is-selected {
  background: #eef8f6;
  border-color: #9bc5c0;
}

.catalog-category-option.is-selected {
  box-shadow: inset 3px 0 0 var(--teal);
}

.catalog-category-option input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  accent-color: var(--teal);
}

.catalog-category-option span,
.catalog-category-option strong,
.catalog-category-option small {
  min-width: 0;
}

.catalog-category-option strong,
.catalog-category-option small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-category-option strong {
  color: #20272e;
  font-size: 14px;
  font-weight: 850;
}

.catalog-category-option small {
  color: #59636c;
  font-size: 12px;
  font-weight: 700;
}

.catalog-category-delete {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  color: #b42318;
  background: #fff;
  border: 1px solid #f2c8c0;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.catalog-category-delete:hover {
  background: #fff5f3;
  border-color: #e59a8c;
}

.catalog-category-delete:disabled {
  color: #a2a9af;
  background: #eef1f3;
  border-color: #dfe4e7;
  cursor: not-allowed;
}

.catalog-category-add-tile {
  display: grid;
  min-height: 58px;
  place-items: center;
  color: var(--teal-dark);
  background: #f7fbfa;
  border: 1px dashed #9bc5c0;
  border-radius: 8px;
  font-size: 24px;
  font-weight: 900;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.catalog-category-add-tile:hover {
  background: #eef8f6;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43, 128, 128, 0.1);
}

.catalog-category-add-tile[hidden] {
  display: none;
}

.catalog-category-add-tile span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  line-height: 1;
}

.catalog-category-delete-selected {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  color: #8a1f11;
  background: #fff;
  border: 1px solid #f2c8c0;
  border-radius: 6px;
  font-weight: 900;
}

.catalog-category-delete-selected:hover {
  background: #fff5f3;
  border-color: #e59a8c;
}

.catalog-category-delete-selected:disabled {
  color: #a2a9af;
  background: #eef1f3;
  border-color: #dfe4e7;
  cursor: not-allowed;
}

.catalog-category-create {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px 38px;
  gap: 8px;
  align-items: center;
  min-height: 58px;
  padding: 8px;
  background: #f7fbfa;
  border: 1px dashed #9bc5c0;
  border-radius: 8px;
}

.catalog-category-create input {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 6px;
  outline: none;
}

.catalog-category-create input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43, 128, 128, 0.12);
}

.catalog-category-create-submit,
.catalog-category-create-cancel {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.catalog-category-create-submit {
  color: #fff;
  background: var(--teal);
  border: 0;
}

.catalog-category-create-cancel {
  color: #5f6a72;
  background: #fff;
  border: 1px solid #dfe4e7;
}

.category-display-preview {
  display: grid;
  gap: 8px;
  margin: 18px -22px 22px;
}

.category-display-preview > span {
  margin: 0 22px;
  color: #59636c;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-display-preview .category-nav {
  width: 100%;
}

.category-display-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.category-display-list > p {
  margin: 0;
  color: #59636c;
  font-size: 14px;
}

.category-display-row {
  display: grid;
  grid-template-columns: 42px minmax(160px, 0.7fr) minmax(220px, 1fr) auto auto;
  gap: 12px;
  align-items: end;
  padding: 14px;
  background: #f7f8f8;
  border: 1px solid #edf0f2;
  border-radius: 8px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.category-display-row:hover,
.category-display-row.is-order-flash {
  background: #f7fbfa;
  border-color: #9bc5c0;
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.08);
  transform: translateY(-1px);
}

.category-display-row.is-hidden-from-menu {
  background: #f1f3f4;
  border-color: #d9dee2;
  opacity: 0.72;
}

.category-order-controls {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  align-self: stretch;
}

.category-display-info {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding-bottom: 6px;
}

.category-display-info strong,
.category-display-info small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-display-info strong {
  color: #20272e;
  font-size: 14px;
  font-weight: 900;
}

.category-display-info small {
  color: #59636c;
  font-size: 12px;
}

.category-display-row label {
  display: grid;
  gap: 7px;
  color: #20272e;
  font-size: 14px;
  font-weight: 800;
}

.category-display-row input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 6px;
  outline: none;
}

.category-display-row input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43, 128, 128, 0.12);
}

.category-order-button {
  display: grid;
  width: 38px;
  min-height: 22px;
  place-items: center;
  color: var(--teal-dark);
  background: transparent;
  border: 0;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.category-order-button:hover {
  background: #e9f3f1;
  box-shadow: 0 0 0 3px rgba(43, 128, 128, 0.08);
  transform: translateY(-1px);
}

.category-order-button:disabled {
  color: #a2a9af;
  background: transparent;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.category-visibility-toggle {
  display: grid;
  grid-template-columns: 46px auto;
  gap: 8px;
  align-items: center;
  align-self: end;
  min-height: 46px;
  color: #20272e;
  font-size: 13px;
  font-weight: 900;
}

.category-visibility-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.category-visibility-toggle span {
  position: relative;
  display: block;
  width: 46px;
  height: 26px;
  background: #d9dee2;
  border-radius: 999px;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.category-visibility-toggle span::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(16, 24, 32, 0.16);
  content: "";
  transition: transform 180ms ease;
}

.category-visibility-toggle input:checked + span {
  background: var(--teal);
}

.category-visibility-toggle input:checked + span::after {
  transform: translateX(20px);
}

.category-visibility-toggle input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(43, 128, 128, 0.16);
}

.category-display-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.catalog-cover-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 210px));
  gap: 10px;
  width: 100%;
}

.catalog-photo-slot {
  position: relative;
  width: 210px;
  margin: 0;
  min-height: 285px;
  overflow: hidden;
  border: 1px solid #edf0f2;
  border-radius: 8px;
}

.catalog-photo-slot img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 285px;
  object-fit: cover;
  background: #fff;
}

.banner-admin-header {
  margin-top: 44px;
}

.banner-requirements {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin: 16px 0;
  padding: 13px 15px;
  color: #294a4e;
  background: #edf7f5;
  border: 1px solid #cbe4df;
  border-radius: 8px;
  font-size: 13px;
}

.banner-requirements strong { font-weight: 900; }

.banner-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) minmax(180px, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.banner-form label {
  display: grid;
  gap: 7px;
  color: #20272e;
  font-size: 13px;
  font-weight: 800;
}

.banner-form input {
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid #dfe4e7;
  border-radius: 6px;
  background: #fff;
}

.banner-admin-list { display: grid; gap: 12px; margin-top: 18px; }
.banner-admin-list > p { margin: 0; color: #59636c; font-size: 14px; }
.banner-admin-card { display: grid; grid-template-columns: minmax(0, 1fr) 190px; gap: 16px; padding: 14px; border: 1px solid #e0e7e7; border-radius: 8px; background: #f8fbfb; }
.banner-admin-images { display: grid; grid-template-columns: minmax(0, 2fr) minmax(120px, 0.7fr); gap: 12px; }
.banner-admin-images figure { margin: 0; overflow: hidden; border: 1px solid #dfe7e7; border-radius: 6px; background: #fff; }
.banner-admin-images img { display: block; width: 100%; aspect-ratio: 3 / 1; object-fit: cover; }
.banner-admin-images figure + figure img { aspect-ratio: 0.68 / 1; }
.banner-admin-images figcaption { padding: 7px 9px; color: #59636c; font-size: 12px; font-weight: 800; }
.banner-admin-content { display: grid; gap: 12px; align-content: center; }
.banner-admin-content strong { color: #20272e; font-size: 14px; }

@media (max-width: 920px) {
  .banner-form { grid-template-columns: 1fr 1fr; }
  .banner-form .admin-button { justify-self: start; }
  .banner-admin-card { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .banner-form,
  .banner-admin-images { grid-template-columns: 1fr; }
  .banner-admin-images figure + figure { max-width: 190px; }
}

.catalog-component-slot.is-filled[data-component-change] {
  cursor: pointer;
}

.catalog-component-slot.is-filled[data-component-change]:hover,
.catalog-component-slot.is-filled[data-component-change]:focus-visible {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43, 128, 128, 0.12);
  outline: none;
}

.catalog-photo-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  padding: 0;
  color: #174c50;
  background: #fff;
  border: 1px solid #d7e2e2;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.catalog-photo-remove:hover {
  color: #a42318;
  background: #fff5f3;
  border-color: #eab6ae;
}

.catalog-photo-slot.is-add {
  display: grid;
  place-content: center;
  place-items: center;
  gap: 8px;
  color: var(--teal-dark);
  background: #f7fbfa;
  border: 1px dashed #9bc5c0;
  cursor: pointer;
  text-align: center;
}

.catalog-photo-slot.is-add:hover {
  background: #eef8f6;
  border-color: var(--teal);
}

.catalog-photo-slot.is-add span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-size: 28px;
}

.catalog-photo-slot.is-add small {
  font-weight: 850;
}

.catalog-photo-slot.is-add em {
  color: #64757a;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
}


.catalog-how-to-section {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: #f7f8f8;
  border: 1px solid #edf0f2;
  border-radius: 8px;
}

.catalog-how-to-heading {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}

.catalog-how-to-heading span {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-how-to-heading h3 {
  margin: 0;
  color: #05070a;
  font-size: 20px;
  line-height: 1.15;
}

.catalog-how-to-heading p,
.catalog-how-to-list > p {
  margin: 6px 0 0;
  color: #59636c;
  font-size: 13px;
  line-height: 1.4;
}

.catalog-how-to-current {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 8px;
}

.catalog-how-to-current strong {
  color: #20272e;
  font-size: 15px;
  font-weight: 900;
}

.catalog-how-to-current small {
  color: #59636c;
  font-size: 13px;
}

.catalog-how-to-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.catalog-how-to-summary-grid article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 88px;
  padding: 8px;
  background: #f7f8f8;
  border: 1px solid #edf0f2;
  border-radius: 8px;
}

.catalog-how-to-summary-grid article > span {
  display: grid;
  width: 70px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  color: #59636c;
  background: #e8ecef;
  border-radius: 8px;
}

.catalog-how-to-summary-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-how-to-summary-grid b {
  font-size: 18px;
  font-weight: 900;
}

.catalog-how-to-summary-grid div {
  min-width: 0;
}

.catalog-how-to-summary-grid div small {
  display: block;
  margin-bottom: 3px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-how-to-summary-grid p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #20272e;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.catalog-how-to-actions {
  display: grid;
  gap: 10px;
}

.catalog-how-to-choice {
  display: grid;
  gap: 4px;
  width: 100%;
  min-height: 72px;
  padding: 14px;
  color: #20272e;
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 8px;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.catalog-how-to-choice:hover {
  border-color: var(--teal);
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.08);
  transform: translateY(-1px);
}

.catalog-how-to-choice strong {
  font-size: 15px;
  font-weight: 900;
}

.catalog-how-to-choice small {
  color: #59636c;
  font-size: 13px;
}

.catalog-how-to-modal[hidden] {
  display: none !important;
}

.catalog-how-to-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 22px;
}

.catalog-how-to-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 32, 0.42);
  border: 0;
}

.catalog-how-to-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(760px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 32px));
  overflow-y: auto;
  padding: 20px;
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(16, 24, 32, 0.22);
}

.catalog-how-to-modal-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}

.catalog-how-to-modal-header span {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-how-to-modal-header h3 {
  margin: 0;
  color: #05070a;
  font-size: 22px;
  line-height: 1.15;
}

.catalog-how-to-modal-header > button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #5e6972;
  background: #f4f6f7;
  border: 1px solid #e1e5e8;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
}

.catalog-how-to-template-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.catalog-how-to-template-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 100px;
  padding: 10px;
  color: #20272e;
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 8px;
  text-align: left;
}

.catalog-how-to-template-card:hover {
  border-color: var(--teal);
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.08);
}

.catalog-how-to-template-card span {
  display: grid;
  grid-row: 1 / span 2;
  width: 76px;
  height: 76px;
  place-items: center;
  overflow: hidden;
  color: #59636c;
  background: #f2f4f5;
  border-radius: 8px;
}

.catalog-how-to-template-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-how-to-template-card strong,
.catalog-how-to-template-card small {
  grid-column: 2;
}

.catalog-how-to-template-card strong {
  overflow: hidden;
  color: #20272e;
  font-size: 14px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-how-to-template-card small {
  color: #59636c;
  font-size: 12px;
}

.catalog-how-to-empty {
  grid-column: 1 / -1;
  display: grid;
  gap: 4px;
  min-height: 140px;
  place-items: center;
  color: #59636c;
  background: #f7f8f8;
  border: 1px dashed #d0d6da;
  border-radius: 8px;
  text-align: center;
}

.catalog-how-to-empty strong {
  color: #20272e;
  font-size: 15px;
}

.catalog-how-to-template {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 12px;
  align-items: end;
  padding: 12px;
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 8px;
}

.catalog-how-to-template-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.catalog-how-to-template-actions .admin-button {
  white-space: nowrap;
}

.catalog-how-to-list {
  display: grid;
  gap: 12px;
}

.catalog-how-to-step {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(190px, 0.65fr);
  gap: 12px;
  padding: 12px;
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 8px;
}

.catalog-how-to-step-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.catalog-how-to-step-head strong {
  color: #20272e;
  font-size: 14px;
  font-weight: 900;
}

.catalog-how-to-step-head button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #6a737b;
  background: #f4f6f7;
  border: 1px solid #e0e4e7;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
}

.catalog-how-to-image {
  cursor: pointer;
}

.catalog-how-to-image input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.catalog-how-to-image span {
  display: grid;
  min-height: 126px;
  place-items: center;
  overflow: hidden;
  padding: 12px;
  color: #5e6972;
  background: #f2f4f5;
  border: 1px dashed #aeb9bf;
  border-radius: 8px;
  text-align: center;
}

.catalog-how-to-image b,
.catalog-how-to-image small {
  display: block;
}

.catalog-how-to-image b {
  color: #20272e;
  font-size: 18px;
  font-weight: 900;
}

.catalog-how-to-image small {
  margin-top: 4px;
  font-size: 12px;
}

.catalog-how-to-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

body.has-admin-modal {
  overflow: hidden;
}

.admin-product-details[hidden] {
  display: none;
}

.admin-product-details {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-product-details-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 10, 0.46);
}

.admin-product-details-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 24px;
  background: #fff;
  border: 1px solid #e4e8eb;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(5, 7, 10, 0.22);
}

.admin-product-details-header {
  display: flex;
  gap: 16px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.admin-product-details-header button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--teal-dark);
  background: #f7f8f8;
  border: 1px solid #dfe4e7;
  border-radius: 6px;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.admin-product-details-content {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.admin-product-details-content img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #f7f8f8;
  border: 1px solid #edf0f2;
  border-radius: 8px;
}

.admin-product-details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.admin-product-details-list div {
  min-width: 0;
  padding: 12px;
  background: #f7f8f8;
  border: 1px solid #edf0f2;
  border-radius: 8px;
}

.admin-product-details-list dt,
.admin-product-description h3 {
  margin: 0 0 5px;
  color: #59636c;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-product-details-list dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: #20272e;
  font-size: 14px;
  font-weight: 750;
}

.admin-product-description {
  margin-top: 18px;
  padding: 14px;
  background: #f7f8f8;
  border: 1px solid #edf0f2;
  border-radius: 8px;
}

.admin-product-description p {
  margin: 0;
  color: #20272e;
  line-height: 1.55;
}

.admin-product-details-panel .admin-actions .admin-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.payment-admin {
  display: grid;
  gap: 18px;
}

.payment-admin[hidden] {
  display: none;
}

.payment-admin-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.payment-settings-form {
  display: grid;
  gap: 18px;
}

.payment-admin-card {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 16px;
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 8px;
}

.payment-admin-toggle {
  display: inline-flex;
  gap: 8px;
  width: fit-content;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.payment-admin-toggle:focus-visible {
  outline: 3px solid rgba(43, 128, 128, 0.18);
  outline-offset: 3px;
}

.payment-admin-card.is-enabled {
  border-color: rgba(43, 128, 128, 0.32);
  box-shadow: inset 0 0 0 1px rgba(43, 128, 128, 0.08);
}

.payment-admin-card.is-disabled {
  opacity: 0.68;
}

.payment-admin-toggle span {
  width: fit-content;
  min-height: 24px;
  padding: 0 8px;
  color: var(--teal-dark);
  background: #e9f3f1;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-admin-card.is-disabled .payment-admin-toggle span {
  color: #59636c;
  background: #eef1f3;
}

.payment-admin-card strong {
  color: #101820;
  font-size: 18px;
  font-weight: 900;
}

.payment-admin-fields {
  display: grid;
  gap: 10px;
}

.payment-admin-fields label {
  display: grid;
  gap: 5px;
  color: #15191d;
  font-size: 13px;
  font-weight: 750;
}

.payment-admin-fields input,
.payment-admin-rate-input {
  width: 100%;
  min-height: 38px;
  padding: 0 10px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 6px;
  outline: none;
}

.payment-admin-fields input:focus,
.payment-admin-rate-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43, 128, 128, 0.12);
}

.payment-admin-fields p {
  margin: 0;
  color: #59636c;
  font-size: 13px;
}

.payment-admin-table-wrap {
  overflow-x: auto;
  border: 1px solid #edf0f2;
  border-radius: 8px;
}

.payment-admin-table {
  min-width: 0;
  border-collapse: collapse;
}

.payment-admin-table th,
.payment-admin-table td {
  border-bottom: 0;
  text-align: center;
}

.payment-admin-table th {
  padding: 22px 18px;
  color: #fff;
  background: var(--teal);
  font-size: 15px;
  line-height: 1.25;
  text-transform: none;
}

.payment-admin-table th:first-child {
  background: var(--teal-dark);
}

.payment-admin-table td {
  padding: 13px 18px;
  color: var(--teal-dark);
  font-weight: 850;
}

.payment-admin-table tbody tr:nth-child(even) td {
  background: #e9f3f1;
}

.payment-admin-table tbody tr:nth-child(odd) td {
  background: #fff;
}

.payment-admin-table td:nth-child(2) {
  width: 52%;
}

.payment-admin-table td:nth-child(2)::after {
  margin-left: 4px;
  content: "%";
}

.payment-admin-table .payment-admin-rate-input {
  width: 96px;
  min-height: 32px;
  padding: 0 6px;
  color: var(--teal-dark);
  background: transparent;
  border-color: transparent;
  text-align: right;
  font: inherit;
}

.payment-admin-table .payment-admin-rate-input:hover,
.payment-admin-table .payment-admin-rate-input:focus {
  background: #fff;
  border-color: rgba(43, 128, 128, 0.34);
}

.payment-toggle-modal[hidden] {
  display: none;
}

.payment-toggle-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
}

.payment-toggle-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 32, 0.44);
  border: 0;
  cursor: pointer;
}

.payment-toggle-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  width: min(460px, calc(100vw - 32px));
  padding: 20px;
  background: #fff;
  border: 1px solid #dfe4e7;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(16, 24, 32, 0.26);
}

.site-footer {
  color: var(--ink);
  background: #fff;
  border-top: 1px solid #eef0f2;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1.15fr 1.65fr;
  gap: 52px;
  max-width: 1520px;
  margin: 0 auto;
  padding: 54px 42px 78px;
}

.footer-column {
  min-width: 0;
}

.site-footer h2 {
  margin: 0 0 20px;
  color: #05070a;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: #2d3034;
  font-size: 15px;
  line-height: 1.35;
}

.footer-column > a {
  display: block;
  margin: 0 0 14px;
}

.footer-service p {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 12px;
}

.footer-service svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.whatsapp-button {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  min-width: 214px;
  margin-top: 10px;
  padding: 11px 15px;
  color: #fff;
  background: #1bb76d;
  border-radius: 9px;
  box-shadow: 0 7px 14px rgba(27, 183, 109, 0.2);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.whatsapp-button:hover {
  color: #fff;
  background: #10985a;
  box-shadow: 0 10px 20px rgba(27, 183, 109, 0.26);
  transform: translateY(-1px);
}

.whatsapp-button svg {
  width: 29px;
  height: 29px;
  stroke-width: 1.9;
}

.whatsapp-button span {
  color: #fff;
  font-size: 14px;
  line-height: 1.15;
}

.payment-grid,
.verified-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-grid {
  margin-bottom: 26px;
}

.payment-grid span,
.verified-grid span {
  display: grid;
  place-items: center;
  min-width: 48px;
  min-height: 30px;
  padding: 4px 8px;
  color: #1b2025;
  background: #f7f8f9;
  border: 1px solid #e3e6e8;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.05;
  text-align: center;
}

.verified-grid span {
  min-width: 72px;
  min-height: 38px;
  color: #4a5158;
  font-weight: 800;
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 24px;
  align-items: center;
  max-width: 1520px;
  margin: 0 auto;
  padding: 12px 42px 14px;
  border-top: 1px solid #dfe2e5;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #8a8f94;
  font-size: 13px;
}

.social-links {
  display: flex;
  justify-self: end;
  gap: 18px;
}

.social-links a {
  color: #6c7176;
  font-size: 20px;
  font-weight: 850;
  line-height: 1;
}

/* Visual payment brands and security seals used in the footer. */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.payment-grid .payment-brand {
  display: grid;
  position: relative;
  min-width: 0;
  min-height: 37px;
  padding: 0;
  overflow: hidden;
  place-items: center;
  background: #fff;
  border: 1px solid #dde3e5;
  border-radius: 6px;
}

.payment-brand b {
  position: relative;
  z-index: 1;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.payment-brand.visa b { color: #163d93; font-size: 16px; font-style: italic; }
.payment-brand.hipercard { background: #b8172f; }
.payment-brand.hipercard b { color: #fff; font-size: 15px; font-style: italic; }
.payment-brand.elo { background: #151515; }
.payment-brand.elo::before { position: absolute; width: 29px; height: 29px; border: 3px solid #ffcc21; border-right-color: #00a7df; border-bottom-color: #e51f37; border-radius: 50%; content: ""; }
.payment-brand.elo b { color: #fff; font-size: 15px; }
.payment-brand.amex { background: #2376bc; }
.payment-brand.amex b { color: #fff; font-size: 10px; line-height: 0.85; letter-spacing: 0; text-align: center; }
.payment-brand.mastercard { grid-template-columns: 1fr 1fr; padding: 0 8px; }
.payment-brand.mastercard i { width: 19px; height: 19px; border-radius: 50%; }
.payment-brand.mastercard i:first-child { margin-right: -8px; background: #eb001b; }
.payment-brand.mastercard i:nth-child(2) { margin-left: -8px; background: #f79e1b; }
.payment-brand.mastercard b { position: absolute; bottom: 2px; color: #232323; font-size: 6px; letter-spacing: -0.4px; }
.payment-brand.pix svg { width: 25px; height: 25px; fill: #16a085; stroke: #fff; stroke-width: 1.4; }
.payment-brand.boleto { grid-template-columns: repeat(5, 3px); align-content: center; justify-content: center; gap: 3px; }
.payment-brand.boleto i { height: 22px; background: #222; }
.payment-brand.boleto i:nth-child(2), .payment-brand.boleto i:nth-child(4) { height: 17px; }

.verified-grid .trust-badge {
  display: flex;
  flex: 1 1 94px;
  gap: 7px;
  align-items: center;
  min-width: 0;
  min-height: 48px;
  padding: 6px 8px;
  color: #2a4e57;
  background: #f7fbfb;
  border: 1px solid #d7e7e6;
  border-radius: 7px;
}

.trust-badge svg {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #14877e;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.trust-badge b {
  font-size: 10px;
  font-weight: 900;
  line-height: 1.08;
  text-align: left;
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px;
  }

}

@media (max-width: 1360px) {
  .how-to-arrow-prev {
    left: 12px;
  }

  .how-to-arrow-next {
    right: 12px;
  }
}

@media (max-width: 960px) {
  .header-main {
    min-height: 96px;
  }

  .menu-button {
    display: none;
  }

  .brand {
    width: min(210px, 34vw);
  }

  .category-nav {
    justify-content: flex-start;
  }

  .benefits-grid,
  .footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-showcase {
    padding-right: 28px;
    padding-left: 28px;
  }

  .video-grid {
    grid-template-columns: repeat(5, minmax(210px, 1fr));
    overflow-x: auto;
    padding: 4px 0 14px;
    scroll-snap-type: x mandatory;
  }

  .video-card {
    scroll-snap-align: start;
  }

  .collection-grid {
    height: 440px;
  }

  .home-featured {
    margin-top: -46px;
    max-width: 780px;
  }

  .home-featured-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .collection-card:first-child,
  .collection-grid:hover .collection-card:hover {
    flex: 2.6 1 0;
  }

  .footer-service {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .social-links {
    justify-self: start;
  }

  .catalog-shell {
    grid-template-columns: 1fr;
  }

  .catalog-filter {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
  }

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

  .catalog-grid.is-view-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-body {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid #e4e8eb;
  }

  .admin-brand {
    width: 150px;
    margin: 0;
  }

  .admin-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .admin-nav button {
    flex: 0 0 auto;
    width: auto;
  }

  .admin-main {
    padding: 22px 18px;
  }

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

  .admin-dashboard-toolbar,
  .admin-chart-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-analytics-grid {
    grid-template-columns: 1fr;
  }

  .product-preview {
    position: static;
  }

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

  .admin-general-grid {
    grid-template-columns: 1fr;
  }

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

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

  .checkout-summary {
    position: static;
  }

  .product-buybox {
    position: static;
  }

  .product-details-tabs,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .how-to-content {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 34px 56px 0;
  }

  .how-to-media {
    min-height: 420px;
  }

  .how-to-arrow-prev {
    left: 12px;
  }

  .how-to-arrow-next {
    right: 12px;
  }
}

@media (max-width: 720px) {
  .promo-bar {
    min-height: 38px;
    font-size: 12px;
  }

  .header-main {
    grid-template-columns: 1fr auto;
    min-height: 82px;
    padding: 14px 16px;
  }

  .brand {
    position: static;
    justify-self: start;
    width: min(168px, 42vw);
    transform: none;
  }

  .header-actions {
    gap: 8px;
  }

  .account-button {
    width: 30px;
    height: 30px;
  }

  .category-nav {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    min-height: 52px;
    padding: 16px 20px 13px;
    overflow-x: auto;
    overflow-y: hidden;
    background: #f5f5f5;
    white-space: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    scroll-snap-type: x proximity;
  }

  .category-nav.is-dragging {
    cursor: grabbing;
    user-select: none;
  }

  .category-nav a {
    display: block;
    min-height: 0;
    flex: 0 0 auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
    font-size: 15px;
    line-height: normal;
    text-align: left;
    scroll-snap-align: start;
  }

  .category-nav::-webkit-scrollbar {
    display: none;
  }

  .hero img {
    min-height: auto;
    max-height: none;
  }

  .section {
    padding: 46px 16px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .home-featured {
    margin-top: -22px;
    padding-top: 0;
    padding-bottom: 18px;
  }

  .home-featured-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-featured .catalog-cart-icon {
    right: 8px;
    bottom: 8px;
    width: 36px;
    height: 36px;
  }

  .home-featured .catalog-cart-icon svg {
    width: 19px;
    height: 19px;
  }

  .home-featured .catalog-product-info {
    gap: 5px;
    padding: 12px 10px 14px;
  }

  .home-featured .catalog-product-info h2 {
    min-height: 42px;
    font-size: 13px;
    line-height: 1.35;
  }

  .home-featured .catalog-product-info strong {
    font-size: 18px;
  }

  .home-featured .catalog-product-info p {
    font-size: 12px;
  }

  .home-featured .catalog-product-info .shipping-badge {
    min-height: 32px;
    font-size: 12px;
  }

  .benefits-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    gap: 30px;
    padding: 40px 18px 48px;
  }

  .footer-bottom {
    padding: 16px 18px 20px;
  }

  .benefits-grid {
    gap: 34px;
    padding: 48px 16px;
  }

  .benefit-item strong {
    font-size: 18px;
  }

  .login-page {
    padding: 44px 16px 58px;
  }

  .login-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .login-panel {
    padding: 24px 18px;
  }

  .login-options {
    display: grid;
    gap: 10px;
    justify-content: stretch;
  }

  .recover-options {
    grid-template-columns: 1fr;
  }

  .video-showcase {
    padding: 0 16px 46px;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .video-card {
    scroll-snap-align: none;
  }

  .video-card:nth-child(n + 3) {
    display: none;
  }

  .collection-grid {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    gap: 10px;
  }

  .collection-card,
  .collection-card:first-child,
  .collection-grid:hover .collection-card,
  .collection-grid:hover .collection-card:hover {
    flex: initial;
    height: 310px;
  }

  .collection-card span,
  .collection-card:first-child span,
  .collection-card:hover span,
  .collection-grid:hover .collection-card:first-child:not(:hover) span {
    top: auto;
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
    max-width: none;
    font-size: 34px;
    transform: none;
    writing-mode: horizontal-tb;
  }

  .collection-card::before,
  .collection-card:first-child::before,
  .collection-card:hover::before,
  .collection-grid:hover .collection-card:first-child:not(:hover)::before {
    top: auto;
    right: 18px;
    bottom: 74px;
    left: 18px;
    width: auto;
    opacity: 1;
    transform: none;
  }

  .wide-banner img {
    min-height: auto;
  }

  .catalog-hero {
    min-height: 250px;
    padding: 46px 16px 34px;
    background-image:
      linear-gradient(90deg, rgba(17, 63, 67, 0.88), rgba(17, 63, 67, 0.5)),
      url("../images/home/BANNER_PRINCIPAL_-_CASA_DO_CHEIRO_MOBILE.webp");
  }

  .catalog-hero p {
    font-size: 16px;
  }

  .catalog-shell {
    padding: 26px 16px 48px;
  }

  .catalog-filter {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .catalog-toolbar {
    display: grid;
    align-items: stretch;
  }

  .catalog-toolbar-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
    justify-content: stretch;
  }

  .catalog-toolbar label {
    display: grid;
    gap: 6px;
    min-width: 0;
  }

  .catalog-toolbar select {
    width: 100%;
  }

  .catalog-view-toggle {
    width: max-content;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-grid.is-view-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .catalog-grid.is-view-compact .catalog-product-info h2 {
    min-height: 42px;
    font-size: 12px;
    line-height: 1.35;
  }

  .catalog-grid.is-view-compact .catalog-product-info strong {
    font-size: 17px;
  }

  .catalog-grid.is-view-compact .catalog-product-info p {
    font-size: 11px;
  }

  .product-info p {
    min-height: 0;
  }

  .admin-main {
    padding: 18px 14px;
  }

  .admin-topbar,
  .admin-table-header {
    display: grid;
    align-items: stretch;
  }

  .admin-topbar h1 {
    font-size: 30px;
  }

  .admin-user {
    justify-content: space-between;
  }

  .admin-metrics,
  .form-grid,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-dashboard-toolbar,
  .admin-chart-heading {
    display: grid;
  }

  .admin-period-tabs,
  .admin-chart-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-period-tabs button,
  .admin-chart-tabs button {
    width: 100%;
  }

  .analytics-funnel-step {
    grid-template-columns: 1fr;
  }

  .analytics-chart svg {
    min-height: 230px;
  }

  .catalog-cover-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .catalog-how-to-heading {
    display: grid;
  }

  .catalog-how-to-summary-grid {
    grid-template-columns: 1fr;
  }

  .catalog-how-to-template {
    grid-template-columns: 1fr;
  }

  .catalog-how-to-template-grid {
    grid-template-columns: 1fr;
  }

  .catalog-how-to-template-actions {
    display: grid;
  }

  .catalog-how-to-step {
    grid-template-columns: 1fr;
  }

  .admin-panel {
    padding: 18px;
  }

  .admin-actions {
    display: grid;
  }

  .admin-button {
    width: 100%;
  }

  .admin-product-details {
    padding: 12px;
  }

  .admin-product-details-panel {
    max-height: calc(100vh - 24px);
    padding: 16px;
  }

  .catalog-component-picker {
    padding: 12px;
  }

  .catalog-component-picker-panel {
    max-height: calc(100vh - 24px);
    padding: 16px;
  }

  .catalog-category-picker {
    grid-template-columns: 1fr;
  }

  .catalog-category-create {
    grid-template-columns: 1fr;
  }

  .catalog-category-create-submit,
  .catalog-category-create-cancel {
    width: 100%;
  }

  .category-display-preview {
    margin-right: -18px;
    margin-left: -18px;
  }

  .category-display-preview > span {
    margin-right: 18px;
    margin-left: 18px;
  }

  .category-display-row {
    grid-template-columns: 1fr;
  }

  .category-order-controls {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }

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

  .category-order-button {
    width: 100%;
  }

  .category-display-actions .admin-button {
    width: 100%;
  }

  .catalog-component-option {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .catalog-component-option-media {
    width: 52px;
  }

  .catalog-component-option em {
    grid-column: 2;
  }

  .admin-product-details-content,
  .admin-product-details-list {
    grid-template-columns: 1fr;
  }

  .payment-admin-methods {
    grid-template-columns: 1fr;
  }

  .product-page {
    padding: 18px 14px;
  }

  .checkout-page {
    padding: 24px 14px 48px;
  }

  .checkout-panel,
  .checkout-summary {
    padding: 16px;
  }

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

  .checkout-payment-options .checkout-payment-card {
    min-height: 190px;
  }

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

  .checkout-payment-result img {
    width: 160px;
  }

  .payment-art-pix {
    width: 112px;
  }

  .payment-art-card {
    width: min(100%, 136px);
  }

  .checkout-address-form,
  .checkout-coupon-form {
    grid-template-columns: 1fr;
  }

  .checkout-coupon-form button,
  .checkout-secondary-button {
    width: 100%;
  }

  .checkout-summary-item {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .checkout-review-item {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .checkout-review-item img {
    width: 58px;
    height: 68px;
  }

  .checkout-review-info {
    grid-column: 2 / 4;
  }

  .checkout-review-quantity {
    grid-column: 2;
    justify-items: start;
    text-align: left;
  }

  .checkout-review-price {
    grid-column: 2;
    justify-items: start;
    text-align: left;
  }

  .checkout-review-total {
    grid-column: 3;
    justify-items: end;
    text-align: right;
  }

  .checkout-review-remove {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .checkout-summary-item b {
    grid-column: 2;
  }

  .product-gallery,
  .product-buybox,
  .product-details-tabs article {
    padding: 16px;
  }

  .product-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-price-row {
    display: grid;
  }

  .how-to-progress {
    height: 34px;
  }

  .how-to-progress b {
    width: 22px;
    height: 18px;
    font-size: 10px;
  }

  .how-to-content {
    gap: 22px;
    padding: 28px 18px 0;
  }

  .how-to-content h2 {
    font-size: 34px;
  }

  .how-to-media {
    min-height: 290px;
  }

  .how-to-arrow {
    top: calc(34px + 58%);
    width: 44px;
    height: 44px;
  }

  .how-to-arrow-prev {
    left: 8px;
  }

  .how-to-arrow-next {
    right: 8px;
  }

  .buy-row {
    grid-template-columns: 1fr;
  }

  .product-quantity > div {
    grid-template-columns: 48px 1fr 48px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-grid article:nth-child(n + 2) {
    display: none;
  }

  .cart-drawer {
    width: min(360px, 94vw);
  }

  .cart-item {
    grid-template-columns: 72px 1fr auto;
  }

  .cart-item img {
    width: 72px;
    height: 86px;
  }
}

.promo-bar,
.category-nav a,
.section-heading span,
.login-form label,
.recover-form label,
.catalog-toolbar label,
.filter-list a,
.filter-check,
.admin-nav button,
.form-grid label,
.product-variant-group h2,
.product-quantity label,
.product-shipping label {
  font-weight: 600;
}

.section-heading h1,
.section-heading h2,
.collection-heading h1,
.login-panel h1,
.register-heading,
.product-info h2,
.catalog-product-info h2,
.product-buybox h1,
.product-details-tabs h2,
.admin-topbar h1,
.admin-section-heading h2 {
  font-weight: 650;
}

.benefit-item strong,
.product-tag,
.payment-actions strong,
.payment-actions b,
.payment-strip h2,
.product-experience h2,
.admin-metrics strong,
.status-pill,
.table-actions button {
  font-weight: 700;
}

.product-info strong,
.catalog-product-info strong,
.product-price-row strong,
.product-buy-button,
.login-submit,
.login-secondary,
.admin-button {
  font-weight: 750;
}

.product-page,
.product-page h1,
.product-page h2,
.product-page h3,
.product-page strong,
.product-page b,
.product-page button,
.product-page .product-tag,
.product-page .product-badges span,
.product-page .product-price-row strong,
.product-page .product-price-row b,
.product-page .payment-actions strong,
.product-page .payment-actions b,
.product-page .payment-strip h2,
.product-page .payment-strip span,
.product-page .product-experience h2,
.product-page .product-specs dd,
.product-page .product-buy-button {
  font-weight: 400;
}

.product-page .product-badges span {
  font-weight: 600;
}

.product-page .how-to-content h2 {
  font-weight: 400;
}

.product-page .how-to-progress b {
  font-weight: 900;
}

.audit-log-details details {
  margin-top: 8px;
}

.audit-log-details summary {
  cursor: pointer;
  color: var(--color-primary, #6f3b2a);
}

.audit-log-details pre {
  max-width: 420px;
  max-height: 280px;
  margin: 8px 0 0;
  overflow: auto;
  padding: 10px;
  border-radius: 8px;
  background: #f6f2ef;
  font: 0.75rem/1.45 ui-monospace, SFMono-Regular, Menlo, monospace;
  white-space: pre-wrap;
}

.whatsapp-button strong {
  color: inherit;
  font-weight: 900;
}

.info-page {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 80px;
}

.info-page-heading {
  margin-bottom: 24px;
  text-align: center;
}

.info-page-heading p {
  margin: 0 0 8px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.info-page-heading h1 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(30px, 5vw, 44px);
}

.info-page-heading span { color: var(--muted); }

.info-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}

.info-page-nav a {
  padding: 9px 14px;
  color: var(--teal-dark);
  background: #eef7f6;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
}

.info-page-content { display: grid; gap: 14px; }

.info-page-content section {
  scroll-margin-top: 24px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid #e1e5e8;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(16, 24, 32, .05);
}

.info-page-content h2 { margin: 0 0 10px; color: var(--ink); font-size: 22px; }
.info-page-content p { margin: 0; color: var(--muted); line-height: 1.7; }
.info-page-content p + p { margin-top: 10px; }
.info-page-content a { color: var(--teal-dark); font-weight: 750; text-decoration: underline; }

@media (max-width: 600px) {
  .info-page { padding-top: 34px; }
  .info-page-content section { padding: 20px; }
}

/* Cabeçalho de loja com busca. */
.site-header.storefront-header { background: var(--surface); box-shadow: 0 1px 0 rgba(16, 24, 32, .1); }
.promo-bar { display: none; }
.storefront-header .header-main { display: grid; grid-template-columns: 170px minmax(300px, 590px) minmax(230px, 1fr); column-gap: 24px; align-items: center; max-width: 1200px; min-height: 64px; padding: 8px 16px; }
.storefront-header .brand { position: static; grid-row: 1; width: 158px; transform: none; }
.storefront-header .header-search { position: relative; display: flex; grid-column: 2; grid-row: 1; height: 42px; overflow: visible; background: #fff; border-radius: 4px; box-shadow: 0 1px 2px rgba(0, 0, 0, .12); }
.storefront-header .header-search input { min-width: 0; flex: 1; padding: 0 16px; color: #333; background: transparent; border: 0; outline: 0; font-size: 16px; }
.storefront-header .header-search:focus-within { box-shadow: 0 0 0 3px rgba(43, 128, 128, .22); }
.storefront-header .header-search input::placeholder { color: #999; }
.storefront-header .header-search button { display: grid; width: 48px; place-items: center; color: #777; background: transparent; border: 0; border-left: 1px solid #eee; }
.storefront-header .header-search button:hover { color: #222; background: #fafafa; }
.storefront-header .header-search svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.8; }
.header-search-suggestions { position: absolute; top: calc(100% + 7px); right: 0; left: 0; z-index: 30; overflow: hidden; padding: 7px; background: var(--surface); border: 1px solid #e1e5e8; border-radius: 6px; box-shadow: 0 12px 28px rgba(16, 24, 32, .16); }
.header-search-suggestions-title { margin: 3px 7px 6px; color: var(--muted); font-size: 12px; font-weight: 700; }
.header-search-suggestion { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 10px; align-items: center; padding: 7px; border-radius: 4px; }
.header-search-suggestion:hover, .header-search-suggestion.is-active { background: #eef7f6; }
.header-search-suggestion img { width: 44px; height: 44px; object-fit: contain; background: #fff; }
.header-search-suggestion span { display: grid; min-width: 0; }
.header-search-suggestion strong { overflow: hidden; color: var(--ink); font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.header-search-suggestion small { color: var(--teal-dark); font-size: 13px; font-weight: 750; }
.header-search-suggestions-empty { display: block; margin: 2px 7px 5px; color: var(--muted); font-size: 13px; }
a.header-search-suggestions-empty { color: var(--teal-dark); font-weight: 750; }
.storefront-header .header-actions { grid-column: 3; grid-row: 1; gap: 17px; }
.storefront-header .header-actions .account-button, .storefront-header .header-actions .icon-button { width: 27px; height: 27px; }

@media (max-width: 720px) {
  .storefront-header .header-main { grid-template-columns: minmax(0, 1fr) auto; grid-template-rows: auto auto; gap: 9px 12px; min-height: 106px; padding: 10px 14px; }
  .storefront-header .brand { grid-column: 1; grid-row: 1; width: min(145px, 48vw); }
  .storefront-header .header-search { grid-column: 1 / -1; grid-row: 2; height: 40px; }
  .storefront-header .header-actions { grid-column: 2; grid-row: 1; gap: 10px; }
}
