﻿:root {
  --ink: #090909;
  --soft-ink: #171717;
  --nav: #0f0f0f;
  --gold: #3a3a3a;
  --red: #2f2f2f;
  --dark-red: #1f1f1f;
  --muted: #6a6a6a;
  --line: #dedede;
  --paper: #f4f4f4;
  --surface: #ffffff;
  --surface-2: #eeeeee;
  --whatsapp: #25d366;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0, #f7f7f7 240px, #eeeeee 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.topbar {
  position: sticky;
  top: 36px;
  z-index: 30;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(16px, 5vw, 56px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.utility-bar {
  position: sticky;
  top: 0;
  z-index: 31;
  display: block;
  height: 36px;
  overflow: hidden;
  background: linear-gradient(90deg, #0a0a0a, #1c1c1c 48%, #303030);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
}

.announcement-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.announcement-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  animation: ticker-scroll 28s linear infinite;
}

.announcement-track:hover {
  animation-play-state: paused;
}

.announcement-group {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-right: 22px;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0;
}

.ticker-item strong {
  color: #ffffff;
  font-size: 12.5px;
}

.ticker-dot {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.utility-bar svg {
  width: 14px;
  height: 14px;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  background: #050505;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.header-search {
  display: flex;
  width: min(520px, 40vw);
  height: 46px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #8a8a8a;
  text-decoration: none;
}

.header-search svg {
  width: 19px;
  height: 19px;
  color: var(--red);
}

.header-search span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

.header-actions,
.social-links {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 10px;
}

.social-links {
  gap: 8px;
}

.social-links a,
.cart-button,
.icon-button,
.ghost-button,
.product-actions button,
.checkout-button,
.quantity button,
.filters button,
.featured-actions button {
  display: inline-flex;
  border: 0;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: var(--ink);
  color: #ffffff;
  text-decoration: none;
}

.social-links svg,
.social-links i,
.cart-button svg,
.ghost-button svg,
.product-actions svg,
.checkout-button svg,
.icon-button svg,
.search svg,
.order-note svg,
.featured-actions svg {
  width: 18px;
  height: 18px;
}

.brand-social-icon {
  fill: currentColor;
}

.cart-button {
  position: relative;
  min-width: 66px;
  height: 46px;
  padding: 0 12px;
  background: var(--ink);
  color: #ffffff;
}

.manager-button {
  min-width: 46px;
  text-decoration: none;
}

.community-button {
  min-width: 46px;
  padding-inline: 0;
  text-decoration: none;
}

.contact-section,
.policy-section,
.institutional-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1.15fr);
  gap: 24px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
}

.contact-heading span,
.catalog-intro span,
.summary span {
  letter-spacing: 0;
}

.contact-heading span {
  display: block;
  margin-bottom: 10px;
  color: #666666;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-heading h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.05;
}

.contact-heading p {
  margin: 0;
  color: #666666;
  line-height: 1.55;
}

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

.contact-form label {
  display: grid;
  gap: 6px;
  color: #333333;
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f8f8;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.contact-form input {
  height: 44px;
  padding: 0 12px;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
  background: #ffffff;
}

.contact-form button {
  height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

.policy-section {
  display: grid;
  gap: 10px;
}

.policy-section details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
}

.policy-section summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 900;
}

.policy-section p {
  margin: 0;
  padding: 0 18px 18px;
  color: #666666;
  line-height: 1.55;
}

.institutional-footer {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  background: #0b0b0d;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.8fr;
  gap: 28px;
  padding: 28px;
}

.footer-grid h3 {
  margin: 0 0 14px;
  font-size: 16px;
}

.footer-grid a {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin: 9px 0;
  color: #ffffff;
  text-decoration: none;
}

.footer-grid a:hover {
  text-decoration: underline;
}

.footer-grid svg {
  width: 18px;
  height: 18px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #17171a;
}

.secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #17171a;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.secure-badge svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #cfcfcf;
  font-size: 13px;
}

.category-nav {
  position: sticky;
  top: 110px;
  z-index: 29;
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px clamp(14px, 4vw, 48px);
  background: linear-gradient(90deg, #050505, #1a1a1a 55%, var(--dark-red));
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.category-nav button {
  min-height: 34px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  background: transparent;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.category-nav button.active,
.category-nav button:hover {
  background: var(--red);
  color: #ffffff;
}

#cartCount {
  min-width: 23px;
  padding: 3px 7px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

main {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 52px;
}

.catalog-cover {
  margin: 16px 0 18px;
  overflow: hidden;
  border: 1px solid #2d2d2d;
  border-radius: 8px;
  background: #050505;
}

.catalog-cover picture,
.catalog-cover img {
  display: block;
  width: 100%;
  height: auto;
}

.catalog-cover img {
  aspect-ratio: 1920 / 819;
  object-fit: contain;
}

.highlight-carousel-section {
  margin: 10px 0 14px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: none;
}

.highlight-carousel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.highlight-carousel-heading span {
  display: block;
  color: #8b6b31;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.highlight-carousel-heading h1 {
  margin: 3px 0 2px;
  color: var(--ink);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1;
}

.highlight-carousel-heading p {
  display: none;
}

.highlight-carousel-controls {
  display: flex;
  gap: 8px;
}

.highlight-carousel-controls button {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f5f5f5;
  color: var(--ink);
}

.highlight-carousel-controls button:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.highlight-carousel-controls svg {
  width: 18px;
  height: 18px;
}

.highlight-carousel-rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 1px 1px 5px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.highlight-carousel-rail::-webkit-scrollbar {
  display: none;
}

.highlight-card {
  display: grid;
  flex: 0 0 calc((100% - 24px) / 3);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
  scroll-snap-align: start;
}

.highlight-card-image {
  position: relative;
  display: grid;
  width: 100%;
  height: 180px;
  place-items: center;
  padding: 10px;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid #eeeeee;
  background: #ffffff;
}

.highlight-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.highlight-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 7px;
  border-radius: 999px;
  background: #171717;
  color: #ffffff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.highlight-card-badge svg {
  width: 12px;
  height: 12px;
  color: #d8b35d;
  fill: #d8b35d;
}

.highlight-card-body {
  display: flex;
  min-height: 138px;
  flex-direction: column;
  padding: 11px;
}

.highlight-card-category {
  color: #8b6b31;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.highlight-card-body h2 {
  min-height: 43px;
  margin: 6px 0 10px;
  font-size: 14px;
  line-height: 1.28;
}

.highlight-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.highlight-card-price span,
.highlight-card-price small {
  display: block;
}

.highlight-card-price span {
  font-size: 18px;
  font-weight: 950;
}

.highlight-card-price small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}

.highlight-card-add {
  display: inline-flex;
  min-width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: 8px;
  padding: 0 11px;
  background: var(--ink);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.highlight-card-add svg {
  width: 16px;
  height: 16px;
}

.catalog-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 18px 0 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.catalog-intro span,
.catalog-intro-actions small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalog-intro h1 {
  margin: 4px 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.catalog-intro p {
  max-width: 620px;
  margin: 0;
  color: #555555;
  font-size: 15px;
  line-height: 1.45;
}

.catalog-intro-actions {
  display: grid;
  justify-items: end;
  gap: 4px;
  text-align: right;
}

.catalog-intro-actions strong {
  font-size: 20px;
}

.update-summary {
  display: grid;
  gap: 12px;
  margin: 12px 0 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.update-summary-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.update-summary-heading span,
.update-summary-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.update-summary-heading strong {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--soft-ink);
  color: #ffffff;
  font-size: 12px;
}

.update-summary-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.update-summary-grid div {
  min-height: 76px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f7f7;
}

.update-summary-grid strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.update-summary-grid span {
  display: block;
  margin-top: 7px;
  line-height: 1.25;
}

.community-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin: 12px 0 14px;
  padding: 14px 16px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
}

.community-callout-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #101010;
  color: #ffffff;
}

.community-callout-icon svg {
  width: 20px;
  height: 20px;
}

.community-callout-copy {
  min-width: 0;
}

.community-callout-copy span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.community-callout-copy strong {
  display: block;
  margin-top: 3px;
  font-size: 15px;
  line-height: 1.25;
}

.community-callout a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 0 14px;
  background: var(--whatsapp);
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.community-callout a svg {
  width: 16px;
  height: 16px;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 14px;
}

.benefit-item {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #ffffff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
}

.benefit-item svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: #2f2f2f;
}

.catalog-simple {
  grid-template-columns: 1fr;
}

.catalog-top-panel {
  position: sticky;
  top: 116px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.catalog-top-panel .filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.catalog-top-panel .filters::-webkit-scrollbar {
  display: none;
}

.catalog-top-panel .filters button {
  flex: 0 0 auto;
}

.catalog-top-summary {
  margin: 10px 0 12px;
  border-radius: 8px;
}

.catalog-simple .summary {
  margin: 14px 0;
  border-radius: 8px;
}

.catalog-simple .grid {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
}

.catalog-simple .product-card {
  min-height: 0;
  border-radius: 8px;
  box-shadow: none;
}

.catalog-simple .product-card:hover {
  transform: none;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.catalog-simple .product-image-wrap {
  height: 184px;
  border-bottom: 1px solid #eeeeee;
  background: #ffffff;
}

.catalog-simple .product-body {
  min-height: 0;
  padding: 14px;
}

.catalog-simple .product-body h2 {
  min-height: 58px;
  margin: 7px 0 0;
  font-size: 15px;
  line-height: 1.28;
}

.catalog-simple .product-body p {
  display: none;
}

.catalog-simple .product-actions {
  gap: 10px;
  margin-top: 0;
  padding-top: 12px;
}

.catalog-simple .product-actions strong span {
  font-size: 20px;
}

.catalog-simple .product-actions strong small {
  color: #555555;
  font-size: 12px;
}

.catalog-simple .product-actions button {
  min-height: 40px;
}

.store-hero {
  overflow: hidden;
  margin-inline: calc((100vw - min(1280px, calc(100% - 32px))) / -2);
  border-bottom: 1px solid var(--line);
  background: #050505;
}

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

.store-hero img {
  height: min(360px, 31vw);
  min-height: 220px;
  object-fit: cover;
  object-position: center;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 16px;
  padding: 10px 0;
  overflow: hidden;
}

.trust-strip div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  align-items: center;
  min-width: 0;
}

.trust-strip svg {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  color: var(--gold);
}

.trust-strip span,
.trust-strip strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trust-strip span {
  color: #3f3f3f;
  font-size: 13px;
}

.trust-strip strong {
  color: var(--ink);
  font-size: 14px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.section-heading span {
  display: block;
  color: #606060;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-heading strong {
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1;
}

.section-heading button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 8px;
  padding: 0 14px;
  background: var(--red);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.category-showcase {
  margin: 18px 0;
}

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

.category-showcase-grid button {
  display: grid;
  min-height: 138px;
  align-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: linear-gradient(180deg, #ffffff, #f5f5f5);
  color: var(--ink);
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.category-showcase-grid button:hover,
.category-showcase-grid button.active {
  border-color: var(--red);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.category-showcase-grid svg {
  width: 26px;
  height: 26px;
  color: var(--red);
}

.category-showcase-grid span {
  display: block;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.12;
}

.category-showcase-grid strong {
  display: inline-flex;
  width: max-content;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  background: var(--red);
  color: #ffffff;
  font-size: 12px;
}

.commerce-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 18px 0;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid #171717;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #070707 0%, #1a1a1a 58%, #3a0c0f 100%);
  color: #ffffff;
}

.commerce-band span {
  display: block;
  color: #cfcfcf;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.commerce-band strong {
  display: block;
  margin-top: 5px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.04;
}

.commerce-band p {
  max-width: 680px;
  margin: 9px 0 0;
  color: #dddddd;
  font-size: 14px;
  line-height: 1.45;
}

.commerce-steps {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.commerce-steps span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  letter-spacing: 0;
  text-transform: none;
}

.commerce-steps svg {
  width: 17px;
  height: 17px;
  color: var(--red);
}

.category-rails {
  display: grid;
  gap: 18px;
  margin: 18px 0;
}

.category-rail-section {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
}

.product-rail {
  display: grid;
  grid-auto-columns: minmax(210px, 1fr);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.product-rail .product-card {
  min-height: 390px;
  scroll-snap-align: start;
  box-shadow: none;
}

.product-rail .product-image-wrap {
  height: 178px;
}

.product-rail .product-body {
  min-height: 212px;
}

.product-rail .product-body h2 {
  font-size: 15px;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  margin: 18px 0 16px;
}

.hero-copy {
  display: flex;
  min-height: auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid #202020;
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 12%, rgba(47, 47, 47, 0.2), transparent 24%),
    linear-gradient(115deg, rgba(47, 47, 47, 0.28), rgba(255, 255, 255, 0) 38%),
    var(--ink);
  color: #ffffff;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.16);
  order: 2;
}

.eyebrow,
.featured-copy > span,
.summary span,
.cart-header span,
.product-meta {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow,
.featured-copy > span,
.summary span,
.cart-header span,
.product-meta {
  color: #555555;
}

.catalog-updated {
  display: block;
  margin-top: 4px;
  color: #6f6f6f;
  font-size: 13px;
  font-weight: 700;
}

.hero-copy .eyebrow {
  color: #d8d8d8;
}

.featured-copy > span {
  color: var(--ink);
}

.hero-copy h1 {
  max-width: 620px;
  margin: 10px 0 12px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
}

.hero-copy p {
  max-width: 560px;
  margin: 0;
  color: #dedede;
  font-size: 15px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.hero-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--red);
  border-radius: 8px;
  padding: 0 16px;
  background: var(--red);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.hero-actions a.secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.hero-actions svg {
  width: 18px;
  height: 18px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
  max-width: 520px;
}

.hero-stats div {
  min-width: 0;
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 26px;
  line-height: 1;
}

.hero-stats span {
  margin-top: 5px;
  color: #d0d0d0;
  font-size: 11px;
}

.hero-market {
  display: grid;
  width: 100%;
  max-width: 660px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-market a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-market a:hover {
  border-color: rgba(47, 47, 47, 0.75);
  background: rgba(47, 47, 47, 0.2);
}

.hero-market svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--red);
}

.catalog-status {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(47, 47, 47, 0.45);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(47, 47, 47, 0.14);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.catalog-status svg {
  width: 17px;
  height: 17px;
  color: var(--red);
}

.cover {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111111;
  order: 1;
}

.cover-carousel {
  display: none;
  aspect-ratio: 1920 / 500;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  min-height: 330px;
}

.cover-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transition: opacity 700ms ease;
}

.cover-slide.active {
  z-index: 1;
  opacity: 1;
}

.cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #070707;
}

.order-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
  padding: 16px 18px;
  border: 1px solid #151515;
  border-radius: 8px;
  background: var(--soft-ink);
  color: #ffffff;
}

.order-note svg {
  flex: 0 0 auto;
}

.order-note strong,
.order-note span {
  display: block;
}

.order-note strong {
  font-size: 16px;
}

.order-note span {
  margin-top: 2px;
  color: #dddddd;
  font-size: 14px;
  line-height: 1.35;
}

.watch-feature-cover {
  position: relative;
  overflow: hidden;
  margin: 18px 0;
  border: 1px solid #181818;
  border-radius: 8px;
  background: #050505;
}

.watch-feature-cover picture,
.watch-feature-cover img {
  display: block;
  width: 100%;
}

.watch-feature-cover img {
  aspect-ratio: 1920 / 650;
  object-fit: cover;
}

.watch-feature-cover button {
  position: absolute;
  left: 36px;
  bottom: 34px;
  min-height: 46px;
  border: 1px solid var(--whatsapp);
  border-radius: 8px;
  padding: 0 18px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--whatsapp);
  font-weight: 900;
}

.social-feed-section {
  margin: 18px 0;
}

.social-feed-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.social-feed-heading span,
.social-feed-title span {
  display: block;
  color: #606060;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.social-feed-heading strong {
  color: var(--ink);
  font-size: 18px;
}

.social-feed-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
  gap: 12px;
}

.social-feed-grid.single-feed {
  grid-template-columns: 1fr;
}

.social-feed-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.social-feed-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}

.social-feed-title svg,
.social-feed-title i {
  width: 24px;
  height: 24px;
  color: var(--ink);
}

.social-feed-title strong {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  font-size: 15px;
}

.youtube-feed-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #080808;
}

.instagram-mini-feed {
  min-height: 142px;
  padding: 16px;
  background: #f7f7f7;
}

.instagram-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.instagram-post {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
}

.instagram-post img {
  width: 100%;
  height: 100%;
  min-height: 112px;
  display: block;
  object-fit: cover;
}

.instagram-post span {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 18px 8px 8px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0));
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.instagram-feed-placeholder {
  display: inline-flex;
  grid-column: 1 / -1;
  min-height: 96px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #111111 0%, #2b2b2b 55%, #f6f6f6 55%, #ffffff 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.shopee-section {
  margin: 18px 0;
}

.shopee-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #111111 0%, #242424 58%, #ffffff 58%, #f3f3f3 100%);
}

.shopee-copy {
  min-width: 0;
  color: #ffffff;
}

.shopee-copy span {
  display: block;
  color: #cfcfcf;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shopee-copy strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.05;
}

.shopee-copy p {
  max-width: 520px;
  margin: 8px 0 0;
  color: #e5e5e5;
  font-size: 14px;
}

.shopee-button {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 0 18px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 850;
  text-decoration: none;
}

.shopee-button svg {
  width: 18px;
  height: 18px;
}

.featured-section {
  display: none;
  grid-template-columns: 0.9fr 1.1fr;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.featured-image-wrap {
  display: grid;
  min-height: 330px;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 30%, #ffffff 0, #f6f6f6 48%, #e9e9e9 100%);
}

.featured-image-wrap img {
  width: 100%;
  max-height: 310px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.featured-copy {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 4vw, 38px);
}

.featured-copy h2 {
  margin: 10px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.featured-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.featured-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.featured-price,
.price-stack {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.featured-price span,
.price-stack span {
  white-space: nowrap;
  font-size: 26px;
  font-weight: 900;
}

.featured-price small,
.price-stack small,
.cart-total small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.featured-actions button {
  min-height: 46px;
  padding: 0 18px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 900;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 282px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.catalog-panel {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
}

.search {
  display: flex;
  height: 50px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.filters {
  display: grid;
  gap: 8px;
}

.filters button {
  min-height: 42px;
  justify-content: flex-start;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--soft-ink);
  font-weight: 750;
}

.filters button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.ghost-button {
  min-height: 42px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--ink);
  font-weight: 750;
}

.watch-line-section {
  margin-bottom: 14px;
}

.watch-line-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.watch-line-heading span {
  color: #555555;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.watch-line-heading strong {
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1;
}

.watch-line-grid {
  display: grid;
  grid-template-columns: minmax(150px, 0.6fr) repeat(2, minmax(220px, 1fr));
  gap: 12px;
}

.watch-line-card {
  position: relative;
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 7px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  color: #ffffff;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.76)),
    var(--watch-line-cover) center/cover,
    #111111;
  cursor: pointer;
}

.watch-line-card.compact {
  justify-content: center;
  color: var(--ink);
  background: #ffffff;
}

.watch-line-card span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.watch-line-card strong {
  max-width: 13ch;
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1;
}

.watch-line-card small {
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.35;
}

.watch-line-card.active {
  border-color: #4ade80;
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.25);
}

.summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.summary strong {
  display: block;
  margin-top: 2px;
  font-size: 24px;
  line-height: 1.1;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
  gap: 14px;
}

.product-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  border-color: #c8c8c8;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.product-image-wrap {
  display: grid;
  height: 205px;
  place-items: center;
  overflow: hidden;
  padding: 20px;
  cursor: zoom-in;
  background:
    radial-gradient(circle at 50% 35%, #ffffff 0, #ffffff 42%, #eeeeee 100%);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 220ms ease;
}

.product-card.watch-product:hover .product-image {
  transform: scale(1.18);
}

.product-body {
  display: flex;
  min-height: 225px;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.product-meta {
  color: #4b4b4b;
}

.product-body h2 {
  min-height: 50px;
  margin: 8px 0;
  font-size: 17px;
  line-height: 1.28;
  cursor: pointer;
}

.product-body p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  cursor: pointer;
}

.product-actions {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  flex-direction: column;
  margin-top: auto;
  padding-top: 16px;
}

.payment-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.payment-links a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 10px;
  background: #f7f7f7;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.payment-links a:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.product-actions strong span {
  display: block;
  font-size: 21px;
}

.product-actions strong em,
.highlight-card-price em,
.product-modal-price em {
  color: #666666;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.product-actions strong .catalog-retail-highlight,
.highlight-card-price .catalog-retail-highlight {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1px 8px;
  border-left: 4px solid var(--ink);
  padding: 8px 9px;
  background: #f5f5f5;
}

.catalog-retail-highlight em {
  grid-column: 1 / -1;
  color: #333333;
  font-size: 11px;
  font-weight: 950;
}

.catalog-retail-highlight b {
  color: var(--ink);
  font-size: 23px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.price-tiers {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f7f7f7;
  font-size: 11px;
  font-weight: 800;
}

.price-tiers-title {
  display: block;
  padding: 6px 8px;
  color: #333333;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price-tier-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.price-tier-grid span {
  display: grid !important;
  gap: 2px;
  padding: 6px 7px;
  background: #ffffff;
}

.price-tier-grid b {
  color: #666666;
  font-size: 9px;
  text-transform: uppercase;
}

.price-tier-grid strong {
  color: var(--ink);
  font-size: 11px;
  white-space: nowrap;
}

.product-actions strong small {
  display: block;
}

.product-actions button {
  width: 100%;
  min-height: 42px;
  padding: 0 13px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 900;
}

.cart-panel,
.budget-panel,
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  visibility: hidden;
  pointer-events: none;
}

.cart-panel.open,
.budget-panel.open,
.product-modal.open {
  visibility: visible;
  pointer-events: auto;
}

.cart-backdrop,
.budget-backdrop,
.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0;
  transition: opacity 180ms ease;
}

.cart-panel.open .cart-backdrop,
.budget-panel.open .budget-backdrop,
.product-modal.open .product-modal-backdrop {
  opacity: 1;
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(450px, 100%);
  height: 100%;
  flex-direction: column;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

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

.budget-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(520px, calc(100% - 28px));
  max-height: calc(100% - 28px);
  gap: 14px;
  overflow: auto;
  padding: 20px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transform: translate(-50%, -48%) scale(0.98);
  opacity: 0;
  transition: transform 200ms ease, opacity 200ms ease;
}

.budget-panel.open .budget-dialog {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.product-modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(900px, calc(100% - 28px));
  max-height: calc(100% - 28px);
  grid-template-columns: minmax(240px, 0.9fr) 1fr;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transform: translate(-50%, -48%) scale(0.98);
  opacity: 0;
  transition: transform 200ms ease, opacity 200ms ease;
}

.product-modal.open .product-modal-dialog {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.product-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.product-modal-image-wrap {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: 22px;
  border-right: 1px solid var(--line);
  background: #f7f7f7;
}

.product-modal-image-wrap img {
  max-width: 100%;
  max-height: 460px;
  object-fit: contain;
}

.product-modal-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
}

.product-modal-body > span {
  color: #555555;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-modal-body h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.05;
}

.product-modal-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-modal-price {
  display: grid;
  gap: 3px;
  font-size: 24px;
  font-weight: 950;
}

.product-modal-price span,
.product-modal-price small {
  display: block;
}

.product-modal-price small {
  color: #555555;
  font-size: 13px;
}

.product-observation-label {
  display: grid;
  gap: 8px;
  color: #333333;
  font-size: 13px;
  font-weight: 900;
}

.product-observation-label textarea {
  width: 100%;
  min-height: 86px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #f8f8f8;
  color: var(--ink);
  font: inherit;
}

.product-observation-label textarea:focus {
  border-color: var(--ink);
  background: #ffffff;
  outline: none;
}

.product-modal-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  font-weight: 900;
}

.product-minimum-note {
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--ink) !important;
  font-size: 13px;
  font-weight: 800;
}

.product-minimum-note.wholesale-applied,
.cart-price-tier.wholesale-applied {
  border-color: #15803d;
  background: #ecfdf3;
  color: #166534 !important;
}

.product-modal-actions {
  display: grid;
  gap: 10px;
}

.product-modal-actions button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 950;
}

.product-modal-actions button:first-child {
  background: var(--ink);
  color: #ffffff;
}

.product-modal-actions button:last-child {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.cart-header,
.budget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.cart-header h2,
.budget-header h2 {
  margin: 2px 0 0;
  font-size: 26px;
}

.budget-header span {
  display: block;
  color: #555555;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.budget-note {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.budget-summary {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #f7f7f7;
}

.budget-summary > span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.budget-summary strong {
  font-size: 1.2rem;
}

.budget-summary small {
  color: var(--muted);
  font-weight: 700;
}

.budget-dialog label {
  display: grid;
  gap: 7px;
  color: #333333;
  font-size: 13px;
  font-weight: 900;
}

.budget-dialog input,
.budget-dialog select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #f8f8f8;
  color: var(--ink);
  font: inherit;
}

.budget-dialog input:focus,
.budget-dialog select:focus {
  border-color: var(--ink);
  background: #ffffff;
  outline: none;
}

.budget-confirm {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.budget-confirm input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.budget-confirm span {
  color: #333333;
  font-size: 13px;
  line-height: 1.4;
}

.icon-button {
  width: 42px;
  height: 42px;
  background: var(--surface-2);
  color: var(--ink);
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 14px 20px;
}

.empty-cart {
  margin: 32px 0;
  color: var(--muted);
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.cart-item h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
}

.cart-item-note {
  margin: 6px 0 0;
  padding: 7px 9px;
  border-radius: 7px;
  background: var(--surface-2);
  color: #444444;
  font-size: 12px;
  line-height: 1.35;
}

.cart-price-tier {
  margin: 7px 0 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 8px;
  background: #f7f7f7;
  color: #555555;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
}

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

.quantity {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.quantity button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.quantity span {
  min-width: 28px;
  text-align: center;
  font-weight: 900;
}

.cart-footer {
  padding: 18px 20px 20px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.cart-rule {
  margin: 0 0 12px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}

.cart-rule.ready {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

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

.cart-total > span {
  color: var(--muted);
}

.cart-total strong {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  font-size: 24px;
  text-align: right;
}

.cart-total strong span {
  font-size: 24px;
}

.checkout-button,
.budget-submit {
  width: 100%;
  min-height: 52px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 900;
}

.budget-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
}

.budget-submit svg {
  width: 19px;
  height: 19px;
}

.checkout-button:disabled {
  cursor: not-allowed;
  background: #a8a8a8;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  text-decoration: none;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-float:hover {
  background: #1ebe5d;
}

@media (max-width: 980px) {
  .product-modal-dialog {
    grid-template-columns: 1fr;
  }

  .product-modal-image-wrap {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-modal-body {
    padding: 22px;
  }

  .hero-shell,
  .featured-section,
  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-panel {
    position: static;
  }

  .filters {
    display: flex;
    flex-wrap: wrap;
  }

  .filters button {
    justify-content: center;
  }

  .watch-line-grid {
    grid-template-columns: 1fr;
  }

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

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

  .commerce-steps {
    flex-wrap: wrap;
  }

  .watch-line-card,
  .watch-line-card.compact {
    min-height: 170px;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .highlight-card {
    flex-basis: calc((100% - 12px) / 2);
  }
}

@media (max-width: 760px) {
  .utility-bar {
    height: 32px;
    font-size: 10.5px;
  }

  .announcement-track {
    animation-duration: 24s;
  }

  .announcement-group {
    gap: 16px;
    padding-right: 16px;
  }

  .ticker-item strong {
    font-size: 10.5px;
  }

  .topbar {
    top: 32px;
    min-height: 66px;
    padding-inline: 14px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand small {
    display: none;
  }

  .header-search {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .social-links {
    gap: 6px;
  }

  .social-links a {
    width: 36px;
    height: 36px;
  }

  .social-links a:nth-child(2) {
    display: none;
  }

  .cart-button {
    min-width: 58px;
    height: 40px;
  }

  .manager-button,
  .community-button {
    min-width: 42px;
    padding-inline: 0;
  }

  .category-nav {
    top: 66px;
    justify-content: flex-start;
    gap: 8px;
    min-height: 48px;
    overflow-x: auto;
    padding: 7px 12px;
    scrollbar-width: none;
  }

  .category-nav::-webkit-scrollbar {
    display: none;
  }

  .category-nav button {
    flex: 0 0 auto;
    min-height: 34px;
    padding-inline: 14px;
    font-size: 12px;
  }

  main {
    width: min(100% - 24px, 1280px);
    padding-top: 0;
  }

  .catalog-cover {
    margin: 12px 0 14px;
  }

  .highlight-carousel-section {
    margin: 8px 0 10px;
    padding: 8px;
    border-radius: 8px;
  }

  .highlight-carousel-heading {
    align-items: center;
    margin-bottom: 7px;
  }

  .highlight-carousel-heading span {
    font-size: 9px;
  }

  .highlight-carousel-heading h1 {
    margin-top: 2px;
    font-size: 18px;
  }

  .highlight-carousel-heading p {
    display: none;
  }

  .highlight-carousel-controls button {
    width: 30px;
    height: 30px;
  }

  .highlight-carousel-rail {
    gap: 8px;
    margin-right: -8px;
    padding-right: 8px;
  }

  .highlight-card {
    grid-template-columns: 44% minmax(0, 56%);
    flex-basis: min(84vw, 330px);
    height: 180px;
    min-height: 180px;
    border-radius: 8px;
  }

  .highlight-card-image {
    height: 180px;
    min-height: 180px;
    padding: 7px;
    border-right: 1px solid #eeeeee;
    border-bottom: 0;
  }

  .highlight-card-body {
    min-height: 180px;
    padding: 9px 9px 8px;
  }

  .highlight-card-badge {
    top: 7px;
    left: 7px;
    gap: 4px;
    padding: 4px 7px;
    font-size: 8px;
  }

  .highlight-card-body h2 {
    min-height: 0;
    margin: 5px 0 8px;
    font-size: 12px;
    line-height: 1.22;
  }

  .highlight-card-footer {
    align-items: flex-end;
    flex-direction: row;
    gap: 6px;
  }

  .highlight-card-price span {
    font-size: 16px;
  }

  .highlight-card-price small {
    font-size: 8px;
  }

  .highlight-card-add {
    width: auto;
    min-width: 86px;
    height: 32px;
    padding: 0 7px;
    font-size: 9px;
  }

  .catalog-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
  }

  .catalog-intro-actions {
    justify-items: start;
    text-align: left;
  }

  .update-summary {
    margin-top: 10px;
    padding: 12px;
  }

  .update-summary-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

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

  .update-summary-grid div {
    min-height: 72px;
    padding: 10px;
  }

  .update-summary-grid strong {
    font-size: 20px;
  }

  .update-summary-grid span {
    font-size: 10.5px;
  }

  .benefit-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-inline: -12px;
    padding: 0 12px 2px;
    scrollbar-width: none;
  }

  .benefit-strip::-webkit-scrollbar {
    display: none;
  }

  .benefit-item {
    min-width: 168px;
    min-height: 50px;
    padding: 9px 11px;
    font-size: 11px;
  }

  .catalog-panel.catalog-top-panel {
    position: sticky;
    top: 98px;
    z-index: 28;
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 7px;
    margin-bottom: 10px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
  }

  .catalog-top-panel .search {
    grid-column: 1;
    min-width: 0;
  }

  .catalog-top-panel .filters {
    grid-column: 1 / -1;
    margin-inline: -8px;
    padding-inline: 8px;
  }

  .catalog-top-panel .ghost-button {
    grid-column: 2;
    width: 42px;
    min-width: 42px;
    padding: 0;
    font-size: 0;
  }

  .catalog-top-panel .ghost-button svg {
    margin: 0;
  }

  .catalog-top-summary {
    margin: 0 0 10px;
    padding: 12px 14px;
  }

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

  .catalog-simple .product-image-wrap {
    height: 150px;
  }

  .catalog-simple .product-body {
    min-height: 0;
    padding: 12px;
  }

  .catalog-simple .product-body h2 {
    min-height: 62px;
    font-size: 14px;
  }

  .store-hero {
    margin-inline: -12px;
  }

  .store-hero img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1080 / 760;
    object-fit: cover;
  }

  .trust-strip {
    display: flex;
    gap: 14px;
    margin: 14px -12px 10px;
    overflow-x: auto;
    padding: 10px 12px;
    scrollbar-width: none;
  }

  .trust-strip::-webkit-scrollbar {
    display: none;
  }

  .trust-strip div {
    flex: 0 0 220px;
  }

  .hero-copy {
    min-height: auto;
    padding: 20px;
  }

  .hero-copy h1 {
    font-size: 31px;
  }

  .hero-copy p {
    font-size: 14px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .hero-market {
    grid-template-columns: 1fr;
  }

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

  .hero-actions a {
    width: 100%;
  }

  .hero-stats div {
    padding: 11px 9px;
  }

  .hero-stats strong {
    font-size: 21px;
  }

  .hero-stats span {
    font-size: 10px;
  }

  .cover-carousel {
    min-height: 0;
    aspect-ratio: 1080 / 760;
  }

  .cover img {
    object-position: center;
  }

  .order-note {
    align-items: flex-start;
    margin: 14px 0;
    padding: 13px;
  }

  .section-heading {
    display: block;
  }

  .section-heading strong {
    display: block;
    margin-top: 4px;
    font-size: 22px;
  }

  .category-showcase-grid {
    display: flex;
    gap: 10px;
    margin-inline: -12px;
    overflow-x: auto;
    padding: 0 12px 4px;
    scrollbar-width: none;
  }

  .category-showcase-grid::-webkit-scrollbar {
    display: none;
  }

  .category-showcase-grid button {
    flex: 0 0 220px;
    min-height: 126px;
    padding: 14px;
  }

  .commerce-band {
    margin: 14px 0;
    padding: 16px;
  }

  .commerce-band strong {
    font-size: 23px;
  }

  .commerce-steps {
    width: 100%;
  }

  .commerce-steps span {
    flex: 1 1 96px;
  }

  .order-note strong {
    font-size: 15px;
  }

  .order-note span {
    font-size: 13px;
  }

  .watch-feature-cover {
    margin: 14px 0;
  }

  .watch-feature-cover img {
    aspect-ratio: 1080 / 760;
  }

  .watch-feature-cover button {
    left: 18px;
    bottom: 18px;
    min-height: 40px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .social-feed-heading {
    display: block;
    margin-bottom: 8px;
  }

  .social-feed-heading strong {
    font-size: 16px;
  }

  .social-feed-grid {
    grid-template-columns: 1fr;
  }

  .shopee-card {
    align-items: flex-start;
    flex-direction: column;
    background: #111111;
  }

  .shopee-button {
    width: 100%;
  }

  .social-feed-title {
    padding: 10px;
  }

  .instagram-mini-feed {
    min-height: 86px;
    padding: 12px;
  }

  .featured-image-wrap {
    min-height: 220px;
    padding: 18px;
  }

  .featured-image-wrap img {
    max-height: 220px;
  }

  .featured-copy {
    min-height: auto;
    padding: 18px;
  }

  .featured-copy h2 {
    font-size: 26px;
  }

  .featured-copy p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    font-size: 13px;
  }

  .featured-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }

  .featured-actions button {
    width: 100%;
  }

  .catalog-panel {
    padding: 12px;
  }

  .filters {
    flex-wrap: nowrap;
    margin-inline: -12px;
    padding-inline: 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filters button {
    flex: 0 0 auto;
    min-width: max-content;
    min-height: 38px;
    padding-inline: 12px;
    font-size: 14px;
  }

  .summary {
    margin-bottom: 10px;
    padding: 14px;
  }

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

  .watch-line-card,
  .watch-line-card.compact {
    min-height: 142px;
    padding: 14px;
  }

  .summary strong {
    font-size: 21px;
  }

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

  .product-card {
    min-height: 390px;
  }

  .product-image-wrap {
    height: 158px;
    padding: 12px;
  }

  .product-body {
    min-height: 0;
    padding: 12px;
  }

  .product-body h2 {
    min-height: 58px;
    font-size: 14px;
  }

  .product-body p {
    -webkit-line-clamp: 3;
    font-size: 12px;
  }

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

  .product-actions button {
    width: 100%;
  }

  .featured-price span,
  .price-stack span,
  .product-actions strong span {
    font-size: 21px;
  }

  .featured-price small,
  .price-stack small,
  .cart-total small {
    font-size: 11px;
  }

  .contact-section,
  .policy-section,
  .institutional-footer {
    width: min(100% - 20px, 1180px);
    margin-top: 18px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .contact-heading h2 {
    font-size: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .footer-bottom {
    padding: 14px 20px;
  }

  .community-callout {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    padding: 13px;
  }

  .community-callout a {
    grid-column: 1 / -1;
    width: 100%;
  }

  .community-callout-copy strong {
    font-size: 14px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 370px) {
  .brand strong {
    font-size: 16px;
  }

  .social-links a {
    width: 34px;
    height: 34px;
  }

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

/* Grade responsiva do catalogo simplificado. */
.catalog-layout.catalog-simple {
  display: block;
  width: 100%;
}

.catalog-simple .catalog-results,
.catalog-simple .grid {
  width: 100%;
  min-width: 0;
}

.catalog-simple .grid {
  grid-auto-rows: auto;
  align-items: stretch;
}

.catalog-simple .product-card {
  width: 100%;
  height: auto;
}

.catalog-simple .product-image-wrap {
  flex: 0 0 184px;
}

.catalog-simple .product-body {
  flex: 1 1 auto;
}

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

@media (min-width: 1024px) and (max-width: 1199px) {
  .catalog-simple .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .catalog-simple .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .highlight-carousel-controls {
    display: none;
  }

  .highlight-carousel-rail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
    padding: 1px;
    scroll-snap-type: none;
  }

  .highlight-card {
    width: 100%;
    height: 100%;
    min-width: 0;
  }

  .highlight-card:nth-child(n + 4) {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .highlight-carousel-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .catalog-simple .product-image-wrap {
    flex-basis: 158px;
  }
}

