    :root {
      --md-primary: var(--brand-primary);
      --md-secondary: var(--brand-secondary);
      --md-surface: #ffffff;
      --md-surface-soft: #f8fafc;
      --md-radius: 16px;
      --md-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
      --brand-primary: #2563EB;
      --brand-secondary: #10B981;
      --brand-primary-rgb: 37,99,235;
      --brand-secondary-rgb: 16,185,129;
      --orange: var(--brand-primary);
      --orange-dark: var(--brand-secondary);
      --orange-soft: rgba(var(--brand-primary-rgb), 0.12);
      --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; }

    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(var(--brand-primary-rgb), 0.25);
    }
    .brand-mark .material-symbols-rounded { font-size: 22px; }

    .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: var(--md-surface);
      padding: 10px 14px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      color: var(--gray-900);
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .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(var(--brand-primary-rgb), 0.22), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #fff7ef 54%, #ffffff 100%);
      box-shadow: var(--shadow);
      border: 1px solid rgba(var(--brand-primary-rgb), 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(var(--brand-primary-rgb), 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%;
      aspect-ratio: 16 / 5;
      max-height: 420px;
      border-radius: var(--md-radius);
      overflow: hidden;
      margin: 20px 0 18px;
      border: 1px solid rgba(148, 163, 184, 0.22);
      box-sizing: border-box;
      background: linear-gradient(135deg, #f7f7f8 0%, #eeeeef 100%);
    }

    .marketplace-banner img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
    }

    .marketplace-banner--placeholder img {
      object-fit: contain;
      padding: 14px;
    }

    .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: var(--md-surface);
      outline: none;
      transition: border-color .18s ease, box-shadow .18s ease;
    }

    .search-box input:focus {
      border-color: rgba(var(--brand-primary-rgb), 0.44);
      box-shadow: 0 0 0 4px rgba(var(--brand-primary-rgb), 0.12);
    }

    .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;
    }

    .storefront-category-filter-button {
      min-height: 48px;
      padding: 0 22px;
      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-rounded {
      font-size: 20px;
      color: #475569;
    }

    .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;
      font-weight: 900;
      line-height: 1;
      padding: 0 4px;
    }

    .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;
      line-height: 1.2;
    }

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

    .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;
      color: #111827;
    }

    .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;
      color: #64748b;
    }

    .category-filter-search input {
      border: 0;
      outline: 0;
      width: 100%;
      font-size: 15px;
      color: #111827;
      background: transparent;
      font-family: inherit;
    }

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

    .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;
      text-align: left;
    }

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

    .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;
      font-family: inherit;
      cursor: pointer;
    }

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

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

    body.category-filter-modal-open {
      overflow: hidden;
    }

    .products {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
      gap: 12px;
      padding-bottom: 28px;
    }

    .product-card {
      background: var(--md-surface);
      border-radius: 12px;
      border: 1px solid rgba(148, 163, 184, 0.24);
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
      display: flex;
      flex-direction: column;
      min-height: 100%;
      transition: box-shadow .18s ease, transform .18s ease;
      padding: 0;
      cursor: pointer;
    }

    .public-product-card {
      background: var(--md-surface);
      border-radius: 12px;
      border: 1px solid rgba(148, 163, 184, 0.24);
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
      display: flex;
      flex-direction: column;
      min-height: 100%;
      transition: box-shadow .18s ease, transform .18s ease;
      padding: 0;
      cursor: pointer;
    }

    .public-product-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 22px rgba(15, 23, 42, 0.11);
    }

    .public-product-card .public-product-card__image {
      position: relative;
      background: #fff;
      width: 100%;
      height: 170px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4px;
    }

    .public-product-card .public-product-card__body {
      padding: 8px 9px 10px;
      display: flex;
      flex-direction: column;
      flex: 1;
      gap: 0;
    }

    .public-product-card .public-product-card__category {
      color: var(--brand-primary);
      font-size: 9.5px;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

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

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

    .public-product-card .public-product-card__marketplace {
      margin-top: 0;
      margin-bottom: 0;
    }

    .public-product-card .public-product-card__price-area {
      margin-top: auto;
      padding-top: 0;
      padding-bottom: 0;
    }

    .product-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 22px rgba(15, 23, 42, 0.11);
    }

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

    .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: 170px;
      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: 5px 8px;
      font-size: 10px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: -0.02em;
    }

    .share-product-button {
      position: absolute;
      right: 10px;
      bottom: 10px;
      width: 34px;
      height: 34px;
      border: 0;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.92);
      color: #444;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 3;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
      opacity: 0.96;
      transition: background-color .18s ease, transform .18s ease, opacity .18s ease;
    }

    .share-product-button:hover {
      background: #fff;
      transform: scale(1.04);
      opacity: 1;
    }

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

    .category {
      color: var(--brand-primary);
      font-size: 9.5px;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

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

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

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

    .flash-offer-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 4px;
      background: linear-gradient(90deg, #ffd34d 0%, #ffbd3a 100%);
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 0;
      padding: 4px 6px;
      margin: 0;
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 3;
    }

    .flash-offer-label {
      font-size: 10px;
      font-weight: 900;
      font-style: italic;
      letter-spacing: 0.02em;
      color: #1f2937;
      text-transform: uppercase;
      white-space: nowrap;
    }

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

    .flash-offer-time-part {
      min-width: 19px;
      text-align: center;
      font-size: 9px;
      font-weight: 800;
      color: #111827;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 5px;
      border: 1px solid rgba(0, 0, 0, 0.08);
      padding: 1px 3px;
      line-height: 1.3;
    }

    .flash-offer-time-sep {
      font-size: 9px;
      font-weight: 700;
      color: #1f2937;
    }

    .image-wrap.has-flash-offer .share-product-button {
      bottom: 42px;
    }

    .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: 5px;
    }

    .price-row {
      display: flex;
      align-items: baseline;
      gap: 5px;
      margin-top: 5px;
      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: 3px 0 8px;
    }

    .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: 38px;
      padding: 8px 12px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--md-primary), var(--md-secondary));
      color: #fff;
      text-decoration: none;
      font-weight: 700;
      line-height: 1.2;
      font-size: 13px;
      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: var(--md-surface);
      border: 1px solid rgba(20, 20, 20, 0.08);
      border-radius: var(--md-radius);
      padding: 18px;
      box-shadow: var(--md-shadow);
    }

    .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: var(--md-surface);
      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, minmax(0, 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; }
      .storefront-category-filter-button {
        width: 100%;
        justify-content: center;
      }
      .marketplace-banner {
        aspect-ratio: 16 / 7;
        max-height: 240px;
        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: 150px;
        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 {
        gap: 3px;
        padding: 4px 5px;
      }
      .flash-offer-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: 18px;
        font-weight: 400;
      }
      .discount {
        font-size: 10.5px;
        color: var(--green);
        font-weight: 600;
      }
      .installment {
        font-size: 11px;
        margin: 3px 0 0;
      }
      .product-buy-btn {
        min-height: 34px;
        padding: 7px 10px;
        font-size: 12px;
      }
      .product-cta-note {
        display: none !important;
      }
      .trust { grid-template-columns: 1fr; }
    }

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

      .product-image,
      .product-thumb,
      .product-card-image {
        height: 150px;
      }

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

      .flash-offer-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;
}

.explore-load-more-status {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #dbe5ff;
  background: linear-gradient(135deg, #f5f8ff 0%, #f8fbff 100%);
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 600;
}

.explore-load-more-sentinel {
  width: 100%;
  height: 2px;
}

.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;
}

.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, var(--brand-primary) 0%, var(--brand-secondary) 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: var(--brand-primary);
  border-color: var(--brand-primary);
  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;
  }
}

.rabbit-project-main {
  padding: 14px 0 24px;
  display: grid;
  gap: 14px;
  font-size: 14px;
}

.rabbit-project-topbar .nav {
  min-height: 66px;
}

.rabbit-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
}
.rabbit-breadcrumbs a { color: #1d4ed8; font-weight: 600; }
.rabbit-breadcrumbs strong { color: #111827; }

.rabbit-project-title-wrap h1 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3.2vw, 32px);
  letter-spacing: -0.03em;
}

.rabbit-project-title-wrap p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
}

.rabbit-project-hero {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 30px 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.rabbit-project-hero h1 { margin: 0 0 8px; font-size: 28px; }
.rabbit-project-hero p { margin: 0; color: #4b5563; }
.rabbit-project-hero small { display: block; margin-top: 10px; color: #6b7280; }

.rabbit-note {
  margin: 0 0 10px;
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
}

.rabbit-highlight-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.07);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 12px;
  padding: 30px;
  min-height: 100%;
}

.rabbit-highlight-layout {
  display: grid;
  grid-template-columns: minmax(0, 65%) minmax(280px, 35%);
  gap: 10px;
  align-items: stretch;
}

.rabbit-highlight-image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 260px;
  object-fit: contain;
  border-radius: 12px;
  background: #f8fafc;
}

.rabbit-highlight-content h2 { margin: 4px 0 6px; font-size: 22px; line-height: 1.2; }
.rabbit-description {
  color: #4b5563;
  margin: 4px 0 12px;
  line-height: 1.55;
  font-size: 14px;
  white-space: pre-line;
  display: block;
  max-height: none;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
}
.rabbit-highlight-content .rabbit-highlight-flash-offer {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 6px 0 4px;
  border-radius: 10px;
  padding: 6px 8px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  z-index: auto;
}
.rabbit-highlight-content .rabbit-highlight-flash-offer .flash-offer-label {
  font-size: 11px;
}
.rabbit-highlight-content .rabbit-highlight-flash-offer .flash-offer-countdown {
  margin-left: auto;
  flex-wrap: nowrap;
}
.rabbit-installment { color: #0f766e; font-size: 12px; margin-top: 2px; }
.rabbit-price { font-size: 20px; font-weight: 800; margin-top: 4px; }
.rabbit-marketplace { color: #6b7280; font-size: 12px; margin-top: 2px; }
.rabbit-actions { margin-top: 8px; display: flex; gap: 8px; flex-wrap: wrap; }
.rabbit-safe-note { display: block; margin-top: 10px; color: #047857; font-size: 12px; font-weight: 600; }

.rabbit-info-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.rabbit-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 3px 8px;
  font-size: 11px;
  color: #334155;
  background: #fff;
}

.rabbit-chip--safe {
  border-color: rgba(16, 185, 129, 0.25);
  color: #047857;
  background: rgba(16, 185, 129, 0.08);
}

.rabbit-sidebar-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  padding: 12px;
  align-self: stretch;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.rabbit-sidebar-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.rabbit-sidebar-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.rabbit-sidebar-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  padding-bottom: 5px;
  border-bottom: 1px dashed #e2e8f0;
}

.rabbit-sidebar-card li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.rabbit-sidebar-card li strong {
  color: #334155;
}

.rabbit-sidebar-card li span {
  color: #0f172a;
  font-weight: 600;
  text-align: right;
}

.rabbit-section {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.rabbit-section-head h3 { margin: 0 0 8px; font-size: 17px; }

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

.rabbit-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: grid;
}

.rabbit-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.rabbit-card-link:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.11);
  transform: translateY(-2px);
}

.rabbit-card-image { background: #f8fafc; padding: 8px; }
.rabbit-card-image img { width: 100%; height: 120px; object-fit: contain; }
.rabbit-card-body { padding: 10px; display: grid; gap: 5px; }
.rabbit-card-body h4 { margin: 0; font-size: 14px; min-height: 34px; line-height: 1.3; }
.rabbit-qty { color: #475569; font-size: 12px; }
.rabbit-card-desc {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
}
.rabbit-category {
  font-size: 11px;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rabbit-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  width: fit-content;
}

.rabbit-badge--selected { background: rgba(16, 185, 129, 0.15); color: #065f46; }
.rabbit-badge--suggestion { background: rgba(245, 158, 11, 0.16); color: #92400e; }
.rabbit-badge--main { background: rgba(99, 102, 241, 0.16); color: #3730a3; }
.rabbit-badge--project { background: rgba(37, 99, 235, 0.14); color: #1d4ed8; }

.rabbit-marketplace-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #f8fafc;
  color: #334155;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
}

.rabbit-marketplace-badge.marketplace-pill--mercado-livre {
  background: #fff6cc;
  color: #8a6b00;
  border-color: rgba(138, 107, 0, 0.22);
}

.rabbit-marketplace-badge.marketplace-pill--shopee {
  background: #ffede3;
  color: #b74707;
  border-color: rgba(183, 71, 7, 0.2);
}

.rabbit-marketplace-badge.marketplace-pill--amazon {
  background: #eef2f7;
  color: #374151;
  border-color: rgba(55, 65, 81, 0.2);
}

.rabbit-marketplace-badge.marketplace-pill--cemf {
  background: #e6f8f3;
  color: #0f766e;
  border-color: rgba(15, 118, 110, 0.2);
}

.rabbit-marketplace-badge.marketplace-pill--generic {
  background: #f8fafc;
  color: #334155;
  border-color: rgba(15, 23, 42, 0.12);
}

.public-product-card__meta-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.product-origin-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  white-space: nowrap;
}

.product-origin-badge--international {
  background: #fff1f2;
  color: #9f1239;
  border-color: rgba(159, 18, 57, 0.2);
}

.rabbit-suggestion-group { margin-top: 12px; }
.rabbit-suggestion-group h4 { margin: 0 0 5px; font-size: 15px; }
.rabbit-suggestion-group p { margin: 0 0 8px; color: #4b5563; font-size: 12px; }

.rabbit-section-explore {
  padding: 10px;
}

.rabbit-section-explore .rabbit-section-head h3 {
  font-size: 16px;
}

.rabbit-section-explore .rabbit-section-head {
  margin-bottom: 12px;
}

.rabbit-explore-group {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 12px;
}

.rabbit-explore-group + .rabbit-explore-group {
  margin-top: 12px;
}

.rabbit-explore-group--project {
  border-color: rgba(129, 140, 248, 0.22);
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.06) 0%, rgba(168, 85, 247, 0.05) 42%, rgba(56, 189, 248, 0.06) 100%);
}

.rabbit-explore-group__head {
  margin-bottom: 10px;
}

.rabbit-explore-group__head h4 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #0f172a;
}

.rabbit-explore-group__head h4 .material-symbols-rounded {
  font-size: 16px;
  color: #4338ca;
}

.rabbit-explore-group__head p {
  margin: 4px 0 0;
  font-size: 11px;
  color: #475569;
}

.rabbit-section-explore .rabbit-grid {
  grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
  gap: 12px;
}

.rabbit-section-explore .rabbit-explore-mix-grid {
  align-items: start;
}

.rabbit-project-pack-card {
  border: 1px solid rgba(129, 140, 248, 0.28);
  border-radius: 14px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.07) 0%, rgba(168, 85, 247, 0.05) 44%, rgba(56, 189, 248, 0.07) 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  grid-column: 1 / -1;
}

.rabbit-project-pack-card__head h4 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #0f172a;
}

.rabbit-project-pack-card__head {
  margin-bottom: 0;
}

.rabbit-project-pack-card__head h4 .material-symbols-rounded {
  font-size: 16px;
  color: #4338ca;
}

.rabbit-project-pack-card__head p {
  margin: 0;
  font-size: 11px;
  color: #475569;
  display: none;
}

/* O container especial não altera o componente visual do card */
.rabbit-project-pack-card__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
  gap: 12px;
}

.rabbit-project-pack-card__items > .public-product-card {
  width: 100%;
  margin: 0;
  font-size: inherit;
}

.rabbit-section-explore .rabbit-store-card--project {
  border-color: rgba(37, 99, 235, 0.24);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.04) 0%, rgba(255, 255, 255, 1) 45%);
}

.rabbit-section-explore .rabbit-store-card--project:hover {
  border-color: rgba(37, 99, 235, 0.38);
}

.rabbit-actions .btn,
.rabbit-card-body .btn {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 13px;
}

.rabbit-how-main {
  padding-bottom: 40px;
}

.rabbit-how-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.rabbit-how-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  padding: 18px;
}

.rabbit-how-card h3 {
  margin: 0 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}

.rabbit-how-card h3 .material-symbols-rounded {
  font-size: 20px;
  color: #2563eb;
}

.rabbit-how-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.55;
}

.rabbit-how-notes {
  margin-top: 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px 16px;
  color: #475569;
}

.rabbit-how-notes p {
  margin: 0;
}

.rabbit-how-notes p + p {
  margin-top: 6px;
}

@media (max-width: 860px) {
  .rabbit-breadcrumbs {
    display: none;
  }
  .rabbit-highlight-layout {
    grid-template-columns: 1fr;
  }
  .rabbit-highlight-card {
    grid-template-columns: 1fr;
  }
  .rabbit-highlight-image img {
    min-height: 160px;
    max-height: 180px;
  }
  .rabbit-project-main {
    padding: 10px 0 18px;
    gap: 10px;
  }
  .rabbit-section,
  .rabbit-sidebar-card,
  .rabbit-highlight-card {
    padding: 10px;
  }
  .rabbit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .rabbit-card-image img {
    height: 96px;
  }
  .rabbit-card-body h4 {
    font-size: 13px;
    min-height: 30px;
  }
  .rabbit-how-grid {
    grid-template-columns: 1fr;
  }
}

.kit-public-main {
  padding-bottom: 44px;
}

.combo-public-page .rabbit-project-hero {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
}

.combo-hero-no-cover {
  grid-template-columns: minmax(0, 1fr) !important;
}

.combo-hero {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
  max-width: 1020px;
  margin-left: 0;
  margin-right: auto;
}

.combo-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.combo-hero-cta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.combo-hero-icon-btn {
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.combo-hero-icon-btn .material-symbols-rounded {
  font-size: 20px;
}

.combo-hero-cover {
  width: 280px;
  min-width: 280px;
  height: 220px;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  overflow: hidden;
  background: #f4f6fb;
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
}

.combo-hero-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kit-hero-meta {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #ffffff;
  padding: 12px;
}

.kit-hero-meta .rabbit-badge {
  gap: 6px;
}

.kit-hero-meta .rabbit-badge .material-symbols-rounded {
  font-size: 14px;
}

.kit-hero-meta ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.kit-hero-meta li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: #334155;
}

.kit-hero-meta li strong {
  font-weight: 600;
  color: #0f172a;
}

.rabbit-kit-grid {
  grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
  gap: 12px;
}

.rabbit-kit-grid .rabbit-store-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.rabbit-kit-grid .rabbit-store-card .image-wrap {
  height: 170px;
}

.rabbit-kit-grid .rabbit-store-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 8px 9px 10px;
  flex: 1;
}

.rabbit-kit-grid .rabbit-store-card .product-title {
  font-size: 12px;
  min-height: 0;
  margin: 0;
}

.rabbit-kit-grid .rabbit-store-card .product-desc {
  font-size: 10px;
  color: var(--gray-500);
  margin: 6px 0 8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rabbit-kit-grid .rabbit-store-card .price-area {
  margin-top: auto;
  padding-top: 0;
}

.combo-info-grid {
  margin-top: 12px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.combo-info-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  padding: 14px;
}

.combo-info-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #0f172a;
}

.combo-info-card p {
  margin: 0;
  color: #475569;
  font-size: 13px;
  line-height: 1.5;
}

.kit-item-footer {
  margin-top: 8px;
  font-size: 11px;
  color: #64748b;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.kit-item-footer__ok {
  color: #047857;
  font-weight: 600;
}

.kit-item-footer__off {
  color: #b45309;
  font-weight: 600;
}

.rabbit-store-card--unavailable {
  border-color: #cbd5e1;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 56%);
}

.rabbit-store-card--unavailable .image-wrap {
  cursor: not-allowed;
}

@media (max-width: 980px) {
  .combo-public-page .rabbit-project-hero {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .combo-hero-cover {
    width: 100%;
    min-width: 0;
    height: 220px;
  }

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

/* Product Detail Premium (public/product.php) */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
}

.product-detail-page {
  padding: 18px 0 34px;
}

.product-hero-card {
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  background: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
}

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

.product-gallery-main {
  position: relative;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  min-height: 420px;
  max-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

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

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 15px rgba(15, 23, 42, 0.12);
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
}

.gallery-nav.prev { left: 8px; }
.gallery-nav.next { right: 8px; }
.gallery-nav .material-symbols-outlined { font-size: 20px; }

.product-thumbnails {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.product-thumb {
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 12px;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  padding: 4px;
  cursor: pointer;
}

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

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

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

.product-category-label {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-hero-title {
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.1;
  margin: 10px 0 6px;
  letter-spacing: -0.02em;
  min-height: 0;
}

.product-hero-description {
  color: #475569;
  margin-bottom: 8px;
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
  white-space: pre-line;
}

.product-pricing .old-price { font-size: 16px; margin-top: 0; }
.product-pricing .price { font-size: clamp(34px, 6vw, 44px); font-weight: 800; }
.product-pricing .discount { font-size: 17px; font-weight: 800; }
.product-pricing .installment { margin: 4px 0 0; font-size: 16px; }

.product-marketplace-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.product-marketplace-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.product-marketplace-badge.marketplace-pill--mercado-livre {
  background: #ffe082;
  border-color: #facc15;
  color: #5f3d00;
}
.product-marketplace-badge.marketplace-pill--amazon {
  background: #111827;
  border-color: #111827;
  color: #fbbf24;
}
.product-marketplace-badge.marketplace-pill--shopee {
  background: #ffedd5;
  border-color: #fdba74;
  color: #9a3412;
}
.product-marketplace-badge.marketplace-pill--cemf {
  background: #dcfce7;
  border-color: #86efac;
  color: #166534;
}
.product-marketplace-badge.marketplace-pill--generic {
  background: #e2e8f0;
  border-color: #cbd5e1;
  color: #334155;
}

.product-flash-offer {
  position: static;
  border-radius: 12px;
  margin: 8px 0 10px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-flash-offer .flash-left {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
.product-flash-offer .flash-left .material-symbols-outlined { font-size: 16px; }
.product-flash-offer .flash-offer-label { font-size: 11px; }
.product-flash-offer .flash-timer { margin-left: auto; }

.product-redirect-notice {
  margin-top: 14px;
  margin-bottom: 14px;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

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

.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-notice-cemf {
  background: linear-gradient(135deg, #eff6ff 0%, #ecfdf5 100%);
  border: 1px solid rgba(37, 99, 235, 0.35);
}

.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-notice-cemf .product-redirect-icon {
  background: #dbeafe;
  color: #1d4ed8;
}

.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: 6px;
  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: #92400e;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

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

.product-mini-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.product-mini-benefit {
  min-height: 42px;
  border: 1px solid #dbe3ef;
  background: #fff;
  border-radius: 14px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #111827;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.product-mini-benefit .material-symbols-outlined {
  font-size: 18px;
  color: #2563eb;
}

.product-buy-button {
  width: 100%;
  margin-top: 14px;
  min-height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fb923c, #f97316);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  gap: 8px;
}

.product-buy-button:hover { transform: translateY(-1px); filter: brightness(1.02); }

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

.product-actions-grid-under-buy {
  margin-top: 12px;
  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;
  cursor: pointer;
  padding: 0 10px;
  font-size: 13px;
}

.product-action-card .material-symbols-outlined { font-size: 21px; }
.product-action-card:hover { background: #f8fafc; }

.related-products-section {
  margin-top: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #fff;
  padding: 12px;
}

.related-products-head h2 { margin: 0; font-size: 20px; letter-spacing: -0.02em; }
.related-products-head p { margin: 4px 0 12px; color: #64748b; font-size: 13px; }
.related-products-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  padding: 0 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  color: #1d4ed8;
  background: #f8fbff;
}
.related-products-more-link:hover {
  background: #eff6ff;
}

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

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

@media (min-width: 960px) {
  .product-hero-card {
    grid-template-columns: minmax(340px, 42%) minmax(0, 58%);
    gap: 18px;
    padding: 18px;
  }

  .product-actions-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .product-actions-grid-under-buy { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .related-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .product-gallery-main {
    min-height: 260px;
    max-height: 420px;
  }

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

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

  .related-products-grid .public-product-card {
    min-width: 72%;
    scroll-snap-align: start;
  }

  .product-pricing .price { font-size: 40px; }
  .product-actions-grid-under-buy { grid-template-columns: 1fr; }
  .product-action-card { justify-content: flex-start; }
  .product-mini-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-redirect-notice { padding: 14px; }
}
