:root {
  --yellow: #f5df46;
  --yellow-dark: #dec529;
  --ink: #151515;
  --muted: #757575;
  --line: #ebebeb;
  --paper: #fff;
  --soft: #f7f7f5;
  --green: #138854;
  --radius: 16px;
  --max: 1200px;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
}
body.cart-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}
.announcement {
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 12px;
}
.announcement span {
  padding-inline: 7px;
  color: var(--yellow);
}
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgb(255 255 255 / 94%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 43px;
  height: 50px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
}
.brand__icon:before {
  position: absolute;
  top: 3px;
  width: 15px;
  height: 2px;
  background: var(--yellow);
  content: "";
}
.brand__icon b {
  padding-top: 4px;
  color: var(--yellow);
  font-size: 19px;
  letter-spacing: -2px;
}
.brand__copy strong,
.brand__copy small {
  display: block;
}
.brand__copy strong {
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -1px;
}
.brand__copy strong span {
  color: #bda71f;
}
.brand__copy small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 1px;
}
.nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
}
.nav a:hover,
.footer a:hover {
  color: #ad9714;
}
.cart-button {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: none;
  font-size: 14px;
  font-weight: 600;
}
.cart-button svg,
.search svg {
  width: 21px;
  height: 21px;
}
.cart-count {
  display: grid;
  place-items: center;
  min-width: 23px;
  height: 23px;
  padding-inline: 5px;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 12px;
}
.hero {
  overflow: hidden;
  background: linear-gradient(125deg, #fafaf8 0%, #fff 62%, #fffbea 100%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: 485px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
}
.hero h1 {
  max-width: 540px;
  margin: 22px 0 16px;
  font-size: clamp(42px, 6vw, 73px);
  line-height: 1.03;
  letter-spacing: -4px;
}
.hero h1 > span {
  position: relative;
  white-space: nowrap;
}
.hero h1 > span:after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  z-index: -0;
  height: 9px;
  background: var(--yellow);
  opacity: 0.8;
  content: "";
}
.hero__content > p {
  max-width: 480px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}
.button--dark {
  background: var(--ink);
  color: #fff;
}
.button--dark:hover {
  background: #343434;
}
.button--yellow {
  background: var(--yellow);
}
.button--yellow:hover {
  background: var(--yellow-dark);
}
.hero__visual {
  position: relative;
  min-height: 380px;
}
.hero__glow {
  position: absolute;
  top: 48px;
  left: 15%;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #f5df4680 0%,
    #f5df4619 55%,
    transparent 71%
  );
}
.phone {
  position: absolute;
  width: 155px;
  height: 270px;
  border: 7px solid #191919;
  border-radius: 27px;
  background: #f4f4f4;
  box-shadow: 0 18px 60px #00000018;
}
.phone > span {
  position: absolute;
  top: 13px;
  left: 12px;
  width: 49px;
  height: 51px;
  border: 2px solid #aaa;
  border-radius: 13px;
  background:
    radial-gradient(circle at 30% 30%, #222 0 6px, transparent 7px),
    radial-gradient(circle at 72% 70%, #222 0 6px, transparent 7px), #d9d9d9;
}
.phone--back {
  top: 71px;
  left: 23%;
  transform: rotate(-13deg);
  background: #fff;
}
.phone--front {
  top: 60px;
  left: 43%;
  transform: rotate(11deg);
  background: var(--yellow);
}
.phone--front i {
  position: absolute;
  right: 17px;
  bottom: 17px;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: -3px;
}
.hero__badge {
  position: absolute;
  right: 13%;
  bottom: 50px;
  padding: 12px 15px;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 9px 30px #00000010;
  font-size: 17px;
  font-weight: 800;
}
.hero__badge small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-block: 31px;
  border-bottom: 1px solid var(--line);
}
.benefits > div {
  display: flex;
  align-items: center;
  gap: 11px;
}
.benefits > div > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fffbea;
  color: #887508;
  font-weight: 700;
}
.benefits p {
  margin: 0;
}
.benefits strong,
.benefits small {
  display: block;
}
.benefits strong {
  font-size: 13px;
}
.benefits small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}
.catalog {
  padding-block: 77px 92px;
  scroll-margin-top: 100px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 26px;
}
.section-heading h2,
.about h2 {
  margin: 8px 0 0;
  font-size: 32px;
  letter-spacing: -1.3px;
}
.product-count {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 29px;
}
.search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 310px;
  height: 44px;
  padding-inline: 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #858585;
}
.search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 13px;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.filter-button {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #555;
  font-size: 12px;
}
.filter-button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px 19px;
}
.product-card {
  min-width: 0;
}
.product-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1.02;
  border-radius: 11px;
  background: #f4f4f4;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-card:hover .product-card__image img {
  transform: scale(1.045);
}
.product-card__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 8px;
  border-radius: 6px;
  background: #fff;
  font-size: 10px;
  font-weight: 650;
}
.product-card__tag--sold-out {
  background: var(--ink);
  color: #fff;
}
.product-card__body {
  padding-top: 13px;
}
.product-card__category {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.product-card h3 {
  overflow: hidden;
  margin: 7px 0 5px;
  font-size: 14px;
  font-weight: 630;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-card__stock {
  min-height: 16px;
  margin: 0;
  color: #777;
  font-size: 11px;
}
.product-card__stock.is-low {
  color: #ae7900;
}
.product-card__stock.is-empty {
  color: #b13a3a;
}
.product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
}
.product-card__price {
  font-size: 16px;
  font-weight: 780;
}
.add-button {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border: 0;
  border-radius: 8px;
  background: var(--yellow);
  font-size: 19px;
}
.add-button:hover:not(:disabled) {
  background: var(--yellow-dark);
}
.add-button:disabled {
  cursor: not-allowed;
  background: #ededed;
  color: #aaa;
}
.empty-results {
  grid-column: 1/-1;
  padding: 60px 20px;
  text-align: center;
  color: var(--muted);
}
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 85px;
  padding: 37px 42px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
}
.about .eyebrow {
  color: #c3c3c3;
}
.about h2 {
  font-size: 27px;
}
.about p {
  max-width: 560px;
  margin: 11px 0 0;
  color: #c5c5c5;
  font-size: 13px;
  line-height: 1.65;
}
.about__address {
  display: inline-block;
  margin-top: 15px;
  color: var(--yellow);
  font-size: 12px;
  line-height: 1.6;
}
.about__address:hover {
  text-decoration: underline;
}
.about .button {
  flex-shrink: 0;
  color: var(--ink);
}
.footer {
  padding-block: 22px;
  border-top: 1px solid var(--line);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: var(--muted);
  font-size: 11px;
}
.overlay {
  position: fixed;
  inset: 0;
  z-index: 19;
  background: #0008;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  display: flex;
  width: min(460px, 100%);
  flex-direction: column;
  background: #fff;
  box-shadow: -12px 0 50px #00000012;
  transform: translateX(101%);
  transition: transform 0.26s ease;
}
.cart-drawer.is-open {
  transform: translateX(0);
}
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 23px;
  border-bottom: 1px solid var(--line);
}
.cart-drawer__header h2 {
  margin: 6px 0 0;
  font-size: 25px;
  letter-spacing: -0.8px;
}
.icon-button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: #f4f4f4;
  font-size: 23px;
}
.cart-items {
  overflow-y: auto;
  flex: 1;
  padding: 17px 23px;
}
.cart-empty {
  display: grid;
  min-height: 250px;
  place-content: center;
  text-align: center;
}
.cart-empty strong {
  font-size: 16px;
}
.cart-empty p {
  max-width: 230px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.cart-item {
  display: grid;
  grid-template-columns: 73px 1fr;
  gap: 13px;
  padding-block: 14px;
  border-bottom: 1px solid var(--line);
}
.cart-item > img {
  width: 73px;
  height: 78px;
  border-radius: 8px;
  object-fit: cover;
}
.cart-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.cart-item__top h3 {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}
.cart-item__remove {
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 19px;
}
.cart-item__price {
  margin: 5px 0 9px;
  font-size: 13px;
  font-weight: 700;
}
.quantity-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
}
.quantity-control button {
  width: 28px;
  height: 27px;
  border: 0;
  background: transparent;
}
.quantity-control span {
  min-width: 24px;
  text-align: center;
  font-size: 12px;
}
.cart-footer {
  padding: 19px 23px 23px;
  border-top: 1px solid var(--line);
}
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.cart-total strong {
  font-size: 21px;
}
.cart-footer > p {
  margin: 10px 0 15px;
  color: var(--muted);
  font-size: 11px;
}
.button--whatsapp {
  width: 100%;
  background: #18a95c;
  color: #fff;
}
.button--whatsapp:hover {
  background: #128b4b;
}
.button--whatsapp:disabled {
  cursor: not-allowed;
  background: #d1d1d1;
}
.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  padding: 12px 16px;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 980px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .search {
    width: 100%;
  }
  .hero__inner {
    min-height: 415px;
  }
  .phone--back {
    left: 17%;
  }
  .phone--front {
    left: 38%;
  }
  .hero__badge {
    right: 3%;
  }
}
@media (max-width: 650px) {
  .container {
    width: calc(100% - 32px);
  }
  .announcement {
    font-size: 10px;
  }
  .header__inner {
    min-height: 70px;
  }
  .brand__icon {
    width: 37px;
    height: 43px;
  }
  .brand__copy strong {
    font-size: 17px;
  }
  .brand__copy small {
    font-size: 7px;
  }
  .nav,
  .cart-button__label {
    display: none;
  }
  .hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 48px 18px;
  }
  .hero h1 {
    margin-top: 18px;
    letter-spacing: -2.5px;
  }
  .hero__content > p {
    font-size: 14px;
  }
  .hero__visual {
    min-height: 280px;
  }
  .hero__glow {
    top: 10px;
    left: calc(50% - 135px);
    width: 270px;
    height: 270px;
  }
  .phone {
    width: 116px;
    height: 201px;
    border-width: 5px;
    border-radius: 21px;
  }
  .phone--back {
    top: 42px;
    left: calc(50% - 104px);
  }
  .phone--front {
    top: 33px;
    left: calc(50% - 13px);
  }
  .hero__badge {
    right: 5%;
    bottom: 33px;
    font-size: 14px;
  }
  .benefits {
    gap: 15px;
    padding-block: 22px;
  }
  .benefits > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
  .benefits > div > span {
    width: 32px;
    height: 32px;
  }
  .benefits strong {
    font-size: 11px;
    line-height: 1.3;
  }
  .benefits small {
    font-size: 10px;
    line-height: 1.4;
  }
  .catalog {
    padding-block: 60px 67px;
  }
  .section-heading h2 {
    font-size: 26px;
  }
  .product-count {
    font-size: 11px;
  }
  .filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 3px;
  }
  .filter-button {
    flex-shrink: 0;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 12px;
  }
  .product-card h3 {
    font-size: 12px;
  }
  .product-card__price {
    font-size: 14px;
  }
  .add-button {
    width: 34px;
    height: 34px;
  }
  .about {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
    padding: 27px 22px;
  }
  .about h2 {
    font-size: 23px;
  }
  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Pesquisa, disponibilidade e ordenação */
[hidden] {
  display: none !important;
}
.catalog-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin: -8px 0 24px;
  color: var(--muted);
  font-size: 12px;
}
.stock-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.stock-filter input {
  width: 15px;
  height: 15px;
  accent-color: var(--ink);
}
.sort-control {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sort-control select {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
}
.product-card__image {
  display: block;
}
.product-card__view {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 9px;
  border-radius: 7px;
  background: #ffffffec;
  text-align: center;
  font-size: 11px;
  font-weight: 650;
  opacity: 0;
  transform: translateY(5px);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.product-card:hover .product-card__view {
  opacity: 1;
  transform: translateY(0);
}
.product-card h3 a:hover {
  color: #9d8710;
}

/* Página individual do produto */
.product-detail {
  padding-block: 32px 90px;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 35px;
  color: var(--muted);
  font-size: 12px;
}
.breadcrumbs a:hover {
  color: var(--ink);
}
.breadcrumbs > span:last-child {
  color: var(--ink);
}
.product-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
  align-items: start;
  gap: 72px;
}
.product-gallery__main {
  overflow: hidden;
  aspect-ratio: 1/1.02;
  border-radius: 13px;
  background: var(--soft);
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
  margin-top: 12px;
}
.gallery-thumb {
  overflow: hidden;
  aspect-ratio: 1;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--soft);
  padding: 0;
}
.gallery-thumb.is-active {
  border-color: var(--ink);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-information {
  padding-top: 22px;
}
.product-information h1 {
  margin: 15px 0 9px;
  font-size: clamp(28px, 3.4vw, 43px);
  line-height: 1.1;
  letter-spacing: -1.7px;
}
.product-information__tag {
  display: inline-block;
  margin: 4px 0 20px;
  padding: 6px 9px;
  border-radius: 6px;
  background: #fffbea;
  color: #8d7809;
  font-size: 11px;
}
.product-information__price {
  display: block;
  margin-top: 18px;
  font-size: 34px;
  letter-spacing: -1.1px;
}
.product-information__installment {
  margin: 6px 0 22px;
  color: var(--muted);
  font-size: 12px;
}
.product-information__description {
  padding-block: 19px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #606060;
  font-size: 14px;
  line-height: 1.75;
}
.product-information__stock {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0;
  color: #187e4f;
  font-size: 13px;
}
.product-information__stock > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1c9d60;
}
.product-information__stock.is-empty {
  color: #a23b3b;
}
.product-information__stock.is-empty > span {
  background: #c74f4f;
}
.product-information__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.product-information__actions .button {
  flex: 1;
  white-space: nowrap;
}
.product-information__actions .button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
.button--outline {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.button--outline:hover {
  border-color: var(--ink);
}
.product-information__benefits {
  display: grid;
  gap: 10px;
  margin-top: 25px;
  color: #666;
  font-size: 12px;
}
.related-products {
  margin-top: 92px;
}

/* Rodapé institucional */
.footer {
  padding: 60px 0 0;
  border-top: 0;
  background: var(--ink);
  color: #fff;
}
.footer__main {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 1fr;
  gap: 65px;
  padding-bottom: 48px;
}
.brand--footer .brand__icon {
  border-color: var(--yellow);
}
.brand--footer .brand__copy strong {
  color: #fff;
}
.brand--footer .brand__copy small {
  color: #a5a5a5;
}
.footer__about > p {
  max-width: 375px;
  margin: 19px 0 0;
  color: #b6b6b6;
  font-size: 13px;
  line-height: 1.75;
}
.footer__column {
  display: grid;
  align-content: start;
  gap: 13px;
}
.footer__column h3 {
  margin: 0 0 4px;
  font-size: 14px;
}
.footer__column > a {
  color: #b6b6b6;
  font-size: 12px;
  line-height: 1.7;
}
.footer__column > a:hover {
  color: var(--yellow);
}
.footer__column .footer__map {
  color: var(--yellow);
}
.footer__inner {
  padding-block: 20px;
  border-top: 1px solid #363636;
  color: #a3a3a3;
}

@media (max-width: 980px) {
  .product-page {
    gap: 37px;
  }
  .footer__main {
    gap: 35px;
  }
  .product-information__actions {
    flex-direction: column;
  }
}
@media (max-width: 650px) {
  .catalog-options {
    align-items: flex-start;
    flex-direction: column;
    margin-top: -9px;
  }
  .sort-control {
    width: 100%;
    justify-content: space-between;
  }
  .product-card__view {
    display: none;
  }
  .product-detail {
    padding-block: 22px 65px;
  }
  .breadcrumbs {
    gap: 6px;
    margin-bottom: 22px;
    font-size: 11px;
  }
  .product-page {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-information {
    padding-top: 7px;
  }
  .product-information h1 {
    font-size: 30px;
  }
  .product-information__price {
    font-size: 30px;
  }
  .product-information__actions {
    flex-direction: column;
  }
  .related-products {
    margin-top: 65px;
  }
  .footer {
    padding-top: 42px;
  }
  .footer__main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 35px;
  }
  .footer__inner {
    gap: 7px;
    padding-block: 17px;
  }
}

/* Painel administrativo */
.admin-body {
  min-height: 100vh;
  background: #f8f8f6;
}
.admin-login {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}
.login-card {
  width: min(440px, 100%);
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.login-card__eyebrow {
  display: flex;
  margin-top: 38px;
}
.login-card h1 {
  margin: 12px 0 8px;
  font-size: 31px;
  letter-spacing: -1px;
}
.login-card > p {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.admin-form,
.product-form {
  display: grid;
  gap: 17px;
}
.admin-form label,
.product-form > label,
.form-row > label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 650;
}
.admin-form input,
.product-form input:not([type="checkbox"]):not([type="file"]),
.product-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  outline: none;
  background: #fff;
  font-weight: 400;
}
.admin-form input:focus,
.product-form input:focus,
.product-form textarea:focus {
  border-color: #b2b2b2;
}
.admin-form .button {
  width: 100%;
  margin-top: 5px;
}
.login-error {
  margin: 0;
  color: #bd3939;
  font-size: 12px;
}
.login-card__back {
  display: inline-block;
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
}
.admin-app {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 250px minmax(0, 1fr);
}
.admin-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  flex-direction: column;
  padding: 25px 19px;
  border-right: 1px solid var(--line);
  background: #fff;
}
.admin-sidebar__label {
  margin: 48px 0 12px;
  color: #8a8a8a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
}
.admin-sidebar__item {
  margin-bottom: 5px;
  padding: 12px;
  border-radius: 8px;
  color: #555;
  font-size: 13px;
}
.admin-sidebar__item.is-active {
  background: #f6f6f3;
  color: var(--ink);
  font-weight: 650;
}
.admin-sidebar__footer {
  display: grid;
  gap: 5px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}
.admin-sidebar__footer > span {
  color: var(--muted);
  font-size: 11px;
}
.admin-sidebar__footer > strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
}
.admin-sidebar__footer > button {
  width: max-content;
  margin-top: 7px;
  padding: 0;
  border: 0;
  background: none;
  color: #a23b3b;
  font-size: 11px;
}
.admin-main {
  padding: 38px clamp(20px, 4vw, 58px);
}
.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.admin-topbar h1 {
  margin: 7px 0 0;
  font-size: 32px;
  letter-spacing: -1px;
}
.admin-topbar .button {
  min-height: 43px;
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-block: 30px;
}
.stat-card {
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
}
.stat-card > span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 7px;
  background: #fffbea;
  color: #947d06;
}
.stat-card > strong {
  font-size: 27px;
}
.stat-card > small {
  color: var(--muted);
  font-size: 11px;
}
.admin-table-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
}
.admin-table-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 16px;
}
.admin-table-toolbar select {
  height: 42px;
  padding-inline: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 12px;
}
.admin-table-wrap {
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.admin-table th {
  padding: 12px 15px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fafaf9;
  color: #777;
  font-size: 10px;
  font-weight: 650;
  text-transform: uppercase;
  white-space: nowrap;
}
.admin-table td {
  padding: 13px 15px;
  border-bottom: 1px solid #f0f0f0;
  color: #555;
  font-size: 12px;
  white-space: nowrap;
}
.admin-table tr:last-child td {
  border-bottom: 0;
}
.table-product {
  display: flex;
  align-items: center;
  gap: 10px;
}
.table-product img {
  width: 40px;
  height: 43px;
  border-radius: 6px;
  background: #f2f2f2;
  object-fit: cover;
}
.table-product strong,
.table-product small {
  display: block;
}
.table-product strong {
  max-width: 230px;
  overflow: hidden;
  color: var(--ink);
  font-size: 12px;
  text-overflow: ellipsis;
}
.table-product small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}
.table-price {
  color: var(--ink) !important;
  font-weight: 650;
}
.table-stock {
  display: flex;
  align-items: center;
  gap: 8px;
}
.table-stock button {
  width: 24px;
  height: 24px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}
.table-stock span {
  min-width: 17px;
  text-align: center;
}
.status-pill {
  padding: 5px 8px;
  border-radius: 15px;
  font-size: 10px;
}
.status-pill--active {
  background: #eaf7ef;
  color: #148148;
}
.status-pill--empty {
  background: #fbeeee;
  color: #aa3434;
}
.status-pill--low {
  background: #fff7e6;
  color: #a9770e;
}
.status-pill--hidden {
  background: #f1f1f1;
  color: #6c6c6c;
}
.table-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}
.table-actions button {
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-size: 11px;
}
.table-actions .table-delete {
  color: #af3737;
  font-size: 15px;
}
.admin-empty {
  text-align: center !important;
}
.admin-demo-notice {
  max-width: 650px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}
.admin-overlay {
  position: fixed;
  inset: 0;
  z-index: 19;
  background: #0007;
}
.product-editor {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  display: flex;
  width: min(560px, 100%);
  flex-direction: column;
  background: #fff;
  box-shadow: -10px 0 45px #0002;
  transform: translateX(101%);
  transition: transform 0.25s;
}
.product-editor.is-open {
  transform: translateX(0);
}
.product-editor__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.product-editor__header h2 {
  margin: 6px 0 0;
  font-size: 24px;
}
.product-form {
  overflow-y: auto;
  padding: 23px 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.product-form textarea {
  resize: vertical;
}
.images-field {
  display: grid;
  gap: 11px;
}
.images-field__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.images-field__heading strong {
  font-size: 12px;
}
.images-field__heading span,
.images-field > small {
  color: var(--muted);
  font-size: 10px;
}
.image-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}
.editor-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.editor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editor-image > span {
  position: absolute;
  bottom: 5px;
  left: 5px;
  padding: 3px 5px;
  border-radius: 4px;
  background: #fff;
  font-size: 9px;
}
.editor-image > button {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 21px;
  height: 21px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  font-size: 15px;
}
.file-drop {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px dashed #d6d6d6;
  border-radius: 8px;
  color: #666;
  cursor: pointer;
  font-size: 12px;
}
.file-drop span {
  font-size: 19px;
}
.file-drop input {
  display: none;
}
.image-url {
  display: flex;
  gap: 8px;
}
.image-url > input {
  flex: 1;
}
.image-url > button {
  padding-inline: 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  font-size: 11px;
}
.active-toggle {
  display: flex !important;
  align-items: center;
  gap: 9px !important;
}
.active-toggle input {
  width: 16px;
  height: 16px;
  accent-color: var(--ink);
}
.product-editor__actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding-top: 7px;
}
.product-editor__actions .button {
  min-height: 43px;
  font-size: 12px;
}
@media (max-width: 900px) {
  .admin-app {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    position: static;
    height: auto;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .admin-sidebar__label,
  .admin-sidebar__footer > span,
  .admin-sidebar__footer > strong {
    display: none;
  }
  .admin-sidebar__item {
    margin: 0;
    padding: 9px;
    font-size: 11px;
  }
  .admin-sidebar__footer {
    margin: 0 0 0 auto;
    padding: 0;
    border: 0;
  }
  .admin-sidebar__footer > button {
    margin: 0;
  }
  .admin-main {
    padding: 27px 17px;
  }
  .admin-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .admin-table-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .admin-table-toolbar .search {
    width: 100%;
  }
}
@media (max-width: 520px) {
  .login-card {
    padding: 27px;
  }
  .admin-sidebar .brand__copy {
    display: none;
  }
  .admin-topbar h1 {
    font-size: 25px;
  }
  .admin-topbar .button {
    padding-inline: 11px;
    font-size: 11px;
  }
  .stat-card {
    padding: 13px;
  }
  .stat-card > strong {
    font-size: 23px;
  }
  .product-form {
    padding: 19px 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .product-editor__header {
    padding: 18px 16px;
  }
}

/* Identidade visual da AC InfoCell */
.brand__logo {
  display: block;
  width: 56px;
  height: 53px;
  flex-shrink: 0;
  padding: 4px;
  border-radius: 8px;
  background: #141414;
  object-fit: contain;
}
.brand {
  gap: 9px;
}
.brand--footer .brand__logo {
  width: 60px;
  height: 57px;
}
.admin-sidebar .brand__logo {
  width: 45px;
  height: 43px;
}

/* Faixa superior em loop infinito */
.announcement {
  overflow: hidden;
  padding: 0;
}
.announcement__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: announcement-scroll var(--announcement-duration, 28s) linear
    infinite;
}
.announcement__group {
  display: flex;
  min-width: max-content;
  flex: 0 0 auto;
  align-items: center;
  gap: 24px;
  padding: 10px 20px;
}
.announcement__group > span {
  padding: 0;
  color: #e6e6e6;
  white-space: nowrap;
}
.announcement__group > i {
  color: var(--yellow);
  font-style: normal;
}
@keyframes announcement-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .announcement__track {
    animation: none;
  }
}

/* Vitrine fotográfica do banner */
.hero__visual {
  min-height: 400px;
}
.hero__glow {
  top: 31px;
  left: 18%;
  width: 340px;
  height: 340px;
  background: radial-gradient(
    circle,
    #f5df4652 0%,
    #f5df4614 57%,
    transparent 74%
  );
}
.hero-showcase {
  position: absolute;
  overflow: hidden;
  border: 7px solid #fff;
  border-radius: 17px;
  background: #f4f4f4;
  box-shadow: 0 18px 52px #00000018;
}
.hero-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-showcase--main {
  top: 32px;
  left: 30%;
  width: 240px;
  height: 300px;
  transform: rotate(5deg);
}
.hero-showcase--main > span {
  position: absolute;
  right: 9px;
  bottom: 10px;
  left: 9px;
  padding: 9px;
  border-radius: 7px;
  background: #ffffffed;
  text-align: center;
  font-size: 11px;
  font-weight: 650;
}
.hero-showcase--accent {
  top: 162px;
  left: 9%;
  width: 150px;
  height: 169px;
  transform: rotate(-8deg);
}
.hero__badge {
  right: 4%;
  bottom: 52px;
  z-index: 2;
}

/* Ícones de benefícios e botão de limpeza do carrinho */
.benefit-icon svg {
  width: 22px;
  height: 22px;
}
.cart-header-actions {
  display: flex;
  align-items: center;
  gap: 11px;
}
.clear-cart-button {
  padding: 7px 0;
  border: 0;
  background: none;
  color: #a24545;
  font-size: 11px;
  font-weight: 600;
}
.clear-cart-button:hover:not(:disabled) {
  color: #7f2525;
}
.clear-cart-button:disabled {
  cursor: not-allowed;
  color: #c4c4c4;
}

@media (max-width: 980px) {
  .hero-showcase--main {
    left: 28%;
  }
  .hero-showcase--accent {
    left: 5%;
  }
}
@media (max-width: 650px) {
  .brand__logo {
    width: 46px;
    height: 44px;
  }
  .hero__visual {
    min-height: 300px;
  }
  .hero__glow {
    top: 14px;
    left: calc(50% - 140px);
    width: 280px;
    height: 280px;
  }
  .hero-showcase--main {
    top: 20px;
    left: calc(50% - 48px);
    width: 170px;
    height: 223px;
  }
  .hero-showcase--accent {
    top: 107px;
    left: calc(50% - 131px);
    width: 112px;
    height: 131px;
  }
  .hero__badge {
    right: 2%;
    bottom: 36px;
  }
  .benefit-icon svg {
    width: 19px;
    height: 19px;
  }
  .cart-header-actions {
    gap: 7px;
  }
  .clear-cart-button {
    font-size: 10px;
  }
  .announcement__group {
    gap: 17px;
    padding-block: 9px;
  }
}

/* Créditos do desenvolvedor */
.developer-credit {
  color: var(--yellow) !important;
  font-weight: 650;
}
.developer-credit:hover {
  text-decoration: underline;
}

/* Administração otimizada para celulares */
@media (max-width: 700px) {
  .admin-body {
    overflow-x: hidden;
  }
  .admin-app {
    width: 100%;
    min-width: 0;
  }
  .admin-sidebar {
    position: sticky;
    top: 0;
    z-index: 5;
    min-width: 0;
    gap: 8px;
    padding: 11px 12px;
  }
  .admin-sidebar .brand {
    flex-shrink: 0;
  }
  .admin-sidebar__item {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 8px 7px;
    white-space: nowrap;
  }
  .admin-sidebar__footer > button {
    padding: 7px;
    font-size: 11px;
  }
  .admin-main {
    min-width: 0;
    padding: 23px 12px 35px;
  }
  .admin-topbar {
    align-items: flex-end;
    gap: 8px;
  }
  .admin-topbar .eyebrow {
    font-size: 9px;
  }
  .admin-topbar h1 {
    font-size: 25px;
  }
  .admin-topbar .button {
    min-height: 41px;
    padding-inline: 11px;
    font-size: 11px;
  }
  .admin-stats {
    gap: 9px;
    margin-block: 21px;
  }
  .stat-card {
    min-width: 0;
    padding: 13px 11px;
  }
  .stat-card > strong {
    font-size: 24px;
  }
  .stat-card > small {
    min-height: 29px;
    font-size: 10px;
    line-height: 1.4;
  }
  .admin-table-card {
    overflow: visible;
    border: 0;
    background: transparent;
  }
  .admin-table-toolbar {
    gap: 9px;
    padding: 0 0 12px;
  }
  .admin-table-toolbar .search,
  .admin-table-toolbar select {
    width: 100%;
    background: #fff;
  }
  .admin-table-wrap {
    overflow: visible;
  }
  .admin-table,
  .admin-table tbody {
    display: block;
    width: 100%;
  }
  .admin-table thead {
    display: none;
  }
  .admin-table tbody {
    display: grid;
    gap: 11px;
  }
  .admin-table tr {
    display: grid;
    overflow: hidden;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #fff;
  }
  .admin-table td {
    display: grid;
    min-width: 0;
    gap: 5px;
    align-content: center;
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 12px;
    white-space: normal;
  }
  .admin-table td::before {
    color: var(--muted);
    font-size: 9px;
    font-weight: 650;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    content: attr(data-label);
  }
  .admin-table td:first-child,
  .admin-table td:last-child {
    grid-column: 1/-1;
  }
  .admin-table td:first-child {
    padding: 12px;
  }
  .admin-table td:first-child::before,
  .admin-table td:last-child::before {
    display: none;
  }
  .admin-table td:last-child {
    border-bottom: 0;
  }
  .admin-table td:nth-child(2),
  .admin-table td:nth-child(4) {
    border-right: 1px solid #f0f0f0;
  }
  .admin-table tr:last-child td {
    border-bottom: 1px solid #f0f0f0;
  }
  .admin-table tr:last-child td:last-child {
    border-bottom: 0;
  }
  .table-product img {
    width: 48px;
    height: 52px;
  }
  .table-product > div {
    min-width: 0;
  }
  .table-product strong {
    max-width: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .table-stock {
    justify-content: flex-start;
  }
  .table-stock button {
    width: 31px;
    height: 31px;
  }
  .status-pill {
    width: max-content;
  }
  .table-actions {
    justify-content: space-between;
  }
  .table-actions button {
    min-height: 34px;
    padding-inline: 11px;
  }
  .table-actions button:first-child {
    flex: 1;
  }
  .admin-empty {
    grid-column: 1/-1;
  }
  .admin-empty::before {
    display: none !important;
  }
  .admin-demo-notice {
    font-size: 10px;
  }
  .product-editor {
    width: 100%;
  }
  .product-editor__header {
    padding: 17px 14px;
  }
  .product-form {
    gap: 15px;
    padding: 17px 14px 28px;
  }
  .image-preview {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .image-url {
    flex-direction: column;
  }
  .image-url > button {
    min-height: 40px;
  }
  .product-editor__actions {
    position: sticky;
    bottom: -28px;
    padding: 11px 0 8px;
    background: #fff;
  }
  .product-editor__actions .button {
    flex: 1;
  }
}
@media (max-width: 390px) {
  .admin-sidebar .brand__logo {
    width: 40px;
    height: 38px;
  }
  .admin-sidebar__item {
    gap: 2px;
    padding: 7px 5px;
    font-size: 10px;
  }
  .admin-sidebar__footer > button {
    padding: 5px;
    font-size: 10px;
  }
  .admin-topbar .button {
    padding-inline: 9px;
    font-size: 10px;
  }
  .admin-stats {
    gap: 7px;
  }
  .stat-card {
    padding: 10px 8px;
  }
  .admin-table td {
    padding: 10px;
  }
}
