:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #666666;
  --line: rgba(17, 17, 17, .16);
  --background: #ffffff;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background: var(--background);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--background);
  content: "";
}

.app-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  height: 100vh;
  min-height: 0;
}

.workspace { min-width: 0; height: 100vh; overflow-y: auto; scrollbar-width: none; -ms-overflow-style: none; }
.workspace::-webkit-scrollbar { display: none; width: 0; height: 0; }

.scroll-controls { position: fixed; right: 18px; bottom: 18px; z-index: 8; display: grid; gap: 8px; }
.scroll-controls button { display: grid; width: 40px; height: 40px; place-items: center; padding: 0 0 3px; border: 1px solid var(--ink); border-radius: 50%; background: var(--ink); color: #ffffff; box-shadow: 0 3px 12px rgba(0, 0, 0, .14); cursor: pointer; font: inherit; font-size: 24px; line-height: 1; transition: background-color .2s, color .2s, transform .2s; }
.scroll-controls button:hover { background: #ffffff; color: var(--ink); transform: translateY(-2px); }
.scroll-controls button:focus-visible { outline: 3px solid rgba(17, 17, 17, .25); outline-offset: 3px; }

.marketplace-navbar { position: sticky; top: 0; z-index: 5; background: #ffffff; color: #111111; }
.navbar-main { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 720px) minmax(0, 1fr); gap: 28px; align-items: center; width: 100%; min-height: 82px; padding: 18px 34px 14px; }
.navbar-brand { color: #111111; font-family: "Space Grotesk", sans-serif; font-size: 25px; font-weight: 700; letter-spacing: .16em; text-decoration: none; white-space: nowrap; }
.navbar-search { display: flex; justify-self: center; width: 100%; min-width: 0; height: 44px; overflow: hidden; border: 1px solid rgba(17, 17, 17, .8); border-radius: 7px; background: #ffffff; }
.navbar-search input { min-width: 0; flex: 1; padding: 0 16px; border: 0; outline: 0; background: transparent; color: #111111; font: inherit; font-size: 13px; }
.navbar-search input::placeholder { color: #707570; }
.navbar-search button { display: grid; width: 54px; place-items: center; border: 0; background: #111111; color: #ffffff; cursor: pointer; }
.navbar-search button svg { display: block; width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.navbar-actions { display: flex; align-items: center; justify-content: flex-end; gap: 18px; min-height: 28px; }
.navbar-actions button { position: relative; display: inline-flex; width: 28px; height: 28px; align-items: center; justify-content: center; padding: 0; border: 0; background: transparent; color: #111111; cursor: pointer; font: inherit; font-size: 25px; line-height: 1; }
.navbar-actions svg { display: block; width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.navbar-actions button:hover { color: #666666; }
.navbar-actions button span { position: absolute; top: -8px; right: -9px; font-size: 10px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.region-selector { display: inline-flex; min-width: 0; align-items: center; gap: 4px; }
.region-flag { display: inline-flex; width: 20px; height: 20px; align-items: center; justify-content: center; font-family: "Segoe UI Emoji", "Apple Color Emoji", sans-serif; font-size: 17px; line-height: 1; white-space: nowrap; }
.region-selector select { width: 62px; max-width: 100%; padding: 5px 14px 5px 3px; border: 1px solid var(--line); border-radius: 999px; outline: none; background: #ffffff; color: var(--ink); cursor: pointer; font: inherit; font-size: 9px; }
.region-selector select:hover, .region-selector select:focus-visible { border-color: var(--ink); }
.navbar-categories { position: relative; display: flex; height: 48px; align-items: center; padding: 0; overflow: hidden; border-top: 1px solid rgba(17, 17, 17, .12); }
.navbar-categories::-webkit-scrollbar { display: none; }
.navbar-category-scroll { display: flex; min-width: 0; height: 100%; align-items: center; gap: 28px; padding: 0 130px 0 34px; overflow-x: auto; scrollbar-width: none; }
.navbar-category-scroll::-webkit-scrollbar { display: none; }
.navbar-categories a { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 5px; padding: 15px 0; color: rgba(17, 17, 17, .9); font-size: 13px; text-decoration: none; white-space: nowrap; }
.category-chevron { display: block; width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.navbar-categories a:hover { color: #666666; }
body[data-view="cart"] .navbar-categories { display: none; }
.filter-button.navbar-filter-button { position: absolute; top: 8px; right: 18px; z-index: 2; flex: 0 0 auto; margin-left: 0; border-color: #000000; background: #000000; color: #ffffff; box-shadow: 0 0 0 4px #ffffff; }
.filter-button.navbar-filter-button:hover, .filter-button.navbar-filter-button.active { border-color: #333333; background: #333333; color: #ffffff; }

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

.ranking-page-nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 34px; border-bottom: 1px solid rgba(17, 17, 17, .12); background: #ffffff; }
.ranking-page-nav-link { color: var(--muted); font-size: 12px; text-decoration: underline; }
.ranking-page-nav-link:hover { color: var(--muted); }
.marketplace-page { width: calc(100% - 64px); max-width: none; margin: 0 auto; padding: 20px 0 32px; }
.marketplace-page .listing-grid { padding-top: 0; }
.site-footer { margin-top: 72px; padding: 48px 34px 28px; background: #111111; color: #ffffff; }
.site-footer-top { display: grid; grid-template-columns: minmax(220px, 1.4fr) repeat(2, minmax(150px, 1fr)); gap: 36px; max-width: 1400px; margin: 0 auto; }
.site-footer-brand a { color: #ffffff; font-family: "Space Grotesk", sans-serif; font-size: 20px; font-weight: 700; letter-spacing: .16em; text-decoration: none; }
.site-footer p { max-width: 330px; margin: 14px 0 0; color: rgba(255, 255, 255, .66); font-size: 12px; line-height: 1.6; }
.site-footer-column { display: grid; align-content: start; gap: 10px; }
.site-footer-column h2 { margin: 0 0 5px; color: #ffffff; font-family: "Space Grotesk", sans-serif; font-size: 13px; }
.site-footer-column a, .site-footer-column span { color: rgba(255, 255, 255, .68); font-size: 12px; line-height: 1.45; text-decoration: none; }
.site-footer-column a:hover { color: #ffffff; text-decoration: underline; }
.site-footer-bottom { display: flex; max-width: 1400px; justify-content: space-between; gap: 16px; margin: 42px auto 0; color: rgba(255, 255, 255, .52); font-size: 11px; }
.site-footer-bottom a { color: inherit; text-decoration: none; }
.site-footer-bottom a:hover { color: #ffffff; text-decoration: underline; }
.ranking-page { width: min(1320px, calc(100% - 64px)); margin: 0 auto; padding: 34px 0 72px; }
.ranking-page-header { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-top: 34px; }
.ranking-page-header h1 { margin: 0; color: var(--ink); font-family: "Space Grotesk", sans-serif; font-size: 34px; letter-spacing: -.05em; }
.ranking-page-header > p { max-width: 360px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; text-align: right; }
.ranking-status { margin: 24px 0 0; color: var(--muted); font-size: 12px; }
.ranking-table-wrap { overflow-x: auto; background: #ffffff; }
.ranking-page .ranking-table-wrap { margin-top: 32px; }
.ranking-table { width: 100%; min-width: 560px; border-collapse: collapse; color: var(--ink); font-size: 12px; }
.ranking-table th, .ranking-table td { padding: 13px 16px; border-bottom: 1px solid var(--line); text-align: right; }
.ranking-table thead th { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.ranking-table th:first-child, .ranking-table td:first-child { width: 60%; text-align: left; }
.ranking-table tbody th { display: flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 500; }
.ranking-product-link { color: var(--ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.ranking-product-link:hover { color: var(--muted); }
.ranking-product-image { display: block; width: 48px; height: 48px; flex: 0 0 48px; border-radius: 6px; background: #f1f1f1; object-fit: cover; }
.ranking-product-image-empty { border: 1px solid var(--line); }
.marketplace-page .listing-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); align-items: stretch; }
.marketplace-status { min-height: 18px; margin: 18px 0 0; color: var(--muted); font-size: 12px; }
.catalogue-admin-panel { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin: 28px 34px; padding: 22px; border: 1px solid var(--line); border-radius: 12px; background: #fafafa; }
.catalogue-admin-panel h2 { margin: 4px 0 6px; font-size: 21px; }
.catalogue-admin-panel p { margin: 0; color: var(--muted); font-size: 13px; }
.catalogue-admin-button { flex: 0 0 auto; padding: 12px 16px; border: 1px solid var(--ink); border-radius: 999px; background: var(--ink); color: #ffffff; cursor: pointer; font: inherit; font-size: 12px; font-weight: 700; }
.catalogue-admin-button:hover { background: #333333; }
.catalogue-admin-button:disabled { opacity: .55; cursor: wait; }
.marketplace-pagination { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 28px 0 0; }
.marketplace-pagination button { padding: 10px 14px; border: 1px solid var(--ink); border-radius: 999px; background: #111111; color: #ffffff; cursor: pointer; font: inherit; font-size: 12px; font-weight: 600; }
.marketplace-pagination button:hover:not(:disabled) { background: #ffffff; color: #111111; }
.marketplace-pagination button:disabled { border-color: var(--line); background: #f4f4f4; color: #999999; cursor: not-allowed; }
.marketplace-pagination span { min-width: 94px; color: var(--muted); font-size: 12px; text-align: center; }

.marketplace-page-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.marketplace-page-header h1 { margin: 0; color: var(--ink); font-family: "Space Grotesk", sans-serif; font-size: 28px; letter-spacing: -.05em; }
.eyebrow { color: #555555; font-size: 11px; font-weight: 700; letter-spacing: .2em; }
.featured-slides { margin-bottom: 42px; }
.featured-slides-header { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 16px; }
.featured-slides-header .eyebrow { margin: 0 0 7px; }
.featured-slides-header h2 { margin: 0; color: var(--ink); font-family: "Space Grotesk", sans-serif; font-size: 24px; letter-spacing: -.04em; }
.featured-slides-controls { display: flex; gap: 8px; }
.featured-slides-controls button { display: grid; width: 34px; height: 34px; place-items: center; padding: 0 0 2px; border: 1px solid var(--ink); border-radius: 50%; background: var(--ink); color: #ffffff; cursor: pointer; font: inherit; font-size: 18px; line-height: 1; transition: background-color .2s, color .2s, transform .2s; }
.featured-slides-controls button:hover { background: #ffffff; color: var(--ink); transform: translateY(-2px); }
.featured-slides-controls button:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.featured-slides-viewport { overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; scroll-snap-type: x mandatory; }
.featured-slides-viewport::-webkit-scrollbar { display: none; width: 0; height: 0; }
.featured-slides-track { display: flex; gap: 16px; }
.featured-slide { position: relative; display: grid; grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr); flex: 0 0 100%; height: 300px; min-height: 0; isolation: isolate; overflow: hidden; border: 0; border-radius: 22px; background: linear-gradient(120deg, #ff6a3d, #ffb347); color: #ffffff; cursor: pointer; box-shadow: 0 18px 38px rgba(17, 17, 17, .14); scroll-snap-align: start; transition: transform .25s, box-shadow .25s; }
.featured-slide::before { position: absolute; inset: 0; z-index: -2; background: linear-gradient(115deg, rgba(255, 255, 255, .2), transparent 42%, rgba(17, 17, 17, .12)); content: ""; }
.featured-slide::after { position: absolute; right: 25%; bottom: -110px; z-index: -1; width: 300px; height: 300px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 50%; box-shadow: 0 0 0 24px rgba(255, 255, 255, .08), 0 0 0 48px rgba(255, 255, 255, .05); content: ""; }
.featured-slide:hover { box-shadow: 0 24px 48px rgba(17, 17, 17, .2); transform: translateY(-4px); }
.featured-slide:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }
.featured-slide--deal { background: linear-gradient(120deg, #df275d, #ff7651); }
.featured-slide--top-rated { background: linear-gradient(120deg, #7045e8, #bd62ee); }
.featured-slide--trending { background: linear-gradient(120deg, #087f75, #2bbf9e); }
.featured-slide-orb { position: absolute; z-index: -1; border-radius: 50%; background: rgba(255, 255, 255, .12); pointer-events: none; }
.featured-slide-orb--one { top: -95px; left: 16%; width: 230px; height: 230px; }
.featured-slide-orb--two { right: 5%; bottom: -125px; width: 260px; height: 260px; background: rgba(17, 17, 17, .08); }
.featured-slide-image { z-index: 1; min-width: 0; height: calc(100% - 28px); min-height: 0; margin: 14px; overflow: hidden; border: 8px solid rgba(255, 255, 255, .82); border-radius: 18px; background: #f1f1f1; box-shadow: 0 10px 20px rgba(17, 17, 17, .14); }
.featured-slide-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.featured-slide-content { z-index: 1; display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: 28px 42px 28px 12px; }
.featured-slide-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.featured-slide-label { color: rgba(255, 255, 255, .78); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.featured-slide-open { display: grid; width: 34px; height: 34px; flex: 0 0 auto; place-items: center; border: 1px solid rgba(255, 255, 255, .5); border-radius: 50%; background: rgba(255, 255, 255, .14); color: #ffffff; font-size: 20px; line-height: 1; }
.featured-slide h3 { display: -webkit-box; margin: 13px 0 8px; overflow: hidden; font-family: "Space Grotesk", sans-serif; font-size: 28px; line-height: 1.12; letter-spacing: -.04em; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.featured-slide p { max-width: 440px; margin: 0; color: rgba(255, 255, 255, .82); font-size: 14px; line-height: 1.45; }
.featured-slide-meta { display: flex; min-width: 0; align-items: center; gap: 12px; margin-top: 22px; }
.featured-slide-meta strong { display: inline-flex; min-height: 34px; align-items: center; padding: 7px 12px; border-radius: 999px; background: #ffffff; color: #111111; font-size: 15px; white-space: nowrap; }
.featured-slide-meta span { min-width: 0; overflow: hidden; color: rgba(255, 255, 255, .82); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.featured-slide-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; color: #ffffff; font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.featured-slide-cta span { font-size: 18px; line-height: 1; transition: transform .2s; }
.featured-slide:hover .featured-slide-cta span { transform: translateX(4px); }
.category-showcase { margin-bottom: 34px; }
.category-showcase-header { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 20px; }
.category-showcase-header .eyebrow { margin: 0 0 7px; }
.category-showcase-header h2 { margin: 0; color: var(--ink); font-family: "Space Grotesk", sans-serif; font-size: 24px; letter-spacing: -.04em; }
.category-showcase-count { color: var(--muted); font-size: 12px; white-space: nowrap; }
.category-showcase-grid { display: grid; grid-template-columns: repeat(10, minmax(0, 1fr)); gap: 24px 14px; }
.category-card { display: flex; min-width: 0; flex-direction: column; align-items: center; gap: 10px; color: var(--ink); font-size: 12px; text-align: center; text-decoration: none; }
.category-card-image { display: flex; width: 92px; height: 92px; align-items: center; justify-content: center; overflow: hidden; border-radius: 50%; background: #f1f1f1; transition: transform .2s, background-color .2s; }
.category-card-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.category-card:hover .category-card-image { background: #e8e8e8; transform: translateY(-3px); }
.category-card-name { max-width: 120px; line-height: 1.25; }
.daily-discounts { margin-bottom: 38px; }
.daily-discounts-header { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 17px; }
.daily-discounts-header .eyebrow { margin: 0 0 7px; color: #d14e27; }
.daily-discounts-header h2 { margin: 0; color: var(--ink); font-family: "Space Grotesk", sans-serif; font-size: 24px; letter-spacing: -.04em; }
.daily-discounts-controls { display: flex; gap: 8px; }
.daily-discounts-controls button { display: grid; width: 36px; height: 36px; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: #ffffff; color: var(--ink); cursor: pointer; font: inherit; font-size: 18px; line-height: 1; transition: background-color .2s, color .2s, border-color .2s; }
.daily-discounts-controls button:hover { border-color: var(--ink); background: var(--ink); color: #ffffff; }
.daily-discounts-controls button:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.daily-discounts-viewport { overflow-x: auto; overscroll-behavior-inline: contain; scroll-behavior: smooth; scroll-padding-inline: 2px; scrollbar-width: thin; scroll-snap-type: x proximity; }
.daily-discounts-track { display: flex; gap: 14px; min-width: max-content; padding: 2px 2px 12px; }
.daily-discount-card { display: flex; width: clamp(190px, 18vw, 230px); flex: 0 0 clamp(190px, 18vw, 230px); min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #ffffff; cursor: pointer; scroll-snap-align: start; transition: border-color .2s, box-shadow .2s, transform .2s; }
.daily-discount-card:hover { border-color: rgba(17, 17, 17, .55); box-shadow: 0 12px 24px rgba(17, 17, 17, .1); transform: translateY(-3px); }
.daily-discount-card:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.daily-discount-image-wrap { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: #f4f4f4; }
.daily-discount-image-wrap img { display: block; width: 100%; height: 100%; object-fit: cover; }
.daily-discount-badge { position: absolute; top: 10px; left: 10px; z-index: 1; padding: 6px 9px; border-radius: 999px; background: #d14e27; color: #ffffff; font-size: 10px; font-weight: 700; letter-spacing: .04em; }
.daily-discount-details { display: flex; min-width: 0; flex: 1; flex-direction: column; gap: 9px; padding: 13px 14px 15px; }
.daily-discount-details h3 { display: -webkit-box; min-height: 34px; margin: 0; overflow: hidden; color: var(--ink); font-size: 13px; line-height: 1.3; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.daily-discount-prices { display: flex; align-items: baseline; gap: 8px; min-width: 0; }
.daily-discount-prices s { color: var(--muted); font-size: 11px; }
.daily-discount-prices strong { color: #d14e27; font-size: 15px; }
.daily-discount-delivery { margin-top: auto; overflow: hidden; color: var(--muted); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.daily-discounts-empty { margin: 0; padding: 24px; border: 1px dashed var(--line); border-radius: 12px; color: var(--muted); }
.listing-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0 0 22px; }
.toolbar-left { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; max-width: 860px; }
.search-box, .location-box { display: flex; align-items: center; gap: 8px; width: auto; min-width: 0; flex: 1 1 0; margin: 0; padding: 11px 16px; border: 1px solid #111111; border-radius: 999px; background: var(--background); color: var(--ink); }
.location-box { border-radius: 8px; }
.search-box span, .location-box span { font-size: 23px; line-height: 1; }
.search-box input, .location-box input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); font: inherit; font-size: 13px; }
.search-box input::placeholder, .location-box input::placeholder { color: var(--muted); }
.filter-list { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-button { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--muted); cursor: pointer; font: inherit; font-size: 12px; }
.filter-button:hover, .filter-button.active { border-color: #111111; background: #111111; color: #ffffff; }
.filter-drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 10; width: min(360px, 100vw); padding: 28px; border-left: 1px solid var(--line); background: var(--background); box-shadow: -18px 0 40px rgba(0, 0, 0, .2); transform: translateX(100%); transition: transform .25s ease; }
.filter-drawer.is-open { transform: translateX(0); }
.filter-drawer { overflow-y: auto; }
.filter-drawer-header { display: flex; align-items: center; justify-content: space-between; }
.filter-drawer-header h2 { margin: 0; color: var(--ink); font-family: "Space Grotesk", sans-serif; font-size: 24px; letter-spacing: -.04em; }
.close-filter { display: grid; width: 32px; height: 32px; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; font: inherit; font-size: 24px; line-height: 1; }
.close-filter:hover { border-color: #111111; background: #111111; color: #ffffff; }
.filter-fields { display: grid; gap: 22px; margin-top: 34px; }
.filter-field { display: grid; gap: 9px; margin: 0; color: var(--ink); font-size: 12px; font-weight: 600; }
.filter-field select, .filter-field input { width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 8px; outline: none; background: #ffffff; color: var(--ink); font: inherit; font-size: 13px; }
.filter-field select:focus, .filter-field input:focus { border-color: #111111; box-shadow: 0 0 0 3px rgba(17, 17, 17, .08); }
.filter-field select option { background: #ffffff; color: var(--ink); }
.clear-filters { width: 100%; padding: 12px 14px; border: 1px solid var(--ink); border-radius: 8px; background: var(--ink); color: #ffffff; cursor: pointer; font: inherit; font-size: 13px; font-weight: 600; }
.clear-filters:hover { background: #333333; }
.marketplace-empty { grid-column: 1 / -1; margin: 24px 0; padding: 36px 20px; border: 1px dashed var(--line); border-radius: 12px; color: var(--muted); text-align: center; }
.price-field { min-width: 0; padding: 0; border: 0; }
.price-field legend { padding: 0; color: var(--ink); font-size: 12px; font-weight: 600; }
.price-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.filter-field input::placeholder { color: var(--muted); }
.rating-field { min-width: 0; gap: 10px; padding: 0; border: 0; }
.rating-field legend { padding: 0; color: var(--ink); font-size: 12px; font-weight: 600; }
.star-rating { display: flex; align-items: center; gap: 5px; }
.star-button { padding: 0; border: 0; background: transparent; color: rgba(17, 17, 17, .45); cursor: pointer; font-size: 30px; line-height: 1; transition: color .2s, transform .2s; }
.star-button:hover, .star-button.is-selected { color: #111111; transform: scale(1.06); }
.listing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.listing-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #ffffff; transition: transform .2s, border-color .2s; }
.listing-card:hover { border-color: rgba(17, 17, 17, .55); transform: translateY(-3px); }
.listing-image { display: flex; aspect-ratio: 4 / 3; min-height: 0; align-items: flex-end; justify-content: space-between; padding: 18px; color: #ffffff; font-family: "Space Grotesk", sans-serif; }
.product-image-wrap { position: relative; overflow: hidden; padding: 0; background: #f4f4f4; }
.marketplace-page .product-image-wrap { aspect-ratio: 4 / 3; }
.product-image { display: block; width: 100%; height: 100%; object-fit: cover; }
.product-title-row { display: flex; min-height: 40px; align-items: flex-start; gap: 10px; }
.marketplace-page .product-title-row h2 { display: -webkit-box; min-width: 0; flex: 1; margin: 0; overflow: hidden; font-size: 16px; line-height: 1.25; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.product-save-button { display: grid; flex: 0 0 auto; width: 28px; height: 28px; margin: -4px -4px 0 0; padding: 3px; place-items: center; border: 0; border-radius: 50%; background: transparent; color: #111111; cursor: pointer; }
.product-save-button:hover { background: #f1f1f1; }
.product-save-button svg { display: block; width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.product-save-button.is-saved svg { fill: #111111; }
.marketplace-product-card { height: 100%; }
.product-stats { display: grid; grid-template-areas: "price price" "rating rating" "delivery stock"; grid-template-columns: minmax(0, 1fr) auto; gap: 6px 10px; align-items: center; min-height: 68px; margin-top: auto; color: var(--muted); font-size: 10px; }
.product-price { display: block; min-width: 0; grid-area: price; overflow: hidden; color: #111111; font-size: 15px; text-overflow: ellipsis; white-space: nowrap; }
.product-stock { display: inline-flex; grid-area: stock; align-items: center; justify-self: end; gap: 5px; white-space: nowrap; }
.stock-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #111111; }
.product-rating { display: inline-flex; grid-area: rating; min-width: 0; align-items: center; justify-self: start; gap: 6px; overflow: hidden; color: var(--muted); text-align: left; }
.product-stars { display: inline-flex; gap: 1px; font-size: 13px; letter-spacing: 0; line-height: 1; }
.product-stars .star-full { color: #111111; }
.product-stars .star-empty { color: rgba(17, 17, 17, .28); }
.product-stars .star-half { background: linear-gradient(90deg, #111111 50%, rgba(17, 17, 17, .28) 50%); background-clip: text; -webkit-background-clip: text; color: transparent; }
.product-rating small { min-width: 0; overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.product-delivery { display: inline-flex; grid-area: delivery; color: var(--muted); font-size: 9px; white-space: nowrap; }
.marketplace-product-card { cursor: pointer; }
.marketplace-product-card:focus-visible { outline: 2px solid #111111; outline-offset: 4px; }
.cart-page { width: min(1320px, calc(100% - 64px)); margin: 0 auto; padding: 18px 0 64px; }
.cart-page.is-empty { display: flex; min-height: calc(100vh - 90px); flex-direction: column; padding-bottom: 0; }
.cart-progress-card { padding: 0; border: 0; background: transparent; }
.cart-guarantee-message { margin: 0 0 14px; color: var(--ink); font-size: 13px; font-weight: 600; text-align: center; }
.cart-progress-track { height: 10px; margin-top: 0; overflow: hidden; border-radius: 999px; background: #dedede; }
.cart-progress-track span { display: block; width: 0; height: 100%; border-radius: inherit; background: #111111; transition: width .3s ease; }
.cart-milestones { display: grid; grid-template-columns: repeat(5, minmax(72px, 1fr)); gap: 12px; margin-top: 12px; }
.cart-milestone { display: grid; gap: 3px; color: var(--muted); font-size: 12px; }
.cart-milestone:not(:first-child) { text-align: center; }
.cart-milestone:last-child { text-align: right; }
.cart-milestone span { color: var(--ink); font-weight: 700; }
.cart-milestone small { font-size: 11px; }
.cart-milestone.is-reached span, .cart-milestone.is-reached small { color: var(--ink); }
.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 28px; margin-top: 36px; align-items: start; }
.cart-page.is-empty .cart-layout { display: flex; flex: 1; min-height: 0; margin-top: 0; }
.cart-items-panel, .cart-summary { border: 1px solid var(--line); border-radius: 14px; background: #ffffff; }
.cart-items-panel { padding: 24px; }
.cart-page.is-empty .cart-items-panel { display: grid; flex: 1; min-height: 0; place-items: center; padding: 0; border: 0; background: transparent; }
.cart-page.is-empty .cart-items-panel > h2, .cart-page.is-empty .cart-summary { display: none; }
.cart-items-panel > h2, .cart-summary h2 { margin: 0; color: var(--ink); font-family: "Space Grotesk", sans-serif; font-size: 20px; letter-spacing: -.04em; }
.cart-item { display: flex; min-width: 0; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-item:first-child { margin-top: 10px; }
.cart-item:last-child { border-bottom: 0; }
.cart-item > img, .cart-item-placeholder { width: 88px; height: 88px; flex: 0 0 88px; border-radius: 9px; background: #f1f1f1; object-fit: cover; }
.cart-item-info { display: grid; min-width: 0; flex: 1; gap: 7px; }
.cart-item-info h3 { margin: 0; overflow: hidden; color: var(--ink); font-size: 14px; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
.cart-item-info > strong { color: var(--ink); font-size: 13px; }
.cart-item-controls { display: inline-flex; width: fit-content; align-items: center; gap: 12px; color: var(--ink); font-size: 12px; }
.cart-item-controls button { display: grid; width: 25px; height: 25px; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: #ffffff; color: var(--ink); cursor: pointer; font: inherit; font-size: 16px; line-height: 1; }
.cart-item-controls button:hover { border-color: var(--ink); background: var(--ink); color: #ffffff; }
.cart-item-remove { align-self: start; padding: 4px 0; border: 0; background: transparent; color: var(--muted); cursor: pointer; font: inherit; font-size: 11px; }
.cart-item-remove:hover { color: var(--ink); text-decoration: underline; }
.cart-summary { display: grid; gap: 16px; padding: 24px; position: sticky; top: 20px; }
.cart-summary > div { display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 13px; }
.cart-summary > div strong { color: var(--ink); }
.cart-summary .cart-total { margin-top: 4px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--ink); font-size: 16px; font-weight: 700; }
.cart-summary-note { margin: -4px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.cart-checkout-button, .cart-continue-button { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 14px 16px; border: 1px solid var(--ink); border-radius: 9px; background: var(--ink); color: #ffffff; cursor: pointer; font: inherit; font-size: 13px; font-weight: 700; }
.cart-checkout-button span, .cart-continue-button span { font-size: 19px; font-weight: 400; }
.cart-checkout-button:hover, .cart-continue-button:hover { background: #333333; }
.cart-checkout-button:disabled { border-color: var(--line); background: #f4f4f4; color: #999999; cursor: not-allowed; }
.cart-checkout-button:disabled:hover { background: #f4f4f4; }
.cart-checkout-status { min-height: 16px; margin: -5px 0 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.cart-empty-state { display: grid; min-height: 230px; place-content: center; justify-items: center; gap: 9px; text-align: center; }
.cart-empty-state h3 { margin: 0; color: var(--ink); font-family: "Space Grotesk", sans-serif; font-size: 24px; letter-spacing: -.04em; }
.cart-empty-state p { margin: 0 0 9px; color: var(--muted); font-size: 12px; }
.cart-continue-button { width: auto; gap: 30px; }
.product-detail-page { width: min(1180px, calc(100% - 72px)); margin: 0 auto; padding: 34px 0 60px; }
.detail-back-button { padding: 0; border: 0; background: none; color: var(--muted); cursor: pointer; font: inherit; font-size: 12px; }
.detail-back-button:hover { color: var(--ink); }
.product-detail-status { min-height: 18px; margin: 34px 0 0; color: var(--muted); font-size: 12px; }
.product-detail-content { margin-top: 26px; }
.product-detail-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); gap: 42px; align-items: start; }
.product-gallery { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 14px; min-width: 0; }
.product-gallery-stage { grid-column: 2; grid-row: 1; }
.product-gallery-thumbs { grid-column: 1; grid-row: 1; }
.product-gallery-stage { display: grid; min-height: 520px; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #f4f4f4; }
.product-gallery-image, .product-gallery-video { display: block; width: 100%; height: 100%; max-height: 620px; object-fit: contain; }
.product-gallery-empty { padding: 24px; color: var(--muted); font-size: 12px; }
.product-gallery-thumbs { display: flex; max-height: 520px; flex-direction: column; gap: 9px; overflow-y: auto; }
.product-gallery-thumb { display: grid; flex: 0 0 68px; width: 68px; height: 68px; padding: 0; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 9px; background: #f4f4f4; color: #111111; cursor: pointer; }
.product-gallery-thumb:hover, .product-gallery-thumb.is-selected { border-color: #111111; }
.product-gallery-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.product-gallery-video-thumb { background: #eeeeee; font-size: 16px; }
.product-detail-summary { padding-top: 12px; }
.detail-eyebrow { margin: 0 0 12px; color: var(--muted); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.product-detail-summary h1 { max-width: 620px; margin: 0; color: var(--ink); font-family: "Space Grotesk", sans-serif; font-size: clamp(30px, 4vw, 52px); letter-spacing: -.065em; line-height: .98; }
.detail-price-row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 28px; }
.detail-price-row > strong { color: var(--ink); font-family: "Space Grotesk", sans-serif; font-size: 24px; letter-spacing: -.04em; }
.detail-price-row .product-rating { color: var(--muted); }
.detail-facts { display: grid; gap: 11px; margin-top: 26px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.detail-pricing { display: grid; gap: 8px; margin-top: 18px; padding: 15px; border: 1px solid var(--line); border-radius: 9px; background: #f7f7f7; color: var(--muted); font-size: 12px; }
.detail-pricing-title { margin: 0 0 3px; color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.detail-pricing > div { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.detail-pricing strong { color: var(--ink); font-weight: 600; }
.detail-pricing-result { margin-top: 4px; padding-top: 9px; border-top: 1px solid var(--line); }
.detail-pricing-result strong { color: #111111; }
.detail-primary-button { display: flex; width: min(260px, 100%); align-items: center; justify-content: space-between; margin-top: 24px; padding: 15px 18px; border: 1px solid #111111; border-radius: 9px; background: #111111; color: #ffffff; cursor: pointer; font: inherit; font-size: 14px; font-weight: 700; }
.detail-primary-button span { font-size: 20px; font-weight: 400; }
.product-detail-sections { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr); gap: 34px 42px; margin-top: 52px; padding-top: 30px; border-top: 1px solid var(--line); }
.product-detail-section { min-width: 0; }
.product-detail-section:last-child { grid-column: 1 / -1; }
.product-detail-section h2 { margin: 0 0 14px; color: var(--ink); font-family: "Space Grotesk", sans-serif; font-size: 20px; letter-spacing: -.04em; }
.product-detail-section p { max-width: 760px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.product-specifications { display: grid; gap: 10px; margin: 0; }
.product-specifications > div { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 15px; padding-bottom: 10px; border-bottom: 1px solid rgba(17, 17, 17, .14); font-size: 12px; }
.product-specifications dt { color: var(--muted); }
.product-specifications dd { margin: 0; color: var(--ink); overflow-wrap: anywhere; }
.product-variants { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.product-variant-card { display: flex; min-width: 0; gap: 12px; align-items: center; padding: 10px; border: 1px solid var(--line); border-radius: 9px; background: #fafafa; }
.product-variant-card img { width: 58px; height: 58px; flex: 0 0 58px; border-radius: 6px; background: #f4f4f4; object-fit: cover; }
.product-variant-card div { display: grid; min-width: 0; gap: 6px; }
.product-variant-card strong { overflow: hidden; color: var(--ink); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.product-variant-card small { color: var(--muted); font-size: 10px; }
.product-reviews-section { margin-top: 4px; }
.product-reviews-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.product-reviews-heading > span { color: var(--muted); font-size: 12px; }
.product-reviews { display: grid; gap: 0; border-top: 1px solid var(--line); }
.product-review { padding: 18px 0; border-bottom: 1px solid var(--line); }
.product-review-header { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.product-review-author { display: flex; min-width: 0; align-items: center; gap: 8px; color: var(--muted); font-size: 11px; }
.product-review-author strong { color: var(--ink); font-size: 12px; }
.product-review-author img { width: 18px; height: 12px; object-fit: cover; }
.product-review-header time { flex: 0 0 auto; color: var(--muted); font-size: 10px; }
.product-review-rating { display: flex; align-items: center; gap: 2px; margin-top: 9px; color: var(--muted); font-size: 10px; }
.review-star { color: rgba(17, 17, 17, .28); font-size: 14px; }
.review-star-full { color: #111111; }
.product-review p { max-width: 900px; margin: 10px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.product-review-images { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.product-review-images img { width: 72px; height: 72px; border-radius: 7px; background: #f4f4f4; object-fit: cover; }
.product-detail-muted { color: var(--muted); font-size: 12px; }
.listing-image span, .listing-image strong { font-size: 11px; letter-spacing: .12em; }
.listing-image strong { font-size: 18px; letter-spacing: -.04em; }
.image-denim { background: linear-gradient(145deg, #4f7080, #243f4a 60%, #162c35); }
.image-lamp { background: linear-gradient(145deg, #c79a54, #72542e 58%, #3e2c1b); }
.image-bike { background: linear-gradient(145deg, #8b5149, #4e2929 62%, #2e171a); }
.image-sneaker { background: linear-gradient(145deg, #b4a994, #665e51 62%, #37322c); }
.image-speaker { background: linear-gradient(145deg, #6d7b7e, #384a4c 60%, #202c2e); }
.image-chair { background: linear-gradient(145deg, #9f744e, #60432d 60%, #392719); }
.image-bag { background: linear-gradient(145deg, #8b6254, #51372e 60%, #2f211d); }
.image-led { background: linear-gradient(145deg, #7d8060, #4b4d35 60%, #2c2e20); }
.image-fire { background: linear-gradient(145deg, #9c6549, #5c3528 60%, #321d18); }
.listing-details { display: flex; flex: 1; flex-direction: column; padding: 12px 13px 13px; }
.listing-source { color: #555555; font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.listing-source span { color: var(--muted); }
.listing-details h2 { margin: 9px 0 16px; color: var(--ink); font-family: "Space Grotesk", sans-serif; font-size: 19px; letter-spacing: -.04em; }
.listing-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: auto; color: var(--muted); font-size: 12px; }
.listing-bottom strong { color: #111111; font-size: 16px; }

@media (max-width: 620px) {
  .navbar-main { grid-template-columns: minmax(0, 1fr) auto; gap: 14px; min-height: auto; padding: 16px 15px 12px; }
  .navbar-brand { font-size: 18px; }
  .ranking-page-nav { align-items: flex-start; flex-direction: column; gap: 12px; padding: 18px 20px; }
  .navbar-search { grid-column: 1 / -1; grid-row: 2; width: 100%; }
  .navbar-actions { gap: 13px; }
  .navbar-actions button { font-size: 21px; }
  .navbar-actions svg { width: 22px; height: 22px; }
  .region-selector select { width: 58px; padding-right: 12px; font-size: 8px; }
  .navbar-categories { gap: 0; padding: 0; }
  .navbar-category-scroll { gap: 22px; padding: 0 105px 0 15px; }
  .navbar-filter-button { right: 10px; }
  .marketplace-page { width: calc(100% - 30px); }
  .cart-page { width: calc(100% - 30px); }
  .cart-progress-card { padding: 0; }
  .marketplace-page-header { align-items: flex-start; gap: 14px; flex-direction: column; }
  .listing-toolbar { align-items: stretch; flex-direction: column; gap: 15px; }
  .toolbar-left { align-items: stretch; flex: none; flex-direction: column; width: 100%; max-width: none; }
  .search-box, .location-box { width: 100%; flex: none; }
  .listing-grid { grid-template-columns: 1fr; }
  .filter-drawer { top: 0; width: 100%; padding: 20px; }
}

@media (max-width: 760px) {
  .category-showcase-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px 10px; }
  .category-card-image { width: 76px; height: 76px; }
  .cart-page { width: calc(100% - 40px); padding-top: 24px; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .product-detail-page { width: calc(100% - 40px); padding-top: 24px; }
  .product-detail-layout, .product-detail-sections { grid-template-columns: 1fr; }
  .product-gallery { grid-template-columns: 1fr; }
  .product-gallery-stage, .product-gallery-thumbs { grid-column: auto; grid-row: auto; }
  .product-gallery-stage { min-height: 360px; }
  .product-gallery-thumbs { max-height: none; flex-direction: row; overflow-x: auto; }
  .product-detail-section:last-child { grid-column: auto; }
  .site-footer { padding: 38px 20px 24px; }
  .site-footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 22px; }
  .ranking-page { width: calc(100% - 40px); }
  .ranking-page-header { align-items: flex-start; flex-direction: column; gap: 8px; }
  .ranking-page-header > p { max-width: none; text-align: left; }
  .site-footer-bottom { align-items: flex-start; flex-direction: column; margin-top: 34px; }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .category-showcase-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .featured-slides-header { align-items: flex-start; flex-direction: column; gap: 12px; }
  .featured-slide { grid-template-columns: 110px minmax(0, 1fr); height: 220px; border-radius: 18px; }
  .featured-slide-image { height: calc(100% - 20px); margin: 10px; border-width: 5px; border-radius: 14px; }
  .featured-slide-content { padding: 18px 18px 18px 6px; }
  .featured-slide-open { width: 28px; height: 28px; font-size: 16px; }
  .featured-slide h3 { margin: 8px 0 5px; font-size: 20px; }
  .featured-slide p { font-size: 11px; }
  .featured-slide-meta { gap: 7px; margin-top: 12px; }
  .featured-slide-meta strong { min-height: 28px; padding: 5px 9px; font-size: 12px; }
  .featured-slide-cta { margin-top: 11px; font-size: 10px; }
  .category-showcase-header { align-items: flex-start; flex-direction: column; gap: 8px; }
  .category-showcase-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px 8px; }
  .category-card-image { width: 72px; height: 72px; }
  .daily-discounts-header { align-items: flex-start; flex-direction: column; gap: 12px; }
  .daily-discount-card { width: 190px; flex-basis: 190px; }
  .marketplace-pagination { gap: 8px; }
  .marketplace-pagination button { padding: 9px 10px; font-size: 11px; }
  .marketplace-pagination span { min-width: 78px; font-size: 11px; }
  .catalogue-admin-panel { align-items: stretch; flex-direction: column; margin: 24px 15px; }
  .catalogue-admin-button { width: 100%; }
  .site-footer-top { grid-template-columns: 1fr; }
}
