/* Tinyora homepage — focused storefront experience */
.home-page {
  --home-ink: #24304a;
  --home-muted: #697189;
  --home-coral: #ff6f61;
  --home-coral-dark: #e95449;
  --home-lilac: #8b78d7;
  --home-cream: #fffaf3;
  --home-blue: #e8f5ff;
  --home-line: #e8e7ec;
  --home-white: #fff;
  --home-shadow: 0 18px 50px rgba(37, 48, 73, .1);
  background: #fff;
  color: var(--home-ink);
}

.home-page .logo-banner {
  display: none;
}

.home-page .logo-banner .logo-link:hover {
  transform: none;
}

.home-page .logo-banner .logo-link img {
  width: 116px;
  height: 68px;
  object-fit: contain;
}

.home-page .logo-banner .cloud {
  display: none;
}

.home-page .site-header-new {
  background: rgba(255, 255, 255, .92) !important;
  border-bottom: 1px solid rgba(36, 48, 74, .08);
  box-shadow: 0 8px 28px rgba(36, 48, 74, .06);
}

.home-page .site-header-new .container {
  max-width: 1240px;
  padding-inline: 24px;
}

.home-page .header-wrapper {
  min-height: 66px;
  padding: 9px 0;
}

.home-page .nav-link {
  color: var(--home-ink);
  border-radius: 999px;
  padding: .65rem 1rem;
}

.home-page .nav-link:hover {
  color: var(--home-coral-dark);
  transform: none;
}

.home-page .currency-switcher-new {
  border-color: var(--home-line);
  border-radius: 999px;
  padding: .55rem .8rem;
}

.home-page .cart-button-new,
.home-page .user-button {
  border-radius: 50%;
}

.home-store {
  overflow: hidden;
  background: #fff;
}

.home-app-header,
.home-filter-button,
.home-hero-mobile-copy,
.home-hero-mobile-secondary,
.home-hero-product-mini-two {
  display: none;
}

/* Shared storefront app menu surfaces */
.home-app-header,
.home-account-menu,
.home-account-drawer {
  background-color: #fff !important;
}

.home-shell {
  width: min(100% - 48px, 1200px);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-alert {
  width: min(100% - 48px, 1200px);
  margin: 18px auto 0;
  padding: 13px 16px;
  border: 1px solid #bde2c8;
  border-radius: 14px;
  background: #effbf2;
  color: #1d6b35;
  font-weight: 700;
}

.home-alert-error {
  border-color: #f3c5c0;
  background: #fff2f0;
  color: #a83f35;
}

.home-hero {
  position: relative;
  padding: 68px 0 64px;
  background:
    radial-gradient(circle at 7% 18%, rgba(255, 204, 197, .5) 0 7%, transparent 7.2%),
    radial-gradient(circle at 94% 82%, rgba(199, 224, 255, .65) 0 9%, transparent 9.2%),
    linear-gradient(135deg, #fffaf5 0%, #fff 48%, #f7f4ff 100%);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .3;
  background-image: radial-gradient(rgba(36, 48, 74, .18) .8px, transparent .8px);
  background-size: 20px 20px;
  mask-image: linear-gradient(to right, black, transparent 55%);
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.home-eyebrow,
.home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--home-coral-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.home-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.home-hero h1 {
  max-width: 720px;
  margin: 18px 0 20px;
  color: var(--home-ink);
  font-family: var(--font-display, "Poppins", sans-serif);
  font-size: clamp(2.7rem, 5.3vw, 5.2rem);
  font-weight: 800;
  line-height: .99;
  letter-spacing: -.055em;
}

.home-hero-copy > p {
  max-width: 610px;
  color: var(--home-muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.75;
}

.home-search {
  display: flex;
  align-items: center;
  max-width: 660px;
  min-height: 64px;
  margin-top: 30px;
  padding: 7px 7px 7px 20px;
  border: 1px solid rgba(36, 48, 74, .12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 15px 38px rgba(36, 48, 74, .1);
}

.home-search svg {
  width: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--home-muted);
  stroke-width: 1.8;
}

.home-search input {
  min-width: 0;
  flex: 1;
  padding: 0 13px;
  border: 0;
  outline: 0;
  color: var(--home-ink);
  background: transparent;
  font: inherit;
}

.home-search input::placeholder {
  color: #979caf;
}

.home-search:focus-within {
  border-color: var(--home-lilac);
  box-shadow: 0 0 0 4px rgba(139, 120, 215, .12), 0 15px 38px rgba(36, 48, 74, .1);
}

.home-search button,
.home-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 13px;
  background: var(--home-ink);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.home-search button:hover,
.home-primary-cta:hover {
  background: var(--home-coral-dark);
  color: #fff;
}

.home-hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
}

.home-primary-cta {
  min-height: 50px;
  padding-inline: 24px;
  gap: 11px;
}

.home-primary-cta span,
.home-secondary-cta,
.home-section-heading > a,
.home-heading-actions > a,
.home-story-copy > a {
  font-weight: 800;
}

.home-secondary-cta {
  color: var(--home-ink);
  border-bottom: 1px solid currentColor;
}

.home-secondary-cta:hover {
  color: var(--home-coral-dark);
}

.home-hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--home-muted);
  list-style: none;
  font-size: .82rem;
  font-weight: 700;
}

.home-hero-notes span {
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  place-items: center;
  border-radius: 50%;
  background: #e6f7ec;
  color: #25834a;
  font-size: .7rem;
}

.home-hero-brand-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: .78rem;
}

.home-hero-brand-links > span {
  color: var(--home-muted);
  font-weight: 800;
}

.home-hero-brand-links a {
  padding: 7px 11px;
  color: var(--home-ink);
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--home-line);
  border-radius: 999px;
  font-weight: 800;
}

.home-hero-brand-links a:hover {
  color: var(--home-coral-dark);
  border-color: rgba(139, 120, 215, .35);
}

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

.home-hero-orbit {
  position: absolute;
  border-radius: 50%;
}

.home-orbit-one {
  inset: 3% 0 4% 9%;
  background: #dfeeff;
}

.home-orbit-two {
  width: 180px;
  height: 180px;
  right: -8%;
  top: 2%;
  background: #ffe2de;
}

.home-hero-product {
  position: absolute;
  display: block;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--home-shadow);
}

.home-hero-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.home-hero-product:hover img {
  transform: scale(1.035);
}

.home-hero-product-main {
  width: min(82%, 430px);
  height: 440px;
  top: 25px;
  left: 7%;
  border: 9px solid #fff;
  border-radius: 46% 46% 28px 28px;
}

.home-hero-product-main span {
  position: absolute;
  inset: auto 16px 16px;
  padding: 13px 15px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  color: var(--home-ink);
  backdrop-filter: blur(10px);
  font-size: .9rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-hero-product-main small {
  display: block;
  margin-bottom: 2px;
  color: var(--home-coral-dark);
  font-size: .65rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.home-hero-product-main span em {
  display: none;
  font-style: normal;
}

.home-hero-product-small {
  width: 150px;
  height: 150px;
  right: -2%;
  bottom: 24px;
  border: 7px solid #fff;
  border-radius: 28px;
  transform: rotate(5deg);
}

.home-hero-proof {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 172px;
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--home-ink);
  color: #fff;
  box-shadow: var(--home-shadow);
  transform: rotate(-3deg);
}

.home-hero-proof strong {
  font-size: 1.45rem;
}

.home-hero-proof span {
  font-size: .72rem;
  line-height: 1.25;
}

.home-promo {
  color: #fff;
  background: #fbd3e3;
}

.home-promo-inner {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.home-promo p {
  margin: 0;
  font-size: .92rem;
}

.home-promo-icon {
  color: #ffd075;
}

.home-code {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px dashed rgba(255,255,255,.55);
  border-radius: 9px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 800;
  letter-spacing: .08em;
  cursor: pointer;
}

.home-code svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.home-code.is-copied {
  border-color: #8de5ae;
  background: rgba(87, 199, 126, .2);
}

.home-section {
  padding: 84px 0 12px;
}

.home-categories {
  padding-top: 82px;
}

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

.home-section-heading h2,
.home-story-copy h2 {
  margin: 7px 0 0;
  color: var(--home-ink);
  font-family: var(--font-display, "Poppins", sans-serif);
  font-size: clamp(1.9rem, 3.2vw, 3.15rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.home-section-heading > a,
.home-heading-actions > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 4px;
  color: var(--home-ink);
  border-bottom: 1px solid var(--home-line);
  font-size: .87rem;
}

.home-section-heading a:hover,
.home-story-copy > a:hover {
  color: var(--home-coral-dark);
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.home-category-card {
  position: relative;
  min-width: 0;
  padding: 12px 12px 16px;
  border: 1px solid var(--home-line);
  border-radius: 24px;
  background: #fff;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.home-category-card:hover {
  border-color: rgba(139, 120, 215, .35);
  box-shadow: 0 15px 32px rgba(36, 48, 74, .09);
  transform: translateY(-4px);
}

.home-category-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 17px;
  background: #f5f4f7;
}

.home-category-card:nth-child(3n + 1) .home-category-image { background: #fff0ed; }
.home-category-card:nth-child(3n + 2) .home-category-image { background: #eef7ff; }
.home-category-card:nth-child(3n + 3) .home-category-image { background: #f2efff; }

.home-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.home-category-card:hover img {
  transform: scale(1.045);
}

.home-brand-card .home-category-image img {
  object-fit: contain;
  padding: 12%;
}

.brands-intro {
  padding: 68px 0 24px;
  text-align: center;
}

.brands-intro h1 {
  margin: 8px 0 10px;
  color: var(--home-ink);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.brands-intro p {
  margin: 0;
  color: var(--home-muted);
}

.brands-category-section {
  padding-top: 40px;
}

.brands-page .home-category-card.is-selected,
.catalog-page .home-category-card.is-selected {
  border-color: var(--home-coral);
  box-shadow: 0 0 0 3px rgba(255, 126, 111, .16), 0 15px 32px rgba(36, 48, 74, .09);
}

.catalog-filter-trigger-wrap {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.catalog-filter-trigger {
  position: relative;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #29242d;
  border: 1px solid #29242d;
  border-radius: 17px;
  box-shadow: 0 15px 34px rgba(41, 36, 45, .2);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.catalog-filter-trigger:hover {
  background: #3a333e;
  transform: translateY(-2px);
  box-shadow: 0 19px 38px rgba(41, 36, 45, .24);
}

.catalog-filter-trigger:focus-visible,
.catalog-filter-close:focus-visible,
.catalog-filter-form :is(input, select, button, a):focus-visible {
  outline: 3px solid rgba(255, 126, 111, .38);
  outline-offset: 3px;
}

.catalog-filter-trigger svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.catalog-filter-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--home-coral);
  border: 3px solid #fff;
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 900;
  line-height: 1;
}

body.catalog-filter-open {
  overflow: hidden;
}

.catalog-filter-modal[hidden] {
  display: none !important;
}

.catalog-filter-modal {
  position: fixed;
  z-index: 11000;
  inset: 0;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(28, 24, 31, .55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  animation: catalog-filter-fade .2s ease both;
}

.catalog-filter-dialog {
  width: min(100%, 580px);
  max-height: min(780px, calc(100dvh - 48px));
  overflow: auto;
  color: var(--home-ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 27px;
  box-shadow: 0 30px 90px rgba(25, 20, 29, .28);
  animation: catalog-filter-rise .25s cubic-bezier(.2, .8, .2, 1) both;
}

.catalog-filter-head {
  position: relative;
  padding: 28px 76px 23px 28px;
  border-bottom: 1px solid var(--home-line);
  text-align: left;
}

.catalog-filter-head h2 {
  margin: 5px 0 5px;
  font-size: clamp(1.55rem, 4vw, 2rem);
  letter-spacing: -.04em;
}

.catalog-filter-head p {
  margin: 0;
  color: var(--home-muted);
  font-size: .78rem;
}

.catalog-filter-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #5e5662;
  background: #f6f3f7;
  border: 1px solid #ebe6ed;
  border-radius: 13px;
  cursor: pointer;
}

.catalog-filter-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.catalog-filter-form {
  padding: 24px 28px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  text-align: left;
}

.catalog-filter-form .is-wide {
  grid-column: 1 / -1;
}

.catalog-filter-form [data-catalog-dependent][hidden] {
  display: none;
}

.catalog-filter-field,
.catalog-price-field {
  min-width: 0;
}

.catalog-price-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.catalog-filter-field > label,
.catalog-price-field > legend,
.catalog-price-row span {
  display: block;
  margin: 0 0 7px;
  color: #4f4853;
  font-size: .69rem;
  font-weight: 850;
}

.catalog-price-row span {
  color: var(--home-muted);
  font-size: .62rem;
}

.catalog-filter-form input,
.catalog-filter-form select {
  width: 100%;
  min-width: 0;
  min-height: 49px;
  padding: 0 14px;
  color: #413a45;
  background: #f8f6f9;
  border: 1px solid #e8e3eb;
  border-radius: 13px;
  font: inherit;
  font-size: .77rem;
  outline: 0;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.catalog-filter-form input:focus,
.catalog-filter-form select:focus {
  background: #fff;
  border-color: #d4c8d8;
  box-shadow: 0 0 0 4px rgba(255, 126, 111, .09);
}

.catalog-modal-search {
  position: relative;
}

.catalog-modal-search svg {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #8e8491;
  stroke-width: 1.8;
  transform: translateY(-50%);
  pointer-events: none;
}

.catalog-modal-search input {
  padding-left: 44px;
}

.catalog-price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.catalog-price-row label {
  min-width: 0;
}

.catalog-filter-actions {
  margin-top: 3px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.catalog-filter-actions button,
.catalog-filter-actions a {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: .73rem;
  font-weight: 900;
}

.catalog-filter-actions button {
  color: #fff;
  background: #29242d;
  border: 1px solid #29242d;
  cursor: pointer;
}

.catalog-filter-actions a {
  color: #6f6673;
  background: #f7f5f8;
  border: 1px solid #e9e4eb;
}

@keyframes catalog-filter-fade {
  from { opacity: 0; }
}

@keyframes catalog-filter-rise {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-filter-modal,
  .catalog-filter-dialog {
    animation: none;
  }
}

.catalog-clear-category {
  padding: 7px 11px;
  color: var(--home-muted);
  background: #f8f7f9;
  border: 1px solid var(--home-line);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
}

.brand-parent-name {
  display: block;
  padding: 3px 28px 0 2px;
  overflow: hidden;
  color: var(--home-muted);
  font-size: .66rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brands-products-section {
  padding: 76px 0 90px;
}

.brands-results-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--home-line);
}

.brands-results-bar > div {
  display: flex;
  align-items: baseline;
  gap: 11px;
}

.brands-results-bar h2 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  letter-spacing: -.035em;
}

.brands-results-bar span,
.brands-results-bar small {
  color: var(--home-muted);
  font-size: .72rem;
  font-weight: 700;
}

.brands-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 38px;
  color: var(--home-muted);
  font-size: .84rem;
  font-weight: 700;
}

.brands-pagination a {
  padding: 10px 15px;
  color: var(--home-ink);
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 12px;
}

.brands-empty {
  position: relative;
  isolation: isolate;
  min-height: 430px;
  padding: 68px 28px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--home-muted);
  background:
    radial-gradient(circle at 12% 15%, rgba(225, 218, 255, .72), transparent 31%),
    radial-gradient(circle at 88% 85%, rgba(255, 220, 229, .74), transparent 30%),
    linear-gradient(145deg, #fff, #fbfaff);
  border: 1px solid #eae5ef;
  border-radius: 30px;
  box-shadow: 0 24px 65px rgba(48, 39, 57, .08);
  text-align: center;
}

.brands-empty::before,
.brands-empty::after {
  position: absolute;
  z-index: -1;
  content: "";
  border: 1px solid rgba(139, 120, 215, .13);
  border-radius: 50%;
}

.brands-empty::before { width: 230px; height: 230px; top: -125px; right: -55px; }
.brands-empty::after { width: 170px; height: 170px; bottom: -105px; left: -25px; }

.brands-empty-visual {
  position: relative;
  width: 84px;
  height: 84px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  color: #64567b;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(139,120,215,.17);
  border-radius: 27px;
  box-shadow: 0 16px 38px rgba(74,56,91,.12);
  transform: rotate(-4deg);
}

.brands-empty-visual.is-products {
  color: #9c5367;
  background: rgba(255,250,252,.92);
  border-color: rgba(190,93,120,.15);
  transform: rotate(4deg);
}

.brands-empty-visual svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brands-empty-kicker {
  margin-bottom: 8px;
  color: #8b6a91;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.brands-empty h2 {
  max-width: 520px;
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(1.65rem, 4vw, 2.55rem);
  line-height: 1.1;
  letter-spacing: -.045em;
}

.brands-empty p {
  max-width: 530px;
  margin: 15px auto 0;
  font-size: .9rem;
  line-height: 1.65;
}

.brands-empty-actions {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.brands-empty-actions a {
  min-height: 44px;
  padding: 11px 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #554e5a;
  background: rgba(255,255,255,.88);
  border: 1px solid #ddd6e2;
  border-radius: 13px;
  font-size: .76rem;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease;
}

.brands-empty-actions a.is-primary {
  color: #fff;
  background: #29242d;
  border-color: #29242d;
  box-shadow: 0 12px 28px rgba(41,36,45,.17);
}

.brands-empty-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(41,36,45,.12);
}

@media (max-width: 580px) {
  .brands-intro { padding: 30px 0 6px; }
  .brands-intro h1 { font-size: 2rem; }
  .brands-intro p { font-size: .8rem; }
  .brands-category-section { padding-top: 28px; }
  .brands-products-section { padding: 44px 0 70px; }
  .brands-results-bar { align-items:flex-start; margin-bottom:18px; }
  .brands-results-bar > div { align-items:flex-start; flex-direction:column; gap:3px; }
  .brands-results-bar small { text-align:right; }
  .brand-parent-name { padding: 2px 0 0; font-size: .55rem; text-align: center; }
  .brands-pagination { gap: 8px; font-size: .68rem; }
  .brands-pagination a { padding: 8px 10px; }
  .brands-empty { min-height: 370px; padding: 48px 20px; border-radius: 23px; }
  .brands-empty-visual { width:72px; height:72px; border-radius:23px; }
  .brands-empty h2 { font-size:1.65rem; }
  .brands-empty p { font-size:.8rem; }
  .brands-empty-actions { width:100%; flex-direction:column; }
  .brands-empty-actions a { width:100%; }
  .catalog-filter-trigger-wrap { margin-top:20px; }
  .catalog-filter-trigger { width:50px; height:50px; border-radius:15px; }
  .catalog-filter-modal { padding:0; place-items:end center; }
  .catalog-filter-dialog { width:100%; max-height:90dvh; border-radius:25px 25px 0 0; }
  .catalog-filter-head { padding:24px 70px 19px 20px; }
  .catalog-filter-head h2 { font-size:1.55rem; }
  .catalog-filter-close { top:20px; right:20px; }
  .catalog-filter-form { padding:20px; grid-template-columns:1fr; gap:15px; }
  .catalog-filter-form .is-wide { grid-column:1; }
  .catalog-filter-actions { grid-template-columns:1fr; }
  .catalog-filter-actions a { min-height:44px; }
  .catalog-clear-category { align-self:center; }
}

.home-category-name {
  display: block;
  padding: 14px 28px 0 2px;
  overflow: hidden;
  color: var(--home-ink);
  font-size: .9rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-category-arrow {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--home-cream);
  color: var(--home-ink);
  font-size: .82rem;
}

.home-featured {
  margin-top: 72px;
  padding: 76px 0;
  background: var(--home-cream);
}

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

.home-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 7px 24px rgba(36, 48, 74, .055);
  transition: transform .25s ease, box-shadow .25s ease;
}

.home-product-card:hover {
  box-shadow: 0 20px 45px rgba(36, 48, 74, .12);
  transform: translateY(-5px);
}

.home-product-media {
  position: relative;
  aspect-ratio: 1 / 1.03;
  overflow: hidden;
  background: #f4f4f6;
}

.home-product-image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.home-product-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

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

.home-product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  pointer-events: none;
}

.home-sale-badge,
.home-stock-badge {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--home-coral);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .025em;
}

.home-stock-badge {
  background: rgba(36, 48, 74, .88);
}

.home-stock-badge.is-sold {
  background: #6d7280;
}

.home-page .home-favorite-btn {
  position: absolute;
  inset: 12px 12px auto auto;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(36, 48, 74, .08);
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  box-shadow: 0 6px 16px rgba(36, 48, 74, .09);
  opacity: 1;
}

.home-page .home-favorite-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--home-ink);
  stroke-width: 1.8;
}

.home-page .home-favorite-btn.active svg,
.home-page .home-favorite-btn:hover svg {
  fill: var(--home-coral);
  stroke: var(--home-coral);
}

.home-product-info {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  padding: 17px 17px 16px;
}

.home-product-category {
  margin: 0 0 5px;
  color: var(--home-muted);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.home-product-info h3 {
  display: -webkit-box;
  min-height: 42px;
  margin: 0;
  overflow: hidden;
  color: var(--home-ink);
  font-size: .94rem;
  font-weight: 700;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-product-info h3 a:hover {
  color: var(--home-coral-dark);
}

.home-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 7px;
  color: var(--home-muted);
  font-size: .64rem;
}

.home-card-dots {
  display: inline-flex;
  gap: 4px;
}

.home-card-dots i {
  width: 7px;
  height: 7px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: var(--card-color, #211b20);
  box-shadow: 0 0 0 1px #ddd;
}


.home-current-price {
  color: var(--home-ink);
  font-size: 1rem;
  font-weight: 900;
}

.home-old-price {
  color: #989dab;
  font-size: .7rem;
  font-weight: 600;
  text-decoration: line-through;
}

.home-page .home-quick-cart {
  position: static;
  flex: 0 0 auto;
}

.home-page .home-add-btn,
.home-options-btn {
  position: static;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 13px;
  background: var(--home-ink);
  box-shadow: none;
  color: #fff;
}

.home-page .home-add-btn:hover,
.home-options-btn:hover {
  background: var(--home-coral-dark);
  color: #fff;
  transform: none;
}

.home-page .home-add-btn svg,
.home-options-btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.home-options-btn span {
  display: none;
}

.home-page .home-quantity {
  position: static;
  width: auto;
  height: 40px;
  gap: 5px;
  padding: 4px;
  border: 1px solid var(--home-line);
  border-radius: 13px;
  box-shadow: none;
}

.home-page .home-quantity .cart-control {
  display: grid;
  width: 27px;
  height: 30px;
  place-items: center;
  border: 0;
  border-radius: 9px;
  background: #f3f3f6;
  color: var(--home-ink);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.home-page .home-quantity .cart-control:hover {
  background: var(--home-ink);
  color: #fff;
}

.home-page .home-quantity .qty-span {
  min-width: 18px;
  color: var(--home-ink);
  font-size: .76rem;
  font-weight: 800;
}

.home-new {
  padding-top: 88px;
}

.home-product-shelf {
  display: grid;
  grid-auto-columns: minmax(245px, 282px);
  grid-auto-flow: column;
  gap: 20px;
  overflow-x: auto;
  padding: 5px 3px 28px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #cbc8d4 transparent;
}

.home-product-grid.home-product-shelf {
  grid-template-columns: none;
}

.home-product-shelf .home-product-card {
  scroll-snap-align: start;
}

.home-product-shelf::-webkit-scrollbar {
  height: 5px;
}

.home-product-shelf::-webkit-scrollbar-thumb {
  border-radius: 9px;
  background: #cbc8d4;
}

.home-shelf-controls {
  display: flex;
  gap: 8px;
}

.home-shelf-controls button {
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  border: 1px solid var(--home-line);
  border-radius: 50%;
  background: #fff;
  color: var(--home-ink);
  font-size: 1rem;
  cursor: pointer;
}

.home-shelf-controls button:hover {
  border-color: var(--home-ink);
  background: var(--home-ink);
  color: #fff;
}

.home-story {
  margin-top: 92px;
  padding: 90px 0;
  background: #edf7ff;
}

.home-story-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.home-story-copy h2 {
  max-width: 540px;
  font-size: clamp(2.2rem, 4.5vw, 4.3rem);
}

.home-story-copy p {
  max-width: 550px;
  margin: 22px 0 26px;
  color: var(--home-muted);
  line-height: 1.75;
}

.home-story-copy > a {
  display: inline-flex;
  gap: 9px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}

.home-benefits {
  display: grid;
  gap: 12px;
}

.home-benefits article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 17px;
  padding: 23px;
  border: 1px solid rgba(36, 48, 74, .08);
  border-radius: 20px;
  background: rgba(255,255,255,.75);
}

.home-benefits article > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: var(--home-ink);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
}

.home-benefits h3 {
  margin: 0 0 4px;
  color: var(--home-ink);
  font-size: 1rem;
}

.home-benefits p {
  margin: 0;
  color: var(--home-muted);
  font-size: .86rem;
}

.home-category-section {
  padding-top: 88px;
}

.home-heading-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.home-trust {
  padding: 96px 0;
}

.home-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.home-trust article {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 25px;
  border: 1px solid var(--home-line);
  border-radius: 20px;
  background: var(--home-cream);
}

.home-trust svg {
  width: 34px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--home-coral-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.home-trust .shopping-assurance-icon {
  color: var(--color-text, #4c4d4c);
  stroke: currentColor;
}

.home-trust h3 {
  margin: 0 0 2px;
  color: var(--home-ink);
  font-size: .95rem;
}

.home-trust p {
  margin: 0;
  color: var(--home-muted);
  font-size: .8rem;
}

.home-page .site-footer {
  padding-top: 64px;
  background: var(--home-ink);
}

.home-page .site-footer .container {
  max-width: 1200px;
  padding-inline: 24px;
}

.home-page .site-footer a:hover {
  padding-left: 0;
  color: #fff;
}

@media (max-width: 1100px) {
  .home-category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .home-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-hero-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
  .home-hero h1 { font-size: clamp(2.6rem, 5.3vw, 4.2rem); }
}

@media (max-width: 820px) {
  .home-page .logo-banner { height: 65px; }
  .home-page .logo-banner .logo-link img { width: 100px; height: 58px; }
  .home-page .site-header-new .container { padding-inline: 16px; }
  .home-page .header-wrapper { min-height: 58px; }
  .home-page .currency-switcher-new { padding: .45rem .6rem; }
  .home-page .currency-icon { display: none; }
  .home-page .header-actions-new { margin-left: auto; }

  .home-shell { width: min(100% - 32px, 1200px); }
  .home-hero { padding: 52px 0 42px; }
  .home-hero-grid { grid-template-columns: 1fr; }
  .home-hero-copy { text-align: center; }
  .home-eyebrow { justify-content: center; }
  .home-hero-copy > p, .home-search { margin-inline: auto; }
  .home-hero-actions, .home-hero-notes { justify-content: center; }
  .home-hero-visual { min-height: 460px; width: min(100%, 540px); margin: 0 auto; }
  .home-hero-product-main { height: 390px; left: 9%; }
  .home-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-story-grid { grid-template-columns: 1fr; }
  .home-story-copy { text-align: center; }
  .home-story-copy p { margin-inline: auto; }
  .home-trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .home-shell { width: min(100% - 24px, 1200px); }
  .home-hero { padding-top: 40px; }
  .home-hero h1 { margin-top: 14px; font-size: clamp(2.35rem, 12.5vw, 3.5rem); }
  .home-hero-copy > p { font-size: .94rem; }
  .home-search { min-height: 58px; margin-top: 24px; padding-left: 15px; }
  .home-search button { min-height: 44px; padding: 0 16px; font-size: .82rem; }
  .home-hero-actions { flex-direction: column; gap: 16px; }
  .home-primary-cta { width: 100%; }
  .home-hero-notes { display: grid; grid-template-columns: 1fr 1fr; text-align: left; }
  .home-hero-notes li:last-child { grid-column: 1 / -1; justify-self: center; }
  .home-hero-visual { min-height: 370px; }
  .home-hero-product-main { width: 82%; height: 325px; top: 5px; left: 6%; border-width: 6px; border-radius: 42% 42% 22px 22px; }
  .home-hero-product-small { width: 105px; height: 105px; right: 0; bottom: 5px; border-width: 5px; border-radius: 20px; }
  .home-hero-proof { left: 1px; bottom: 2px; padding: 10px 12px; }
  .home-promo-inner { min-height: 76px; flex-direction: column; gap: 8px; padding: 12px 0; text-align: center; }
  .home-section, .home-new, .home-category-section { padding-top: 64px; }
  .home-categories { padding-top: 60px; }
  .home-section-heading { align-items: center; margin-bottom: 21px; }
  .home-section-heading h2 { font-size: 1.75rem; }
  .home-section-heading > a { font-size: .75rem; white-space: nowrap; }
  .home-category-grid { display: grid; grid-auto-columns: 36%; grid-auto-flow: column; grid-template-columns: none; gap: 10px; overflow-x: auto; padding: 3px 2px 14px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .home-category-grid::-webkit-scrollbar { display: none; }
  .home-category-card { padding: 8px 8px 12px; border-radius: 18px; scroll-snap-align: start; }
  .home-category-image { border-radius: 13px; }
  .home-category-name { padding-top: 10px; font-size: .75rem; }
  .home-category-arrow { right: 9px; bottom: 10px; width: 21px; height: 21px; }
  .home-featured { margin-top: 54px; padding: 58px 0; }
  .home-product-grid { gap: 10px; }
  .home-product-card { border-radius: 17px; }
  .home-product-media { aspect-ratio: 1 / 1.07; }
  .home-product-info { min-height: 136px; padding: 12px 11px 11px; }
  .home-product-info h3 { min-height: 38px; font-size: .8rem; line-height: 1.4; }
  .home-product-category { font-size: .57rem; }
  .home-current-price { font-size: .84rem; }
  .home-old-price { display: none; }
  .home-page .home-favorite-btn { inset: 8px 8px auto auto; width: 34px; height: 34px; }
  .home-product-badges { top: 8px; left: 8px; }
  .home-sale-badge, .home-stock-badge { padding: 5px 7px; font-size: .56rem; }
  .home-page .home-add-btn, .home-options-btn { width: 36px; height: 36px; border-radius: 11px; }
  .home-page .home-quantity { height: 36px; gap: 2px; padding: 3px; }
  .home-page .home-quantity .cart-control { width: 21px; height: 28px; }
  .home-page .home-quantity .qty-span { min-width: 13px; font-size: .68rem; }
  .home-product-shelf { grid-auto-columns: 68%; gap: 12px; }
  .home-shelf-controls button { width: 37px; height: 37px; }
  .home-story { margin-top: 66px; padding: 65px 0; }
  .home-story-copy h2 { font-size: 2.35rem; }
  .home-benefits article { grid-template-columns: 44px 1fr; gap: 13px; padding: 17px; }
  .home-benefits article > span { width: 42px; height: 42px; }
  .home-heading-actions > a { display: none; }
  .home-heading-actions { gap: 0; }
  .home-trust { padding: 68px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .home-page *,
  .home-page *::before,
  .home-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Reference-inspired app aesthetic */
.home-mobile-nav {
  display: none;
}

.mobile-brand {
  display: flex;
  width: 106px;
  height: 50px;
  flex: 0 0 auto;
  align-items: center;
}

.tinyora-wordmark {
  display: inline-block;
  padding: 3px 1px 5px;
  background: linear-gradient(105deg, #8599ff 8%, #8599ff 48%, #fbd3e3 52%, #eaa9c6 100%);
  color: #8599ff;
  font-family: "Cinzel Decorative", "Poppins", serif;
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.055em;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 8px rgba(133, 153, 255, .16));
  transition: transform .2s ease, filter .2s ease;
}

.mobile-brand:hover .tinyora-wordmark {
  filter: drop-shadow(0 5px 12px rgba(133, 153, 255, .24));
  transform: translateY(-1px);
}

.home-product-media {
  margin: 9px 9px 0;
  border-radius: 17px;
}

.home-product-card:nth-child(4n + 1) .home-product-media { background: #f8d9ed; }
.home-product-card:nth-child(4n + 2) .home-product-media { background: #dff0f4; }
.home-product-card:nth-child(4n + 3) .home-product-media { background: #e7e4fa; }
.home-product-card:nth-child(4n + 4) .home-product-media { background: #f7e5d5; }

.home-media-price {
  position: absolute;
  left: 11px;
  bottom: 11px;
  display: inline-flex;
  max-width: calc(100% - 74px);
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #8194fd;
  color: #fff;
  box-shadow: 0 5px 15px rgba(17, 15, 19, .2);
}

.home-media-price .home-current-price {
  overflow: hidden;
  color: #fff;
  font-size: .74rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-media-price .home-old-price {
  color: rgba(255,255,255,.62);
  font-size: .58rem;
}

.home-media-action {
  position: absolute;
  right: 11px;
  bottom: 11px;
}

.home-product-info {
  min-height: 98px;
  padding-top: 13px;
}

.home-product-info h3 {
  min-height: 40px;
}

.home-page .home-add-btn,
.home-options-btn {
  border: 3px solid rgba(255,255,255,.9);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(17, 15, 19, .18);
}

.home-page .home-quantity {
  border: 2px solid #fff;
  background: #fff;
  box-shadow: 0 5px 15px rgba(17, 15, 19, .16);
}

@media (max-width: 820px) {
  .home-page {
    padding-bottom: 72px;
    background: #f2f2f2;
  }

  .home-store {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    background: #fff;
  }

  .home-page .site-footer {
    display: none;
  }

  .home-page .logo-banner {
    display: none;
  }

  .home-page .site-header-new {
    display: none;
  }

  .home-page .site-header-new .container {
    padding-inline: 14px;
  }

  .home-page .header-wrapper {
    min-height: 64px;
    gap: 8px;
    padding: 7px 0;
  }

  .mobile-brand {
    display: flex;
    width: 88px;
    height: 48px;
    margin-right: auto;
    align-items: center;
  }

  .tinyora-wordmark {
    font-size: 1.18rem;
  }

  .home-page .currency-switcher-new,
  .home-page .header-actions-new .btn-header-outline,
  .home-page .header-actions-new .btn-header-primary {
    display: none;
  }

  .home-page .cart-button-new,
  .home-page .user-button,
  .home-page .mobile-menu-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #eeeaf0;
    border-radius: 50%;
    background: #fff;
  }

  .home-page .mobile-menu-btn span {
    width: 18px;
    height: 2px;
    background: #171419;
  }

  .home-page .mobile-nav {
    position: absolute;
    inset: 62px 10px auto;
    margin: 0;
    padding: 10px;
    border: 1px solid #eeeaf0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(28, 22, 31, .14);
  }

  .home-page .mobile-nav.active {
    max-height: 520px;
  }

  .home-page .mobile-nav-link {
    padding: .8rem 1rem;
    border-radius: 12px;
    font-size: .86rem;
  }

  .home-hero {
    padding: 8px 0 28px;
    background: #fff;
  }

  .home-app-header {
    display: flex;
    width: min(100% - 28px, 430px);
    min-height: 62px;
    margin: 0 auto;
    padding-top: max(8px, env(safe-area-inset-top));
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  }

  .home-app-profile {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
  }

  .home-app-avatar {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #8599ff, #fbd3e3);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
  }

  .home-app-profile > span:not(.home-app-avatar) {
    display: flex;
    min-width: 0;
    flex-direction: column;
  }

  .home-app-profile small {
    color: #8b8588;
    font-size: .55rem;
  }

  .home-app-profile strong {
    max-width: 112px;
    overflow: hidden;
    color: #171214;
    font-size: .73rem;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .home-app-profile > svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #171214;
    stroke-width: 1.8;
  }

  .home-app-actions {
    display: flex;
    gap: 7px;
  }

  .home-app-actions > a {
    position: relative;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: #f6f6f6;
  }

  .home-app-actions svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #171214;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
  }

  .home-app-actions .has-notification::after {
    content: "";
    position: absolute;
    top: 7px;
    right: 8px;
    width: 6px;
    height: 6px;
    border: 2px solid #f6f6f6;
    border-radius: 50%;
    background: #f04472;
  }

  .home-app-bag b {
    position: absolute;
    top: -2px;
    right: -2px;
    display: grid;
    min-width: 15px;
    height: 15px;
    padding: 1px 5px;
    place-items: center;
    border-radius: 8px;
    background: #171214;
    color: #fff;
    font-size: .48rem;
  }

  .home-hero::before,
  .home-hero-orbit,
  .home-hero-proof {
    display: none;
  }

  .home-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .home-hero-copy {
    width: 100%;
    text-align: left;
  }

  .home-eyebrow {
    display: none;
  }

  .home-eyebrow::before {
    width: 18px;
  }

  .home-hero h1 {
    display: none;
  }

  .home-hero-copy > p,
  .home-hero-actions,
  .home-hero-notes,
  .home-hero-brand-links {
    display: none;
  }

  .home-search {
    min-height: 50px;
    margin-top: 0;
    padding: 5px 5px 5px 15px;
    border: 0;
    border-radius: 15px;
    background: #f5f4f6;
    box-shadow: none;
  }

  .home-search svg {
    width: 19px;
  }

  .home-search input {
    font-size: .82rem;
  }

  .home-search button {
    display: none;
  }

  .home-filter-button {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 12px;
    background: #fff;
  }

  .home-filter-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #171214;
    stroke-linecap: round;
    stroke-width: 1.7;
  }

  .home-hero-visual {
    display: grid;
    gap: 10px;
    width: 100%;
    min-height: 0;
    margin: 0;
  }

  .home-hero-product-main {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: 18px 12px;
    width: 100%;
    height: auto;
    padding: 20px 18px 0;
    border: 0;
    border-radius: 26px;
    background: #eeebfa;
    box-shadow: none;
    text-decoration: none;
  }

  .home-hero-product-main::before {
    content: none;
  }

  .home-hero-mobile-copy {
    display: block;
    min-width: 0;
    color: #302444;
  }

  .home-hero-mobile-copy > small {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 8px;
    border: 1px solid #d5cce7;
    border-radius: 999px;
    color: #65517e;
    font-size: .56rem;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .home-hero-mobile-copy > strong {
    display: block;
    font-size: clamp(1.35rem, 6.2vw, 2rem);
    font-weight: 750;
    line-height: 1.12;
    letter-spacing: -.055em;
  }

  .home-hero-mobile-copy > p {
    max-width: 155px;
    margin: 10px 0 0;
    color: #71657f;
    font-size: .69rem;
    font-weight: 400;
    line-height: 1.55;
  }

  .home-hero-product-main img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    max-height: 205px;
    margin: 0;
    padding: 9px;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 20px;
    background: #fff;
    object-fit: contain;
    mask-image: none;
  }

  .home-hero-product-main span {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 58px;
    padding: 12px 0;
    border: 0;
    border-top: 1px solid #dcd5eb;
    border-radius: 0;
    background: transparent;
    color: #302444;
    backdrop-filter: none;
    text-align: left;
    white-space: normal;
  }

  .home-hero-product-main span b {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: .74rem;
    font-weight: 650;
    line-height: 1.4;
  }

  .home-hero-product-main span::after {
    content: "↗";
    display: grid;
    flex: 0 0 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: #302444;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 400;
  }

  .home-hero-product-main span em,
  .home-hero-product-main span small,
  .home-promo-icon {
    display: none;
  }

  .home-hero-product-small {
    position: relative;
    inset: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    height: auto;
    min-height: 80px;
    padding: 10px 12px;
    overflow: hidden;
    border: 1px solid #eeebf0;
    border-radius: 18px;
    background: #fff;
    box-shadow: none;
    transform: none;
    text-decoration: none;
  }

  .home-hero-product-small img {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    padding: 3px;
    border-radius: 12px;
    background: #f7f6f8;
    object-fit: contain;
  }

  .home-hero-mobile-secondary { display: block; flex: 1; min-width: 0; }
  .home-hero-mobile-secondary small {
    display: block;
    margin-bottom: 4px;
    color: #86788d;
    font-size: .6rem;
    font-weight: 600;
  }
  .home-hero-mobile-secondary b {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #302444;
    font-size: .72rem;
    font-weight: 600;
    line-height: 1.4;
  }
  .home-hero-product-small::after {
    content: "↗";
    flex: 0 0 auto;
    padding: 8px 2px 8px 6px;
    color: #746582;
    font-size: 1.1rem;
  }
  .home-hero-visual a:focus-visible {
    outline: 2px solid #65517e;
    outline-offset: 3px;
  }

  .home-promo-inner {
    min-height: 58px;
  }

  .home-promo p {
    font-size: .76rem;
  }

  .home-code {
    padding: 6px 9px;
    font-size: .68rem;
  }

  .home-categories {
    padding-top: 34px;
  }

  .home-section-heading .home-kicker {
    display: none;
  }

  .home-section-heading h2 {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -.02em;
  }

  .home-featured {
    margin-top: 20px;
    padding: 46px 0;
    background: #fff;
  }

  .home-category-grid {
    display: grid;
    grid-auto-columns: 74px;
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 13px;
    overflow-x: auto;
    padding: 2px 1px 13px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

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

  .home-category-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    scroll-snap-align: start;
    text-align: center;
  }

  .home-category-card:hover {
    border-color: transparent;
    box-shadow: none;
    transform: none;
  }

  .home-category-image {
    width: 62px;
    height: 62px;
    margin: 0 auto;
    border-radius: 50%;
  }

  .home-category-name {
    padding: 8px 0 0;
    font-size: .65rem;
    text-align: center;
  }

  .home-category-arrow {
    display: none;
  }

  .home-product-card {
    border: 0;
    border-radius: 18px;
    box-shadow: none;
  }

  .home-product-card:hover {
    box-shadow: none;
    transform: none;
  }

  .home-product-media {
    margin: 0;
    border-radius: 17px;
  }

  .home-product-info {
    min-height: 88px;
    padding: 10px 3px 5px;
  }

  .home-product-info h3 {
    display: block;
    min-height: 0;
    font-size: .74rem;
    line-height: 1.35;
    overflow: visible;
    overflow-wrap: anywhere;
    word-break: normal;
    -webkit-box-orient: initial;
    -webkit-line-clamp: unset;
  }

  .home-product-info h3 a {
    display: block;
  }

  .home-card-meta {
    margin-top: 4px;
    font-size: .52rem;
  }

  .home-card-dots i {
    width: 6px;
    height: 6px;
  }

  .home-product-category {
    margin-bottom: 3px;
    font-size: .52rem;
    letter-spacing: .05em;
  }

  .home-media-price {
    left: 7px;
    bottom: 7px;
    max-width: calc(100% - 52px);
    padding: 5px 8px;
  }

  .home-media-price .home-current-price {
    font-size: .6rem;
  }

  .home-media-price .home-old-price {
    display: none;
  }

  .home-media-action {
    right: 7px;
    bottom: 7px;
  }

  .home-page .home-add-btn,
  .home-options-btn {
    width: 32px;
    height: 32px;
    border-width: 2px;
  }

  .home-page .home-add-btn svg,
  .home-options-btn svg {
    width: 15px;
    height: 15px;
  }

  .home-page .home-quantity {
    height: 33px;
    padding: 2px;
  }

  .home-page .home-quantity .cart-control {
    width: 19px;
    height: 25px;
    font-size: .8rem;
  }

  .home-page .home-quantity .qty-span {
    min-width: 10px;
    font-size: .58rem;
  }

  .home-product-shelf {
    grid-auto-columns: 44%;
    gap: 11px;
  }

  .home-mobile-nav {
    position: fixed;
    z-index: 9998;
    right: 10px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 10px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-height: 62px;
    padding: 7px 10px;
    border: 1px solid rgba(27, 23, 29, .08);
    border-radius: 20px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 12px 35px rgba(27, 23, 29, .18);
    backdrop-filter: blur(18px);
  }

  .home-mobile-nav a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border-radius: 14px;
    color: #96909a;
    font-size: .58rem;
    font-weight: 700;
  }

  .home-mobile-nav a.is-active {
    color: #171419;
    background: #f5f2f6;
  }

  .home-mobile-nav svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .home-mobile-nav b {
    position: absolute;
    top: 1px;
    left: calc(50% + 5px);
    display: grid;
    min-width: 15px;
    height: 15px;
    padding: 1px 3px;
    place-items: center;
    border-radius: 8px;
    background: #f05c79;
    color: #fff;
    font-size: .5rem;
  }

  .home-page .support-fab {
    right: 12px;
    bottom: 86px;
    width: 48px;
    height: 48px;
  }

  .home-page .support-panel {
    right: 10px;
    bottom: 145px;
    max-width: calc(100vw - 20px);
    max-height: calc(100vh - 170px);
  }
}

@media (min-width: 821px) {
  .home-hero-product-main {
    border-radius: 32px;
  }
}

/* Final responsive storefront refinement */
.home-account-menu[hidden],
.home-app-menu[hidden] {
  display: none !important;
}

@media (max-width: 820px) {
  .home-page { padding-bottom: calc(112px + env(safe-area-inset-bottom)); }

  .products-page .home-app-header,
  .brands-page .home-app-header,
  .favorites-page .home-app-header {
    width: 100%;
    max-width: none;
    padding-right: 14px;
    padding-left: 14px;
  }

  .home-app-header {
    position: relative;
    min-height: 58px;
    gap: 7px;
  }

  .home-app-profile-wrap {
    position: relative;
    min-width: 0;
    flex: 1;
  }

  .home-app-profile {
    width: 100%;
    min-height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
  }

  .home-app-profile.is-open > svg { transform: rotate(180deg); }
  .home-app-profile > svg { transition: transform .18s ease; }

  .home-account-menu,
  .home-app-menu {
    position: absolute;
    z-index: 10020;
    top: calc(100% + 6px);
    padding: 7px;
    border: 1px solid #ece9ee;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(24, 19, 27, .16);
  }

  .home-account-menu { left: 0; width: 190px; }

  .home-app-menu {
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }

  .home-account-menu a,
  .home-app-menu a {
    display: flex;
    min-height: 43px;
    align-items: center;
    gap: 9px;
    padding: 9px 11px;
    border-radius: 11px;
    color: #262128;
    font-size: .72rem;
    font-weight: 600;
  }

  .home-account-menu a:hover,
  .home-app-menu a:hover { background: #f6f4f7; }
  .home-account-menu a.is-logout { color: #bc3f5e; }

  .home-account-menu svg,
  .home-app-menu svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
  }

  .home-app-actions { align-items: center; gap: 5px; }

  .home-page .home-app-currency.currency-switcher-new,
  .home-app-actions > a,
  .home-app-menu-button {
    display: grid !important;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #f6f6f6;
    box-shadow: none;
  }

  .home-app-currency select {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    outline: 0;
    appearance: none;
    background: transparent;
    color: #171214;
    font-size: .65rem;
    font-weight: 700;
    text-align: center;
    text-align-last: center;
    cursor: pointer;
  }

  .home-app-menu-button {
    color: #171214;
    cursor: pointer;
  }

  .home-app-menu-button svg { transition: transform .18s ease; }
  .home-app-menu-button.is-open svg { transform: rotate(90deg); }

  .home-hero { padding: 4px 0 10px; }
  .home-hero-grid { gap: 8px; }
  .home-search { min-height: 46px; padding-right: 14px; }
  .home-promo { margin: 0; }
  .home-promo-inner { min-height: 44px; padding-block: 5px; }

  .home-section,
  .home-new,
  .home-category-section,
  .home-categories { padding-top: 16px; }

  .home-section-heading { margin-bottom: 10px; }
  .home-featured { margin-top: 8px; padding: 16px 0 12px; }
  .home-product-shelf { padding-bottom: 4px; }
  .home-story { margin-top: 14px; padding: 18px 0; }
  .home-story-grid { gap: 14px; }
  .home-story-copy h2 { font-size: 1.55rem; }
  .home-benefits { gap: 7px; }
  .home-benefits article { gap: 10px; padding: 11px; }
  .home-benefits article > span { width: 34px; height: 34px; border-radius: 11px; }

  .home-trust {
position: fixed;
        z-index: 9997;
        right: 0px;
        bottom: calc(max(8px, env(safe-area-inset-bottom)) + 55px);
        left: 0px;
        height: 34px;
        padding: 0;
  }

  .home-trust .home-shell { width: 100%; height: 34px; }

  .home-trust-grid {
    display: block;
    height: 34px;
    overflow: hidden;
    border: 1px solid rgba(27, 23, 29, .08);
    border-bottom: 0;
    border-radius: 16px 16px 0 0;
    background: rgba(255,255,255,.98);
    box-shadow: 0 -7px 24px rgba(27, 23, 29, .07);
  }

  .home-trust article {
    display: none;
    width: 100%;
    height: 34px;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    animation: homeTrustIn .28s ease both;
  }

  .home-trust article.is-active { display: flex; }
  .home-trust svg { width: 15px; height: 15px; }

  .home-trust article > div {
    display: flex;
    min-width: 0;
    align-items: baseline;
    gap: 5px;
    line-height: 15px;
  }

  .home-trust h3,
  .home-trust p {
    overflow: hidden;
    margin: 0;
    font-size: .58rem;
    line-height: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .home-trust h3 { font-weight: 700; }

  .home-mobile-nav {
    border-top-color: rgba(27, 23, 29, .08);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 12px 35px rgba(27, 23, 29, .16);
  }

  .home-mobile-nav.mc-bottom-nav {
left: 0px;
        width: 100%;
        min-height: 62px;
        transform: none;
  }

  .home-page .support-fab { bottom: 118px; }
}

@keyframes homeTrustIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 350px) {
  .home-app-profile strong { max-width: 76px; }
  .home-app-profile small { display: none; }
  .home-app-avatar { width: 32px; height: 32px; }
  .home-page .home-app-currency.currency-switcher-new,
  .home-app-actions > a,
  .home-app-menu-button { width: 34px; height: 34px; }
  .home-trust p { display: none; }
}

@media (min-width: 821px) {
  .home-mobile-nav,
  .home-app-header { display: none !important; }

  .home-page .site-header-new {
    position: sticky;
    z-index: 9000;
    top: 0;
    background: rgba(255,255,255,.88) !important;
    backdrop-filter: blur(18px);
  }

  .home-page .header-wrapper { min-height: 74px; }

  .home-page .desktop-nav {
    max-width: max-content;
    padding: 5px;
 
  }

  .home-page .nav-link {
    min-height: 42px;
    padding: .62rem 1.05rem;
    font-size: .84rem;
  }

  .home-page .nav-link:hover {
    background: #fff;
    box-shadow: 0 5px 16px rgba(37,48,73,.08);
  }

  .home-hero { padding: 52px 0 48px; }
  .home-hero-grid { gap: clamp(44px, 6vw, 86px); }

  .home-section,
  .home-new,
  .home-category-section,
  .home-categories { padding-top: 56px; }

  .home-featured { margin-top: 42px; padding: 54px 0; }

  .home-product-card {
    border-color: rgba(36,48,74,.09);
    box-shadow: 0 10px 32px rgba(37,48,73,.06);
  }

  .home-product-card:hover {
    border-color: rgba(139,120,215,.22);
    box-shadow: 0 20px 44px rgba(37,48,73,.12);
    transform: translateY(-5px);
  }

  .home-story { margin-top: 58px; padding: 62px 0; }
  .home-trust { padding: 44px 0 58px; }

  .home-page .home-account-drawer,
  .home-page .member-drawer-backdrop {
    display: none !important;
  }
}
/* Scheduled flash sale */
.home-flash{background:linear-gradient(135deg,#24102d,#6d153e 68%,#a52343);color:#fff;margin-top:0;padding:clamp(34px,5vw,68px) 0}.home-flash-head{display:flex;align-items:flex-end;justify-content:space-between;gap:28px;margin-bottom:24px}.home-flash-head h2{font-size:clamp(28px,4vw,48px);line-height:1;margin:7px 0 8px;color:#fff}.home-flash-head p{margin:0;color:rgba(255,255,255,.72)}.home-flash-head p a{color:#fff;font-weight:800;text-decoration:underline;text-underline-offset:3px}.home-flash-kicker{font-size:13px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:#ffd0db}.home-flash-countdown{display:flex;align-items:center;gap:8px}.home-flash-countdown>span{display:grid;place-items:center;min-width:62px;padding:10px 8px;border:1px solid rgba(255,255,255,.22);background:rgba(255,255,255,.1);border-radius:14px;backdrop-filter:blur(8px)}.home-flash-countdown b{font-size:24px;line-height:1}.home-flash-countdown small{margin-top:6px;font-size:10px;text-transform:uppercase;letter-spacing:.09em;color:#ffdbe4}.home-flash-countdown>i{font-style:normal;font-weight:800}.home-flash .home-product-card{background:#fff;color:var(--home-ink,#202126)}
.home-card-countdown{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-top:9px;padding:7px 9px;border-radius:9px;background:#fff1f2;color:#9f1239;font-size:10px;font-weight:750}.home-card-countdown>b{white-space:nowrap;font-size:10px}.home-card-countdown i{font-style:normal}.home-flash .home-card-countdown{background:#fff1f2;color:#9f1239}
.catalog-flash-countdown{width:max-content;max-width:100%;margin-top:22px;padding:10px;border-radius:18px;background:linear-gradient(135deg,#24102d,#9f1239);color:#fff;box-shadow:0 14px 34px rgba(109,21,62,.18)}
@media(max-width:700px){.home-flash-head{align-items:flex-start;flex-direction:column}.home-flash-countdown{gap:4px;width:100%}.home-flash-countdown>span{min-width:0;flex:1}.home-flash-countdown b{font-size:20px}}
