    :root {
      --orange: #ff6a00;
      --orange-dark: #e25400;
      --orange-soft: #fff1e6;
      --black: #141414;
      --gray-900: #202124;
      --gray-700: #4b5563;
      --gray-500: #6b7280;
      --gray-300: #d1d5db;
      --gray-100: #f3f4f6;
      --white: #ffffff;
      --green: #00a650;
      --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
      --radius: 22px;
    }

    * { box-sizing: border-box; }

    .material-symbols-outlined {
      font-family: 'Material Symbols Outlined';
      font-weight: normal;
      font-style: normal;
      font-size: 20px;
      line-height: 1;
      letter-spacing: normal;
      text-transform: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      direction: ltr;
      -webkit-font-feature-settings: 'liga';
      -webkit-font-smoothing: antialiased;
      font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
    }

    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #f5f5f5;
      color: var(--black);
    }

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

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(20, 20, 20, 0.08);
    }

    .container {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
    }

    .nav {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: -0.04em;
      min-width: 0;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      color: white;
      background: linear-gradient(135deg, var(--black), var(--orange));
      box-shadow: 0 12px 28px rgba(255, 106, 0, 0.25);
    }

    .store-header-logo {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      object-fit: cover;
      display: block;
      flex-shrink: 0;
    }

    .brand-title {
      display: block;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

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

    .pill {
      border: 1px solid rgba(20, 20, 20, 0.08);
      background: white;
      padding: 10px 14px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      color: var(--gray-900);
      white-space: nowrap;
    }

    .hero {
      padding: 34px 0 22px;
    }

    .hero-card {
      position: relative;
      overflow: hidden;
      min-height: 310px;
      border-radius: 32px;
      background:
        radial-gradient(circle at 85% 20%, rgba(255, 106, 0, 0.22), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #fff7ef 54%, #ffffff 100%);
      box-shadow: var(--shadow);
      border: 1px solid rgba(255, 106, 0, 0.12);
      padding: 34px;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      align-items: center;
      gap: 24px;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--orange-soft);
      color: var(--orange-dark);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(34px, 5vw, 64px);
      line-height: 0.96;
      letter-spacing: -0.07em;
    }

    .hero p {
      margin: 18px 0 0;
      max-width: 590px;
      color: var(--gray-700);
      font-size: 17px;
      line-height: 1.6;
    }

    .hero-buttons {
      margin-top: 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 46px;
      border-radius: 999px;
      padding: 0 18px;
      font-weight: 800;
      border: 0;
      cursor: pointer;
      transition: 0.2s ease;
      font-size: 14px;
    }

    .btn-primary {
      background: var(--orange);
      color: white;
      box-shadow: 0 14px 28px rgba(255, 106, 0, 0.28);
    }

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

    .btn-secondary {
      background: white;
      color: var(--black);
      border: 1px solid rgba(20, 20, 20, 0.1);
    }

    .hero-visual {
      position: relative;
      min-height: 255px;
    }

    .phone-card {
      position: absolute;
      right: 10px;
      top: 4px;
      width: min(330px, 100%);
      background: white;
      border-radius: 28px;
      box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
      padding: 14px;
      transform: rotate(2deg);
    }

    .mini-product {
      display: grid;
      grid-template-columns: 86px 1fr;
      gap: 14px;
      align-items: center;
      border-radius: 20px;
      background: #fafafa;
      padding: 12px;
    }

    .mini-product img {
      width: 86px;
      height: 86px;
      object-fit: contain;
      background: white;
      border-radius: 16px;
    }

    .mini-product strong {
      display: block;
      font-size: 14px;
      line-height: 1.25;
    }

    .mini-product span {
      display: inline-block;
      margin-top: 8px;
      color: var(--green);
      font-weight: 800;
      font-size: 13px;
    }

    .floating-badge {
      position: absolute;
      left: 18px;
      bottom: 14px;
      background: var(--black);
      color: white;
      border-radius: 20px;
      padding: 14px 16px;
      box-shadow: 0 18px 40px rgba(20, 20, 20, 0.18);
      max-width: 230px;
      font-size: 13px;
      line-height: 1.4;
    }

    .section-head {
      margin: 26px 0 16px;
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 18px;
    }

    .section-head h2 {
      margin: 0;
      font-size: clamp(24px, 4vw, 36px);
      letter-spacing: -0.05em;
    }

    .section-head p {
      margin: 7px 0 0;
      color: var(--gray-500);
      line-height: 1.5;
    }

    .marketplace-banner {
      width: 100%;
      border-radius: 16px;
      overflow: hidden;
      margin: 20px 0 18px;
      border: 1px solid #eee;
      box-sizing: border-box;
    }

    .marketplace-banner img {
      width: 100%;
      height: auto;
      display: block;
    }

    .flash-deals {
      margin-bottom: 14px;
    }

    .flash-deals__header h2 {
      margin: 0 0 10px;
      font-size: 20px;
      letter-spacing: -0.02em;
    }

    .flash-deals__grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 12px;
      margin-bottom: 4px;
    }

    .flash-deal-card .product-title {
      min-height: 0;
      -webkit-line-clamp: 2;
    }

    .flash-countdown {
      margin-top: 6px;
      font-size: 12px;
      font-weight: 700;
      color: #b91c1c;
    }

    .filters {
      position: sticky;
      top: 73px;
      z-index: 40;
      background: #f5f5f5;
      padding: 10px 0 16px;
    }

    .filter-grid {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      align-items: center;
      max-width: 100%;
    }

    .filter-grid > * {
      min-width: 0;
    }

    .search-box {
      position: relative;
    }

    .search-box input {
      width: 100%;
      height: 48px;
      border: 1px solid rgba(20, 20, 20, 0.12);
      border-radius: 999px;
      padding: 0 42px 0 44px;
      font: inherit;
      background: white;
      outline: none;
    }

    .search-box input[type="search"]::-webkit-search-cancel-button {
      -webkit-appearance: none;
      appearance: none;
    }

    .search-box svg {
      position: absolute;
      left: 17px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--gray-500);
    }

    .search-clear-button {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      width: 22px;
      height: 22px;
      border: 0;
      border-radius: 999px;
      display: none;
      align-items: center;
      justify-content: center;
      background: rgba(20, 20, 20, 0.1);
      color: #374151;
      font-size: 14px;
      line-height: 1;
      cursor: pointer;
      padding: 0;
    }

    .chips {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      overflow-y: hidden;
      white-space: nowrap;
      flex-wrap: nowrap;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 2px;
      scrollbar-width: none;
      max-width: 100%;
    }

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

    .chip {
      height: 42px;
      border-radius: 999px;
      padding: 0 14px;
      border: 1px solid rgba(20, 20, 20, 0.1);
      background: white;
      font-weight: 800;
      color: var(--gray-700);
      white-space: nowrap;
      cursor: pointer;
      flex: 0 0 auto;
    }

.chip.active {
  background: var(--black);
  color: white;
  border-color: var(--black);
}

.storefront-category-filter-button {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111827;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  white-space: nowrap;
}

.storefront-category-filter-button .material-symbols-outlined {
  font-size: 19px;
}

.category-filter-count {
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #ff5a00;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
}

.category-filter-modal[hidden] {
  display: none;
}

.category-filter-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.category-filter-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(3px);
}

.category-filter-panel {
  position: absolute;
  right: 24px;
  top: 24px;
  bottom: 24px;
  width: min(420px, calc(100vw - 48px));
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.24);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.category-filter-header {
  padding: 22px;
  border-bottom: 1px solid #eef2f7;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.category-filter-header h2 {
  margin: 0;
  font-size: 22px;
}

.category-filter-header p {
  margin: 6px 0 0;
  color: #64748b;
  font-size: 14px;
}

.category-filter-header button {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.category-filter-search {
  margin: 16px 22px 10px;
  min-height: 46px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-filter-search input {
  border: 0;
  outline: 0;
  width: 100%;
  font-size: 15px;
}

.category-filter-list {
  padding: 10px 22px 18px;
  overflow-y: auto;
  display: grid;
  gap: 8px;
}

.category-filter-option {
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 800;
  color: #111827;
}

.category-filter-option.is-selected {
  background: #fff7ed;
  border-color: #ff5a00;
  color: #ea580c;
}

.category-filter-option .material-symbols-outlined {
  font-size: 18px;
}

.category-filter-footer {
  padding: 16px 22px;
  border-top: 1px solid #eef2f7;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.category-filter-clear,
.category-filter-apply {
  min-height: 46px;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
}

.category-filter-clear {
  background: #fff;
  border: 1px solid #e5e7eb;
}

.category-filter-apply {
  background: #ff5a00;
  border: 1px solid #ff5a00;
  color: #fff;
}

    .products {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 7px;
      padding-bottom: 28px;
    }

    .product-card {
      background: white;
      border-radius: 14px;
      border: 1px solid #eeeeee;
      overflow: hidden;
      box-shadow: none;
      display: flex;
      flex-direction: column;
      min-height: 100%;
      transition: box-shadow .18s ease, transform .18s ease;
      padding: 0;
      cursor: pointer;
    }

    .product-card:hover {
      transform: translateY(-1px);
      box-shadow: 0 2px 8px rgba(0,0,0,.08);
    }

    .image-wrap {
      position: relative;
      background: #fff;
      width: 100%;
      height: 185px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
    }

    .image-wrap.has-flash {
      overflow: hidden;
    }

    .image-wrap img {
      width: 100%;
      height: 100%;
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
    }

    .product-card img,
    .product-image img,
    .product-thumb img {
      width: 100%;
      height: 100%;
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
    }

    .product-image,
    .product-thumb,
    .product-card-image {
      width: 100%;
      height: 185px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .tag {
      position: absolute;
      left: 12px;
      top: 12px;
      background: var(--orange);
      color: white;
      border-radius: 999px;
      padding: 6px 10px;
      font-size: 8px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: -0.02em;
    }

    .card-body {
      padding: 10px 12px 12px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .category {
      color: #ff6b00;
      font-size: 9.5px;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .product-title {
      margin: 0;
      font-size: 12px;
      line-height: 1.18;
      letter-spacing: 0;
      min-height: 0;
      font-weight: 500;
      color: #333;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 8px;
    }

    .product-desc {
      color: var(--gray-500);
      font-size: 10px;
      line-height: 1.35;
      margin: 0 0 8px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .product-meta-row {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
      margin: 0 0 8px;
    }

    .product-meta-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 4px 8px;
      font-size: 11px;
      font-weight: 700;
      line-height: 1.15;
      border: 1px solid transparent;
      white-space: nowrap;
    }

    .product-card .product-meta-badge-marketplace {
      background: #fef3c7;
      border-color: #fcd34d;
      color: #7c5b00;
    }

    .product-card .product-meta-badge-marketplace.is-mercado-livre {
      background: #fff7cc;
      border-color: #ffe066;
      color: #ed7902;
    }

    .product-card .product-meta-badge-marketplace.is-cmbbrasil {
      background: #fff1e8;
      border-color: #fed7aa;
      color: #c2410c;
    }

    .product-card .product-meta-badge-marketplace.is-amazon {
      background: #111827;
      border-color: #374151;
      color: #fbbf24;
    }

    .product-card .product-meta-badge-marketplace.is-shopee {
      background: #fff1ed;
      border-color: #fdba74;
      color: #ea580c;
    }

    .product-card .product-meta-badge-marketplace.is-default {
      background: #f1f5f9;
      border-color: #e2e8f0;
      color: #334155;
    }

    .product-card .product-meta-badge-international {
      background: #fff1f2;
      border-color: #fecdd3;
      color: #be123c;
    }

    .price-area {
      margin-top: auto;
    }

    .product-flash-strip {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      min-height: 36px;
      padding: 6px 8px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6px;
      background: linear-gradient(90deg, #facc15 0%, #fb923c 100%);
      color: #111827;
      border-top: 1px solid rgba(0, 0, 0, 0.08);
      z-index: 4;
      overflow: hidden;
    }

    .product-flash-label {
      font-size: 10px;
      font-weight: 900;
      font-style: italic;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      letter-spacing: -0.02em;
      color: #111827;
      text-transform: uppercase;
      min-width: 0;
      flex: 1 1 auto;
    }

    .product-flash-timer {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      white-space: nowrap;
      flex: 0 0 auto;
    }

    .product-flash-timer .flash-offer-time-part {
      min-width: 24px;
      height: 22px;
      padding: 0 4px;
      border-radius: 7px;
      background: #fff;
      color: #111827;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 900;
      line-height: 1;
      border: 1px solid rgba(0, 0, 0, 0.08);
      box-sizing: border-box;
    }

    .product-flash-timer .flash-offer-time-sep {
      font-size: 11px;
      font-weight: 900;
      color: #111827;
    }

    .flash-offer-coupon {
      display: inline-flex;
      align-items: center;
      margin-top: 6px;
      margin-bottom: 2px;
      padding: 3px 7px;
      border-radius: 999px;
      background: #e7f0ff;
      color: #1e40af;
      font-size: 11px;
      font-weight: 700;
      line-height: 1.2;
    }

    .old-price {
      color: #777;
      text-decoration: line-through;
      font-size: 11px;
      font-weight: 400;
      margin-top: 2px;
      margin-bottom: 0;
    }

    .price-row {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin-top: 2px;
      flex-wrap: wrap;
    }

    .price {
      font-size: 21px;
      font-weight: 400;
      color: #111;
      letter-spacing: -0.01em;
      line-height: 1;
    }

    .discount {
      color: #00a650;
      font-weight: 600;
      font-size: 11px;
      white-space: nowrap;
    }

    .installment {
      color: var(--green);
      font-size: 11px;
      margin: 2px 0 6px;
    }

    @media (min-width: 1800px) {
      .products {
        grid-template-columns: repeat(5, minmax(0, 1fr));
      }
    }

    .buy-btn {
      display: none !important;
    }

    .buy-btn:hover {
      background: #ffe7d2;
      color: var(--orange-dark);
    }

    .product-buy-btn {
      width: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 6px;
      margin-bottom: 8px;
      min-height: 44px;
      padding: 10px 14px;
      border-radius: 10px;
      background: var(--orange);
      color: #fff;
      text-decoration: none;
      font-weight: 700;
      line-height: 1.2;
      transition: background-color .18s ease, transform .18s ease;
    }

    .product-buy-btn:hover {
      background: var(--orange-dark);
      transform: translateY(-1px);
      color: #fff;
    }

    .product-cta-note {
      display: none;
    }

    .trust {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin: 8px 0 42px;
    }

    .trust-card {
      background: white;
      border: 1px solid rgba(20, 20, 20, 0.08);
      border-radius: 22px;
      padding: 18px;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    }

    .trust-card strong {
      display: block;
      margin-bottom: 5px;
      letter-spacing: -0.03em;
    }

    .trust-card span {
      color: var(--gray-500);
      font-size: 13px;
      line-height: 1.45;
    }

    footer {
      background: var(--black);
      color: white;
      padding: 28px 0;
      margin-top: 20px;
    }

    footer p {
      margin: 8px 0 0;
      color: rgba(255,255,255,0.68);
      font-size: 13px;
      line-height: 1.5;
    }

    .empty-state {
      grid-column: 1 / -1;
      background: white;
      border-radius: 22px;
      padding: 26px;
      text-align: center;
      color: var(--gray-500);
      border: 1px solid rgba(20,20,20,0.08);
    }

    @media (max-width: 980px) {
      .hero-card { grid-template-columns: 1fr; }
      .hero-visual { min-height: 215px; }
      .phone-card { right: auto; left: 50%; transform: translateX(-50%) rotate(1deg); }
      .products { grid-template-columns: repeat(3, 1fr); }
    }

    @media (max-width: 768px) {
      .container { width: min(100% - 22px, 1180px); }
      .nav { min-height: 64px; }
      .nav-actions .pill:nth-child(1) { display: none; }
      .nav-actions {
        gap: 6px;
        flex-shrink: 0;
      }
      .nav-actions .pill {
        padding: 8px 10px;
        font-size: 12px;
      }
      .brand-title {
        font-size: 14px;
      }
      .page-how-it-works .nav-actions .pill:nth-child(1) {
        display: inline-flex;
      }
      .hero { padding-top: 18px; }
      .hero-card { padding: 22px; border-radius: 26px; }
      .hero p { font-size: 15px; }
      .hero-buttons { display: grid; grid-template-columns: 1fr; }
      .filter-grid { grid-template-columns: 1fr; }
      .filters { top: 64px; }
      .marketplace-banner {
        border-radius: 12px;
        margin: 14px 0 18px;
      }
      .flash-deals__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
      }
      .products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
      .product-card {
        border-radius: 8px;
        min-width: 0;
      }
      .product-card:active {
        transform: scale(0.99);
      }
      .image-wrap {
        width: 100%;
        height: 180px;
        border-radius: 0;
        padding: 2px;
      }
      .image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
      .tag {
        left: 8px;
        top: 8px;
        font-size: 10px;
        padding: 5px 8px;
      }
      .card-body {
        padding: 8px 10px 10px;
        min-width: 0;
      }
      .flash-offer-bar:not(.product-flash-strip) {
        gap: 6px;
        padding: 5px 6px;
        margin-bottom: 6px;
      }
      .flash-offer-label:not(.product-flash-label) {
        font-size: 9px;
      }
      .flash-offer-time-part {
        min-width: 20px;
        font-size: 9px;
        padding: 2px 3px;
      }
      .flash-offer-coupon {
        font-size: 10px;
        padding: 2px 6px;
      }
      .category {
        font-size: 11px;
        margin-bottom: 3px;
      }
      .product-title {
        font-size: 12.5px;
        line-height: 1.22;
      }
      .product-desc {
        display: none;
      }
      .old-price {
        font-size: 11.5px;
        margin-top: 6px;
      }
      .price-row {
        margin-top: 2px;
      }
      .price {
        font-size: 19px;
        font-weight: 400;
      }
      .discount {
        font-size: 10.5px;
        color: var(--green);
        font-weight: 600;
      }
      .installment {
        font-size: 11px;
        margin: 3px 0 0;
      }
      .product-cta-note {
        display: none !important;
      }
      .trust { grid-template-columns: 1fr; }
    }

    @media (max-width: 640px) {
      .product-image,
      .product-thumb,
      .product-card-image {
        height: 180px;
      }

      .flash-offer-bar:not(.product-flash-strip) {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 8px 6px;
        text-align: center;
      }

      .flash-offer-label:not(.product-flash-label) {
        width: 100%;
        font-size: 12px;
        line-height: 1.1;
        white-space: normal;
      }

      .flash-offer-countdown {
        width: 100%;
        justify-content: center;
        gap: 4px;
      }

      .flash-offer-time-part {
        font-size: 10px;
        min-width: 28px;
        padding: 3px 5px;
      }
    }

@media (max-width: 390px) {
  .product-title {
    font-size: 12.5px;
  }

  .price {
    font-size: 20px;
  }
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.lead-modal.is-open {
  display: block;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.lead-modal__dialog {
  position: relative;
  width: min(460px, calc(100% - 24px));
  margin: 7vh auto 0;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.lead-modal__dialog h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
  color: #111827;
}

.lead-modal__dialog p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #6b7280;
}

.lead-modal__form {
  display: grid;
  gap: 8px;
}

.lead-modal__form input {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(20,20,20,0.15);
  border-radius: 10px;
  padding: 0 12px;
  font: inherit;
}

.lead-phone-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border: 1px solid rgba(20,20,20,0.15);
  border-radius: 10px;
  background: #fff;
  height: 44px;
  overflow: hidden;
}

.lead-phone-prefix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 100%;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  background: #f3f4f6;
  border-right: 1px solid rgba(20,20,20,0.12);
}

.lead-phone-field input {
  border: 0 !important;
  border-radius: 0 !important;
  height: 100%;
}

.lead-modal__actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.btn-pill {
  cursor: pointer;
}

.auth-user-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.auth-user-pill span {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-900);
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
}

.auth-modal.is-open {
  display: block;
}

.auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.auth-modal__dialog {
  position: relative;
  width: min(460px, calc(100% - 24px));
  margin: 8vh auto 0;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.auth-modal__close {
  position: absolute;
  right: 10px;
  top: 8px;
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.auth-tabs {
  display: flex;
  gap: 8px;
  margin: 10px 0 12px;
}

.auth-tab {
  border: 1px solid rgba(20,20,20,0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--gray-700);
  padding: 7px 11px;
  font-weight: 700;
  cursor: pointer;
}

.auth-tab.active {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

.auth-form {
  display: grid;
  gap: 8px;
}

.auth-form input {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(20,20,20,0.15);
  border-radius: 10px;
  padding: 0 12px;
  font: inherit;
}

.auth-feedback {
  min-height: 20px;
  margin: 0 0 6px;
  color: #065f46;
  font-size: 13px;
}

.auth-feedback.is-error {
  color: #b91c1c;
}

.share-feedback {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.4;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  color: #111827;
}

.share-feedback.is-success {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}

.share-feedback.is-warning {
  background: #fffbeb;
  border-color: #fde68a;
  color: #92400e;
}

.share-manual-wrap {
  margin-top: 8px;
}

.share-manual-wrap label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: #4b5563;
}

.share-manual-wrap input {
  width: 100%;
  height: 42px;
  border: 1px solid rgba(20,20,20,0.15);
  border-radius: 10px;
  padding: 0 10px;
  font: inherit;
}

.marketplace-notice-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 10020;
}

.marketplace-notice-modal.is-open {
  display: block;
}

.marketplace-notice-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.marketplace-notice-modal__dialog {
  position: relative;
  width: min(92vw, 440px);
  margin: 12vh auto 0;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.24);
}

.marketplace-notice-modal__dialog h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.marketplace-notice-modal__message {
  margin: 0 0 14px;
  color: #374151;
  font-size: 14px;
  line-height: 1.45;
  white-space: pre-line;
}

.marketplace-notice-modal__actions .btn {
  width: 100%;
}

.marketplace-notice-modal__actions .btn + .btn {
  margin-top: 8px;
}

.about-paulo {
  padding: 20px 0 8px;
}

.about-card {
  background: linear-gradient(140deg, #0f0f10 0%, #171718 55%, #101012 100%);
  color: #fff;
  border-radius: 24px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
}

.about-photo-wrap {
  position: relative;
  width: 100%;
  display: grid;
  justify-items: center;
}

.about-photo {
  width: 168px;
  height: 168px;
  border-radius: 999px;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.about-photo-bar {
  margin-top: 12px;
  width: 84px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6a00 0%, #ff9738 100%);
}

.about-content h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 4vw, 34px);
  letter-spacing: -0.03em;
}

.about-content p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.65;
}

.social-links {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  transition: 0.2s ease;
}

.social-icon:hover {
  background: #ff6a00;
  border-color: #ff6a00;
  transform: translateY(-1px);
}

@media (min-width: 900px) {
  .about-card {
    grid-template-columns: 260px 1fr;
    align-items: center;
    gap: 28px;
    padding: 28px;
  }

  .about-photo {
    width: 210px;
    height: 210px;
  }
}

.public-product-page {
  padding: 16px 0 36px;
}

.public-product-page .product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 18px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid #e6eaf0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  background: #fff;
  cursor: default;
}

.product-gallery {
  position: relative;
  min-width: 0;
}

.product-main-image {
  border-radius: 16px;
  border: 1px solid #edf1f5;
  background: #fff;
  min-height: 420px;
  max-height: 620px;
  height: min(620px, 55vh);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 620px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #d7dfe9;
  background: rgba(255, 255, 255, 0.96);
  color: #1f2937;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
  z-index: 2;
}

.gallery-nav.prev { left: 10px; }
.gallery-nav.next { right: 10px; }

.product-thumbnails {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.thumb-item {
  width: 66px;
  height: 66px;
  border-radius: 10px;
  border: 1px solid #d7dfe9;
  overflow: hidden;
  background: #fff;
  padding: 0;
}

.thumb-item.is-active {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.product-category-label {
  display: inline-flex;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  color: #ff6b00;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.product-detail-title {
  margin: 0;
  color: #111827;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.product-detail-description {
  margin: 10px 0 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.45;
}

.product-pricing {
  margin-top: 14px;
}

.product-pricing .product-old-price {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
  text-decoration: line-through;
}

.product-pricing .product-price-row {
  margin-top: 6px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.product-current-price {
  font-size: clamp(30px, 5vw, 38px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #111827;
}

.product-discount-badge {
  color: #00a650;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.product-installments {
  margin-top: 6px;
  color: #00a650;
  font-size: 15px;
  font-weight: 700;
}

.product-detail-tags {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-flash-offer {
  margin-top: 14px;
  border-radius: 14px;
  border: 1px solid #fdba74;
  background: linear-gradient(90deg, #fef3c7 0%, #ffedd5 100%);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.flash-left {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #9a3412;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.flash-box {
  min-width: 28px;
  height: 26px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: #111827;
}

.flash-timer strong {
  font-size: 14px;
  color: #9a3412;
}

.product-redirect-notice {
  margin-top: 10px;
  margin-bottom: 10px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.product-redirect-notice-default {
  border-color: #e2e8f0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.product-redirect-notice-mercado-livre {
  background: linear-gradient(135deg, #fffbea 0%, #fff7ed 100%);
  border: 1px solid #facc15;
}

.product-redirect-notice-cmbbrasil {
  background: linear-gradient(135deg, #fff7ed 0%, #fff1f2 100%);
  border: 1px solid #fb923c;
}

.product-redirect-notice-amazon {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  border: 1px solid #374151;
}

.product-redirect-notice-amazon strong,
.product-redirect-notice-amazon small {
  color: #f9fafb;
}

.product-redirect-notice-shopee {
  background: linear-gradient(135deg, #fff7ed 0%, #fff1f2 100%);
  border: 1px solid #fb7185;
}

.product-redirect-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 24px;
}

.product-redirect-notice-mercado-livre .product-redirect-icon {
  background: #fef3c7;
  color: #ca8a04;
}

.product-redirect-notice-cmbbrasil .product-redirect-icon {
  background: #ffedd5;
  color: #ea580c;
}

.product-redirect-notice-amazon .product-redirect-icon {
  background: rgba(255, 255, 255, 0.08);
  color: #fbbf24;
}

.product-redirect-notice-shopee .product-redirect-icon {
  background: #ffe4e6;
  color: #f43f5e;
}

.product-redirect-text {
  min-width: 0;
}

.product-redirect-text strong {
  display: block;
  color: #111827;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 900;
}

.product-redirect-text small {
  display: block;
  margin-top: 5px;
  color: #475569;
  font-size: 13px;
  line-height: 1.4;
}

.product-redirect-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.product-redirect-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #fde68a;
  color: #2563eb;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.product-redirect-badge .material-symbols-outlined {
  font-size: 15px;
  color: #2563eb;
}

.product-buy-button {
  margin-top: 10px;
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b00, #ea580c);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 22px rgba(234, 88, 12, 0.26);
}

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

.product-action-button {
  border: 1px solid #dde3eb;
  background: #fff;
  border-radius: 12px;
  min-height: 60px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #1f2937;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.product-action-button .material-symbols-outlined {
  font-size: 18px;
  color: #475569;
}

.product-action-button.is-active {
  border-color: #fecaca;
  background: #fff1f2;
  color: #be123c;
}

.product-actions-grid-under-buy {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.product-action-card {
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid #dbe3ef;
  background: #fff;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  padding: 0 12px;
}

.product-action-card:hover {
  background: #f8fafc;
}

.product-action-card .material-symbols-outlined {
  font-size: 20px;
}

.related-products-section {
  margin-top: 20px;
}

.related-products-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.related-products-header h2 {
  margin: 0;
  font-size: 22px;
  color: #111827;
  letter-spacing: -0.02em;
}

.related-products-header a {
  font-size: 13px;
  font-weight: 700;
  color: #ea580c;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

@media (min-width: 1280px) {
  .related-products-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.related-product-card {
  border-radius: 14px;
  border: 1px solid #e6eaf0;
  background: #fff;
  overflow: hidden;
  box-shadow: none;
}

.related-product-link {
  display: block;
}

.related-image-wrap {
  width: 100%;
  height: 170px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.related-content {
  padding: 10px;
}

.related-category {
  color: #ff6b00;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.related-content h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  color: #1f2937;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-price {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 800;
  color: #111827;
}

@media (max-width: 980px) {
  .public-product-page .product-detail-hero {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 768px) {
  .public-product-page .product-detail-hero {
    padding: 12px;
    border-radius: 16px;
    gap: 12px;
  }

  .product-main-image {
    min-height: 260px;
    max-height: 420px;
    height: min(420px, 52vh);
    padding: 14px;
  }

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

  .gallery-nav {
    width: 32px;
    height: 32px;
  }

  .product-detail-title {
    font-size: 24px;
  }

  .product-detail-description {
    font-size: 13px;
  }

  .product-current-price {
    font-size: 32px;
  }

  .product-discount-badge {
    font-size: 15px;
  }

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

  .related-products-grid {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 2px;
    scroll-snap-type: x mandatory;
  }

  .related-product-card {
    flex: 0 0 72%;
    min-width: 0;
    scroll-snap-align: start;
  }

}

@media (max-width: 720px) {
  .storefront-category-filter-button {
    width: 100%;
    justify-content: center;
  }

  .category-filter-panel {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    max-height: 82vh;
    border-radius: 24px 24px 0 0;
  }

  .product-redirect-notice {
    padding: 14px;
  }
}
