:root {
  --cream: #f8eee6;
  --paper: #fff9f4;
  --cocoa: #4a291e;
  --deep: #2b1711;
  --rose: #b9656a;
  --peach: #eab9a2;
  --muted: #816b61;
  --line: rgba(74, 41, 30, 0.14);
  --white-line: rgba(255, 255, 255, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  background: var(--cream);
  color: var(--cocoa);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--deep);
  color: white;
  font-size: 12px;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.store {
  display: grid;
  width: 100%;
  height: 100dvh;
  grid-template-rows: 76px 1fr;
}

.store-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(18px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 249, 244, 0.92);
  backdrop-filter: blur(18px);
}

.store-header::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 190px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(234, 185, 162, 0.18),
    transparent 70%
  );
  content: "";
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.brand {
  display: inline-flex;
  grid-column: 2;
  grid-row: 1;
  align-items: center;
  justify-self: center;
  gap: 12px;
  color: var(--cocoa);
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(74, 41, 30, 0.13));
}

.brand > span {
  display: grid;
  gap: 4px;
}

.brand b {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 0.9;
}

.brand small {
  color: #967a6d;
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.15em;
}

.header-note {
  display: flex;
  grid-column: 1;
  grid-row: 1;
  align-items: center;
  justify-self: start;
  gap: 9px;
  margin: 0;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
}

.header-note i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5d946c;
  box-shadow: 0 0 0 5px rgba(93, 148, 108, 0.1);
}

.store-header nav {
  display: flex;
  grid-column: 3;
  grid-row: 1;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.store-header nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cocoa);
  font-size: 8px;
  font-weight: 800;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.store-header nav a:hover {
  border-color: rgba(185, 101, 106, 0.44);
  background: white;
  transform: translateY(-1px);
}

.store-header nav a img {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  object-fit: contain;
}

.store-header nav .social-link--instagram {
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, rgba(131, 58, 180, 0.42), rgba(253, 29, 29, 0.38), rgba(252, 176, 69, 0.42)) border-box;
  border-color: transparent;
}

.store-header nav .header-whatsapp {
  border-color: var(--deep);
  background: var(--deep);
  color: white;
}

.store-header nav .header-whatsapp img {
  filter: invert(1);
}

.store-header nav .header-whatsapp:hover {
  border-color: #216b46;
  background: #216b46;
  color: white;
}

.social-arrow {
  color: var(--peach);
  font-size: 11px;
}

.store-main {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
}

.visual {
  position: relative;
  min-width: 0;
  min-height: 0;
  background: #d9bda9;
  overflow: hidden;
}

.visual-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transition:
    opacity 280ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 280ms ease;
}

.visual:hover .visual-main {
  transform: scale(1.012);
}

.visual-main.is-changing {
  opacity: 0.25;
  filter: saturate(0.75);
}

.visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(38, 18, 10, 0.16), transparent 35%),
    linear-gradient(0deg, rgba(38, 18, 10, 0.38), transparent 34%);
  pointer-events: none;
}

.visual-top {
  position: absolute;
  top: 22px;
  right: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: white;
}

.visual-top span,
.visual-top small {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(47, 25, 16, 0.28);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.1em;
  backdrop-filter: blur(9px);
}

.visual-top small {
  letter-spacing: 0;
}

.carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(47, 25, 16, 0.24);
  color: white;
  opacity: 0.72;
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition:
    background 170ms ease,
    opacity 170ms ease,
    transform 170ms ease;
}

.carousel-arrow:hover {
  background: rgba(47, 25, 16, 0.58);
  opacity: 1;
}

.carousel-arrow--previous {
  left: 20px;
}

.carousel-arrow--previous:hover {
  transform: translate(-3px, -50%);
}

.carousel-arrow--next {
  right: 20px;
}

.carousel-arrow--next:hover {
  transform: translate(3px, -50%);
}

.carousel-progress {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 107px;
  left: 22px;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
  overflow: hidden;
}

.carousel-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  transform: scaleX(0);
  transform-origin: left;
}

.carousel-progress span.is-running {
  animation: carousel-progress 5.4s linear forwards;
}

.carousel-footer {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 18px;
}

.photo-picker {
  display: flex;
  grid-column: 2;
  justify-content: center;
  gap: 9px;
}

.photo-picker button {
  width: 58px;
  height: 70px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.14);
  opacity: 0.74;
  overflow: hidden;
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    border-color 160ms ease;
}

.photo-picker button:hover,
.photo-picker button.is-active {
  border-color: white;
  opacity: 1;
  transform: translateY(-3px);
}

.photo-picker button.is-active {
  box-shadow: 0 8px 24px rgba(38, 18, 10, 0.22);
}

.photo-picker img {
  width: 100%;
  height: 100%;
  border-radius: 9px;
  object-fit: cover;
}

.carousel-toggle {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-self: start;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(47, 25, 16, 0.26);
  color: white;
  backdrop-filter: blur(10px);
}

.carousel-toggle > span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: -0.12em;
}

.carousel-toggle small {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.06em;
}

.carousel-count {
  display: flex;
  min-height: 38px;
  align-items: baseline;
  justify-self: end;
  gap: 5px;
  margin: 0;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(47, 25, 16, 0.26);
  color: white;
  font-family: var(--mono);
  backdrop-filter: blur(10px);
}

.carousel-count b {
  font-size: 11px;
  font-weight: 500;
}

.carousel-count span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 7px;
}

@keyframes carousel-progress {
  to {
    transform: scaleX(1);
  }
}

.product {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-template-rows: auto 1fr auto;
  background:
    radial-gradient(circle at 95% 5%, rgba(234, 185, 162, 0.24), transparent 28%),
    var(--paper);
  overflow: hidden;
}

.product::after {
  position: absolute;
  right: -110px;
  bottom: -140px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(185, 101, 106, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.product-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.product-tabs button {
  position: relative;
  display: grid;
  min-height: 72px;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 7px;
  padding: 0 22px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: #9a8378;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

.product-tabs button:last-child {
  border-right: 0;
}

.product-tabs button::after {
  position: absolute;
  right: 22px;
  bottom: -1px;
  left: 22px;
  height: 2px;
  background: var(--rose);
  content: "";
  transform: scaleX(0);
  transition: transform 170ms ease;
}

.product-tabs button.is-active {
  color: var(--cocoa);
}

.product-tabs button.is-active::after {
  transform: scaleX(1);
}

.product-tabs button > span {
  color: var(--rose);
  font-family: var(--mono);
  font-size: 7px;
}

.product-tabs button > small {
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(93, 148, 108, 0.1);
  color: #4e805d;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.07em;
}

.product-tabs button:last-child > small {
  background: rgba(185, 101, 106, 0.09);
  color: var(--rose);
}

.product-panel {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vh, 46px) clamp(24px, 4vw, 58px);
}

.eyebrow {
  margin: 0;
  color: var(--rose);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.product-heading h1 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: clamp(60px, 6.4vw, 102px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.82;
}

.product-heading h1 em {
  color: var(--rose);
  font-weight: 500;
}

.product-description {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.kit-contents {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 20px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.kit-contents li {
  display: grid;
  min-height: 65px;
  align-content: space-between;
  padding: 10px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.kit-contents span {
  color: var(--rose);
  font-family: var(--mono);
  font-size: 9px;
}

.kit-contents b {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
}

.product-action {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.product-action > div {
  display: grid;
  gap: 4px;
}

.product-action > div span {
  color: var(--rose);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.product-action > div b {
  font-family: var(--serif);
  font-size: 24px;
}

.product-action > div small {
  color: var(--muted);
  font-size: 10px;
}

.product-action > button,
.dialog-action > button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  background: var(--deep);
  box-shadow: 5px 5px 0 var(--peach);
  color: white;
  font-size: 13px;
  font-weight: 800;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease;
}

.product-action > button:hover,
.dialog-action > button:hover {
  box-shadow: 3px 3px 0 var(--peach);
  transform: translate(2px, 2px);
}

.product-action > button span,
.dialog-action > button span {
  color: var(--peach);
  font-size: 14px;
}

.coming-card {
  display: grid;
  gap: 14px;
  margin: 22px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
}

.coming-card > span {
  color: var(--rose);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.coming-card strong {
  max-width: 470px;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.05;
}

.coming-card small {
  max-width: 500px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.trust-row {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 42px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border-top: 1px solid var(--line);
  color: #8e776c;
  font-size: 9px;
  text-align: center;
}

.trust-row span + span {
  border-left: 1px solid var(--line);
}

.order-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(39, 19, 12, 0.78);
  backdrop-filter: blur(13px);
}

.order-dialog {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(980px, 100%);
  max-height: min(820px, calc(100dvh - 36px));
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.72fr);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 40px 110px rgba(38, 16, 9, 0.38);
  overflow: hidden;
}

.dialog-aside {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  padding: 34px 30px;
  background:
    radial-gradient(circle at 25% 10%, rgba(234, 185, 162, 0.24), transparent 30%),
    linear-gradient(145deg, #44271e, #28150f);
  color: white;
  overflow: hidden;
}

.dialog-aside::after {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.dialog-aside > img {
  width: 64px;
  height: 61px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}

.dialog-aside > div {
  display: grid;
  gap: 12px;
}

.dialog-aside > div > p:first-child {
  margin: 0;
  color: var(--peach);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.dialog-aside h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 39px);
  font-weight: 500;
  line-height: 0.98;
}

.dialog-aside > div > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  line-height: 1.65;
}

.dialog-aside ol {
  display: grid;
  gap: 0;
  margin: auto 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  list-style: none;
}

.dialog-aside li {
  display: grid;
  min-height: 46px;
  grid-template-columns: 30px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.84);
  font-size: 10px;
}

.dialog-aside li span {
  color: var(--peach);
  font-family: var(--mono);
  font-size: 8px;
}

.dialog-aside > small {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  line-height: 1.7;
}

.dialog-content {
  max-height: min(820px, calc(100dvh - 36px));
  padding: clamp(26px, 3vw, 38px);
  overflow: auto;
  scrollbar-color: rgba(185, 101, 106, 0.42) transparent;
  scrollbar-width: thin;
}

.dialog-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.dialog-header h2 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.95;
}

.dialog-close {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--cocoa);
  font-size: 22px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.dialog-close:hover {
  border-color: var(--rose);
  background: rgba(185, 101, 106, 0.08);
  transform: rotate(4deg);
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 22px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.42);
  overflow: hidden;
}

.order-steps span {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
}

.order-steps span + span {
  border-left: 1px solid var(--line);
}

.order-steps b {
  color: var(--rose);
  font-family: var(--mono);
  font-size: 7px;
}

.order-steps .is-active {
  background: white;
  color: var(--cocoa);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

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

.form-section {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.48);
}

.form-section-heading {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.form-section-heading > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(185, 101, 106, 0.09);
  color: var(--rose);
  font-family: var(--mono);
  font-size: 8px;
}

.form-section-heading > div {
  display: grid;
  gap: 3px;
}

.form-section-heading b {
  font-family: var(--serif);
  font-size: 17px;
}

.form-section-heading small {
  color: var(--muted);
  font-size: 8px;
  line-height: 1.45;
}

#orderForm label {
  display: grid;
  gap: 7px;
  color: var(--cocoa);
  font-size: 10px;
  font-weight: 700;
}

#orderForm input,
#orderForm select,
#orderForm textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  color: var(--cocoa);
  outline: 0;
}

#orderForm input,
#orderForm select {
  min-height: 50px;
  padding: 0 14px;
  font-size: 12px;
}

#orderForm select {
  color-scheme: light;
}

#orderForm select option {
  background: white;
  color: var(--cocoa);
}

#orderForm textarea {
  min-height: 84px;
  padding: 14px;
  font-size: 12px;
  resize: vertical;
}

#orderForm input:focus,
#orderForm select:focus,
#orderForm textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(185, 101, 106, 0.1);
}

#orderForm [aria-invalid="true"] {
  border-color: #c75050;
}

#orderForm fieldset {
  margin: 14px 0 0;
  padding: 20px 18px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.48);
}

#orderForm legend {
  padding: 0 8px;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.delivery-fields {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

#postalStatus {
  min-height: 11px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 500;
}

.interest-note {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.message-field {
  margin-top: 14px;
}

.message-field span small {
  color: var(--muted);
  font-size: 7px;
}

.consent-field {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 9px !important;
  margin-top: 13px;
}

.consent-field input {
  width: 16px !important;
  min-height: 16px !important;
  margin: 1px 0 0;
  accent-color: var(--rose);
}

.consent-field span {
  color: var(--muted);
  font-size: 7px;
  font-weight: 500;
  line-height: 1.55;
}

.dialog-action {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.dialog-action p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.dialog-action p b {
  font-family: var(--serif);
  font-size: 17px;
}

.dialog-action p small {
  color: var(--muted);
  font-size: 7px;
}

.dialog-action button[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 18px;
  bottom: 18px;
  max-width: min(360px, calc(100% - 36px));
  padding: 13px 16px;
  border-radius: 12px;
  background: var(--deep);
  box-shadow: 0 18px 45px rgba(37, 17, 9, 0.25);
  color: white;
  font-size: 9px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    opacity 170ms ease,
    transform 170ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.modal-open {
  overflow: hidden;
}

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .store {
    grid-template-rows: 62px 1fr;
  }

  .store-header {
    grid-template-columns: 1fr;
    padding: 0 13px;
  }

  .brand {
    position: absolute;
    left: 50%;
    gap: 0;
    transform: translateX(-50%);
  }

  .brand img {
    width: 44px;
    height: 42px;
  }

  .brand > span {
    display: none;
  }

  .header-note {
    display: none;
  }

  .store-header nav a {
    width: 38px;
    min-height: 36px;
    padding: 0;
  }

  .store-header nav {
    grid-column: 1;
    justify-self: end;
    gap: 7px;
  }

  .store-header nav a img {
    width: 17px;
    height: 17px;
  }

  .social-label,
  .social-arrow {
    display: none;
  }

  .store-main {
    grid-template-columns: 1fr;
    grid-template-rows: 38% 62%;
  }

  .visual-top {
    top: 12px;
    right: 12px;
    left: 12px;
  }

  .visual-top span {
    display: none;
  }

  .visual-top small {
    margin-left: auto;
  }

  .carousel-footer {
    right: 12px;
    bottom: 12px;
    left: 12px;
    gap: 8px;
  }

  .carousel-progress {
    right: 12px;
    bottom: 74px;
    left: 12px;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .carousel-arrow--previous {
    left: 12px;
  }

  .carousel-arrow--next {
    right: 12px;
  }

  .photo-picker button {
    width: 43px;
    height: 50px;
    border-radius: 10px;
  }

  .carousel-toggle {
    width: 36px;
    min-height: 36px;
    justify-content: center;
    padding: 0;
  }

  .carousel-toggle small {
    display: none;
  }

  .carousel-count {
    min-height: 36px;
    padding: 7px 9px;
  }

  .product-tabs button {
    min-height: 57px;
    grid-template-columns: 20px 1fr;
    padding: 0 13px;
    font-size: 15px;
  }

  .product-tabs button > small {
    display: none;
  }

  .product-panel {
    padding: 15px 18px;
  }

  .product-heading h1 {
    font-size: clamp(48px, 14vw, 66px);
  }

  .product-description {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.45;
  }

  .kit-contents {
    margin: 9px 0;
  }

  .kit-contents li {
    min-height: 43px;
    padding: 6px 8px;
  }

  .kit-contents b {
    font-size: 13px;
  }

  .product-action {
    padding-top: 9px;
  }

  .product-action > div small {
    display: none;
  }

  .product-action > button {
    min-height: 45px;
    box-shadow: 3px 3px 0 var(--peach);
  }

  .trust-row {
    min-height: 31px;
    font-size: 8px;
  }

  .coming-card {
    margin: 10px 0;
    padding: 14px;
    gap: 7px;
  }

  .coming-card strong {
    font-size: 22px;
  }
}

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

  .dialog-aside {
    display: none;
  }
}

@media (max-width: 620px) {
  .order-modal {
    align-items: end;
    padding: 8px;
  }

  .order-dialog {
    max-height: calc(100dvh - 16px);
    padding: 0;
    border-radius: 22px 22px 14px 14px;
  }

  .dialog-content {
    max-height: calc(100dvh - 16px);
    padding: 20px 16px;
  }

  .dialog-header {
    margin-bottom: 18px;
  }

  .dialog-header h2 {
    font-size: 36px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .order-steps span {
    min-height: 38px;
    font-size: 7px;
  }

  .order-steps b {
    display: none;
  }

  .form-section {
    padding: 14px;
  }

  #orderForm fieldset {
    padding: 14px;
  }

  .dialog-action {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dialog-action > button {
    width: 100%;
  }
}

@media (max-height: 690px) and (min-width: 901px) {
  .product-heading h1 {
    font-size: 66px;
  }

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

  .kit-contents {
    margin: 10px 0;
  }

  .kit-contents li {
    min-height: 52px;
  }

  .product-panel {
    padding-top: 22px;
    padding-bottom: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Light editorial refinement — inspired by the approved Hostinger direction. */
:root {
  --cream: #f4ebe4;
  --paper: #fffdf9;
  --cocoa: #3d2b1f;
  --deep: #4b3026;
  --rose: #b97869;
  --peach: #e7b9a7;
  --muted: #78675d;
  --line: rgba(61, 43, 31, 0.12);
  --white-line: rgba(255, 255, 255, 0.42);
  --sans: "Jost", Arial, sans-serif;
}

body {
  background:
    radial-gradient(circle at 8% 2%, rgba(255, 255, 255, 0.94), transparent 28%),
    radial-gradient(circle at 91% 96%, rgba(231, 185, 167, 0.23), transparent 27%),
    var(--cream);
}

.store {
  grid-template-rows: 84px 1fr;
  gap: 14px;
  padding: 14px;
}

.store-header {
  padding: 0 clamp(20px, 3vw, 44px);
  border: 1px solid rgba(61, 43, 31, 0.09);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.88);
  box-shadow:
    0 14px 44px rgba(78, 48, 37, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.store-header::after {
  width: 250px;
  height: 76px;
  background: radial-gradient(ellipse, rgba(231, 185, 167, 0.3), transparent 70%);
}

.brand {
  gap: 14px;
}

.brand img {
  width: 60px;
  height: 58px;
  filter: drop-shadow(0 10px 16px rgba(74, 41, 30, 0.12));
}

.brand b {
  font-size: 21px;
  letter-spacing: -0.02em;
}

.brand small {
  color: #9a7768;
  font-size: 6.5px;
  letter-spacing: 0.18em;
}

.header-note {
  padding: 9px 13px;
  border: 1px solid rgba(93, 148, 108, 0.16);
  border-radius: 999px;
  background: rgba(240, 248, 241, 0.72);
  color: #617265;
  font-size: 9px;
  letter-spacing: 0.02em;
}

.store-header nav a {
  min-height: 42px;
  padding: 0 17px;
  border-color: rgba(61, 43, 31, 0.11);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 7px 18px rgba(61, 43, 31, 0.05);
  font-size: 9px;
}

.store-header nav .social-link--instagram {
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) padding-box,
    linear-gradient(135deg, rgba(131, 58, 180, 0.5), rgba(253, 29, 29, 0.4), rgba(252, 176, 69, 0.55)) border-box;
}

.store-header nav .header-whatsapp {
  border-color: var(--deep);
  background: linear-gradient(135deg, #4b3026, #342018);
  box-shadow: 0 9px 22px rgba(61, 43, 31, 0.16);
}

.store-main {
  gap: 14px;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
}

.visual,
.product {
  border: 1px solid rgba(61, 43, 31, 0.09);
  border-radius: 32px;
  box-shadow:
    0 18px 54px rgba(78, 48, 37, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.visual {
  background: #dbc2b0;
}

.visual-main {
  transform: scale(1.002);
}

.visual:hover .visual-main {
  transform: scale(1.018);
}

.visual-shade {
  background:
    linear-gradient(180deg, rgba(44, 27, 20, 0.18), transparent 28%),
    linear-gradient(0deg, rgba(44, 27, 20, 0.5), transparent 38%);
}

.visual-top span,
.visual-top small {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 253, 249, 0.86);
  box-shadow: 0 10px 28px rgba(45, 27, 20, 0.12);
  color: var(--cocoa);
  backdrop-filter: blur(14px);
}

.carousel-arrow {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 10px 24px rgba(45, 27, 20, 0.12);
  color: var(--cocoa);
}

.carousel-footer {
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: rgba(47, 29, 22, 0.3);
  backdrop-filter: blur(16px);
}

.photo-picker button {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 7px 16px rgba(42, 26, 20, 0.14);
}

.photo-picker button.is-active {
  border-color: #fff;
  box-shadow:
    0 0 0 2px rgba(231, 185, 167, 0.85),
    0 8px 20px rgba(42, 26, 20, 0.18);
}

.product {
  background:
    radial-gradient(circle at 96% 3%, rgba(231, 185, 167, 0.2), transparent 25%),
    radial-gradient(circle at 4% 98%, rgba(240, 227, 216, 0.55), transparent 32%),
    rgba(255, 253, 249, 0.96);
}

.product::after {
  right: -155px;
  bottom: -185px;
  width: 390px;
  height: 390px;
  border-color: rgba(185, 120, 105, 0.1);
}

.product-tabs {
  gap: 7px;
  margin: 14px 16px 0;
  padding: 5px;
  border: 1px solid rgba(61, 43, 31, 0.09);
  border-radius: 18px;
  background: rgba(240, 227, 216, 0.54);
}

.product-tabs button {
  min-height: 59px;
  padding: 0 16px;
  border: 0;
  border-radius: 13px;
  font-size: 17px;
  transition:
    background 170ms ease,
    box-shadow 170ms ease,
    color 170ms ease;
}

.product-tabs button::after {
  display: none;
}

.product-tabs button.is-active {
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 8px 22px rgba(61, 43, 31, 0.07),
    inset 0 0 0 1px rgba(61, 43, 31, 0.06);
}

.product-panel {
  padding: clamp(22px, 3.1vh, 38px) clamp(24px, 3.4vw, 48px);
}

.eyebrow {
  color: #a76255;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.product-heading h1 {
  margin-top: 10px;
  font-size: clamp(58px, 5.8vw, 92px);
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.product-heading h1 em {
  color: #b36f61;
}

.product-description {
  max-width: 500px;
  color: #756359;
  font-size: 13px;
}

.kit-contents {
  gap: 8px;
  margin: 16px 0;
  border: 0;
}

.kit-contents li {
  min-height: 62px;
  padding: 10px 12px;
  border: 1px solid rgba(61, 43, 31, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 7px 17px rgba(61, 43, 31, 0.035);
}

.kit-contents span {
  color: #ad6b5e;
}

.kit-contents b {
  font-size: 16px;
  line-height: 1.05;
}

.product-action {
  padding: 16px;
  border: 1px solid rgba(61, 43, 31, 0.09);
  border-radius: 18px;
  background: rgba(246, 237, 230, 0.62);
}

.product-action > button,
.dialog-action > button {
  min-height: 54px;
  padding: 0 23px;
  border-radius: 999px;
  background: linear-gradient(135deg, #54372b, #362219);
  box-shadow: 0 12px 26px rgba(61, 43, 31, 0.18);
  letter-spacing: 0.01em;
}

.product-action > button:hover,
.dialog-action > button:hover {
  box-shadow: 0 9px 20px rgba(61, 43, 31, 0.2);
  transform: translateY(-2px);
}

.coming-card {
  border-color: rgba(61, 43, 31, 0.09);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 34px rgba(61, 43, 31, 0.05);
}

.trust-row {
  min-height: 44px;
  margin: 0 16px 14px;
  border: 1px solid rgba(61, 43, 31, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.46);
}

.order-modal {
  background: rgba(53, 34, 26, 0.56);
  backdrop-filter: blur(18px);
}

.order-dialog {
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 34px 90px rgba(45, 27, 20, 0.28);
}

.dialog-content {
  background:
    radial-gradient(circle at 96% 2%, rgba(231, 185, 167, 0.18), transparent 24%),
    var(--paper);
}

.form-section,
#orderForm fieldset {
  border-color: rgba(61, 43, 31, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 9px 26px rgba(61, 43, 31, 0.035);
}

#orderForm input,
#orderForm select,
#orderForm textarea {
  border-color: rgba(61, 43, 31, 0.14);
  border-radius: 12px;
  background-color: #fff;
}

#orderForm input:focus,
#orderForm select:focus,
#orderForm textarea:focus {
  border-color: rgba(185, 120, 105, 0.7);
  box-shadow: 0 0 0 4px rgba(185, 120, 105, 0.1);
}

@media (max-width: 900px) {
  .store {
    grid-template-rows: 66px 1fr;
    gap: 8px;
    padding: 8px;
  }

  .store-header {
    border-radius: 19px;
  }

  .brand img {
    width: 48px;
    height: 46px;
  }

  .store-main {
    gap: 8px;
    grid-template-rows: minmax(210px, 39%) minmax(0, 61%);
  }

  .visual,
  .product {
    border-radius: 24px;
  }

  .product-tabs {
    margin: 8px 9px 0;
    padding: 4px;
    border-radius: 14px;
  }

  .product-tabs button {
    min-height: 48px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 14px;
  }

  .product-panel {
    padding: 13px 17px;
  }

  .product-heading h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .kit-contents {
    gap: 5px;
    margin: 8px 0;
  }

  .kit-contents li {
    min-height: 42px;
    padding: 6px 8px;
    border-radius: 9px;
  }

  .product-action {
    padding: 9px;
    border-radius: 13px;
  }

  .product-action > button {
    min-height: 44px;
    padding: 0 16px;
  }

  .trust-row {
    min-height: 30px;
    margin: 0 9px 8px;
    border-radius: 10px;
  }
}

@media (max-width: 620px) {
  .order-dialog {
    border-radius: 24px 24px 16px 16px;
  }
}
