:root {
  --ink: #101010;
  --muted: #666a73;
  --line: #e7e2d8;
  --paper: #ffffff;
  --soft: #f7f3ec;
  --gold: #c99016;
  --gold-2: #e5b54a;
  --green: #138a65;
  --blue: #3567a8;
  --danger: #b42318;
  --shadow: 0 8px 22px rgba(16, 16, 16, 0.08);
  --shadow-soft: 0 2px 10px rgba(16, 16, 16, 0.06);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

.lucide {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke-width: 1.8;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
  padding: 0 7vw;
  align-items: center;
  background: #070707;
  color: #fff;
  font-size: 14px;
}

.topbar span,
.ghost-btn,
.category-link,
.section-title h2,
.footer p,
.primary-btn,
.secondary-btn,
.link-btn,
.socials,
.pay-option {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.topbar span {
  min-width: 0;
  white-space: nowrap;
}

.topbar .lucide,
.category-link .lucide,
.section-title .lucide,
.trust-strip .lucide {
  color: var(--gold);
}

.site-header {
  display: grid;
  grid-template-columns: 300px minmax(360px, 1fr) 290px;
  gap: 22px;
  align-items: center;
  padding: 20px 7vw;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.brand img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 50px);
  line-height: 0.9;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.search {
  display: grid;
  grid-template-columns: 1fr 52px;
  height: 62px;
  border: 2px solid #d8c48d;
  border-radius: 34px;
  padding: 6px;
  background: white;
  box-shadow: 0 3px 14px rgba(16, 16, 16, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search:focus-within {
  border-color: var(--gold);
  box-shadow: 0 6px 18px rgba(212, 160, 23, 0.16);
}

.search input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 18px;
  border-radius: 28px;
}

.search button,
.primary-btn {
  border: 0;
  color: white;
  background: #111;
  box-shadow: none;
}

.search button {
  display: grid;
  place-items: center;
  border-radius: 24px;
}

.search button .lucide {
  width: 22px;
  height: 22px;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.ghost-btn,
.secondary-btn,
.link-btn,
.category-link {
  border: 0;
  background: transparent;
  color: var(--ink);
}

.ghost-btn {
  position: relative;
  min-height: 50px;
  padding: 8px 6px;
  text-align: left;
}

.ghost-btn .lucide {
  width: 30px;
  height: 30px;
  color: #111;
}

.ghost-btn small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.cart-trigger b {
  position: absolute;
  top: -2px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  font-size: 12px;
}

.category-bar {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 62px;
  padding: 8px 7vw;
  border-bottom: 1px solid var(--line);
  background: #fbfaf7;
  overflow-x: auto;
  scrollbar-width: thin;
}

#categoryNav {
  display: flex;
  gap: 26px;
}

.category-link {
  min-width: max-content;
  min-height: 42px;
  padding: 0 4px;
  font-weight: 700;
  line-height: 1;
  transition: color 0.18s ease, transform 0.18s ease;
}

.category-link .lucide {
  width: 19px;
  height: 19px;
}

.category-link.active {
  color: var(--gold);
}

.category-link:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.deal-link {
  color: #b42318;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(300px, 0.9fr) minmax(340px, 1.1fr) 44px;
  align-items: center;
  min-height: 430px;
  padding: 34px 5vw;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid #f0ece3;
}

.hero-copy {
  max-width: 520px;
  padding-left: 4vw;
  z-index: 1;
}

.hero-copy p {
  margin: 18px 0 6px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0 0 14px;
  max-width: 560px;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy span {
  display: block;
  max-width: 390px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.primary-btn,
.secondary-btn {
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.primary-btn {
  margin-top: 22px;
}

.secondary-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.primary-btn:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

.secondary-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}

.hero-media img {
  width: min(520px, 92%);
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(16, 16, 16, 0.12));
}

.hero-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #111;
  z-index: 1;
}

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

.hero-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: #ded8ca;
}

.hero-dots button.active {
  background: var(--gold);
}

.mascot-pill,
.mascot-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 6px 12px 6px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #333;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mascot-pill img,
.mascot-note img,
.promo-callout img,
.newsletter img,
.empty-cart img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 0;
  width: min(86vw, 1500px);
  margin: 18px auto 10px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.trust-strip article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-content: center;
  min-height: 78px;
  padding: 16px 20px;
  border-right: 1px solid var(--line);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip article strong {
  align-self: end;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
}

.trust-strip article span {
  align-self: start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.trust-strip .lucide {
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  align-self: center;
  justify-self: center;
}

.credibility-strip,
.trust-area,
.seo-copy,
.newsletter {
  width: min(86vw, 1500px);
  margin: 0 auto;
}

.credibility-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 22px;
  min-height: 58px;
  padding: 10px 0;
  border-bottom: 1px solid #f0ece3;
  color: #2a2a2a;
  font-size: 14px;
}

.credibility-strip strong {
  color: var(--gold);
  letter-spacing: 0;
}

.credibility-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.credibility-strip span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.trust-area {
  padding: 24px 0 8px;
}

.trust-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.trust-heading h2 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.trust-area .trust-strip {
  width: 100%;
  margin: 18px 0 10px;
}

.mascot-note {
  max-width: 280px;
  text-transform: none;
  color: var(--muted);
  font-weight: 700;
}

.toolbar,
.catalog-shell,
.footer {
  width: min(86vw, 1500px);
  margin: 0 auto;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  padding: 22px 0 12px;
}

.eyebrow {
  margin: 0 0 3px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.toolbar h2,
.section-title h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
}

.toolbar-controls {
  display: flex;
  gap: 12px;
  align-items: center;
}

select,
.filters input,
.coupon-row input,
.zip-row input,
.stack-form input,
.checkout-grid input,
.contact-form input,
.contact-form textarea,
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d9d6cf;
  border-radius: 8px;
  padding: 0 12px;
  background: white;
}

.catalog-shell {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 22px;
  padding-bottom: 34px;
}

.catalog-shell.no-filters {
  grid-template-columns: 1fr;
}

.catalog-shell.no-filters .filters {
  display: none;
}

.filters {
  position: sticky;
  top: 126px;
  align-self: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.filters h3 {
  margin-top: 0;
}

.filters label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.filters .check {
  justify-content: flex-start;
  align-items: center;
}

.filters .check input {
  width: auto;
  min-height: auto;
}

.link-btn {
  padding: 0;
  color: var(--ink);
  font-weight: 900;
}

.section-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin: 12px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 15px;
  min-height: 196px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow);
  border-color: #d9c994;
}

.product-card .image-btn {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 148px;
  border: 0;
  border-radius: 8px;
  background: #f7f7f7;
  overflow: hidden;
  text-decoration: none;
}

.product-card img {
  width: 100%;
  height: 148px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

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

.product-info h3 {
  min-height: 42px;
  margin: 2px 0 6px;
  font-size: 15px;
  line-height: 1.35;
}

.product-info h3 a {
  color: inherit;
  text-decoration: none;
}

.product-info h3 a:hover {
  color: var(--gold);
}

.price {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 900;
}

.installments,
.rating,
.stock,
.sold,
.pix-line,
.freight-line {
  color: var(--muted);
  font-size: 12px;
}

.rating {
  color: var(--gold);
  margin-top: 0;
}

.sold {
  color: #3f4650;
  font-weight: 700;
}

.pix-line {
  color: var(--green);
  font-weight: 800;
}

.freight-line {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #333;
}

.freight-line .lucide {
  width: 15px;
  height: 15px;
  color: var(--gold);
}

.free-shipping-tag {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 5px 8px;
  border: 1px solid rgba(212, 160, 23, 0.34);
  border-radius: 6px;
  background: #fffaf0;
  color: #8a6200;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.free-shipping-tag .lucide {
  width: 14px;
  height: 14px;
}

.product-free-shipping {
  margin: 0 0 14px;
  font-size: 12px;
}

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--gold);
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.card-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.card-actions button {
  min-width: 38px;
  min-height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.card-actions .buy {
  flex: 1;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.card-actions .buy:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.promo-callout {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.promo-callout .promo-mascot {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  object-position: center bottom;
}

.promo-callout strong,
.promo-callout span {
  display: block;
}

.promo-callout span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.seo-copy {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: #333;
}

.seo-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 30px);
}

.seo-copy p {
  max-width: 920px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.newsletter {
  display: grid;
  grid-template-columns: 56px 1fr minmax(300px, 420px);
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.newsletter img {
  width: 56px;
  height: 56px;
}

.newsletter h2 {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 28px);
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 10px;
}

.newsletter input {
  min-height: 46px;
  border: 1px solid #d9d6cf;
  border-radius: 8px;
  padding: 0 14px;
}

.newsletter .primary-btn {
  margin: 0;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 18px;
  color: var(--muted);
  font-size: 13px;
}

.form-status[data-status="success"] {
  color: #1b7f44;
}

.form-status[data-status="error"] {
  color: #b42318;
}

.product-mascot-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
}

.product-mascot-note img {
  object-fit: contain;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #fff;
}

.error-state {
  width: min(520px, calc(100vw - 36px));
  text-align: center;
  padding: 42px 24px;
}

.error-state img {
  width: 128px;
  height: 128px;
  object-fit: contain;
}

.error-state h1 {
  margin: 8px 0 10px;
  font-size: clamp(34px, 5vw, 52px);
}

.error-state p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.error-state .primary-btn {
  margin-top: 18px;
  display: inline-flex;
}

.legal-page {
  background: #fff;
}

.legal-content {
  width: min(760px, calc(100vw - 36px));
  margin: 0 auto;
  padding: 42px 0 60px;
}

.legal-content h1 {
  margin: 28px 0 12px;
  font-size: clamp(32px, 5vw, 48px);
}

.legal-content h2 {
  margin-top: 26px;
  font-size: 22px;
}

.legal-content p {
  color: var(--muted);
  line-height: 1.7;
}

.success-content {
  width: min(680px, calc(100vw - 36px));
}

.success-card {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.success-card > svg {
  width: 42px;
  height: 42px;
  color: var(--gold);
}

.success-details {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.success-details p {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
}

.success-details span {
  color: var(--ink);
  text-align: right;
  word-break: break-word;
}

.static-page {
  min-height: 100vh;
  background: #fff;
}

.static-page .site-header,
.static-page .category-bar {
  position: sticky;
  top: 0;
  z-index: 20;
}

.static-page .category-bar {
  top: 94px;
}

.page-shell {
  width: min(1440px, calc(100vw - 56px));
  margin: 0 auto 36px;
}

.page-hero {
  padding: 42px 0 28px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  width: min(920px, 100%);
  margin: 8px 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}

.page-hero p:not(.eyebrow) {
  width: min(780px, 100%);
  color: var(--muted);
  line-height: 1.7;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

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

.content-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.content-card > .lucide {
  color: var(--gold);
}

.content-card h2 {
  margin: 12px 0 10px;
  font-size: 22px;
}

.content-card p,
.legal-article p {
  color: var(--muted);
  line-height: 1.7;
}

.legal-article {
  width: min(920px, 100%);
  margin: 20px 0 34px;
}

.legal-article h2 {
  margin-top: 28px;
}

.info-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.info-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.6;
}

.info-list .lucide {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--gold);
  margin-top: 2px;
}

.policy-table {
  display: grid;
  margin: 18px 0 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.policy-table > div {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.4fr;
  border-bottom: 1px solid var(--line);
}

.policy-table > div:last-child {
  border-bottom: 0;
}

.policy-table strong,
.policy-table span {
  padding: 12px;
  font-size: 14px;
}

.policy-table strong {
  background: var(--soft);
}

.policy-note {
  margin: 18px 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  color: #3f3320;
  font-size: 13px;
  line-height: 1.6;
}

.compact-payment {
  display: block;
  width: min(260px, 100%);
  height: auto;
  margin: 8px 0 18px;
}

.static-page .contact-layout {
  margin: 20px 0 34px;
}

.static-page .success-card,
.static-page .error-state {
  width: min(760px, 100%);
  margin: 24px auto 36px;
  text-align: center;
}

.static-page .success-card .page-actions,
.static-page .error-state .page-actions {
  justify-content: center;
}

.static-page .error-state img {
  width: 132px;
  height: 132px;
  object-fit: contain;
}

.account-page {
  min-height: 100vh;
  background: #f7f6f2;
}

.account-sidebar[hidden],
.account-bottom-nav[hidden],
.account-auth[hidden],
.account-content[hidden],
[data-auth-mode-panel][hidden] {
  display: none !important;
}

.account-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: min(1200px, calc(100vw - 36px));
  margin: 0 auto;
  padding: 18px 0;
}

.account-app {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  width: min(1200px, calc(100vw - 36px));
  margin: 0 auto 54px;
}

.account-page.is-guest .account-app {
  display: block;
  width: min(980px, calc(100vw - 36px));
}

.account-sidebar,
.account-panel,
.auth-card,
.loyalty-card,
.success-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.account-sidebar {
  position: sticky;
  top: 18px;
  align-self: start;
  padding: 16px;
}

.account-user-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}

.account-user-photo,
.account-avatar,
.account-user-initials {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff8ea;
  color: var(--ink);
  font-weight: 900;
}

.account-user-photo {
  object-fit: cover;
}

.account-user-initials {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold-soft);
}

.account-avatar {
  width: 72px;
  height: 72px;
  border: 1px solid var(--gold-soft);
  font-size: 22px;
}

img.account-avatar {
  object-fit: cover;
}

.account-user-card strong,
.account-user-card span {
  display: block;
}

.account-user-card span {
  color: var(--muted);
  font-size: 12px;
}

.account-sidebar nav {
  display: grid;
  gap: 6px;
  padding-top: 14px;
}

.account-nav,
.account-bottom-nav button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
}

.account-nav {
  padding: 0 10px;
}

.account-nav:hover,
.account-nav.active {
  border-color: var(--gold-soft);
  background: #fffaf0;
}

.account-nav.danger {
  color: var(--danger);
}

.account-main {
  min-width: 0;
}

.account-auth {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.auth-intro {
  position: relative;
  display: grid;
  min-height: 430px;
  align-content: center;
  padding-right: 230px;
  overflow: hidden;
}

.auth-intro p:not(.eyebrow) {
  max-width: 480px;
  color: var(--muted);
  line-height: 1.55;
}

.auth-mascot {
  position: absolute;
  right: 18px;
  bottom: 0;
  width: min(210px, 34%);
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

.account-auth h1,
.account-heading h1 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 44px);
}

.auth-card {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f6f2;
}

.auth-tabs button {
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
}

.auth-tabs button.active {
  border-color: var(--gold-soft);
  background: #fff;
  color: var(--ink);
}

.google-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
}

.auth-separator {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 12px;
}

.auth-form,
.account-form {
  display: grid;
  gap: 10px;
}

.auth-form input,
.auth-form select,
.account-form input,
.account-form select {
  min-height: 44px;
  border: 1px solid #d9d6cf;
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
}

.compact-auth {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

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

.account-grid-cards,
.loyalty-metrics,
.payment-prep,
.security-grid,
.address-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.account-stat,
.metric,
.address-card,
.coupon-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.account-stat {
  display: grid;
  gap: 8px;
}

.account-stat svg {
  color: var(--gold);
}

.account-stat span,
.metric span,
.panel-heading span {
  color: var(--muted);
  font-size: 13px;
}

.account-stat strong {
  font-size: 22px;
}

.account-panel {
  margin-top: 16px;
  padding: 20px;
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 16px;
}

.panel-heading h2 {
  margin: 0;
}

.loyalty-card {
  display: grid;
  gap: 18px;
  margin-top: 16px;
  padding: 22px;
  background: linear-gradient(180deg, #fff 0%, #fffaf0 100%);
}

.loyalty-card h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 40px);
}

.loyalty-progress {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #eee5d1;
}

.loyalty-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
}

.metric {
  display: grid;
  gap: 6px;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.benefits strong {
  flex-basis: 100%;
}

.benefits span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

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

.mini-product {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.mini-product img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  border-radius: 8px;
  background: #f7f7f7;
}

.order-premium-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.order-premium-card img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.status-pill {
  display: inline-flex;
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff6d8;
  color: #7a5800;
  font-size: 12px;
  font-weight: 900;
}

.order-actions,
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.order-actions button,
.address-card button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
}

.timeline span {
  color: var(--muted);
  font-size: 12px;
}

.coupon-list,
.notification-list,
.orders-timeline-list {
  display: grid;
  gap: 12px;
}

.notification-list article {
  display: flex;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.account-empty {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 26px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--muted);
  text-align: center;
}

.account-empty img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.account-empty strong {
  color: var(--ink);
}

.account-bottom-nav {
  display: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(320px, 1.15fr);
  gap: 34px;
  align-items: start;
  margin-top: 28px;
}

.contact-copy h1 {
  margin-top: 6px;
}

.contact-points {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact-points p {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 10px 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.contact-form label span {
  color: var(--muted);
  font-weight: 600;
}

.contact-form .wide-field,
.contact-form .primary-btn,
.contact-form .form-status {
  grid-column: 1 / -1;
}

.contact-form textarea {
  min-height: 140px;
  padding-top: 12px;
  resize: vertical;
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding: 34px 0 38px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer h3 {
  margin: 0 0 12px;
  font-size: 14px;
  text-transform: uppercase;
}

.footer p,
.footer a {
  display: block;
  margin: 8px 0;
  color: #333;
  font-size: 14px;
  line-height: 1.45;
}

.footer a:hover {
  color: var(--gold);
}

.company-data {
  margin: 14px 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.company-data strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-seals {
  display: grid;
  gap: 8px;
}

.footer-seals span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 13px;
}

.footer-seals svg,
.contact-points svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
  flex: 0 0 auto;
}

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

.brand.compact strong {
  font-size: 32px;
}

.socials {
  margin-top: 12px;
}

.socials.named {
  display: grid;
  gap: 8px;
  align-items: start;
}

.socials.named span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 14px;
}

.payment-methods-img {
  display: block;
  width: min(100%, 225px);
  height: auto;
  margin: 6px 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.admin-page {
  min-height: 100vh;
  background: #f7f6f2;
}

.admin-access {
  width: min(520px, calc(100vw - 36px));
  margin: 0 auto;
  padding: 80px 0;
  text-align: center;
}

.admin-access img {
  object-fit: contain;
}

.admin-access h1 {
  margin: 8px 0 12px;
  font-size: clamp(32px, 5vw, 46px);
}

.admin-access p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.admin-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  padding: 24px;
  border-right: 1px solid var(--line);
  background: #fff;
}

.admin-sidebar nav {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.admin-nav {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  text-align: left;
  font-weight: 900;
}

.admin-nav:hover,
.admin-nav.active {
  border-color: var(--gold-soft);
  background: #fffaf0;
}

.admin-main {
  padding: 28px;
}

.admin-main > header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.admin-main h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
}

.admin-main > header span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 18px;
}

.admin-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

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

.admin-card > svg {
  color: var(--gold);
}

.admin-card h2 {
  margin: 12px 0 8px;
}

.admin-card p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.6;
}

.admin-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.admin-chip-list span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.admin-message {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.admin-message span,
.admin-message small,
.muted-note {
  color: var(--muted);
}

.empty-cart {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 28px 18px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fffdf8;
  text-align: center;
}

.empty-cart img {
  width: 58px;
  height: 58px;
}

.empty-cart strong {
  max-width: 260px;
}

.empty-cart span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  background: rgba(0, 0, 0, 0);
  transition: background 0.2s ease;
}

.drawer.open {
  pointer-events: all;
  background: rgba(0, 0, 0, 0.38);
}

.drawer-panel {
  width: min(420px, 100vw);
  height: 100%;
  margin-left: auto;
  padding: 22px;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.24s ease;
  overflow-y: auto;
}

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

.drawer-panel header,
.cart-line,
.totals div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.icon-close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-line {
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.cart-line img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #f7f7f7;
  border-radius: 8px;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.coupon-row,
.zip-row {
  display: grid;
  grid-template-columns: 1fr 98px;
  gap: 8px;
  margin-top: 12px;
}

.totals {
  display: grid;
  gap: 9px;
  margin: 18px 0;
  padding: 14px;
  border-radius: 8px;
  background: var(--soft);
}

.totals .free-shipping-progress {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(212, 160, 23, 0.32);
  border-radius: 8px;
  background: #fffaf0;
  color: #111;
  font-size: 13px;
  font-weight: 800;
}

.totals .free-shipping-progress.complete {
  border-color: rgba(35, 154, 86, 0.35);
  background: #f1fff6;
  color: #116b35;
}

.totals .free-shipping-progress b {
  display: block;
  width: 100%;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #eadfca;
}

.totals .free-shipping-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
}

.totals .free-shipping-progress.complete i {
  background: var(--green);
}

.full {
  width: 100%;
}

.modal {
  width: min(900px, calc(100vw - 28px));
  border: 0;
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.42);
}

.modal > form[method="dialog"] {
  display: flex;
  justify-content: flex-end;
  margin: -10px -10px 0 0;
}

.product-page {
  width: min(1720px, calc(100vw - 56px));
  margin: 0 auto 36px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 18px 0;
  color: var(--muted);
  font-size: 13px;
}

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

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

.breadcrumb strong {
  color: var(--ink);
  font-weight: 800;
}

.product-detail {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 26px;
}

.product-detail-page {
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

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

.product-detail img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 8px;
  background: #f7f7f7;
}

.product-main-image {
  min-height: 420px;
}

.product-gallery-thumbs {
  display: flex;
  gap: 10px;
}

.product-gallery-thumbs button {
  width: 76px;
  height: 76px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-gallery-thumbs button.active {
  border-color: var(--gold);
}

.product-gallery-thumbs img {
  width: 100%;
  height: 100%;
}

.product-buybox h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.product-rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.product-rating-row .rating {
  color: var(--gold);
}

.product-sku {
  margin: 12px 0;
  color: var(--muted);
  font-size: 13px;
}

.product-actions {
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(140px, 190px);
  gap: 10px;
  margin: 18px 0;
}

.product-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.product-trust-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #333;
  font-size: 13px;
  background: #fffdf8;
}

.product-trust-grid .lucide {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.product-mascot-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  color: #3f3320;
  font-size: 13px;
}

.product-detail .product-mascot-note img {
  width: 42px;
  height: 42px;
  aspect-ratio: auto;
  border-radius: 50%;
  background: #fff8ea;
  object-fit: cover;
  object-position: top center;
}

.product-detail h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 4vw, 38px);
}

.product-detail ul {
  padding-left: 18px;
  color: #333;
  line-height: 1.7;
}

.product-content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin: 18px 0;
}

.product-content-grid article,
.related-products {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.product-content-grid h2 {
  margin: 0 0 12px;
}

.product-content-grid p {
  color: #333;
  line-height: 1.7;
}

.product-content-grid ul {
  margin-bottom: 0;
  padding-left: 18px;
  line-height: 1.8;
}

.spec-list {
  display: grid;
  gap: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.spec-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  border-bottom: 1px solid var(--line);
}

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

.spec-list dt,
.spec-list dd {
  margin: 0;
  padding: 12px;
  font-size: 14px;
}

.spec-list dt {
  color: var(--muted);
  background: var(--soft);
}

.spec-list dd {
  font-weight: 800;
}

.related-products {
  margin-top: 18px;
}

.account-grid,
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stack-form,
.checkout-grid section,
.admin-form {
  display: grid;
  gap: 12px;
}

.orders-list {
  display: grid;
  gap: 10px;
  max-height: 340px;
  overflow: auto;
}

.order-card {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pay-option {
  justify-content: flex-start;
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkout-summary {
  padding: 14px;
  background: var(--soft);
  border-radius: 8px;
}

.admin-modal {
  width: min(1180px, calc(100vw - 24px));
}

.admin-layout {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 600px;
  gap: 20px;
}

.admin-layout aside {
  border-right: 1px solid var(--line);
  padding-right: 16px;
}

.admin-tab {
  display: block;
  width: 100%;
  min-height: 44px;
  margin: 8px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: left;
  padding: 0 12px;
  font-weight: 800;
}

.admin-tab.active {
  background: #111;
  color: white;
}

.admin-form {
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  margin-bottom: 18px;
}

.admin-form textarea,
.admin-form .wide-field {
  grid-column: span 2;
}

.admin-list {
  display: grid;
  gap: 10px;
  max-height: 390px;
  overflow: auto;
}

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

.admin-row img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #f7f7f7;
  border-radius: 8px;
}

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

.admin-row-actions button,
.danger-btn {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0 10px;
}

.danger-btn {
  color: var(--danger);
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  max-width: 340px;
  padding: 13px 16px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.24s ease;
  box-shadow: var(--shadow);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.privacy-consent {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.privacy-consent[hidden] {
  display: none;
}

.privacy-consent p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.privacy-actions {
  display: flex;
  gap: 10px;
}

.privacy-actions .primary-btn,
.privacy-actions .secondary-btn {
  margin: 0;
  white-space: nowrap;
}

.empty {
  margin: 0;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
}

@media (max-width: 1180px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
    min-height: auto;
    padding: 8px 24px;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .header-actions {
    justify-content: flex-start;
  }

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

  .trust-strip article:nth-child(even) {
    border-right: 0;
  }

  .trust-strip article:nth-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .newsletter {
    grid-template-columns: 56px 1fr;
  }

  .newsletter form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .topbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
    padding: 8px 18px;
  }

  .topbar span {
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .site-header,
  .category-bar {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 38px 18px 58px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-copy {
    padding: 0;
    text-align: left;
  }

  .hero-media {
    min-height: 260px;
  }

  .trust-strip,
  .trust-area,
  .credibility-strip,
  .seo-copy,
  .newsletter,
  .catalog-shell,
  .product-page,
  .page-shell,
  .footer,
  .toolbar {
    width: calc(100vw - 36px);
  }

  .trust-strip,
  .catalog-shell,
  .footer,
  .account-grid,
  .checkout-grid,
  .product-detail,
  .product-content-grid,
  .contact-layout,
  .contact-form,
  .admin-shell,
  .admin-grid,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .trust-strip article,
  .trust-strip article:nth-child(even) {
    border-right: 0;
  }

  .trust-strip article:nth-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .trust-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .credibility-strip {
    justify-content: flex-start;
  }

  .filters {
    position: static;
  }

  .product-detail-page {
    padding: 16px;
  }

  .product-main-image {
    min-height: 280px;
  }

  .product-actions,
  .product-trust-grid,
  .spec-list div,
  .page-grid,
  .policy-table > div {
    grid-template-columns: 1fr;
  }

  .static-page .site-header,
  .static-page .category-bar {
    position: static;
  }

  .page-hero {
    padding: 30px 0 22px;
  }

  .content-card {
    padding: 18px;
  }

  .page-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .page-actions .primary-btn,
  .page-actions .secondary-btn {
    justify-content: center;
    width: 100%;
  }

  .spec-list dt {
    padding-bottom: 4px;
  }

  .spec-list dd {
    padding-top: 4px;
  }

  .footer {
    gap: 16px;
  }

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

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

  .admin-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .admin-main > header {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-app,
  .account-auth,
  .account-grid-cards,
  .loyalty-metrics,
  .payment-prep,
  .security-grid,
  .address-grid,
  .mini-product-grid {
    grid-template-columns: 1fr;
  }

  .account-sidebar {
    display: none;
  }

  .account-app {
    width: calc(100vw - 36px);
    margin-bottom: 92px;
  }

  .account-heading,
  .panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .auth-intro {
    min-height: 360px;
    padding: 0 140px 0 0;
  }

  .auth-mascot {
    right: 0;
    width: 128px;
  }

  .account-bottom-nav {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .account-bottom-nav button {
    justify-content: center;
    min-height: 48px;
    flex-direction: column;
    gap: 3px;
    font-size: 11px;
  }

  .account-bottom-nav button.active {
    background: #fffaf0;
    color: var(--gold);
  }

  .privacy-consent {
    grid-template-columns: 1fr;
  }

  .privacy-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .admin-layout aside {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 12px;
  }

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

  .admin-form textarea,
  .admin-form .wide-field {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .topbar {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-size: 12px;
  }

  .brand strong {
    font-size: 38px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .header-actions {
    flex-direction: row;
    align-items: stretch;
    gap: 8px;
  }

  .ghost-btn {
    flex: 1;
    justify-content: center;
    min-height: 48px;
    padding: 6px;
  }

  .ghost-btn .lucide {
    width: 24px;
    height: 24px;
  }

  .ghost-btn span {
    font-size: 13px;
  }

  .ghost-btn small {
    font-size: 11px;
  }

  .toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .toolbar-controls {
    width: 100%;
    flex-direction: column;
  }

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

  .product-card {
    grid-template-columns: 38% 1fr;
    padding: 12px;
  }

  .product-card .image-btn {
    min-height: 138px;
  }

  .product-card img {
    height: 138px;
  }

  .coupon-row,
  .zip-row {
    grid-template-columns: 1fr;
  }
}

/* Badalu Calçados — identidade editorial própria */
:root {
  --ink: #171016;
  --muted: #746a72;
  --line: #eadde5;
  --paper: #ffffff;
  --soft: #fff5fa;
  --gold: #ef087f;
  --gold-2: #ff69ad;
  --green: #16815f;
  --shadow: 0 22px 60px rgba(59, 17, 40, 0.14);
  --shadow-soft: 0 10px 30px rgba(59, 17, 40, 0.08);
  font-family: "Trebuchet MS", Inter, ui-sans-serif, system-ui, sans-serif;
}

body {
  background:
    radial-gradient(circle at 10% 24%, rgba(239, 8, 127, 0.045), transparent 28rem),
    #fff;
}

.topbar {
  min-height: 38px;
  background: #ef087f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.topbar .lucide {
  color: #fff;
}

.site-header {
  grid-template-columns: 310px minmax(320px, 1fr) 290px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-color: rgba(23, 16, 22, 0.08);
}

.brand {
  gap: 14px;
}

.brand img,
.brand.compact img,
.empty-cart img,
.product-mascot-note img {
  border-radius: 10px;
  background: #050505;
  object-fit: contain;
}

.brand strong {
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.075em;
}

.brand small {
  color: #ef087f;
  font-size: 10px;
  letter-spacing: 0.11em;
}

.search {
  height: 54px;
  border: 1px solid #e6d7df;
  border-radius: 16px;
  box-shadow: none;
}

.search button {
  border-radius: 11px;
  background: #ef087f;
}

.category-bar {
  justify-content: center;
  min-height: 54px;
  background: #fff;
  border-bottom: 0;
}

.category-link {
  font-size: 13px;
  letter-spacing: 0.02em;
}

.deal-link {
  color: #ef087f;
}

.hero {
  grid-template-columns: 40px minmax(280px, 0.88fr) minmax(360px, 1.12fr) 40px;
  width: min(1240px, calc(100vw - 48px));
  min-height: 520px;
  margin: 18px auto 24px;
  padding: 34px;
  border: 0;
  border-radius: 30px;
  background:
    radial-gradient(circle at 21% 11%, rgba(255, 255, 255, 0.92) 0 5%, transparent 5.2%),
    linear-gradient(135deg, #fff0f7 0%, #fff 58%, #ffe0ef 100%);
  box-shadow: 0 24px 80px rgba(89, 21, 58, 0.1);
}

.hero::after {
  content: "BADALU";
  position: absolute;
  right: -20px;
  bottom: -26px;
  color: rgba(239, 8, 127, 0.07);
  font-family: "Arial Black", sans-serif;
  font-size: clamp(90px, 15vw, 210px);
  letter-spacing: -0.09em;
  pointer-events: none;
}

.hero-copy {
  padding-left: 22px;
}

.hero-copy h1 {
  max-width: 600px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5.4vw, 76px);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.hero-copy p,
.eyebrow {
  color: #ef087f;
  letter-spacing: 0.12em;
}

.mascot-pill,
.mascot-note {
  border-color: rgba(239, 8, 127, 0.18);
  background: rgba(255, 255, 255, 0.8);
  color: #ef087f;
}

.mascot-pill .lucide,
.mascot-note .lucide {
  width: 18px;
  height: 18px;
}

.hero .primary-btn {
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  background: #171016;
}

.hero .primary-btn:hover {
  background: #ef087f;
}

.hero-media {
  min-height: 440px;
}

.hero-media img {
  width: min(520px, 95%);
  height: 430px;
  max-height: none;
  border: 10px solid #fff;
  border-radius: 28px 80px 28px 28px;
  object-fit: cover;
  filter: none;
  box-shadow: 0 28px 60px rgba(67, 20, 45, 0.18);
}

.hero-arrow {
  border: 0;
  box-shadow: 0 8px 20px rgba(54, 18, 38, 0.1);
}

.credibility-strip {
  border: 0;
  background: #171016;
  color: #fff;
}

.credibility-strip strong {
  color: #ff5cab;
  letter-spacing: -0.04em;
}

.credibility-strip span::before {
  background: #ef087f;
}

.trust-area {
  padding-top: 42px;
  padding-bottom: 42px;
}

.trust-heading h2,
.toolbar h2,
.seo-copy h2,
.newsletter h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.trust-strip {
  overflow: hidden;
  border-radius: 22px;
  background: #fff8fb;
}

.trust-strip article {
  min-height: 150px;
}

.catalog-shell {
  padding-bottom: 38px;
}

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

.product-card {
  display: flex;
  min-height: 0;
  padding: 12px;
  flex-direction: column;
  gap: 0;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 10px 34px rgba(55, 20, 39, 0.09);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 22px 54px rgba(55, 20, 39, 0.15);
}

.product-card .image-btn {
  min-height: 310px;
  border-radius: 15px;
  background: #f7f2f5;
}

.product-card img {
  height: 310px;
  object-fit: cover;
  mix-blend-mode: normal;
  transition: transform 0.35s ease;
}

.product-card:hover .image-btn > img {
  transform: scale(1.035);
}

.product-info {
  padding: 15px 5px 5px;
}

.product-info h3 {
  min-height: 44px;
  margin-bottom: 8px;
  font-size: 16px;
}

.price {
  font-size: 24px;
  letter-spacing: -0.04em;
}

.badge {
  top: 22px;
  right: 22px;
  border-radius: 999px;
  background: #ef087f;
}

.card-actions button,
.card-actions .buy {
  min-height: 44px;
  border-radius: 12px;
}

.card-actions .buy:hover {
  background: #ef087f;
  border-color: #ef087f;
}

.promo-callout {
  border: 0;
  border-radius: 16px;
  background: #fff0f7;
}

.promo-callout > .lucide {
  width: 34px;
  height: 34px;
  color: #ef087f;
}

.newsletter {
  border: 0;
  border-radius: 24px;
  background: linear-gradient(120deg, #ef087f, #bd075f);
  color: #fff;
  box-shadow: 0 20px 50px rgba(239, 8, 127, 0.2);
}

.newsletter > .lucide {
  width: 48px;
  height: 48px;
}

.newsletter .eyebrow,
.newsletter h2 {
  color: #fff;
}

.newsletter input {
  border: 0;
}

.newsletter .primary-btn {
  background: #171016;
}

.product-actions {
  grid-template-columns: repeat(2, minmax(0, 220px));
  align-items: center;
  gap: 12px;
}

.product-actions .primary-btn,
.product-actions .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  min-height: 50px;
  margin: 0;
  padding: 0 20px;
  border-radius: 14px;
  line-height: 1;
}

.product-actions .primary-btn {
  background: #171016;
}

.product-actions .secondary-btn {
  border-color: rgba(239, 8, 127, 0.3);
  color: #171016;
}

.footer {
  position: relative;
  overflow: hidden;
  grid-template-columns: 1.35fr 0.8fr 1fr 1.25fr;
  gap: 20px;
  margin-top: 58px;
  padding: 34px;
  border: 1px solid rgba(239, 8, 127, 0.16);
  border-radius: 28px 28px 0 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(239, 8, 127, 0.12), transparent 220px),
    linear-gradient(135deg, #fff4f9 0%, #ffffff 58%, #fff8fb 100%);
  color: #171016;
  box-shadow: 0 -12px 45px rgba(76, 20, 50, 0.07);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #171016 0 24%, #ef087f 24% 100%);
}

.footer > section {
  position: relative;
  z-index: 1;
  padding: 6px 14px;
}

.footer > section:first-child {
  padding-left: 0;
}

.footer > section + section {
  border-left: 1px solid rgba(239, 8, 127, 0.13);
}

.footer p,
.footer a {
  margin-top: 6px;
  margin-bottom: 6px;
  color: #35232f;
}

.footer .brand small,
.footer h3,
.footer a:hover,
.footer .lucide {
  color: #ef087f;
}

.footer h3 {
  letter-spacing: 0.08em;
}

.footer a {
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer a:hover {
  transform: translateX(3px);
}

.footer .brand.compact img {
  width: 56px;
  height: 56px;
  box-shadow: 0 8px 22px rgba(23, 16, 22, 0.15);
}

.footer .brand.compact strong {
  color: #171016;
}

.footer .socials:not(.named) {
  gap: 8px;
}

.footer .socials:not(.named) .lucide {
  width: 34px;
  height: 34px;
  padding: 8px;
  border: 1px solid rgba(239, 8, 127, 0.16);
  border-radius: 50%;
  background: #fff;
}

.footer .payment-methods-img {
  padding: 7px;
  border: 1px solid rgba(239, 8, 127, 0.14);
  border-radius: 12px;
  background: #fff;
}

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

.footer-seals span {
  min-height: 38px;
  padding: 6px 8px;
  border: 1px solid rgba(239, 8, 127, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: #35232f;
  font-size: 11.5px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr;
  }

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

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

  .footer > section:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 820px) {
  .hero {
    width: calc(100vw - 24px);
    margin-top: 12px;
    padding: 30px 20px 54px;
    border-radius: 22px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-media {
    min-height: 330px;
  }

  .hero-media img {
    width: 100%;
    height: 320px;
    border-width: 7px;
    border-radius: 20px 55px 20px 20px;
  }

  .product-card .image-btn,
  .product-card img {
    min-height: 260px;
    height: 260px;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    border-radius: 22px 22px 0 0;
  }

  .footer > section,
  .footer > section:first-child {
    padding: 18px 0;
  }

  .footer > section + section,
  .footer > section:nth-child(3) {
    border-top: 1px solid rgba(239, 8, 127, 0.13);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .topbar span:nth-child(2),
  .topbar span:nth-child(4) {
    display: none;
  }

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

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

  .product-card .image-btn,
  .product-card img {
    min-height: 340px;
    height: 340px;
  }
}

/* Produto Badalu — estrutura inspirada na referência comercial */
.product-page-reference {
  width: min(1240px, calc(100vw - 48px));
  margin-bottom: 64px;
}

.product-page-reference .breadcrumb {
  padding: 18px 0 10px;
}

.product-back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 20px;
  color: #171016;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.product-back-link .lucide {
  width: 16px;
  height: 16px;
}

.product-reference-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-reference-layout .product-gallery {
  gap: 12px;
}

.product-reference-layout .product-main-image {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1;
  border-radius: 14px;
  background: #fff7fb;
  object-fit: cover;
}

.product-reference-layout .product-gallery-thumbs {
  gap: 8px;
}

.product-reference-layout .product-gallery-thumbs button {
  width: 80px;
  height: 80px;
  padding: 2px;
  border-width: 2px;
  border-radius: 10px;
}

.product-reference-layout .product-gallery-thumbs img {
  border-radius: 7px;
  object-fit: cover;
}

.product-reference-layout .product-buybox {
  min-width: 0;
}

.product-viewing {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff0f7;
  color: #8f1657;
  font-size: 12px;
  font-weight: 800;
}

.product-viewing .lucide {
  width: 15px;
  height: 15px;
}

.product-reference-layout .product-buybox > .eyebrow {
  margin-bottom: 8px;
}

.product-reference-layout .product-buybox h1 {
  max-width: 620px;
  margin-bottom: 13px;
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.product-reference-layout .product-sku {
  margin: 12px 0 20px;
}

.product-price-block {
  padding-bottom: 18px;
}

.product-compare {
  display: block;
  margin-bottom: 2px;
  color: #8b7b85;
  font-size: 14px;
  text-decoration: line-through;
}

.product-reference-layout .product-price-block .price {
  margin: 0;
  font-size: 34px;
}

.product-reference-layout .installments {
  margin: 8px 0 0;
  color: #171016;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.035em;
}

.product-pix-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 15px;
  padding: 15px 16px;
  border: 1px solid #bfe9d8;
  border-radius: 12px;
  background: #effbf6;
  color: #126347;
}

.product-pix-card span,
.product-pix-card strong,
.product-pix-card small {
  display: block;
}

.product-pix-card strong {
  font-size: 16px;
}

.product-pix-card small {
  margin-top: 3px;
  font-size: 12px;
}

.product-pix-card b {
  padding: 6px 9px;
  border-radius: 7px;
  background: #16815f;
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
}

.product-stock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  padding: 10px 0;
  border-bottom: 1px solid #f0dce7;
  color: #513845;
  font-size: 12px;
}

.product-stock-row span,
.product-stock-row strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-stock-row strong {
  color: #ef087f;
}

.product-stock-row .lucide {
  width: 16px;
  height: 16px;
}

.product-shipping-quote,
.product-option-group {
  margin-top: 22px;
}

.product-shipping-quote label,
.product-option-group > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
  color: #171016;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-option-group > span small {
  color: #8b7b85;
  font-size: 11px;
  font-weight: 700;
  text-transform: none;
}

.product-shipping-quote > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 8px;
}

.product-shipping-quote input,
.product-shipping-quote button {
  height: 46px;
  border: 1px solid #e3d2dc;
  border-radius: 10px;
}

.product-shipping-quote input {
  padding: 0 14px;
  font: inherit;
}

.product-shipping-quote button {
  background: #fff;
  color: #171016;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-shipping-quote button:hover {
  border-color: #ef087f;
  color: #ef087f;
}

.product-shipping-quote > p {
  min-height: 18px;
  margin: 6px 0 0;
  color: #16815f;
  font-size: 11px;
}

.product-color-choice {
  width: 80px;
  height: 80px;
  padding: 2px;
  border: 2px solid #ef087f;
  border-radius: 10px;
  background: #fff;
}

.product-color-choice img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
  object-fit: cover;
}

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

.product-size-grid button {
  min-height: 48px;
  border: 1px solid #e3d2dc;
  border-radius: 10px;
  background: #fff;
  color: #171016;
  font-size: 13px;
  font-weight: 900;
}

.product-size-grid button:hover,
.product-size-grid button.active {
  border-color: #171016;
  background: #171016;
  color: #fff;
}

.product-purchase-row {
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.product-quantity {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  min-height: 56px;
  overflow: hidden;
  border: 1px solid #e3d2dc;
  border-radius: 10px;
  background: #fff;
}

.product-quantity button,
.product-quantity output {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #171016;
  font-weight: 900;
}

.product-quantity button:hover {
  background: #fff0f7;
  color: #ef087f;
}

.product-purchase-row .product-add-button {
  width: 100%;
  height: 56px;
  min-height: 56px;
  margin: 0;
  border-radius: 10px;
  background: #ef087f;
  font-size: 13px;
}

.product-purchase-row .product-add-button:hover {
  background: #171016;
}

.product-open-cart {
  width: 100%;
  margin: 9px 0 0;
  padding: 8px;
  border: 0;
  background: transparent;
  color: #5b4652;
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-included {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid #eadde5;
}

.product-included h2 {
  max-width: 520px;
  margin: 5px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.product-included > div {
  display: grid;
  gap: 0;
}

.product-included span {
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid #f1e3eb;
}

.product-included .lucide {
  grid-row: 1 / span 2;
  width: 24px;
  height: 24px;
  color: #ef087f;
}

.product-included b,
.product-included small {
  display: block;
}

.product-included b {
  color: #171016;
  font-size: 13px;
}

.product-included small {
  margin-top: 3px;
  color: #6f5c67;
  font-size: 12px;
  line-height: 1.45;
}

.product-accordions {
  margin-top: 28px;
  border-top: 1px solid #eadde5;
}

.product-accordions details {
  border-bottom: 1px solid #eadde5;
}

.product-accordions summary {
  padding: 17px 0;
  color: #171016;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.product-accordions details > p,
.product-accordions details > dl {
  margin: 0 0 18px;
  color: #5b4652;
  font-size: 13px;
  line-height: 1.65;
}

.product-accordions .spec-list {
  border-radius: 10px;
}

.product-related-reference {
  margin-top: 72px;
  padding: 40px 0 0;
  border-width: 1px 0 0;
  border-radius: 0;
  box-shadow: none;
}

.product-related-reference .section-title h2 {
  text-transform: uppercase;
}

.product-related-reference .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-related-reference .product-card .image-btn,
.product-related-reference .product-card img {
  min-height: 260px;
  height: 260px;
}

@media (max-width: 980px) {
  .product-reference-layout {
    gap: 30px;
  }

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

@media (max-width: 820px) {
  .product-page-reference {
    width: calc(100vw - 24px);
  }

  .product-reference-layout {
    grid-template-columns: 1fr;
  }

  .product-reference-layout .product-main-image {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .product-page-reference .breadcrumb strong {
    display: none;
  }

  .product-reference-layout {
    gap: 28px;
  }

  .product-shipping-quote > div,
  .product-purchase-row {
    grid-template-columns: 1fr;
  }

  .product-quantity {
    grid-template-columns: 48px 1fr 48px;
  }

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

  .product-related-reference .product-grid {
    grid-template-columns: 1fr;
  }
}
