html {
  scroll-behavior: smooth;
}

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

.clone-hidden {
  display: none !important;
}

.clone-empty-products {
  margin: 18px 0 8px;
  padding: 22px;
  border: 1px solid #edf0f3;
  border-radius: 16px;
  background: #fff;
  color: #6b7280;
  text-align: center;
  font-size: 14px;
}

.clone-toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 80;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #1a1a1a;
  color: #fff;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
}

.clone-age-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffd000;
}

.clone-age-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: repeating-linear-gradient(-45deg, #000 0, #000 1px, transparent 1px, transparent 20px);
}

.clone-age-card {
  position: relative;
  z-index: 1;
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  border-radius: 24px;
  background: #1a1a1a;
  color: #fff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .4);
}

.clone-age-card::before {
  content: "";
  display: block;
  height: 6px;
  background: #ffd000;
}

.clone-age-inner {
  padding: 38px 32px 30px;
  text-align: center;
}

.clone-age-logo {
  margin: 0;
  color: #ffd000;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.clone-age-badge {
  width: 104px;
  height: 104px;
  margin: 28px auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffd000;
  color: #1a1a1a;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 52px;
  font-style: italic;
  font-weight: 900;
  box-shadow: 0 0 50px rgba(255, 208, 0, .35);
}

.clone-age-confirm {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 16px;
  background: #ffd000;
  color: #1a1a1a;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.clone-age-deny {
  width: 100%;
  height: 48px;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  background: transparent;
  color: rgba(255, 255, 255, .48);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.clone-cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 0, 0, .42);
}

.clone-cart-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 71;
  max-height: 88vh;
  overflow: auto;
  border-radius: 22px 22px 0 0;
  background: #fff;
  box-shadow: 0 -18px 50px rgba(0, 0, 0, .24);
}

@media (min-width: 640px) {
  .clone-cart-sheet {
    left: 8px;
    right: 8px;
    width: auto;
    border-radius: 18px 18px 0 0;
  }
}

.clone-cart-handle {
  width: 40px;
  height: 4px;
  margin: 6px auto 4px;
  border-radius: 999px;
  background: #c8ccd3;
}

.clone-cart-panel {
  padding: 0 8px 24px;
}

.clone-cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 14px;
  border-bottom: 1px solid #edf0f3;
}

.clone-cart-head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #111;
}

.clone-close-cart {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #f3f4f6;
  color: #111;
  font-size: 20px;
  line-height: 1;
}

.clone-cart-items {
  padding: 12px 0 10px;
}

.clone-cart-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  margin-bottom: 10px;
  padding: 12px 12px;
  border-radius: 12px;
  background: #f8f9fb;
}

.clone-cart-thumb {
  position: relative;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
}

.clone-cart-thumb img,
.clone-checkout-thumb img,
.clone-related-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.clone-product-hero img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  height: auto;
  max-width: min(520px, 86vw);
  max-height: 86%;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.clone-cart-info {
  min-width: 0;
  flex: 1;
}

.clone-cart-info p {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  color: #111;
}

.clone-cart-info strong {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  color: #111;
}

.clone-cart-qty {
  display: flex;
  align-items: center;
  gap: 12px;
}

.clone-cart-qty button {
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 999px;
  background: #e5e7eb;
  color: #111;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.clone-cart-qty .clone-qty-plus {
  background: #ffd000;
}

.clone-cart-qty span {
  min-width: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.clone-cart-remove {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff1f2;
  color: #ef4444;
}

.clone-cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 10px;
  border-top: 1px solid #edf0f3;
  color: #6b7280;
  font-size: 14px;
}

.clone-cart-total strong {
  color: #111;
  font-size: 18px;
}

.clone-cart-checkout,
.clone-cart-continue {
  width: 100%;
  height: 48px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

.clone-cart-checkout {
  background: #ffd000;
  color: #111;
}

.clone-cart-checkout.is-disabled,
.clone-checkout-main-button.is-disabled {
  cursor: not-allowed;
  opacity: .55;
}

.clone-minimum-warning {
  margin: -2px 0 12px;
  padding: 11px 13px;
  border: 1px solid #ffe08a;
  border-radius: 13px;
  background: #fff8d6;
  color: #7a5c00;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.clone-cart-continue {
  margin-top: 8px;
  border: 1px solid #dfe3e8;
  background: #fff;
  color: #111;
}

.clone-payment-disabled {
  cursor: not-allowed;
  opacity: .58;
  filter: grayscale(.25);
}

.clone-payment-shell {
  min-height: calc(100vh - 54px);
  padding: 20px 16px 0;
  background: #f6f8fb;
}

.clone-payment-page {
  max-width: 544px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 28px;
}

.clone-payment-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 10px;
  border: 0;
  background: transparent;
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}

.clone-payment-frame {
  border: 1px solid #d9e1ec;
  border-radius: 12px;
  background: #fff;
  padding: 25px 24px 24px;
}

.clone-payment-frame h1 {
  margin: 0 0 20px;
  color: #242b43;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: .01em;
}

.clone-payment-pix-box {
  border: 2px solid #ff9f00;
  border-radius: 10px;
  background: #fff6c8;
  padding: 19px 17px 17px;
}

.clone-payment-pix-head,
.clone-payment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.clone-payment-pix-head {
  margin-bottom: 14px;
  color: #121826;
}

.clone-payment-pix-head strong {
  margin-right: auto;
  font-size: 15px;
  font-weight: 900;
}

.clone-payment-pix-head > span:last-child {
  border: 1px solid #baf1d2;
  border-radius: 7px;
  background: #d7ffe7;
  color: #126b43;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.clone-payment-pix-icon,
.clone-payment-row-icon,
.clone-payment-lock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.clone-payment-pix-img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.clone-payment-pix-inner {
  border: 1px solid #d6dde9;
  border-radius: 8px;
  background: #f8fbff;
  padding: 18px 16px 17px;
}

.clone-payment-pix-inner p {
  margin: 0 0 18px;
  color: #59647d;
  font-size: 14px;
  line-height: 1.45;
}

.clone-payment-pix-inner label {
  display: block;
  margin-bottom: 8px;
  color: #121826;
  font-size: 13px;
  font-weight: 900;
}

.clone-payment-pix-inner input {
  width: 100%;
  height: 49px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
  color: #1f2937;
  padding: 0 13px;
  font-size: 16px;
  outline: none;
}

.clone-payment-pix-inner input:focus {
  border-color: #ff9f00;
  box-shadow: 0 0 0 3px rgba(255, 159, 0, .14);
}

.clone-payment-pix-inner input.is-invalid {
  border-color: #e53935;
  background: #fff7f7;
}

.clone-payment-pix-value {
  display: block;
  margin: 18px 0 26px;
  color: #f59a00;
  font-size: 17px;
  font-weight: 900;
}

.clone-generate-pix {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 8px;
  background: #fb9708;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 7px 14px rgba(211, 110, 0, .16);
  transition: transform .15s ease, opacity .15s ease;
}

.clone-generate-pix:active {
  transform: scale(.99);
}

.clone-generate-pix:disabled {
  opacity: .72;
}

.clone-payment-row {
  width: 100%;
  min-height: 58px;
  margin-top: 12px;
  border: 1px solid #e5e9f0;
  border-radius: 8px;
  background: #fff;
  padding: 0 18px;
  color: #6f7889;
  text-align: left;
}

.clone-payment-row > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.clone-payment-row strong {
  color: #777f91;
  font-size: 16px;
  font-weight: 900;
}

.clone-payment-row small {
  color: #ff6b72;
  font-size: 12px;
  line-height: 1.25;
  text-align: right;
}

.clone-payment-frame .clone-status {
  margin-top: 13px;
}

.clone-payment-trust-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 78px;
  padding: 0 6px;
  color: #65728a;
}

.clone-payment-trust-footer div {
  display: grid;
  gap: 1px;
}

.clone-payment-trust-footer strong {
  color: #26304a;
  font-size: 11px;
  font-weight: 900;
}

.clone-payment-trust-footer span {
  font-size: 11px;
  line-height: 1.2;
}

.clone-payment-trust-footer div:last-child {
  grid-template-columns: auto auto;
  column-gap: 8px;
  align-items: center;
  text-align: left;
}

.clone-payment-trust-footer div:last-child span:last-child {
  grid-column: 2;
}

.clone-pix-selected {
  border-color: #ffd000 !important;
  background: #fff9d7 !important;
}

.clone-status {
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 14px;
  font-size: 13px;
  color: #333;
}

.clone-status-success {
  border-color: #9be7c7;
  background: #eefcf6;
  color: #047857;
  font-weight: 700;
}

.clone-status-error {
  border-color: #fecaca;
  background: #fff1f2;
  color: #b91c1c;
  font-weight: 700;
}

.clone-pix-result {
  margin: -4px 0 16px;
}

.clone-pix-card {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
}

.clone-pix-qr {
  display: block;
  width: min(240px, 100%);
  aspect-ratio: 1;
  object-fit: contain;
  margin: 0 auto 14px;
  border: 1px solid #eef0f3;
  border-radius: 12px;
  background: #fff;
}

.clone-pix-copy label {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 900;
  color: #1f2937;
}

.clone-pix-code {
  width: 100%;
  min-height: 104px;
  resize: vertical;
  border: 1px solid #dfe3e8;
  border-radius: 14px;
  padding: 12px;
  background: #f9fafb;
  color: #111827;
  font-size: 12px;
  line-height: 1.45;
  word-break: break-all;
}

.clone-copy-pix {
  width: 100%;
  min-height: 46px;
  margin-top: 10px;
  border: 0;
  border-radius: 999px;
  background: #009688;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.clone-pix-id {
  margin-top: 10px;
  color: #6b7280;
  font-size: 11px;
  text-align: center;
}

.clone-stepper {
  display: flex;
  align-items: center;
  margin: 0 0 24px;
}

.clone-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.clone-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #e5e7eb;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 900;
}

.clone-step small {
  color: #9ca3af;
  font-size: 10px;
  font-weight: 800;
}

.clone-step.is-active span,
.clone-step.is-done span {
  background: #ffd000;
  color: #1a1a1a;
}

.clone-step.is-active small,
.clone-step.is-done small {
  color: #1a1a1a;
}

.clone-step-line {
  flex: 1;
  height: 2px;
  margin: 0 8px 18px;
  border-radius: 999px;
  background: #e5e7eb;
}

.clone-step-line.is-done {
  background: #ffd000;
}

.clone-checkout-title {
  margin: 0 0 18px;
  color: #1a1a1a;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.clone-checkout-cart-card,
.clone-checkout-total-card {
  margin-bottom: 24px;
  border: 1px solid #edf0f3;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(17, 24, 39, .04);
}

.clone-checkout-cart-row {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr 32px;
  gap: 12px;
  min-height: 132px;
  padding: 14px 12px;
}

.clone-checkout-cart-row + .clone-checkout-cart-row {
  border-top: 1px solid #f0f2f4;
}

.clone-checkout-cart-row img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  border: 1px solid #f0f2f4;
  object-fit: contain;
}

.clone-checkout-cart-info p {
  margin: 0 0 8px;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.clone-checkout-cart-info strong {
  color: #111;
  font-size: 14px;
}

.clone-checkout-cart-qty {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.clone-checkout-cart-qty button,
.clone-checkout-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #e5e7eb;
  border-radius: 9px;
  background: #fff;
  color: #1a1a1a;
  font-weight: 900;
}

.clone-checkout-cart-qty button:last-child {
  border-color: #ffd000;
  background: #ffd000;
}

.clone-checkout-remove {
  color: #a8b0bd;
}

.clone-checkout-total-card {
  padding: 16px;
}

.clone-checkout-total-card div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  color: #6b7280;
  font-size: 14px;
}

.clone-checkout-total-card .is-total {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid #edf0f3;
  color: #111;
  font-size: 16px;
  font-weight: 900;
}

.clone-checkout-total-card .is-total strong {
  color: #e53935;
}

.clone-checkout-total-card .is-free {
  color: #00a651;
}

.clone-checkout-main-button,
.clone-bottom-primary {
  width: 100%;
  height: 56px;
  border-radius: 16px;
  background: #ffd000;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 900;
}

.clone-empty-checkout {
  padding: 34px 16px;
  color: #6b7280;
  text-align: center;
  font-size: 14px;
}

.clone-address-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.clone-address-head button {
  width: 40px;
  height: 40px;
  border: 1px solid #edf0f3;
  border-radius: 999px;
  background: #fff;
  font-size: 22px;
  font-weight: 900;
}

.clone-address-head h1 {
  margin: 0;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.clone-input-label,
.clone-address-manual label {
  display: block;
  margin-bottom: 8px;
  color: #4b5563;
  font-size: 12px;
  font-weight: 700;
}

.clone-input,
.clone-cep-search input {
  width: 100%;
  height: 46px;
  padding: 0 16px;
  border: 1px solid #e5e7eb;
  border-radius: 13px;
  background: #f9fafb;
  color: #111;
  font-size: 15px;
  outline: none;
}

.clone-input:focus,
.clone-cep-search input:focus {
  border-color: #ffd000;
  box-shadow: 0 0 0 2px rgba(255, 208, 0, .22);
}

.clone-input.is-invalid,
.clone-cep-search input.is-invalid {
  border-color: #e53935;
  background: #fff7f7;
}

.clone-cep-search {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.clone-cep-search span {
  position: absolute;
  left: 13px;
  color: #9ca3af;
}

.clone-cep-search input {
  padding-left: 40px;
  padding-right: 92px;
  border-color: #ffd000;
  background: #eef4ff;
}

.clone-cep-search button {
  position: absolute;
  right: 7px;
  height: 32px;
  padding: 0 15px;
  border-radius: 10px;
  background: #ffd000;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 900;
}

.clone-location-button {
  width: 100%;
  height: 48px;
  margin-bottom: 8px;
  border: 2px solid #ffd000;
  border-radius: 13px;
  background: #fffdf1;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 900;
}

.clone-location-help {
  margin: 0 0 12px;
  color: #9ca3af;
  text-align: center;
  font-size: 10px;
}

.clone-manual-toggle {
  width: 100%;
  margin: 0 0 16px;
  padding: 8px;
  border-bottom: 1px solid #edf0f3;
  color: #6b7280;
  font-size: 13px;
  font-weight: 700;
}

.clone-address-manual {
  display: grid;
  gap: 12px;
}

.clone-address-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.clone-no-number {
  display: flex !important;
  align-items: center;
  gap: 8px;
  margin: -3px 0 0 !important;
}

.clone-cep-status {
  border: 1px solid #dbeafe;
  border-radius: 13px;
  background: #eff6ff;
  padding: 12px;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 700;
}

.clone-checkout-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px max(16px, calc((100vw - 500px) / 2 + 16px));
  border-top: 1px solid #edf0f3;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .08);
}

.clone-checkout-bottom p {
  margin: 0 0 2px;
  color: #6b7280;
  font-size: 10px;
}

.clone-checkout-bottom strong {
  color: #e53935;
  font-size: 15px;
  font-weight: 900;
}

.clone-checkout-bottom span {
  color: #9ca3af;
  font-size: 10px;
  font-weight: 500;
}

.clone-checkout-bottom > div:last-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.clone-bottom-secondary {
  height: 40px;
  padding: 0 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
}

.clone-bottom-primary {
  width: auto;
  height: 40px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 13px;
}

.clone-legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 22px 16px 34px;
}

.clone-legal-back {
  display: inline-flex;
  margin-bottom: 14px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 700;
}

.clone-legal-card {
  padding: 24px;
  border: 1px solid #edf0f3;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(17, 24, 39, .04);
}

.clone-legal-kicker {
  margin: 0 0 6px;
  color: #8a6c00;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.clone-legal-meta {
  display: block;
  margin: -4px 0 18px;
  color: #9ca3af;
  font-size: 12px;
}

.clone-legal-card h1 {
  margin: 0 0 14px;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #111;
}

.clone-legal-card h2 {
  margin: 20px 0 8px;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: #111;
}

.clone-legal-card p {
  margin: 0 0 10px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}

.clone-legal-card ul {
  margin: 8px 0 12px;
  padding-left: 19px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.55;
}

.clone-legal-card li + li {
  margin-top: 6px;
}

.clone-product-page {
  min-height: 100vh;
  padding-bottom: 88px;
  background: #fff;
  color: #111;
}

.clone-product-hero {
  position: relative;
  height: clamp(210px, 35vw, 380px);
  margin: 0 16px 16px;
  overflow: hidden;
  border-radius: 0 0 18px 18px;
  background: #f7f7f7;
}

.clone-product-main {
  padding: 0 16px 24px;
}

.clone-product-back {
  margin-bottom: 12px;
  border: 0;
  background: transparent;
  color: #6b7280;
  font-size: 14px;
  font-weight: 700;
}

.clone-product-eyebrow {
  margin: 0 0 4px;
  color: #9ca3af;
  font-size: 11px;
  letter-spacing: .08em;
}

.clone-product-main h1 {
  max-width: 960px;
  margin: 0 0 6px;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 900;
  line-height: 1.15;
}

.clone-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.clone-rating span {
  color: #ffd000;
  font-size: 14px;
}

.clone-rating small {
  color: #6b7280;
  font-size: 12px;
}

.clone-product-prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}

.clone-product-prices span {
  color: #9ca3af;
  font-size: 13px;
  text-decoration: line-through;
}

.clone-product-prices strong {
  font-size: 24px;
  font-weight: 900;
}

.clone-product-description h2,
.clone-related-section h2 {
  margin: 0 0 8px;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.clone-product-description p {
  max-width: 760px;
  margin: 0 0 22px;
  color: #4b5563;
  font-size: 13px;
}

.clone-product-category {
  width: 102px;
  margin-bottom: 18px;
  padding: 12px 10px;
  border-radius: 12px;
  background: #f8f9fb;
}

.clone-product-category small {
  display: block;
  color: #9ca3af;
  font-size: 10px;
  letter-spacing: .12em;
}

.clone-product-category strong {
  display: block;
  margin-top: 4px;
  font-size: 13px;
}

.clone-product-badges {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #4b5563;
  font-size: 12px;
}

.clone-product-badges span::first-letter {
  color: #ffd000;
}

.clone-product-reviews {
  padding: 0 16px 24px;
}

.clone-verify-box {
  max-width: 760px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid #edf0f3;
  border-left: 4px solid #ffd000;
  border-radius: 12px;
  background: #fffdf1;
}

.clone-verify-box strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 900;
  color: #111;
}

.clone-verify-box span {
  display: block;
  color: #4b5563;
  font-size: 12px;
}

.clone-product-reviews h2 {
  margin: 0 0 10px;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.clone-review-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 760px;
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid #edf0f3;
  border-radius: 14px;
  background: #fff;
}

.clone-review-summary div {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 76px;
  padding-right: 14px;
  border-right: 1px solid #edf0f3;
}

.clone-review-summary strong {
  color: #111;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.clone-review-summary span {
  color: #6b7280;
  font-size: 11px;
}

.clone-review-summary p {
  margin: 0 0 3px;
  color: #111;
  font-size: 13px;
  font-weight: 800;
}

.clone-review-summary small {
  color: #9ca3af;
  font-size: 11px;
}

.clone-review-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 900px;
}

.clone-review-list article {
  min-height: 116px;
  padding: 13px;
  border: 1px solid #edf0f3;
  border-radius: 12px;
  background: #fff;
}

.clone-review-stars {
  display: block;
  margin-bottom: 7px;
  color: #ffd000;
  font-size: 13px;
  font-weight: 900;
}

.clone-review-list p {
  margin: 0 0 10px;
  color: #374151;
  font-size: 12px;
  line-height: 1.35;
}

.clone-review-list small {
  color: #9ca3af;
  font-size: 11px;
}

.clone-related-section {
  padding: 22px 16px 26px;
  background: #f5f5f5;
}

.clone-related-list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.clone-related-card {
  position: relative;
  width: 128px;
  flex: 0 0 128px;
  min-height: 236px;
  padding: 8px 8px 48px;
  border: 1px solid #eceff3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
}

.clone-related-image {
  position: relative;
  height: 116px;
  margin-bottom: 9px;
}

.clone-related-discount {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 4px;
  background: #00897b;
  color: #fff;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 800;
}

.clone-related-card h3 {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.clone-related-old {
  margin: 0;
  color: #ef4444;
  font-size: 12px;
  text-decoration: line-through;
}

.clone-related-price {
  margin: 0;
  color: #00897b;
  font-size: 15px;
  font-weight: 900;
}

.clone-related-add {
  position: absolute;
  right: 8px;
  bottom: 10px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #00897b;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.clone-product-footer {
  min-height: 26px;
  padding: 14px;
  background: #111;
  color: rgba(255, 255, 255, .55);
  text-align: center;
  font-size: 12px;
}

.clone-product-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 114px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 16px 12px;
  border-top: 1px solid #edf0f3;
  background: #fff;
}

.clone-product-qty {
  height: 46px;
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  border: 1px solid #dfe3e8;
  border-radius: 999px;
}

.clone-product-qty button {
  border: 0;
  background: transparent;
  font-size: 22px;
}

.clone-product-qty span {
  text-align: center;
  font-weight: 800;
}

.clone-detail-add {
  height: 46px;
  border: 0;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffd000;
  color: #111;
  font-weight: 900;
}

.clone-checkout-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
}

.clone-checkout-thumb {
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
}

.clone-checkout-name {
  min-width: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.35;
}

.clone-checkout-item strong {
  white-space: nowrap;
  font-size: 13px;
}

.clone-checkout-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid #edf0f3;
  font-weight: 900;
}

.clone-checkout-total strong {
  color: #ef4444;
}

.clone-checkout-delivery {
  display: flex;
  justify-content: space-between;
  padding-top: 4px;
  color: #6b7280;
  font-size: 13px;
}

.clone-checkout-delivery strong {
  color: #16a34a;
}

@media (max-width: 560px) {
  .clone-product-bar {
    grid-template-columns: 112px minmax(0, 1fr);
    padding-left: 10px;
    padding-right: 10px;
  }

  .clone-product-hero {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
  }

  .clone-review-list {
    grid-template-columns: 1fr;
  }
}
