:root {
  --bg: #ffffff;
  --text: #171717;
  --muted: #666666;
  --line: #e9e4dc;
  --soft: #f7f5f1;
  --accent: #111111;
  --green: #1f7a45;
  --sale: #d92f2f;
  --gold: #c89b3c;
  --purple: #8f5cff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body.cart-is-open {
  overflow: hidden;
}

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

button {
  cursor: pointer;
}

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

.topbar {
  background: #2b2b2b;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  min-height: 44px;
  padding: 0 12px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  overflow: hidden;
}

.topbar-messages {
  position: relative;
  height: 44px;
  overflow: hidden;
  width: 100%;
  min-width: 280px;
}

.topbar-messages span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: opacity 400ms ease, transform 400ms ease;
  opacity: 0;
  transform: translateY(100%);
}

.topbar-messages span.active {
  opacity: 1;
  transform: translateY(0);
}

.topbar-arrow {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #ffffff;
  display: grid;
  place-items: center;
  opacity: 0.7;
}

.topbar-arrow:first-child {
  justify-self: start;
  margin-left: max(0px, calc((100vw - 1040px) / 2));
}

.topbar-arrow:last-child {
  justify-self: end;
  margin-right: max(0px, calc((100vw - 1040px) / 2));
}

.header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 0;
  backdrop-filter: none;
}

.header__inner,
.section {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 116px;
  width: 100%;
  padding: 0 16px;
}

.header__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: grid;
  place-items: center;
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
  height: 44px;
  font-size: 16px;
  color: #565656;
}

.nav a {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0;
  margin: 0;
}

.logo-brand img {
  width: 53px;
  height: 53px;
}

.header__actions {
  position: absolute;
  right: max(160px, calc((100vw - 1400px) / 2));
  top: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-btn,
.arrow,
.dot,
.thumb,
.qty button,
.mini-btn {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
}

.icon-btn {
  min-width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  position: relative;
  border-color: transparent;
  font-size: 0;
}

.icon-btn svg {
  width: 24px;
  height: 24px;
  display: block;
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #ffffff;
  font-size: 11px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #f2f2f2;
}

.hero__track {
  display: flex;
  transform: translateX(calc(var(--slide, 0) * -100%));
  transition: transform 420ms ease;
}

.hero__slide {
  min-width: 100%;
  aspect-ratio: 3.2 / 1;
  height: auto;
}

.hero picture,
.hero img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 42px;
}

.arrow.prev {
  left: 18px;
}

.arrow.next {
  right: 18px;
}

.dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}

.dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.dot.active {
  background: #111111;
}

.timer {
  background: #ffffff;
  color: #111111;
  text-align: center;
  height: 74px;
  padding: 0;
  font-weight: 400;
}

.countdown-ofertas {
  width: min(1040px, 100%);
  margin: 22px auto -12px;
  text-align: center;
}

.texto-ofertas {
  display: inline-block;
  margin-right: 10px;
  text-align: center;
  vertical-align: middle;
  max-width: 600px;
  overflow: hidden;
  white-space: pre;
  text-overflow: ellipsis;
}

.texto-ofertas span {
  font-size: 18px;
  color: #000000;
  font-weight: 600;
}

.timer__units {
  margin: 0 auto;
  padding: 0;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
}

.timer__units li {
  line-height: 20px;
  display: inline-block;
  width: 59px;
  text-align: center;
  margin: 0 2px;
  padding: 12px 0;
  background: #000000;
  color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 3px 6px #64646430;
}

.tempo-a {
  display: contents;
  font-size: 25px;
  font-weight: 700;
  width: 30px;
  text-align: center;
  color: #ffffff;
}

.tempo-b {
  display: block;
  font-size: 13px;
  line-height: 13px;
  color: #8d5efa;
  font-weight: 400;
}

.timer__units > strong {
  display: inline-block;
  position: relative;
  top: -10px;
  font-size: 25px;
  font-weight: 700;
  color: #000000;
}

.section {
  padding: 24px 0;
}

.featured-section {
  width: 100%;
  padding-top: 44px;
}

.catalog-section {
  padding-top: 24px;
}

.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto 32px;
  max-width: 1000px;
}

.section__head h2,
.section__head h3 {
  margin: 0;
  font-size: 25px;
  font-weight: 800;
  text-align: center;
  width: 100%;
}

.link-btn {
  border: 0;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 13px;
}

.shopify-purple {
  color: #111111;
  position: absolute;
  right: max(24px, calc((100vw - 1000px) / 2));
}

.tools {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px;
  gap: 12px;
  margin-bottom: 22px;
}

.input,
.textarea,
.select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--text);
  padding: 12px 13px;
}

.textarea {
  min-height: 120px;
  resize: vertical;
}

.grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 max(16px, calc((100vw - 1400px) / 2));
  gap: 8px;
}

.catalog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: center;
  margin-left: 0;
  gap: 22px;
}

.shelf-grid {
  margin-top: 94px;
}

.shelf-grid .card__media {
  aspect-ratio: 1 / 1;
}

.shelf-grid .card__info {
  min-height: 205px;
}

.shelf-more {
  padding-top: 52px;
}

.card--image-shelf {
  height: clamp(374px, calc((100vw - 480px) / 5 * 1.535), 442px);
}

.card--image-shelf .card__media {
  height: 100%;
}

.card {
  position: relative;
  min-width: 0;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.card__media {
  display: block;
  position: relative;
  overflow: hidden;
  border: 0;
  background: #fafafa;
  aspect-ratio: 4 / 5;
  margin: 0;
}

.catalog-grid .card__media {
  aspect-ratio: 1 / 1;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 240ms ease;
}

.card:hover .card__media img {
  transform: scale(1.035);
}

.badge {
  position: absolute;
  top: 8px;
  right: 8px;
  left: auto;
  padding: 6px 7px;
  border-radius: 3px;
  background: var(--sale);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.badge-tag {
  font-size: 11px;
  line-height: 1;
}

.add-card {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 0;
  border-radius: 4px;
  background: #111111;
  color: #ffffff;
  min-height: 42px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.card-bag {
  position: absolute;
  right: 18px;
  top: calc(100% - 205px - 32px);
  z-index: 3;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #151515;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  cursor: pointer;
}

.card-bag::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(24, 199, 90, 0);
  transform: scale(0.72);
  opacity: 0;
  pointer-events: none;
}

.card-bag svg {
  width: 30px;
  height: 30px;
}

.card-bag:hover,
.card-bag:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.card-bag:active {
  transform: scale(0.96);
}

.card-bag.added {
  background: #18c75a;
  color: #ffffff;
  animation: bag-added 700ms ease;
}

.card-bag.added::after {
  animation: bag-added-ring 700ms ease;
}

@keyframes bag-added {
  0% {
    transform: scale(1);
  }
  35% {
    transform: translateY(-2px) scale(1.14);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bag-added-ring {
  0% {
    border-color: rgba(24, 199, 90, 0.55);
    opacity: 0.9;
    transform: scale(0.72);
  }
  70% {
    border-color: rgba(24, 199, 90, 0.12);
    opacity: 0.35;
  }
  100% {
    border-color: rgba(24, 199, 90, 0);
    opacity: 0;
    transform: scale(1.45);
  }
}

.card:hover .add-card,
.add-card:focus {
  opacity: 1;
  transform: translateY(0);
}

.card__info {
  min-height: 205px;
  padding: 19px 22px 18px;
  text-align: center;
}

.catalog-grid .card__info {
  min-height: 158px;
}

.card__title {
  display: -webkit-box;
  min-height: 64px;
  color: #333333;
  font-size: 21px;
  line-height: 1.42;
  font-weight: 400;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 10px;
}

.price strong {
  font-size: 26px;
  font-weight: 900;
}

.price s {
  color: #b8b8b8;
  font-size: 18px;
}

.installments,
.shipping {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.shipping {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 44px;
  margin-top: 20px;
  padding: 0 10px;
  border: 1px dashed #1bd66b;
  border-radius: 6px;
  background: #ffffff;
  color: #14b755;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.full-mark {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 14px;
  font-style: italic;
  font-weight: 900;
}

.bolt-icon {
  width: 12px;
  height: 12px;
  display: inline-block;
  color: #14b755;
}

.center-more {
  display: flex;
  justify-content: center;
  padding: 68px 0 0;
}

.purple-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 102px;
  min-height: 39px;
  padding: 0 17px;
  border-radius: 3px;
  background: var(--purple);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.lower-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 88px;
}

.lower-banner img,
.lower-banner picture {
  display: block;
  width: 100%;
}

.lower-banner img {
  height: 450px;
  object-fit: cover;
}

.trustbar {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 55px max(20px, calc((100vw - 1200px) / 2)) 58px;
  border-bottom: 1px solid #e7e7e7;
  text-align: center;
}

.trustbar strong {
  display: block;
  margin-top: 12px;
  font-size: 24px;
  font-weight: 900;
}

.trustbar p {
  margin: 5px 0 0;
  color: #575757;
  font-size: 13px;
}

.trust-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #161616;
}

.trust-icon svg {
  width: 44px;
  height: 44px;
}

.product-mirror {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
  padding: 17px 0 116px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0 0 25px;
  border-top: 0;
  color: #7a7a7a;
  font-size: 13px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 40px;
  align-items: start;
}

.product-left {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.product-gallery-card,
.product-description-card,
.buy-panel {
  background: #ffffff;
}

.product-gallery-card,
.product-description-card {
  border: 1px solid #dedede;
  border-radius: 4px;
}

.product-gallery-card {
  position: relative;
  padding: 16px 16px 18px;
  min-width: 0;
}

.thumbs {
  display: flex;
  gap: 7px;
  overflow: hidden;
  margin-top: 18px;
  min-width: 0;
  max-width: 100%;
}

.thumb {
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  padding: 4px;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  background: #ffffff;
}

.thumb.active {
  border-color: #111111;
}

.thumb img,
.main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.main-img {
  border: 0;
  background: #ffffff;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 100%;
  display: block;
}

.product-gallery-card .main-img {
  margin: 0 auto;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #555555;
  font-size: 34px;
  z-index: 5;
  cursor: pointer;
}

.gallery-arrow--left {
  left: 16px;
}

.gallery-arrow--right {
  right: 16px;
}

.buy-panel {
  border: 1px solid #dedede;
  border-radius: 4px;
  padding: 34px 35px 36px;
}

.product-badges-line {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 800;
}

.product-badges-line span {
  border: 1px solid #8b3ce8;
  color: #10a651;
  padding: 5px 8px;
  border-radius: 3px;
}

.product-badges-line strong {
  background: #111111;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 3px;
}

.buy-panel h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
}

.panel-divider {
  border-top: 1px solid #dedede;
  margin: 12px 0 24px;
}

.buy-panel .price {
  justify-content: flex-start;
}

.buy-panel .price strong {
  font-size: 30px;
  font-weight: 600;
}

.pay-options {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  background: #ffffff;
  color: #555555;
  font-size: 16px;
}

.pay-options svg {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
}

.pix-line {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 10px 0 28px;
  padding: 10px 16px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  color: #555555;
  font-size: 16px;
  font-weight: 800;
}

.pix-line b {
  color: #ffffff;
  background: #18c381;
  padding: 5px 8px;
  border-radius: 999px;
}

.variant-label,
.stock-note {
  color: #777777;
  font-size: 16px;
}

.variant-grid {
  display: grid;
  grid-template-columns: repeat(5, 94px);
  gap: 14px;
  margin: 16px 0 20px;
}

.variant-thumb {
  width: 94px;
  height: 94px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  background: #ffffff;
  padding: 8px;
}

.variant-thumb.active {
  border: 2px solid #19c78a;
}

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

.stock-note {
  text-align: center;
  margin-bottom: 3px;
}

.stock-note b {
  color: #d8212f;
}

.stock-bar {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #b7b7b7;
}

.stock-bar span {
  display: block;
  width: var(--stock-width, 28%);
  height: 100%;
  background: #8b3ce8;
  transition: width 0.35s ease;
}

.deal-box {
  margin: 18px 0 28px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  padding: 16px;
  text-align: center;
}

.product-timer {
  justify-content: center;
  margin-top: 11px;
}

.deal-box .timer__units {
  display: flex;
  gap: 7px;
  transform: none;
}

.deal-box .timer__units li {
  width: 55px;
  height: 52px;
}

.deal-box .timer__units li span {
  font-size: 20px;
}

.deal-box .timer__units li small {
  font-size: 11px;
}

.buy-now {
  width: 100%;
  background: #111111;
  color: #ffffff;
  margin-bottom: 10px;
}

.qty-buy-row {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.add-green {
  background: #19c78a !important;
  border-color: #19c78a !important;
  color: #ffffff !important;
}

.shipping-calc {
  border: 1px solid #dddddd;
  border-radius: 4px;
  padding: 16px;
  text-align: center;
  margin-bottom: 15px;
}

.shipping-calc strong,
.payment-strip {
  font-size: 13px;
}

.shipping-calc div {
  display: grid;
  grid-template-columns: 1fr 125px;
  gap: 9px;
  margin-top: 12px;
}

.shipping-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 11px;
  align-items: center;
  border: 1px solid #dddddd;
  border-radius: 4px;
  padding: 12px;
  margin-bottom: 12px;
}

.shipping-card span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #8b3ce8;
  color: #ffffff;
}

.shipping-card span svg {
  width: 22px;
  height: 22px;
}

.shipping-card b {
  display: block;
  font-size: 13px;
}

.shipping-card small {
  color: #777777;
}

.payment-strip {
  border: 1px solid #dddddd;
  border-radius: 4px;
  padding: 11px;
  text-align: center;
  font-weight: 800;
}

.payment-strip .payment-box {
  justify-content: center;
  max-width: 100%;
  margin: 10px 0 0;
  gap: 6px;
}

.payment-strip .payment-icon {
  width: 47px;
  height: 31px;
  border-radius: 4px;
  font-size: 11px;
}

.payments.compact {
  justify-content: center;
  margin: 10px 0 0;
}

.accordion-row {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dddddd;
  font-size: 18px;
  font-weight: 900;
}

.product-description-card {
  min-height: 1420px;
  padding: 25px;
}

.product-description-card h2 {
  margin: 0 0 48px;
  font-size: 18px;
}

.product-description-card p {
  margin: 0 0 38px;
  font-size: 18px;
  line-height: 1.5;
}

.product__actions {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.btn {
  border: 1px solid #111111;
  border-radius: 4px;
  min-height: 50px;
  padding: 0 18px;
  background: #111111;
  color: #ffffff;
  font-weight: 700;
}

.btn.secondary {
  background: #ffffff;
  color: #111111;
}

.description {
  line-height: 1.6;
  color: #333333;
}

.description img {
  max-width: 100%;
  height: auto;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  overscroll-behavior: contain;
}

.drawer.open {
  pointer-events: auto;
  visibility: visible;
}

.drawer__shade {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer.open .drawer__shade {
  background: rgba(0, 0, 0, 0.45);
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(750px, 100vw);
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100svh;
  max-height: 100dvh;
  background: #ffffff;
  transform: translateX(100%);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
  display: grid;
  grid-template-columns: 310px 1fr;
  box-shadow: -12px 0 36px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.drawer.open .drawer__panel {
  transform: translateX(0);
}

.drawer__recommendations {
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.recommendations__title {
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  line-height: 1.4;
  text-transform: uppercase;
}

.recommendations__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recommendation-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.rec-card-body {
  display: flex;
  gap: 12px;
  align-items: center;
}

.rec-image {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #f1f5f9;
  background: #ffffff;
  flex-shrink: 0;
}

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

.rec-title {
  font-size: 12px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rec-price {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 4px;
}

.rec-btn {
  width: 100%;
  background: #00c08b;
  color: #ffffff;
  border: 0;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 150ms ease, transform 100ms ease;
  text-align: center;
}

.rec-btn:hover {
  background: #05a87b;
}

.rec-btn:active {
  transform: scale(0.98);
}

.drawer__cart-content {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  height: 100%;
  overflow: hidden;
}

.drawer__head {
  padding: 18px 20px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-title-wrap strong {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.cart-count-badge {
  background: #f1f5f9;
  color: #475569;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  display: inline-block;
}

.close-cart-btn {
  background: transparent;
  border: 0;
  font-size: 24px;
  color: #64748b;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

.close-cart-btn:hover {
  color: #0f172a;
}

.cart-shipping-progress {
  padding: 14px 20px;
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
}

.shipping-progress-text {
  font-size: 13px;
  color: #475569;
  text-align: center;
  margin-bottom: 10px;
}

.shipping-progress-text strong {
  color: #0f172a;
  font-weight: 700;
}

.shipping-progress-track {
  position: relative;
  height: 6px;
  background: #e2e8f0;
  border-radius: 999px;
  margin-right: 28px;
}

.shipping-progress-bar {
  height: 100%;
  background: #00c08b;
  border-radius: 999px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.shipping-progress-truck {
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.shipping-progress-truck.reached {
  color: #00c08b;
}

.cart-items {
  overflow-y: auto;
  min-height: 0;
  padding: 20px;
  -webkit-overflow-scrolling: touch;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.cart-item-header h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
}

.cart-item-variant {
  font-size: 11px;
  color: #64748b;
  margin-top: 4px;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.qty {
  display: inline-grid;
  grid-template-columns: 30px 34px 30px;
  align-items: center;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  overflow: hidden;
}

.qty button {
  height: 28px;
  border: 0;
  background: #f8fafc;
  color: #64748b;
  font-size: 14px;
  cursor: pointer;
  transition: background 100ms ease, color 100ms ease;
}

.qty button:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.qty span {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
}

.cart-item-remove {
  background: transparent;
  border: 0;
  color: #94a3b8;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  display: inline-grid;
  place-items: center;
  transition: color 150ms ease, background 150ms ease;
}

.cart-item-remove:hover {
  color: #ef4444;
  background: #fef2f2;
}

.drawer__foot {
  border-top: 1px solid #e2e8f0;
  padding: 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: max(20px, env(safe-area-inset-bottom));
}

.drawer__foot .cart-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.drawer__foot .cart-line strong:first-child {
  font-size: 14px;
  font-weight: 500;
  color: #475569;
}

.drawer__foot .cart-line .cart-total-price {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.finalize-checkout-btn {
  width: 100%;
  background: #00c08b !important;
  border-color: #00c08b !important;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  min-height: 48px;
  cursor: pointer;
  transition: background 150ms ease;
}

.finalize-checkout-btn:hover {
  background: #05a87b !important;
}

.continue-shopping-btn {
  width: 100%;
  background: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  min-height: 48px;
  cursor: pointer;
  transition: opacity 150ms ease;
}

.continue-shopping-btn:hover {
  opacity: 0.9;
}

/* Animação do Voo da Sacolinha (Curva Parabólica Premium) */
.cart-flyer-outer {
  position: fixed;
  z-index: 99999;
  pointer-events: none;
  /* Movimento horizontal linear/deceleração suave */
  transition: transform 0.7s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.cart-flyer-inner {
  width: 36px;
  height: 36px;
  background: #00c08b;
  color: #ffffff;
  border-radius: 999px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 192, 139, 0.4);
  /* Efeito de arremesso vertical com curva de parábola e encolhimento */
  transition: transform 0.7s cubic-bezier(0.06, 0.97, 0.47, 1.25), opacity 0.7s ease;
  transform: translateY(0) scale(1);
  opacity: 1;
}

@keyframes pulseCart {
  0% { transform: scale(1); }
  30% { transform: scale(1.35); }
  60% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

.pulse-cart {
  animation: pulseCart 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.empty {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
  color: #64748b;
}

.empty strong {
  color: #0f172a;
  font-size: 16px;
  font-weight: 700;
}

.empty .btn {
  min-height: 42px;
  margin-top: 8px;
}

@media (max-width: 920px) {
  .drawer__panel {
    width: 100vw !important;
    grid-template-columns: 1fr !important;
  }
  .drawer__recommendations {
    display: none !important;
  }
}

.admin {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 24px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  padding: 18px;
}

.panel h2,
.panel h3 {
  margin: 0 0 16px;
}

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

.form-grid label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

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

.admin-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px;
}

.admin-row img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 4px;
}

.admin-row strong {
  display: block;
  font-size: 14px;
}

.admin-actions {
  display: flex;
  gap: 8px;
}

.mini-btn {
  min-height: 34px;
  border-radius: 4px;
  padding: 0 10px;
}

.empty {
  color: var(--muted);
  text-align: center;
  padding: 34px 16px;
}

.footer {
  position: relative;
  border-top: 0;
  background: #fafafa;
  color: #5f5f5f;
  text-align: left;
}

.footer__inner {
  width: min(966px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 58px 0 52px;
}

.footer h3 {
  margin: 0 0 18px;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
}

.footer p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 10px 0;
  font-size: 15px;
}

.whatsapp {
  display: inline-block;
  width: 205px;
  min-width: 0;
  min-height: 0;
  margin-top: 13px;
  padding: 0.3rem 3.2rem 0.6rem;
  margin-top: 13px;
  border-radius: 6px;
  background: #8f5ef3;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  text-align: center;
  position: relative;
  float: left;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp svg {
  position: absolute;
  left: 6.5%;
  top: 50%;
  width: 35px;
  height: 35px;
  transform: translateY(-50%);
  color: #ffffff;
}

.title-btn {
  display: block;
  font-size: 13px;
  line-height: 1.6;
}

.d--block {
  display: block;
  font-size: 15px;
}

.footer p svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: #111111;
}

.payments,
.payment-box {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 35px;
  max-width: 325px;
}

.payment-icon {
  display: inline-grid;
  place-items: center;
  width: 55px;
  height: 38px;
  padding: 0;
  border: 1px solid #d7d7d7;
  border-radius: 6px;
  background: #ffffff;
  color: #3564b8;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.pay-visa {
  color: #173c98;
  font-style: italic;
}

.pay-master {
  position: relative;
}

.pay-master i,
.pay-master b {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  content: "";
}

.pay-master i {
  left: 14px;
  background: #eb001b;
}

.pay-master b {
  right: 14px;
  background: #f79e1b;
  opacity: 0.92;
}

.pay-hiper {
  background: #d91f26;
  color: #ffffff;
  font-size: 9px;
}

.pay-elo {
  color: #111111;
  font-size: 24px;
  font-weight: 900;
}

.pay-amex {
  background: #126bc4;
  color: #ffffff;
}

.pay-diners i {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 6px solid #1676bb;
}

.pay-pix {
  color: #8a8a8a;
  font-size: 19px;
  font-weight: 500;
}

.pay-boleto {
  gap: 2px;
  color: #222222;
}

.pay-boleto i {
  width: 32px;
  height: 12px;
  background: repeating-linear-gradient(90deg, #111 0 2px, transparent 2px 4px, #111 4px 5px, transparent 5px 7px);
}

.pay-boleto em {
  font-style: normal;
  font-size: 10px;
  font-weight: 500;
}

.verified {
  display: flex;
  align-items: center;
  gap: 18px;
}

.verified img {
  max-width: 110px;
  height: 35px;
  object-fit: contain;
}

.footer__bottom {
  width: min(966px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid #e5e5e5;
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 30px;
  color: #9a9a9a;
  font-size: 11px;
}

.socials {
  margin-left: auto;
  color: #6f6f6f;
  font-size: 18px;
}

.floating-whatsapp {
  position: fixed;
  right: 8px;
  bottom: 16px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  background: transparent;
  color: #000000;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}

.floating-whatsapp img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

@media (max-width: 1500px) and (min-width: 921px) {
  .footer__inner,
  .footer__bottom {
    width: min(966px, calc(100% - 32px));
  }

  .product-mirror {
    width: min(1200px, calc(100% - 32px));
  }

  .product-layout {
    grid-template-columns: minmax(0, 1fr) 500px;
    gap: 40px;
  }

  .thumb {
    width: 67px;
    height: 67px;
  }

  .variant-grid {
    grid-template-columns: repeat(5, 58px);
    gap: 10px;
  }

  .variant-thumb {
    width: 58px;
    height: 58px;
    padding: 3px;
  }

  .footer__inner {
    gap: 50px;
  }
}

@media (max-width: 920px) {
  .product-mirror,
  .footer__inner,
  .footer__bottom {
    width: min(100% - 32px, 1200px);
  }

  .product-layout,
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .buy-panel {
    padding-top: 0;
  }

  .main-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

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

  .card-bag {
    top: clamp(132px, 31vw, 220px);
    right: 12px;
    width: 48px;
    height: 48px;
  }

  .card-bag svg {
    width: 25px;
    height: 25px;
  }

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

  .nav {
    display: none;
  }

  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .brand {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .header__inner,
  .section {
    width: min(100% - 22px, 1240px);
  }

  .header__inner {
    min-height: 62px;
  }

  .hero__slide {
    aspect-ratio: 0.714 / 1;
  }

  .arrow {
    display: none;
  }

  .timer__row {
    display: grid;
    gap: 10px;
  }

  .timer {
    height: auto;
    padding: 10px 0 22px;
  }

  .countdown-ofertas {
    width: 100%;
    margin: 0 auto;
    display: grid;
    justify-items: center;
    gap: 10px;
  }

  .texto-ofertas {
    margin: 0;
    max-width: calc(100vw - 24px);
    white-space: normal;
  }

  .texto-ofertas span {
    font-size: 22px;
    line-height: 1.1;
    font-weight: 800;
  }

  .timer__units {
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

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

  .home-product-section {
    overflow: hidden;
  }

  .section__head {
    position: relative;
    margin-bottom: 24px;
    padding: 0 72px;
  }

  .section__head h2,
  .section__head h3 {
    font-size: 24px;
    line-height: 1.15;
  }

  .shopify-purple {
    right: 14px;
    top: 7px;
    white-space: nowrap;
  }

  .card {
    border-radius: 7px;
  }

  .card__media {
    aspect-ratio: 1 / 1;
  }

  .card__info {
    min-height: 156px;
    padding: 12px 9px 12px;
  }

  .card__title {
    height: 36px;
    min-height: 36px;
    font-size: 13px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
  }

  .price {
    margin-top: 6px;
    gap: 4px;
  }

  .price strong {
    font-size: 18px;
  }

  .price s {
    font-size: 12px;
  }

  .installments {
    font-size: 12px;
    margin-top: 3px;
  }

  .shipping {
    min-height: 35px;
    margin-top: 12px;
    padding: 0 7px;
    gap: 4px;
    font-size: 13px;
  }

  .full-mark {
    font-size: 11px;
  }

  .bolt-icon {
    width: 10px;
    height: 10px;
  }

  .card-bag {
    top: calc(100% - 156px - 34px);
    right: 10px;
    width: 42px;
    height: 42px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  }

  .card-bag.added {
    box-shadow: 0 12px 28px rgba(24, 199, 90, 0.34);
    animation: bag-added-mobile 760ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .card-bag svg {
    width: 22px;
    height: 22px;
  }

  .cart-flyer-inner {
    width: 42px;
    height: 42px;
    box-shadow: 0 10px 28px rgba(0, 192, 139, 0.48);
    transition: transform 0.62s cubic-bezier(0.06, 0.97, 0.47, 1.25), opacity 0.62s ease;
  }

  @keyframes bag-added-mobile {
    0% {
      transform: scale(1);
    }
    28% {
      transform: translateY(-4px) scale(1.24);
    }
    58% {
      transform: translateY(0) scale(0.94);
    }
    100% {
      transform: scale(1);
    }
  }

  .add-card {
    position: static;
    width: 100%;
    margin-top: 10px;
    opacity: 1;
    transform: none;
  }

  .drawer__panel {
    width: 100vw;
  }

  .drawer__head,
  .drawer__foot,
  .cart-items {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .thumbs {
    order: 2;
    flex-direction: row;
    overflow: auto;
  }

  .product h1 {
    font-size: 24px;
  }

  .admin-row {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .admin-actions {
    grid-column: 1 / -1;
  }
}

.mobile-menu {
  display: none;
}

.search-bar {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 10px;
}

.search-submit {
  min-height: 46px;
}

.collection-page {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0 80px;
}

.collection-title {
  text-align: center;
  margin-bottom: 38px;
}

.collection-title h1 {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
}

.collection-toolbar {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 54px;
  margin: 0 0 28px;
  padding: 0 0 8px;
  border-bottom: 1px solid #eeeeee;
}

.facet-panel {
  position: relative;
  min-width: 180px;
}

.facet-panel summary,
.accordion-row summary {
  list-style: none;
  cursor: pointer;
}

.facet-panel summary::-webkit-details-marker,
.accordion-row summary::-webkit-details-marker {
  display: none;
}

.facet-panel summary {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #222222;
  font-size: 14px;
}

.facet-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
  color: #333333;
  font-size: 13px;
}

.facet-muted {
  color: #999999;
}

.price-facet-row {
  display: grid;
  grid-template-columns: 92px auto 92px;
  gap: 8px;
  align-items: center;
}

.price-facet-row label {
  height: 40px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  border: 1px solid #dddddd;
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
}

.price-facet-row span {
  color: #777777;
  font-size: 12px;
  text-align: center;
}

.price-facet-row input {
  min-width: 0;
  height: 100%;
  border: 0;
  padding: 0 8px;
}

.facet-panel p {
  margin: 7px 0 0;
  color: #777777;
  font-size: 12px;
}

.collection-sort {
  margin-left: auto;
  display: grid;
  gap: 5px;
}

.collection-sort label {
  color: #555555;
  font-size: 12px;
}

.collection-sort select {
  min-width: 230px;
  min-height: 39px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  background: #ffffff;
  padding: 0 34px 0 10px;
  color: #222222;
}

.button-clear {
  min-height: 39px;
  border: 0;
  background: transparent;
  color: #555555;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.collection-count {
  margin: 0 0 20px;
  color: #777777;
  font-size: 13px;
  text-align: right;
}

.collection-page .catalog-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px 18px;
}

.collection-page .card {
  border: 0;
  border-radius: 0;
}

.collection-page .card__media {
  aspect-ratio: 1 / 1;
  background: #f8f8f8;
}

.collection-page .card__info {
  min-height: 158px;
  padding: 12px 6px 16px;
}

.collection-page .card__title {
  font-size: 12px;
  color: #333333;
}

.svg-payment {
  border: 0;
}

.svg-payment svg {
  width: 55px;
  height: 30px;
  display: block;
}

.payment-strip .svg-payment svg {
  width: 47px;
  height: 31px;
}

.socials {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.socials svg {
  width: 18px;
  height: 18px;
}

.main-img {
  border: 0;
  padding: 0;
  cursor: zoom-in;
  display: block;
  overflow: hidden;
  max-width: 100%;
}

.main-img img {
  object-fit: contain;
}

.variant-block {
  margin-bottom: 18px;
}

.variant-label b {
  color: #111111;
  font-weight: 500;
}

.variant-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0 22px;
}

.variant-pill {
  min-height: 56px;
  min-width: 90px;
  padding: 0 18px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  background: #ffffff;
  color: #111111;
  font-size: 16px;
  font-weight: 500;
  transition: border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.variant-pill.active {
  border: 2px solid #19c78a;
  background: #ffffff;
  color: #19c78a;
  box-shadow: 0 0 0 1px rgba(25, 199, 138, 0.08);
}

.installment-box {
  width: min(360px, 100%);
  margin: 10px 0 4px;
  border: 1px solid #dedede;
  border-radius: 4px;
  background: #ffffff;
  overflow: hidden;
}

.installment-box div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid #eeeeee;
  font-size: 13px;
}

.installment-box div:last-child {
  border-bottom: 0;
}

.pix-line svg,
.deal-box strong svg {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.accordion-row {
  display: block;
  min-height: auto;
}

.accordion-row summary {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion-row p {
  margin: 0 0 12px;
  color: #666666;
  font-size: 13px;
  line-height: 1.45;
}

.cep-result {
  min-height: 18px;
  margin: 10px 0 0;
  color: #13a05b;
  font-size: 12px;
  font-weight: 700;
}

.contact-page {
  padding: 70px 0 100px;
  max-width: 760px;
}

.contact-page h1 {
  margin: 0 0 18px;
  font-size: 38px;
}

@media (max-width: 1200px) {
  .collection-page .catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .mobile-menu {
    display: grid;
    position: absolute;
    left: 16px;
    top: 17px;
    width: 34px;
    height: 34px;
    place-items: center;
  }

  .mobile-menu svg {
    width: 24px;
    height: 24px;
  }

  .header__inner {
    min-height: 72px;
  }

  .header__center {
    position: absolute;
    left: 50%;
    top: 13px;
    transform: translateX(-50%);
  }
  .brand {
    position: static;
    transform: none;
  }

  .header__actions {
    right: 12px;
    top: 14px;
    gap: 4px;
  }

  .icon-btn {
    min-width: 36px;
    height: 36px;
  }

  .collection-toolbar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .collection-sort {
    margin-left: 0;
  }

  .collection-sort select {
    width: 100%;
  }

  .collection-count {
    text-align: left;
  }

  .collection-page .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

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

  .product-layout {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .product-left {
    display: contents;
  }

  .product-gallery-card {
    order: 1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .buy-panel {
    order: 2;
  }

  .product-description-card {
    order: 3;
  }

  .footer__inner,
  .footer__bottom {
    width: min(100% - 32px, 1200px);
  }

  .footer__bottom {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .socials {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .search-bar {
    grid-template-columns: 1fr;
  }

  .collection-page {
    width: min(100% - 24px, 1200px);
    padding-top: 34px;
  }

  .collection-title h1 {
    font-size: 34px;
  }

  .price-facet-row {
    grid-template-columns: 1fr auto 1fr;
  }

  .product-mirror {
    width: min(100% - 24px, 1200px);
    padding-top: 14px;
  }

  .product-gallery-card {
    min-height: auto;
    padding: 8px;
  }

  .product-gallery-card .main-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .gallery-arrow {
    top: 50%;
    transform: translateY(-50%);
  }

  .variant-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }

  .variant-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .qty-buy-row,
  .shipping-calc div {
    grid-template-columns: 1fr;
  }

  .qty-buy-row .qty {
    width: 126px;
  }

  .whatsapp {
    min-width: 0;
  }
}

/* LIGHTBOX ZOOM */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  user-select: none;
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 1010;
  line-height: 1;
}
.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: 0;
  color: #fff;
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  z-index: 1010;
}
.lightbox__arrow--left {
  left: 20px;
}
.lightbox__arrow--right {
  right: 20px;
}

/* NEW ADMIN & VARIANTS MANAGER */
.admin {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr) !important;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: -4px 0 18px;
}

.admin-stats div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 14px;
  display: grid;
  gap: 3px;
}

.admin-stats span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-stats strong {
  color: #111111;
  font-size: 28px;
  line-height: 1;
}

.admin-stats small {
  color: var(--muted);
  font-size: 12px;
}

.admin-head-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.catalog-status {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.catalog-status--idle { opacity: 0; }
.catalog-status--saving { color: #8a6d00; }
.catalog-status--saved { color: #00865f; }
.catalog-status--error { color: #c0392b; }

.admin-autosave-hint {
  margin: 4px 0 0;
  font-size: 12.5px;
  color: #00865f;
  background: #eafaf3;
  border: 1px solid #c7eedd;
  border-radius: 8px;
  padding: 8px 12px;
}

.admin-login-page {
  min-height: calc(100vh - 190px);
  display: grid;
  place-items: center;
  padding: 48px 18px;
  background: linear-gradient(180deg, #ffffff, #faf7ff);
}

.admin-login-card {
  width: min(430px, 100%);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 16px 50px rgba(18, 18, 18, 0.08);
  padding: 28px;
  display: grid;
  gap: 16px;
  text-align: center;
}

.admin-login-lock {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto;
  background: #111111;
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
}

.admin-login-card h1 {
  margin: 0;
  font-size: 28px;
}

.admin-login-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.admin-login-card label {
  display: grid;
  gap: 7px;
  text-align: left;
  color: #333333;
  font-weight: 700;
}

.admin-login-error {
  border: 1px solid rgba(220, 53, 69, 0.35);
  border-radius: 7px;
  background: rgba(220, 53, 69, 0.08);
  color: #b32635;
  padding: 10px;
  font-weight: 700;
  font-size: 13px;
}

.store-editor {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
  margin-bottom: 22px;
}

.store-editor__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.store-editor__head h3 {
  margin: 0 0 4px;
}

.store-editor__head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.store-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbfb;
  padding: 14px;
  min-width: 0;
}

.store-card--wide {
  grid-column: 1 / -1;
}

.store-card__title,
.store-section-top,
.store-actions,
.store-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-card__title {
  justify-content: space-between;
  margin-bottom: 12px;
}

.store-list {
  display: grid;
  gap: 12px;
}

.store-list--compact {
  gap: 8px;
}

.store-item,
.store-section-item {
  border: 1px solid #e6e6e6;
  border-radius: 7px;
  background: #ffffff;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.store-thumb {
  width: 100%;
  aspect-ratio: 3.2 / 1;
  border-radius: 6px;
  background: #f1f1f1;
  overflow: hidden;
}

.store-thumb--wide {
  aspect-ratio: 4 / 1;
}

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

.store-item label,
.store-section-item label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
}

.upload-inline,
.upload-drop {
  position: relative;
  cursor: pointer;
}

.upload-inline input,
.upload-drop input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.upload-inline span,
.upload-drop span {
  min-height: 42px;
  border: 1px dashed rgba(139, 60, 232, 0.55);
  border-radius: 7px;
  background: rgba(139, 60, 232, 0.055);
  color: #5b25b0;
  display: grid;
  place-items: center;
  font-weight: 800;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.upload-inline:hover span,
.upload-drop:hover span {
  border-color: #8b3ce8;
  background: rgba(139, 60, 232, 0.1);
}

.upload-drop {
  display: grid;
  gap: 6px;
}

.upload-drop small {
  color: var(--muted);
  line-height: 1.35;
}

.upload-inline.is-loading span,
.upload-drop.is-loading span {
  color: #222222;
  border-style: solid;
  background: #f5f5f5;
}

.upload-inline.is-loading span::after,
.upload-drop.is-loading span::after {
  content: "Enviando...";
}

.upload-inline.is-loading span,
.upload-drop.is-loading span {
  font-size: 0;
}

.upload-inline.is-loading span::after,
.upload-drop.is-loading span::after {
  font-size: 13px;
}

.store-toggle {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 7px !important;
  color: #222222 !important;
  font-weight: 700;
  white-space: nowrap;
}

.store-section-top {
  flex-wrap: wrap;
  align-items: end;
}

.store-section-top label:first-child {
  flex: 1 1 260px;
}

.store-line input {
  flex: 1;
}

.store-hint {
  margin: 0 0 4px;
  font-size: 12.5px;
  color: #5a4a72;
  background: #f6f1fd;
  border: 1px solid #e4d8f7;
  border-radius: 8px;
  padding: 8px 12px;
}

.section-count {
  font-size: 11px;
  font-weight: 700;
  color: #8b3ce8;
  background: rgba(139, 60, 232, 0.1);
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
}

.section-products-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.section-empty {
  color: #8a8a8a;
  font-style: italic;
}

.section-product-card {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(139, 60, 232, 0.18);
  border-radius: 10px;
  background: #fff;
  padding: 6px 8px;
}

.section-product-pos {
  flex: 0 0 auto;
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #8b3ce8;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.section-product-thumb {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #f1edf8;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.section-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-product-name {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section-product-name small {
  color: #c0392b;
  font-weight: 500;
}

.section-product-controls {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.section-product-controls .mini-btn {
  padding: 0 8px;
  min-width: 28px;
}

.mini-select {
  font-size: 12px;
  padding: 4px 6px;
  border: 1px solid #d9cef0;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  max-width: 130px;
}

@media (max-width: 600px) {
  .section-product-card {
    flex-wrap: wrap;
  }
  .section-product-name {
    flex: 1 1 100%;
    order: 3;
    white-space: normal;
  }
  .section-product-controls {
    order: 4;
    flex: 1 1 100%;
    justify-content: flex-end;
  }
}

.admin-list {
  max-height: 800px;
  overflow-y: auto;
  padding-right: 6px;
}

.admin-row {
  grid-template-columns: 58px 1fr !important;
  gap: 16px;
  padding: 14px;
}

.admin-row-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-row-price {
  font-weight: 700;
  color: #14b755;
}

.admin-row-meta {
  font-size: 11px;
  color: var(--muted);
}

.admin-stock-mini {
  width: min(220px, 100%);
  height: 6px;
  border-radius: 999px;
  background: #dedede;
  overflow: hidden;
  margin-top: 3px;
}

.admin-stock-mini span {
  display: block;
  width: var(--stock-width, 14%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8b3ce8, #20c989);
}

.admin-row-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  margin-top: 4px;
}

.admin-row-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.admin-mini-select {
  padding: 4px 8px;
  font-size: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  height: 30px;
  flex-grow: 1;
}

.admin-pill-btn {
  padding: 0 10px;
  height: 30px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid;
  cursor: pointer;
  background: none;
}
.admin-pill-btn.active {
  background: rgba(20, 183, 85, 0.1);
  color: #14b755;
  border-color: #14b755;
}
.admin-pill-btn.inactive {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border-color: #dc3545;
}

.delete-btn {
  color: #dc3545;
  border-color: #dc3545;
  background: transparent;
}
.delete-btn:hover {
  background: rgba(220, 53, 69, 0.05);
}

/* Form Styles */
.form-section-title {
  font-size: 14px;
  font-weight: 700;
  margin: 18px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px dashed var(--line);
  color: #2b2b2b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-images-manager {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.add-image-row {
  display: flex;
  gap: 8px;
}

.add-image-row input {
  flex-grow: 1;
}

.images-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.image-preview-item {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: #fdfdfd;
}

.image-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-preview-actions {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.image-preview-item:hover .image-preview-actions {
  opacity: 1;
}

.img-action-btn {
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 4px;
  border: 0;
  background: #fff;
  color: #333;
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.img-action-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.img-action-btn--delete {
  background: #dc3545;
  color: #fff;
}

.inventory-editor {
  border: 1px solid rgba(139, 60, 232, 0.22);
  border-radius: 8px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(139, 60, 232, 0.055), #ffffff);
  display: grid;
  gap: 10px;
}

.inventory-editor__head,
.inventory-editor__controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.inventory-editor__head {
  justify-content: space-between;
}

.inventory-editor__head label {
  display: block;
  margin: 0;
  color: #202020;
  font-weight: 800;
  font-size: 13px;
}

.inventory-editor__head output {
  min-width: 52px;
  min-height: 34px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: #111111;
  color: #ffffff;
  font-weight: 900;
  font-size: 18px;
}

.inventory-range {
  flex: 1;
  accent-color: #8b3ce8;
}

.inventory-number {
  width: 86px;
  text-align: center;
  font-weight: 800;
}

.inventory-preview {
  height: 10px;
  border-radius: 999px;
  background: #cfcfcf;
  overflow: hidden;
}

.inventory-preview span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8b3ce8, #20c989);
  transition: width 0.25s ease;
}

.inventory-editor small {
  color: var(--muted);
  line-height: 1.35;
}

/* Options / Variants manager */
.options-box {
  background: #fcfcfc;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 8px;
  align-items: end;
}

.variants-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 4px;
}

.variant-item-row {
  display: grid;
  grid-template-columns: 1.5fr 80px 80px 100px 30px;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px;
  background: #fff;
}

.variant-item-title {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.variant-item-row input,
.variant-item-row select {
  height: 32px;
  padding: 4px 6px;
  font-size: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.variant-avail-label input {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .admin {
    grid-template-columns: 1fr !important;
  }
  .store-editor__grid {
    grid-template-columns: 1fr;
  }
  .admin-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .store-editor__head,
  .store-line,
  .store-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .store-actions .mini-btn,
  .store-line .mini-btn {
    width: 100%;
  }
  .admin-stats {
    grid-template-columns: 1fr;
  }
  .inventory-editor__controls {
    align-items: stretch;
    flex-direction: column;
  }
  .inventory-number {
    width: 100%;
  }
}
