/* MILANCO luxury storefront refresh */
:root {
  --lux-teal: #064b48;
  --lux-teal-2: #0d6964;
  --lux-orange: #c96f2d;
  --lux-peach: #f6d7c6;
  --lux-peach-2: #fff3ec;
  --lux-ink: #151313;
  --lux-muted: #6f6862;
  --lux-line: #eadfd8;
  --lux-bg: #fffaf7;
  --lux-surface: #ffffff;
  --lux-shadow: 0 18px 50px rgba(6, 75, 72, .12);
  --lux-shadow-soft: 0 10px 28px rgba(21, 19, 19, .08);
}

/* Compact commerce pass: closer to dense beauty shops like NasimShop/Paperook. */
.lux-page {
  gap: 22px;
}

.lux-hero {
  min-height: 360px;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 420px);
}

.lux-hero-media {
  min-height: 360px;
}

.lux-hero-panel {
  padding: clamp(22px, 3.2vw, 42px);
}

.lux-hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.16;
}

.lux-hero p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 18px;
}

.lux-strip {
  margin-top: -4px;
}

.lux-strip div {
  padding: 14px 16px;
}

.lux-section {
  margin-top: 28px;
}

.lux-section-head {
  margin-bottom: 14px;
}

.lux-section-head h2 {
  font-size: clamp(22px, 3vw, 32px);
}

.mc-products.lux-products {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.lux-product-card.mc-product {
  border-radius: 7px;
}

.lux-product-card .mc-product-thumb {
  aspect-ratio: 1 / .92;
}

.lux-product-card .mc-product-thumb img {
  padding: 12px;
}

.lux-product-card .mc-product-body {
  gap: 7px;
  padding: 10px 11px 11px;
  min-height: 154px;
}

.lux-product-meta {
  min-height: 16px;
  font-size: 10.5px;
}

.lux-product-meta span,
.lux-product-meta small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mc-product-title {
  min-height: 42px;
  font-size: 13px;
  line-height: 1.55;
}

.mc-product-title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mc-product-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  min-height: 22px;
}

.mc-product-variants span {
  border: 1px solid rgba(8, 85, 77, .14);
  border-radius: 999px;
  padding: 2px 7px;
  background: rgba(246, 215, 198, .22);
  color: var(--lux-teal);
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1.5;
}

.mc-product-price-row {
  margin-top: auto;
}

.mc-product-price {
  font-size: 14px;
}

.mc-product-price-old {
  font-size: 11px;
}

.mc-product-cta {
  margin-top: 2px;
}

.mc-product-cta .mc-btn {
  min-height: 34px;
  padding: 8px 10px;
  font-size: 12px;
}

.lux-categories {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.lux-category {
  min-height: 130px;
  padding: 12px;
}

.lux-category img {
  height: 54px;
}

.lux-campaign {
  min-height: 240px;
}

.lux-campaign img {
  min-height: 240px;
}

.lux-campaign > div {
  padding: clamp(20px, 3vw, 36px);
}

.lux-feature-banners {
  gap: 10px;
  margin-top: 16px;
}

.lux-feature-banner {
  min-height: 128px;
  padding: 16px;
}

.lux-brands {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
}

.lux-brand {
  min-height: 82px;
  gap: 7px;
  padding: 10px;
  text-align: center;
  font-size: 12px;
  line-height: 1.45;
}

.lux-brand img {
  max-width: 90%;
  max-height: 34px;
}

.lux-brand span {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lux-brand-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.lux-brand-card {
  min-height: 136px;
  padding: 12px;
  gap: 9px;
}

.lux-brand-logo {
  width: 96px;
  height: 58px;
}

.lux-brand-logo img {
  max-height: 46px;
}

.lux-brand-card strong {
  font-size: 13px;
  line-height: 1.5;
}

.lux-shop-category-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.lux-shop-category-grid a {
  min-height: 112px;
  padding: 15px;
}

@media (max-width: 1180px) {
  .mc-products.lux-products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lux-brands,
  .lux-brand-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lux-categories,
  .lux-shop-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .lux-hero {
    min-height: auto;
  }

  .lux-hero-media {
    min-height: 220px;
  }

  .lux-hero-panel {
    padding: 20px;
  }

  .lux-hero h1 {
    font-size: 27px;
  }

  .mc-products.lux-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .lux-product-card .mc-product-body {
    padding: 9px;
    min-height: 148px;
  }

  .mc-product-title {
    font-size: 12.5px;
  }

  .lux-brands,
  .lux-brand-grid,
  .lux-categories,
  .lux-shop-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

html,
body {
  background: var(--lux-bg);
  color: var(--lux-ink);
}

a {
  color: var(--lux-teal);
}

a:hover {
  color: var(--lux-orange);
}

.rainbow-stripe {
  height: 3px;
  background: linear-gradient(90deg, var(--lux-teal), var(--lux-orange), var(--lux-peach), var(--lux-teal));
}

.header-promo {
  background: var(--lux-teal);
  color: #fff;
  padding: 8px 20px;
  font-size: 13px;
}

.milanco-header {
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--lux-line);
  box-shadow: 0 10px 30px rgba(21, 19, 19, .05);
  backdrop-filter: blur(14px);
}

.header-container {
  max-width: 1280px;
  padding: 14px 24px;
  gap: 24px;
}

.header-logo:hover {
  transform: none;
}

.header-search form {
  border: 1px solid var(--lux-line);
  border-radius: 999px;
  background: #fff;
}

.header-search form:focus-within {
  border-color: rgba(6, 75, 72, .45);
  box-shadow: 0 0 0 4px rgba(6, 75, 72, .08);
}

.search-input {
  padding: 11px 18px;
}

.search-btn {
  width: 46px;
  background: var(--lux-teal);
}

.action-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--lux-line);
  border-radius: 50%;
  background: #fff;
}

.action-icon:hover {
  color: var(--lux-teal);
  background: var(--lux-peach-2);
  border-color: rgba(6, 75, 72, .24);
}

.cart-count {
  background: var(--lux-orange);
}

.header-nav {
  border-top: 1px solid rgba(234, 223, 216, .75);
}

.nav-list {
  max-width: 1280px;
}

.nav-list > li {
  flex: initial;
}

.nav-list > li > a {
  padding: 13px 18px;
  font-size: 14px;
  color: var(--lux-ink);
  border-bottom-color: transparent;
}

.nav-list > li > a:hover {
  color: var(--lux-teal);
  background: transparent;
  border-bottom-color: var(--lux-orange);
}

.dropdown-menu {
  border: 1px solid var(--lux-line);
  border-radius: 8px;
  box-shadow: var(--lux-shadow-soft);
}

.mc-btn {
  min-height: 42px;
  border-radius: 8px;
  font-weight: 750;
  letter-spacing: 0;
}

.mc-btn:hover {
  transform: translateY(-1px);
}

.mc-btn-primary {
  background: var(--lux-teal);
  color: #fff;
  box-shadow: 0 12px 24px rgba(6, 75, 72, .18);
}

.mc-btn-primary:hover {
  background: var(--lux-teal-2);
  color: #fff;
}

.mc-btn-ghost {
  background: #fff;
  color: var(--lux-teal);
  border: 1px solid rgba(6, 75, 72, .2);
}

.mc-btn-ghost:hover {
  border-color: var(--lux-teal);
  color: var(--lux-teal);
  background: var(--lux-peach-2);
}

.lux-page {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 72px;
}

.lux-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lux-orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.lux-hero {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  align-items: stretch;
  overflow: hidden;
  border-radius: 8px;
  background: var(--lux-teal);
  box-shadow: var(--lux-shadow);
}

.lux-hero-media {
  position: relative;
  min-height: 590px;
}

.lux-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 75, 72, .06), rgba(6, 75, 72, .56));
}

.lux-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 64px);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0)),
    var(--lux-teal);
}

.lux-hero-panel .lux-kicker {
  color: var(--lux-peach);
}

.lux-hero h1 {
  margin: 18px 0 18px;
  max-width: 720px;
  font-size: clamp(36px, 5.8vw, 72px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.lux-hero p {
  max-width: 560px;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  margin: 0 0 30px;
}

.lux-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lux-hero .mc-btn-primary {
  background: var(--lux-orange);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .18);
}

.lux-hero .mc-btn-primary:hover {
  background: #db7d37;
}

.lux-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--lux-line);
  border-radius: 8px;
  background: #fff;
  margin: 22px 0 64px;
}

.lux-strip div {
  padding: 22px;
  border-inline-start: 1px solid var(--lux-line);
}

.lux-strip div:last-child {
  border-inline-start: 0;
}

.lux-strip strong {
  display: block;
  color: var(--lux-teal);
  font-size: 20px;
  margin-bottom: 3px;
}

.lux-strip span {
  color: var(--lux-muted);
  font-size: 13px;
}

.lux-section {
  padding: 34px 0;
}

.lux-section + .lux-section {
  border-top: 1px solid rgba(234, 223, 216, .72);
}

.lux-surface {
  margin: 26px 0;
  padding: 44px 24px;
  background: #fff3ec;
  border-radius: 8px;
  border-top: 0;
}

.lux-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.lux-section h2,
.lux-list-hero h1,
.lux-campaign h2,
.lux-magazine h2 {
  margin: 6px 0 0;
  color: var(--lux-ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  font-weight: 900;
}

.lux-link {
  color: var(--lux-teal);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.lux-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.lux-category {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid var(--lux-line);
  background: #fff;
  color: var(--lux-ink);
}

.lux-category img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transition: transform .35s ease, opacity .35s ease;
}

.lux-category::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(21, 19, 19, .72), rgba(21, 19, 19, .08));
}

.lux-category strong,
.lux-category small,
.lux-category-mark {
  position: relative;
  z-index: 1;
}

.lux-category strong {
  color: #fff;
  font-size: 18px;
}

.lux-category small {
  color: rgba(255, 255, 255, .78);
  margin-top: 4px;
}

.lux-category:hover img {
  transform: scale(1.05);
  opacity: .9;
}

.lux-category-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--lux-teal);
  border-radius: 50%;
  margin-bottom: 20px;
  font-weight: 900;
}

.lux-campaign {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .55fr);
  align-items: center;
  gap: 34px;
  margin: 46px 0;
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--lux-line);
  box-shadow: var(--lux-shadow-soft);
}

.lux-campaign img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}

.lux-campaign p,
.lux-magazine p,
.lux-list-hero p {
  color: var(--lux-muted);
  margin: 12px 0 22px;
}

.mc-products.lux-products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.lux-product-card.mc-product {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--lux-line);
  background: #fff;
  box-shadow: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.lux-product-card.mc-product:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 75, 72, .22);
  box-shadow: var(--lux-shadow-soft);
}

.lux-product-card .mc-product-thumb {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.12;
  background: #fff;
  overflow: hidden;
}

.lux-product-card .mc-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform .32s ease;
}

.lux-product-card .mc-product-thumb .mc-thumb-placeholder,
.lux-product-card .mc-product-thumb img[src^="data:image/svg"] {
  object-fit: contain;
  padding: 46px;
  opacity: .72;
  background:
    linear-gradient(135deg, rgba(246, 215, 198, .55), rgba(255, 255, 255, .92));
}

.lux-product-card:hover .mc-product-thumb img {
  transform: scale(1.025);
}

.lux-product-card .mc-product-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  min-height: 210px;
}

.lux-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 20px;
  color: var(--lux-orange);
  font-size: 12px;
  font-weight: 800;
}

.lux-product-meta small {
  color: var(--lux-muted);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mc-product-title {
  margin: 0;
  min-height: 48px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 850;
}

.mc-product-title a {
  color: var(--lux-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mc-product-title a:hover {
  color: var(--lux-teal);
}

.mc-product-price-row {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.mc-product-price {
  color: var(--lux-teal);
  font-size: 17px;
  font-weight: 900;
}

.mc-product-price small {
  color: var(--lux-muted);
  font-size: 11px;
  font-weight: 650;
}

.mc-product-price-old {
  color: #aaa;
  text-decoration: line-through;
  font-size: 12px;
}

.lux-call-price {
  color: var(--lux-muted);
  font-size: 13px;
}

.mc-product-badges {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  z-index: 2;
}

.mc-badge {
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 850;
  border: 1px solid rgba(255, 255, 255, .65);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

.mc-badge-original {
  background: rgba(255, 255, 255, .92);
  color: var(--lux-teal);
}

.mc-badge-hot {
  background: var(--lux-orange);
  color: #fff;
}

.mc-badge-new {
  background: var(--lux-teal);
  color: #fff;
}

.lux-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--lux-orange);
  font-size: 12px;
}

.lux-rating::before {
  content: "★";
}

.lux-rating small {
  color: var(--lux-muted);
}

.mc-product-cta {
  display: flex;
  margin-top: 4px;
}

.mc-product-cta .mc-btn {
  width: 100%;
}

.lux-brands {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.lux-brand {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--lux-line);
  border-radius: 8px;
  background: #fff;
  color: var(--lux-ink);
  font-weight: 850;
}

.lux-brand img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(.2);
}

.lux-brand:hover {
  border-color: rgba(6, 75, 72, .28);
  box-shadow: var(--lux-shadow-soft);
}

.lux-brand-page {
  padding-top: 32px;
}

.lux-brand-hero {
  align-items: center;
}

.lux-brand-hero-stat {
  min-height: 260px;
  border-radius: 8px;
  border: 1px solid rgba(8, 85, 77, .16);
  background: #fff;
  box-shadow: var(--lux-shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--lux-teal);
}

.lux-brand-hero-stat strong {
  font-size: clamp(52px, 8vw, 96px);
  line-height: 1;
  color: var(--lux-teal);
}

.lux-brand-hero-stat span {
  color: var(--lux-muted);
  font-weight: 800;
  margin-top: 12px;
}

.lux-brand-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.lux-brand-card {
  min-height: 174px;
  padding: 18px;
  border: 1px solid var(--lux-line);
  border-radius: 8px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.lux-brand-card:hover {
  transform: translateY(-3px);
  border-color: rgba(8, 85, 77, .24);
  box-shadow: var(--lux-shadow-soft);
}

.lux-brand-logo {
  width: 118px;
  height: 82px;
  border-radius: 8px;
  border: 1px solid rgba(94, 61, 45, .1);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lux-brand-logo img {
  display: block;
  max-width: 86%;
  max-height: 66px;
  object-fit: contain;
}

.lux-brand-logo span {
  color: var(--lux-teal);
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.lux-brand-card strong {
  color: var(--lux-ink);
  font-size: 15px;
  line-height: 1.6;
}

.lux-brand-detail-hero {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  border: 1px solid var(--lux-line);
  background: #fff;
  box-shadow: var(--lux-shadow-soft);
}

.lux-brand-logo.is-large {
  width: 190px;
  height: 150px;
  justify-self: center;
}

.lux-brand-logo.is-large img {
  max-height: 112px;
}

.lux-brand-detail-hero h1 {
  margin: 8px 0 12px;
  color: var(--lux-ink);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.2;
  letter-spacing: 0;
}

.lux-brand-detail-hero p {
  max-width: 680px;
  color: var(--lux-muted);
  line-height: 2;
  margin: 0;
}

.lux-empty {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px solid var(--lux-line);
  border-radius: 8px;
  background: #fff;
  color: var(--lux-muted);
  text-align: center;
}

.footer-trust-badges {
  margin-top: 16px;
}

.lux-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--lux-line);
  border-radius: 8px;
  background: #fff;
  color: var(--lux-teal);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.lux-trust-badge img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex: 0 0 auto;
}

.lux-trust-badge span {
  line-height: 1.7;
}

.designer-credit-name {
  color: var(--lux-teal);
  font-weight: 900;
}

.designer-credit-phone {
  color: var(--lux-muted);
  text-decoration: none;
  white-space: nowrap;
}

.designer-credit-phone span {
  color: var(--lux-orange);
  font-weight: 950;
}

.lux-mega-menu {
  width: min(860px, calc(100vw - 32px));
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 16px !important;
}

.lux-mega-col {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.lux-mega-col a {
  border-radius: 6px;
}

.lux-mega-title {
  color: var(--lux-teal) !important;
  font-weight: 950 !important;
  background: rgba(8, 85, 77, .08);
}

.lux-feature-banners {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.lux-feature-banner,
.lux-shop-category-grid a {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--lux-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--lux-shadow-soft);
  color: var(--lux-ink);
  text-decoration: none;
}

.lux-feature-banner span {
  display: block;
  color: var(--lux-orange);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
}

.lux-feature-banner strong,
.lux-shop-category-grid strong {
  display: block;
  color: var(--lux-teal);
  font-size: 18px;
  line-height: 1.7;
}

.lux-feature-banner small,
.lux-shop-category-grid span {
  display: block;
  color: var(--lux-muted);
  line-height: 1.8;
  margin-top: 8px;
}

.lux-shop-categories {
  margin-top: 36px;
}

.lux-shop-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.lux-otp-login {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--lux-line);
  display: grid;
  gap: 12px;
}

.lux-otp-login > strong {
  color: var(--lux-teal);
  font-size: 16px;
}

.lux-otp-login p,
.lux-otp-login-message {
  color: var(--lux-muted);
  font-size: 12px;
  line-height: 1.8;
  margin: 0;
}

.lux-otp-login-message.is-error {
  color: #b42318;
}

.mc-size-picker {
  display: grid;
  gap: 10px;
}

.mc-size-picker strong {
  color: var(--lux-ink);
}

.mc-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mc-size-options button {
  border: 1px solid rgba(8, 85, 77, .18);
  background: #fff;
  color: var(--lux-teal);
  border-radius: 8px;
  padding: 9px 14px;
  font: inherit;
  font-weight: 900;
}

.mc-size-options button.is-active {
  background: var(--lux-teal);
  color: #fff;
}

.mc-size-picker small {
  color: var(--lux-muted);
  font-size: 12px;
}

.lux-magazine {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding: 34px;
  border-radius: 8px;
  background: var(--lux-teal);
  color: #fff;
}

.lux-magazine h2,
.lux-magazine p {
  color: #fff;
}

.lux-magazine .lux-kicker {
  color: var(--lux-peach);
}

.lux-list-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  align-items: center;
  gap: 28px;
  padding: 42px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(6, 75, 72, .94), rgba(6, 75, 72, .72)),
    url("/static/images/hero/DSC07782 copy.jpg") center / cover;
  color: #fff;
}

.lux-list-hero h1,
.lux-list-hero p {
  color: #fff;
}

.lux-list-hero .lux-kicker {
  color: var(--lux-peach);
}

.lux-search {
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
}

.lux-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 15px 20px;
  outline: 0;
  font: inherit;
}

.lux-search button {
  width: 56px;
  border: 0;
  background: var(--lux-orange);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.lux-search svg {
  width: 21px;
  height: 21px;
}

.lux-shop-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  margin-top: 24px;
  align-items: start;
}

.lux-filter-panel {
  position: sticky;
  top: 150px;
  padding: 20px;
  border: 1px solid var(--lux-line);
  border-radius: 8px;
  background: #fff;
}

.lux-filter-panel form {
  display: grid;
  gap: 16px;
}

.lux-filter-panel label {
  display: grid;
  gap: 7px;
}

.lux-filter-panel span {
  color: var(--lux-muted);
  font-size: 12px;
  font-weight: 800;
}

.lux-filter-panel select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--lux-line);
  border-radius: 8px;
  background: var(--lux-bg);
  color: var(--lux-ink);
  padding: 0 12px;
  font: inherit;
}

.lux-shop-results {
  min-width: 0;
}

.lux-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding: 14px 18px;
  border: 1px solid var(--lux-line);
  border-radius: 8px;
  background: #fff;
}

.lux-results-head strong {
  color: var(--lux-teal);
}

.lux-results-head span {
  color: var(--lux-muted);
  font-size: 13px;
}

.mc-pagination.lux-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.mc-pagination.lux-pagination a,
.mc-pagination.lux-pagination span {
  min-width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid var(--lux-line);
  background: #fff;
  color: var(--lux-ink);
  font-weight: 750;
}

.mc-pagination.lux-pagination .active {
  background: var(--lux-teal);
  color: #fff;
  border-color: var(--lux-teal);
}

.lux-empty {
  padding: 38px;
  border: 1px solid var(--lux-line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  color: var(--lux-muted);
}

.lux-auth {
  width: min(1180px, calc(100% - 40px));
  margin: 34px auto 72px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .72fr);
  gap: 24px;
  align-items: stretch;
}

.lux-auth-media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--lux-teal);
}

.lux-auth-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 75, 72, .62), rgba(6, 75, 72, .08));
}

.lux-auth-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-auth-card {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--lux-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--lux-shadow);
}

.lux-auth-intro h1 {
  margin: 8px 0 10px;
  color: var(--lux-ink);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.24;
  font-weight: 900;
}

.lux-auth-intro p {
  margin: 0;
  color: var(--lux-muted);
}

.lux-auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 24px 0 18px;
  padding: 5px;
  border: 1px solid var(--lux-line);
  border-radius: 8px;
  background: var(--lux-bg);
}

.lux-auth-tabs button {
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--lux-muted);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.lux-auth-tabs button.is-active {
  background: var(--lux-teal);
  color: #fff;
  box-shadow: 0 10px 22px rgba(6, 75, 72, .16);
}

.lux-auth-message {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(6, 75, 72, .2);
  background: rgba(6, 75, 72, .08);
  color: var(--lux-teal);
  font-weight: 750;
}

.lux-auth-panel {
  display: none;
}

.lux-auth-panel.is-active {
  display: block;
}

.lux-auth-form {
  display: grid;
  gap: 14px;
}

.lux-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lux-auth-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.lux-auth-form label > span {
  color: var(--lux-ink);
  font-size: 13px;
  font-weight: 850;
}

.lux-auth-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--lux-line);
  border-radius: 8px;
  background: var(--lux-bg);
  color: var(--lux-ink);
  padding: 0 13px;
  font: inherit;
  outline: 0;
}

.lux-auth-form input:focus {
  border-color: rgba(6, 75, 72, .45);
  box-shadow: 0 0 0 4px rgba(6, 75, 72, .08);
  background: #fff;
}

.lux-auth-form small {
  color: var(--lux-muted);
  font-size: 12px;
}

.lux-auth-form .mc-btn {
  width: 100%;
  margin-top: 2px;
}

.lux-form-errors,
.lux-form-errors ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #b42318;
  font-size: 12px;
  line-height: 1.8;
}

.lux-auth-secondary {
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border-radius: 8px;
  border: 1px solid rgba(6, 75, 72, .18);
  background: var(--lux-peach-2);
  color: var(--lux-teal);
  font-weight: 850;
}

.lux-auth-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}

.lux-auth-benefits div {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--lux-line);
  border-radius: 8px;
  background: var(--lux-bg);
}

.lux-auth-benefits strong {
  color: var(--lux-teal);
  font-size: 13px;
}

.lux-auth-benefits span {
  color: var(--lux-muted);
  font-size: 12px;
}

.lux-enhanced {
  background: linear-gradient(180deg, rgba(255, 246, 240, .72), #fff 48%);
  padding: 34px 0 78px;
}

.lux-enhanced-hero,
.lux-enhanced-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.lux-enhanced-hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.lux-enhanced-hero > div {
  background: #fff;
  border: 1px solid var(--lux-border);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow-soft);
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lux-enhanced-hero h1 {
  color: var(--lux-ink);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.16;
  margin: 12px 0 18px;
  letter-spacing: 0;
}

.lux-enhanced-hero p {
  color: var(--lux-muted);
  font-size: 16px;
  line-height: 2;
  max-width: 560px;
  margin: 0;
}

.lux-enhanced-hero img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow-soft);
}

.lux-enhanced-shell {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.lux-enhanced-aside,
.lux-enhanced-card {
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--lux-border);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow-soft);
}

.lux-enhanced-aside {
  position: sticky;
  top: 18px;
  padding: 22px;
}

.lux-progress {
  display: grid;
  gap: 14px;
}

.lux-progress-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--lux-border);
  border-radius: 8px;
  background: var(--lux-soft);
}

.lux-progress-step span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--lux-teal);
  border: 1px solid rgba(8, 85, 77, .18);
  font-weight: 900;
}

.lux-progress-step strong {
  color: var(--lux-ink);
  display: block;
  margin-bottom: 3px;
}

.lux-progress-step small {
  color: var(--lux-muted);
  font-size: 12px;
}

.lux-progress-step.is-active {
  background: rgba(8, 85, 77, .08);
  border-color: rgba(8, 85, 77, .22);
}

.lux-progress-step.is-active span,
.lux-progress-step.is-done span {
  background: var(--lux-teal);
  color: #fff;
}

.lux-enhanced-note {
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(210, 106, 45, .08);
  border: 1px solid rgba(210, 106, 45, .18);
}

.lux-enhanced-note strong,
.lux-enhanced-note span {
  display: block;
}

.lux-enhanced-note strong {
  color: var(--lux-teal);
  margin-bottom: 8px;
}

.lux-enhanced-note span {
  color: var(--lux-muted);
  font-size: 13px;
  line-height: 1.9;
}

.lux-enhanced-card {
  padding: clamp(22px, 4vw, 42px);
}

.lux-enhanced-form {
  display: grid;
  gap: 28px;
}

.lux-form-section {
  display: grid;
  gap: 16px;
}

.lux-form-section h2,
.lux-otp h2 {
  margin: 0;
  color: var(--lux-ink);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35;
  letter-spacing: 0;
}

.lux-form-grid,
.lux-file-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lux-enhanced-form label,
.lux-file-grid label {
  min-width: 0;
}

.lux-enhanced-form label > span {
  display: block;
  color: var(--lux-ink);
  font-weight: 800;
  margin-bottom: 8px;
}

.lux-enhanced-form input,
.lux-enhanced-form select,
.lux-enhanced-form textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(94, 61, 45, .16);
  border-radius: 8px;
  background: #fffaf7;
  color: var(--lux-ink);
  padding: 13px 14px;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.lux-enhanced-form input:focus,
.lux-enhanced-form select:focus,
.lux-enhanced-form textarea:focus {
  background: #fff;
  border-color: rgba(8, 85, 77, .48);
  box-shadow: 0 0 0 4px rgba(8, 85, 77, .1);
}

.lux-enhanced-form input[type="file"] {
  padding: 11px;
  background: #fff;
}

.form-help,
.form-error {
  display: block;
  font-size: 12px;
  line-height: 1.8;
  margin-top: 6px;
}

.form-help {
  color: var(--lux-muted);
}

.form-error {
  color: #b42318;
}

.lux-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--lux-border);
  border-radius: 8px;
  background: var(--lux-soft);
}

.lux-check input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex: 0 0 auto;
}

.lux-check span {
  color: var(--lux-muted);
  line-height: 1.9;
}

.lux-enhanced-form .mc-btn,
.lux-otp .mc-btn {
  width: 100%;
  justify-content: center;
  min-height: 48px;
}

.lux-enhanced-form .mc-btn:disabled,
.lux-otp .mc-btn:disabled {
  opacity: .62;
  cursor: wait;
}

.lux-otp {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.lux-otp p {
  color: var(--lux-muted);
  line-height: 2;
  margin: 12px 0 24px;
}

.otp-inputs {
  display: grid;
  grid-template-columns: repeat(5, 54px);
  gap: 10px;
  justify-content: center;
  direction: ltr;
  margin: 24px 0;
}

.otp-input {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(94, 61, 45, .18);
  border-radius: 8px;
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--lux-teal);
  background: #fffaf7;
}

.otp-input:focus {
  outline: none;
  border-color: rgba(8, 85, 77, .48);
  box-shadow: 0 0 0 4px rgba(8, 85, 77, .1);
}

.otp-timer {
  min-height: 28px;
  color: var(--lux-muted);
  margin-bottom: 14px;
}

.otp-resend {
  display: inline-block;
  margin-top: 16px;
  color: var(--lux-orange);
  font-weight: 900;
  text-decoration: none;
}

.otp-resend[aria-disabled="true"] {
  opacity: .45;
  pointer-events: none;
}

.mc-detail {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .74fr);
  gap: 34px;
  align-items: start;
  padding-top: 26px;
}

.mc-detail-gallery {
  position: sticky;
  top: 150px;
  padding: 22px;
  border: 1px solid var(--lux-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--lux-shadow-soft);
}

.mc-detail-gallery > img,
#mcMainImage {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  padding: 20px;
}

.mc-detail-info {
  padding: 26px;
  border: 1px solid var(--lux-line);
  border-radius: 8px;
  background: #fff;
}

.mc-detail-brand {
  color: var(--lux-orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mc-detail-info h1 {
  margin: 8px 0 16px;
  color: var(--lux-ink);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.25;
  font-weight: 900;
}

.mc-detail-price-box {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--lux-line);
  border-bottom: 1px solid var(--lux-line);
}

.mc-detail-price {
  color: var(--lux-teal);
  font-size: 25px;
  font-weight: 950;
}

.mc-detail-section,
.mc-detail-desc {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--lux-line);
  border-radius: 8px;
  background: var(--lux-bg);
}

.mc-detail-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0;
}

.mc-footer {
  background: #fff;
  border-top: 1px solid var(--lux-line);
}

.mc-footer h4 {
  color: var(--lux-teal);
}

@media (max-width: 1100px) {
  .mc-products.lux-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lux-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lux-brands {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .lux-page {
    width: min(calc(100% - 28px), 1280px);
    padding-top: 18px;
  }

  .lux-hero,
  .lux-list-hero,
  .lux-campaign,
  .lux-shop-layout {
    grid-template-columns: 1fr;
  }

  .lux-auth {
    width: min(100% - 28px, 1180px);
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .lux-brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lux-brand-detail-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lux-mega-menu,
  .lux-feature-banners,
  .lux-shop-category-grid {
    grid-template-columns: 1fr;
  }

  .lux-auth-media {
    min-height: 280px;
  }

  .lux-enhanced-hero,
  .lux-enhanced-shell {
    width: min(100% - 28px, 680px);
    grid-template-columns: 1fr;
  }

  .lux-enhanced-hero img {
    order: -1;
    min-height: 300px;
    max-height: 420px;
  }

  .lux-enhanced-aside {
    position: static;
  }

  .mc-detail {
    grid-template-columns: 1fr;
  }

  .mc-detail-gallery {
    position: static;
  }

  .lux-hero {
    min-height: 0;
  }

  .lux-hero-media {
    min-height: 330px;
  }

  .lux-hero-panel {
    padding: 30px;
  }

  .lux-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lux-categories,
  .mc-products.lux-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lux-filter-panel {
    position: static;
  }

  .lux-section-head,
  .lux-magazine,
  .lux-results-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-container {
    gap: 14px;
  }

  .header-search {
    order: 3;
    flex-basis: 100%;
    max-width: none;
  }
}

@media (max-width: 560px) {
  .lux-page {
    width: min(calc(100% - 20px), 1280px);
  }

  .lux-hero-media {
    min-height: 260px;
  }

  .lux-hero-panel,
  .lux-list-hero,
  .lux-campaign,
  .lux-magazine {
    padding: 22px;
  }

  .lux-strip,
  .lux-categories,
  .mc-products.lux-products,
  .lux-brands,
  .lux-brand-grid {
    grid-template-columns: 1fr;
  }

  .lux-brand-page {
    padding-top: 16px;
  }

  .lux-brand-card {
    min-height: 142px;
  }

  .lux-brand-logo.is-large {
    width: 160px;
    height: 122px;
  }

  .lux-feature-banner,
  .lux-shop-category-grid a {
    padding: 18px;
  }

  .lux-product-card .mc-product-body {
    min-height: 188px;
  }

  .lux-form-row,
  .lux-auth-benefits {
    grid-template-columns: 1fr;
  }

  .lux-enhanced {
    padding: 16px 0 52px;
  }

  .lux-enhanced-hero,
  .lux-enhanced-shell {
    width: calc(100% - 20px);
  }

  .lux-enhanced-hero {
    gap: 18px;
    margin-bottom: 18px;
  }

  .lux-enhanced-hero > div,
  .lux-enhanced-card,
  .lux-enhanced-aside {
    border-radius: 8px;
  }

  .lux-enhanced-hero > div,
  .lux-enhanced-card {
    padding: 22px 18px;
  }

  .lux-enhanced-hero img {
    min-height: 260px;
  }

  .lux-form-grid,
  .lux-file-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lux-progress-step {
    grid-template-columns: 40px 1fr;
    padding: 12px;
  }

  .otp-inputs {
    grid-template-columns: repeat(5, minmax(40px, 1fr));
    gap: 8px;
  }

  .otp-input {
    width: 100%;
    height: 48px;
  }

  .nav-list > li > a {
    padding: 12px 14px;
  }
}

/* Final compact commerce overrides. */
.lux-page { gap: 22px; }
.lux-hero { min-height: 360px; grid-template-columns: minmax(0, 1.45fr) minmax(320px, 420px); }
.lux-hero-media { min-height: 360px; }
.lux-hero-panel { padding: clamp(22px, 3.2vw, 42px); }
.lux-hero h1 { margin: 10px 0 12px; font-size: clamp(28px, 4vw, 46px); line-height: 1.16; }
.lux-hero p { font-size: 14px; line-height: 1.9; margin-bottom: 18px; }
.lux-strip { margin-top: -4px; }
.lux-strip div { padding: 14px 16px; }
.lux-section { margin-top: 28px; }
.lux-section-head { margin-bottom: 14px; }
.lux-section-head h2 { font-size: clamp(22px, 3vw, 32px); }
.mc-products.lux-products { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.lux-product-card.mc-product { border-radius: 7px; }
.lux-product-card .mc-product-thumb { aspect-ratio: 1 / .92; }
.lux-product-card .mc-product-thumb img { padding: 12px; }
.lux-product-card .mc-product-body { gap: 7px; padding: 10px 11px 11px; min-height: 154px; }
.lux-product-meta { min-height: 16px; font-size: 10.5px; }
.lux-product-meta span, .lux-product-meta small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mc-product-title { min-height: 42px; font-size: 13px; line-height: 1.55; }
.mc-product-title a { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mc-product-variants { display: flex; flex-wrap: wrap; gap: 4px; min-height: 22px; }
.mc-product-variants span { border: 1px solid rgba(8, 85, 77, .14); border-radius: 999px; padding: 2px 7px; background: rgba(246, 215, 198, .22); color: var(--lux-teal); font-size: 10.5px; font-weight: 800; line-height: 1.5; }
.mc-product-price-row { margin-top: auto; }
.mc-product-price { font-size: 14px; }
.mc-product-price-old { font-size: 11px; }
.mc-product-cta { margin-top: 2px; }
.mc-product-cta .mc-btn { min-height: 34px; padding: 8px 10px; font-size: 12px; }
.lux-categories { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
.lux-category { min-height: 130px; padding: 12px; }
.lux-category img { height: 54px; }
.lux-campaign { min-height: 240px; }
.lux-campaign img { min-height: 240px; }
.lux-campaign > div { padding: clamp(20px, 3vw, 36px); }
.lux-feature-banners { gap: 10px; margin-top: 16px; }
.lux-feature-banner { min-height: 128px; padding: 16px; }
.lux-brands { grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 10px; }
.lux-brand { min-height: 82px; gap: 7px; padding: 10px; text-align: center; font-size: 12px; line-height: 1.45; }
.lux-brand img { max-width: 90%; max-height: 34px; }
.lux-brand span { display: block; width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lux-brand-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.lux-brand-card { min-height: 136px; padding: 12px; gap: 9px; }
.lux-brand-logo { width: 96px; height: 58px; }
.lux-brand-logo img { max-height: 46px; }
.lux-brand-card strong { font-size: 13px; line-height: 1.5; }
.lux-shop-category-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.lux-shop-category-grid a { min-height: 112px; padding: 15px; }

@media (max-width: 1180px) {
  .mc-products.lux-products { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lux-brands, .lux-brand-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lux-categories, .lux-shop-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .lux-hero { min-height: auto; }
  .lux-hero-media { min-height: 220px; }
  .lux-hero-panel { padding: 20px; }
  .lux-hero h1 { font-size: 27px; }
  .mc-products.lux-products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .lux-product-card .mc-product-body { padding: 9px; min-height: 148px; }
  .mc-product-title { font-size: 12.5px; }
  .lux-brands, .lux-brand-grid, .lux-categories, .lux-shop-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Storefront UX upgrade */
.header-search {
  position: relative;
}

.lux-search-suggest {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline: 0;
  z-index: 80;
  display: none;
  max-height: 420px;
  overflow: auto;
  border: 1px solid var(--lux-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(21, 19, 19, .14);
}

.lux-search-suggest.is-open {
  display: block;
}

.lux-search-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  color: var(--lux-ink);
  border-bottom: 1px solid rgba(234, 223, 216, .75);
}

.lux-search-item:last-child {
  border-bottom: 0;
}

.lux-search-item img,
.lux-search-thumb {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 7px;
  background: #fff8f4;
}

.lux-search-item strong,
.lux-search-item small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lux-search-item strong {
  font-size: 13px;
}

.lux-search-item small {
  margin-top: 3px;
  color: var(--lux-muted);
  font-size: 11px;
}

.lux-search-item em {
  color: var(--lux-teal);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.lux-search-empty {
  padding: 14px;
  color: var(--lux-muted);
  font-size: 13px;
}

.mc-product-benefit {
  margin: -2px 0 0;
  min-height: 34px;
  color: var(--lux-muted);
  font-size: 11px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mc-badge-sale {
  background: var(--lux-orange);
  color: #fff;
}

.mc-product-stock {
  font-size: 11px;
  font-weight: 850;
  color: #1a7f43;
}

.mc-product-stock[data-stock="limited"] {
  color: #9a6a00;
}

.mc-product-stock[data-stock="preorder"] {
  color: #1b56b3;
}

.mc-product-stock[data-stock="out_of_stock"] {
  color: #b42318;
}

.mc-card-cart-form {
  flex: 1;
  display: flex;
}

.mc-card-cart-form .mc-btn {
  width: 100%;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.mc-product-tools {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  padding-top: 5px;
  border-top: 1px solid rgba(234, 223, 216, .7);
  color: var(--lux-muted);
  font-size: 10.5px;
  font-weight: 750;
}

.mc-product-tools a,
.mc-product-tools span {
  color: inherit;
  white-space: nowrap;
}

.lux-filter-panel input,
.lux-filter-panel select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--lux-line);
  border-radius: 7px;
  background: #fff;
  color: var(--lux-ink);
  font-family: inherit;
}

.lux-filter-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.lux-checkline {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 8px;
}

.lux-checkline input {
  width: 18px;
  min-height: 18px;
}

.lux-filter-reset {
  display: block;
  margin-top: 10px;
  color: var(--lux-muted);
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.lux-results-head {
  gap: 12px;
}

.lux-view-toggle {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--lux-line);
  border-radius: 999px;
  background: #fff;
}

.lux-view-toggle button {
  border: 0;
  background: transparent;
  color: var(--lux-muted);
  padding: 8px 13px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.lux-view-toggle button.is-active {
  background: var(--lux-teal);
  color: #fff;
}

.lux-products.is-list-view {
  grid-template-columns: 1fr;
}

.lux-products.is-list-view .lux-product-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
}

.lux-products.is-list-view .mc-product-thumb {
  height: 100%;
  min-height: 190px;
}

.lux-seo-copy {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--lux-line);
  border-radius: 8px;
  background: #fff;
}

.lux-seo-copy h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.lux-seo-copy p {
  margin: 0;
  color: var(--lux-muted);
  font-size: 13px;
  line-height: 2;
}

.lux-mobile-bottom-nav {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--lux-line);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  box-shadow: 0 -12px 28px rgba(21, 19, 19, .08);
}

.lux-mobile-bottom-nav a,
.lux-mobile-bottom-nav button {
  min-height: 58px;
  border: 0;
  background: transparent;
  color: var(--lux-ink);
  font-family: inherit;
  font-size: 11px;
  font-weight: 850;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.lux-mobile-bottom-nav span {
  color: var(--lux-orange);
}

.page-cart .cart-summary,
.checkout-summary .summary-card {
  position: sticky;
  top: 96px;
  border: 1px solid var(--lux-line);
  border-radius: 8px;
  background: #fff;
}

.checkout-section,
.cart-item {
  border-radius: 8px;
}

.checkout-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checkout-section::before {
  content: "";
  display: inline-flex;
  width: 28px;
  height: 28px;
  margin-left: 8px;
  vertical-align: middle;
  border-radius: 999px;
  background: var(--lux-peach);
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 7px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--lux-teal);
  color: #fff;
}

.btn-outline {
  background: #fff;
  color: var(--lux-teal);
  border-color: var(--lux-line);
}

.btn-block {
  width: 100%;
}

.mc-detail-cart-form {
  display: inline-flex;
}

.mc-detail-cart-form .mc-btn {
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.mc-detail-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0;
}

.mc-detail-trust span {
  border: 1px solid var(--lux-line);
  border-radius: 7px;
  background: #fff;
  color: var(--lux-teal);
  padding: 9px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 850;
}

.mc-sticky-add-to-cart {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 95;
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-top: 1px solid var(--lux-line);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 -14px 30px rgba(21, 19, 19, .1);
}

.mc-sticky-add-to-cart span {
  color: var(--lux-teal);
  font-weight: 950;
}

.mc-sticky-add-to-cart button {
  min-height: 42px;
  border: 0;
  border-radius: 7px;
  background: var(--lux-orange);
  color: #fff;
  font-family: inherit;
  font-weight: 900;
}

.lux-home-v2 {
  gap: 24px;
}

.lux-store-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr);
  gap: 18px;
  align-items: stretch;
  min-height: 430px;
}

.lux-store-hero-copy {
  border-radius: 8px;
  padding: clamp(26px, 4vw, 52px);
  background:
    linear-gradient(135deg, rgba(246, 215, 198, .24), rgba(255, 255, 255, 0) 48%),
    var(--lux-teal);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--lux-shadow);
}

.lux-store-hero-copy .lux-kicker {
  color: var(--lux-peach);
}

.lux-store-hero-copy h1 {
  margin: 12px 0 12px;
  max-width: 720px;
  color: #fff;
  font-size: clamp(32px, 4.7vw, 58px);
  line-height: 1.18;
  font-weight: 950;
  letter-spacing: 0;
}

.lux-store-hero-copy p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
  line-height: 1.9;
}

.lux-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.lux-hero-proof span {
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  padding: 7px 11px;
  color: rgba(255, 255, 255, .9);
  font-size: 12px;
  font-weight: 850;
}

.lux-store-hero-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lux-hero-product-card {
  min-height: 206px;
  border: 1px solid var(--lux-line);
  border-radius: 8px;
  background: #fff;
  padding: 13px;
  display: grid;
  grid-template-rows: 1fr auto auto auto;
  gap: 6px;
  color: var(--lux-ink);
  overflow: hidden;
  box-shadow: var(--lux-shadow-soft);
}

.lux-hero-product-card img {
  width: 100%;
  height: 118px;
  object-fit: contain;
  background: #fff;
}

.lux-hero-product-card span {
  color: var(--lux-orange);
  font-size: 11px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lux-hero-product-card strong {
  min-height: 38px;
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lux-hero-product-card em {
  color: var(--lux-teal);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.lux-home-categories {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.lux-home-categories a {
  min-height: 118px;
  border: 1px solid var(--lux-line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
  color: var(--lux-ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.lux-home-categories strong {
  color: var(--lux-teal);
  font-size: 15px;
  line-height: 1.5;
}

.lux-home-categories span {
  color: var(--lux-muted);
  font-size: 11.5px;
  line-height: 1.7;
}

.lux-sale-section {
  border: 1px solid rgba(201, 111, 45, .22);
  border-radius: 8px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 243, 236, .9), rgba(255, 255, 255, .95));
}

.lux-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.lux-trust-grid div {
  min-height: 112px;
  border: 1px solid var(--lux-line);
  border-radius: 8px;
  background: #fff;
  padding: 17px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.lux-trust-grid strong {
  color: var(--lux-teal);
  font-size: 16px;
}

.lux-trust-grid span {
  color: var(--lux-muted);
  font-size: 12.5px;
  line-height: 1.8;
}

.lux-call-price {
  max-width: 100%;
  font-size: 11.5px;
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .lux-store-hero {
    grid-template-columns: 1fr;
  }

  .lux-home-categories {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lux-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    padding-bottom: 64px;
  }

  .lux-mobile-bottom-nav {
    display: grid;
  }

  .mc-sticky-add-to-cart {
    display: grid;
    bottom: 58px;
  }

  .lux-search-suggest {
    position: fixed;
    top: 86px;
    inset-inline: 10px;
  }

  .lux-filter-row,
  .checkout-form .form-row {
    grid-template-columns: 1fr;
  }

  .lux-products.is-list-view .lux-product-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .lux-products.is-list-view .mc-product-thumb {
    min-height: 150px;
  }

  .mc-detail-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lux-store-hero {
    gap: 10px;
    min-height: auto;
  }

  .lux-store-hero-copy {
    padding: 22px;
    overflow: hidden;
  }

  .lux-store-hero-copy h1 {
    font-size: 22px;
    line-height: 1.35;
    max-width: 310px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .lux-store-hero-copy p {
    font-size: 14px;
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .lux-store-hero-copy .lux-kicker {
    justify-content: center;
    width: 100%;
  }

  .lux-store-hero .lux-hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .lux-store-hero .mc-btn {
    width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.7;
  }

  .lux-store-hero-copy h1,
  .lux-store-hero-copy p {
    overflow-wrap: anywhere;
  }

  .lux-store-hero-products {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    overflow: visible;
    padding: 0;
  }

  .lux-hero-product-card {
    width: 100%;
    min-height: 180px;
    padding: 10px;
    text-align: center;
  }

  .lux-hero-product-card:nth-child(n+3) {
    display: none;
  }

  .lux-home-v2,
  .lux-store-hero,
  .lux-store-hero-copy,
  .lux-store-hero-products,
  .lux-home-categories,
  .lux-sale-section,
  .lux-trust-grid {
    max-width: 100%;
    box-sizing: border-box;
  }

  .lux-page.lux-home-v2 {
    width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding-right: 10px !important;
    padding-left: 10px !important;
  }

  .lux-home-v2 * {
    min-width: 0;
  }

  .lux-hero-product-card img {
    height: 92px;
  }

  .lux-hero-product-card span,
  .lux-hero-product-card strong,
  .lux-hero-product-card em {
    max-width: 100%;
    text-align: center;
  }

  .lux-home-categories {
    grid-template-columns: 1fr;
  }

  .lux-home-categories a {
    min-height: 104px;
  }

  .lux-sale-section {
    padding: 12px;
  }

  .lux-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* NasimShop-inspired final override: keep this block at EOF for cascade priority. */
:root {
  --lux-teal: #212121;
  --lux-teal-2: #111318;
  --lux-orange: #d32f2f;
  --lux-peach: #fff0f0;
  --lux-peach-2: #fff7f7;
  --lux-ink: #212121;
  --lux-muted: #777;
  --lux-line: #eeeeee;
  --lux-bg: #f8f8f8;
  --lux-surface: #ffffff;
  --lux-shadow: 0 8px 28px rgba(0, 0, 0, .08);
  --lux-shadow-soft: 0 6px 20px rgba(0, 0, 0, .08);
}

.rainbow-stripe { height: 0; }
.header-promo { background: #d32f2f; padding: 7px 16px; font-size: 12px; font-weight: 800; }
.milanco-header { background: #fff; border-bottom: 1px solid #ececec; box-shadow: 0 2px 12px rgba(0, 0, 0, .055); }
.header-container { max-width: 1220px; padding: 12px 16px; gap: 18px; }
.header-logo img { max-height: 42px; }
.header-search { max-width: 620px; }
.header-search form { border: 1px solid #e5e5e5; border-radius: 4px; background: #f7f7f7; }
.header-search form:focus-within { border-color: #d32f2f; box-shadow: 0 0 0 3px rgba(211, 47, 47, .08); }
.search-input { padding: 12px 15px; font-size: 13px; }
.search-btn { width: 48px; background: #d32f2f; }
.action-icon { width: 42px; height: 42px; border: 0; border-radius: 4px; background: #f7f7f7; color: #212121; }
.action-icon:hover { background: #fff0f0; color: #d32f2f; }
.cart-count { background: #d32f2f; box-shadow: 0 0 0 2px #fff; }
.header-nav { border-top: 1px solid #f0f0f0; }
.nav-list { max-width: 1220px; gap: 2px; }
.nav-list > li > a { padding: 12px 14px; color: #212121; font-size: 13px; font-weight: 800; border-bottom: 2px solid transparent; }
.nav-list > li > a:hover { color: #d32f2f; border-bottom-color: #d32f2f; }
.lux-page { width: min(1220px, calc(100% - 28px)); padding-top: 20px; }
.lux-store-hero { grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr); gap: 12px; min-height: 382px; }
.lux-store-hero-copy { border-radius: 6px; background: radial-gradient(circle at 12% 12%, rgba(255, 255, 255, .17), transparent 32%), linear-gradient(135deg, #d32f2f 0%, #ef394e 45%, #212121 100%); box-shadow: var(--lux-shadow); }
.lux-store-hero-copy h1 { font-size: clamp(30px, 4vw, 48px); line-height: 1.25; }
.lux-store-hero-copy .lux-kicker, .lux-hero-proof span { color: #fff; }
.lux-store-hero-products { gap: 10px; }
.lux-hero-product-card { min-height: 186px; border-color: #eee; border-radius: 6px; box-shadow: none; transition: transform .2s ease, box-shadow .2s ease; }
.lux-hero-product-card:hover { transform: translateY(-2px); box-shadow: var(--lux-shadow-soft); }
.lux-hero-product-card img { height: 104px; }
.lux-hero-product-card span, .lux-hero-product-card em, .lux-home-categories strong, .lux-link, .mc-product-title a:hover { color: #d32f2f; }
.lux-home-categories { grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 8px; }
.lux-home-categories a { min-height: 96px; border-radius: 6px; border-color: #eee; background: #fff; box-shadow: none; transition: transform .2s ease, border-color .2s ease; }
.lux-home-categories a:hover { transform: translateY(-2px); border-color: rgba(211, 47, 47, .32); }
.lux-section { margin-top: 22px; border-radius: 6px; }
.lux-section-head { margin-bottom: 10px; padding-bottom: 9px; border-bottom: 1px solid #eee; }
.lux-section-head h2 { font-size: clamp(20px, 2.4vw, 27px); }
.lux-kicker { color: #d32f2f; font-size: 11px; }
.mc-products.lux-products { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.lux-product-card.mc-product { border-color: #e9e9e9; border-radius: 5px; background: #fff; box-shadow: none; }
.lux-product-card.mc-product:hover { transform: translateY(-2px); border-color: rgba(211, 47, 47, .3); box-shadow: 0 7px 20px rgba(0, 0, 0, .08); }
.lux-product-card .mc-product-thumb { aspect-ratio: 1 / .94; background: #fff; border-bottom: 1px solid #f2f2f2; }
.lux-product-card .mc-product-thumb img { padding: 10px; }
.lux-product-card .mc-product-body { gap: 6px; padding: 9px 10px 10px; min-height: 146px; }
.lux-product-meta { color: #d32f2f; font-size: 10.5px; }
.mc-product-title { min-height: 40px; font-size: 12.5px; line-height: 1.6; font-weight: 800; }
.mc-product-benefit, .mc-product-tools { display: none; }
.mc-product-price { color: #d32f2f; font-size: 14px; font-weight: 950; }
.mc-product-stock { font-size: 11px; }
.mc-product-cta .mc-btn { min-height: 32px; border-radius: 4px; padding: 7px 9px; font-size: 11.5px; }
.mc-btn { border-radius: 4px; }
.mc-btn-primary { background: #d32f2f; box-shadow: none; }
.mc-btn-primary:hover { background: #b71c1c; }
.mc-btn-ghost { color: #212121; border-color: #e2e2e2; }
.mc-btn-ghost:hover { color: #d32f2f; border-color: #d32f2f; background: #fff7f7; }
.mc-badge { border-radius: 3px; font-size: 10px; }
.mc-badge-sale, .mc-badge-hot, .mc-badge-new, .mc-badge-original { background: #d32f2f; color: #fff; }
.lux-sale-section { border-color: rgba(211, 47, 47, .2); background: #fff; }
.lux-brands { grid-template-columns: repeat(8, minmax(0, 1fr)); }
.lux-brand, .lux-trust-grid div { border-radius: 5px; border-color: #eee; box-shadow: none; }
.mc-footer { background: #fff; border-top: 1px solid #eee; }
.lux-mobile-bottom-nav { border-top: 1px solid #eee; box-shadow: 0 -8px 22px rgba(0, 0, 0, .08); }
.lux-mobile-bottom-nav a, .lux-mobile-bottom-nav button { color: #212121; }
.lux-mobile-bottom-nav span { background: #d32f2f; }
@media (max-width: 1180px) { .mc-products.lux-products { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 760px) {
  .header-container { padding: 10px; gap: 10px; }
  .header-search { max-width: none; }
  .lux-page { width: 100%; padding-right: 10px; padding-left: 10px; }
  .lux-store-hero-copy { border-radius: 6px; }
  .lux-store-hero-products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lux-hero-product-card:nth-child(n+3) { display: grid; }
  .lux-home-categories { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mc-products.lux-products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .lux-product-card .mc-product-body { min-height: 138px; }
}
/* 2026-06-04 category/shop polish: denser marketplace layout. */
.lux-shop-hero {
  min-height: auto;
  padding: 22px 24px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(8, 85, 77, .08), rgba(246, 215, 198, .3));
}

.lux-shop-hero h1 {
  margin: 6px 0 8px;
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.35;
}

.lux-shop-hero p {
  max-width: 780px;
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
}

.lux-shop-hero .lux-search {
  align-self: end;
  min-width: min(420px, 100%);
}

.lux-shop-layout {
  grid-template-columns: 246px minmax(0, 1fr);
  gap: 14px;
}

.lux-filter-panel {
  top: 82px;
  padding: 12px;
  border-radius: 8px;
  box-shadow: none;
}

.lux-filter-panel form {
  gap: 10px;
}

.lux-filter-panel label {
  gap: 5px;
}

.lux-filter-panel span {
  font-size: 11.5px;
  font-weight: 900;
}

.lux-filter-panel input,
.lux-filter-panel select {
  min-height: 38px;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 12px;
}

.lux-filter-row {
  gap: 8px;
}

.lux-results-head {
  min-height: 54px;
  padding: 10px 12px;
  margin-bottom: 10px;
  border-radius: 8px;
}

.lux-results-head strong {
  font-size: 15px;
}

.lux-results-head span {
  font-size: 11.5px;
}

.lux-view-toggle button {
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 11.5px;
}

.mc-products.lux-products {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.lux-product-card.mc-product {
  border-radius: 6px;
  border-color: #e8e8e8;
  box-shadow: none;
  overflow: hidden;
}

.lux-product-card.mc-product:hover {
  transform: translateY(-2px);
  border-color: rgba(8, 85, 77, .24);
  box-shadow: 0 9px 24px rgba(8, 39, 36, .08);
}

.lux-product-card .mc-product-thumb {
  aspect-ratio: 1 / .9;
  background: #fff;
  border-bottom: 1px solid #f2f2f2;
}

.lux-product-card .mc-product-thumb img {
  padding: 9px;
}

.lux-product-card .mc-product-body {
  gap: 5px;
  padding: 8px 9px 9px;
  min-height: 138px;
}

.lux-product-meta {
  gap: 6px;
}

.lux-product-meta span,
.lux-product-meta small {
  font-size: 10.5px;
}

.mc-product-title {
  min-height: 38px;
  font-size: 12.2px;
  line-height: 1.55;
  font-weight: 850;
}

.mc-product-title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mc-product-benefit,
.mc-product-tools {
  display: none;
}

.mc-product-price-row {
  margin-top: auto;
}

.mc-product-price {
  color: var(--lux-orange);
  font-size: 13.5px;
  font-weight: 950;
}

.mc-product-price small {
  font-size: 10px;
}

.mc-product-stock {
  width: fit-content;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10.5px;
}

.mc-product-cta {
  gap: 6px;
  margin-top: 1px;
}

.mc-product-cta .mc-btn {
  min-height: 30px;
  border-radius: 4px;
  padding: 6px 8px;
  font-size: 11px;
}

.mc-product-badges {
  top: 7px;
  right: 7px;
  gap: 4px;
}

.mc-badge {
  padding: 4px 6px;
  border-radius: 999px;
  font-size: 10px;
}

.lux-seo-copy {
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
}

@media (max-width: 1180px) {
  .mc-products.lux-products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .lux-shop-layout {
    grid-template-columns: 1fr;
  }

  .lux-filter-panel {
    position: static;
  }

  .lux-filter-panel form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .lux-shop-hero {
    padding: 18px 14px;
  }

  .lux-shop-hero h1 {
    font-size: 23px;
  }

  .lux-shop-hero p {
    font-size: 12px;
  }

  .lux-filter-panel form {
    grid-template-columns: 1fr;
  }

  .lux-results-head {
    display: grid;
    gap: 10px;
  }

  .mc-products.lux-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .lux-product-card .mc-product-body {
    min-height: 134px;
  }

  .mc-product-title {
    font-size: 11.8px;
  }
}

/* Product variant selector. */
.mc-variant-options {
  align-items: center;
}

.mc-variant-choice {
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, opacity .16s ease;
}

.mc-size-options .mc-variant-choice,
.mc-size-options button {
  border: 1px solid rgba(8, 85, 77, .18);
  background: #fff;
  color: var(--lux-teal);
  border-radius: 8px;
  padding: 8px 13px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.mc-variant-choice.is-active,
.mc-size-options .mc-variant-choice.is-active,
.mc-size-options button.is-active {
  border-color: var(--lux-teal);
  background: rgba(8, 85, 77, .08);
  box-shadow: 0 0 0 2px rgba(8, 85, 77, .08);
}

.mc-variant-choice:disabled,
.mc-size-options .mc-variant-choice:disabled,
.mc-size-options button:disabled {
  opacity: .45;
  cursor: not-allowed;
  filter: grayscale(.8);
}

.mc-variant-note {
  display: block;
  margin-top: 8px;
  color: #9a3412;
  font-size: 12px;
}

/* Premium Milanco product detail page */
.mc-product-page {
  --pdp-teal: #0f4f4a;
  --pdp-teal-2: #17645e;
  --pdp-orange: #c86f44;
  --pdp-peach: #fff4ee;
  --pdp-ink: #172321;
  --pdp-muted: #687775;
  --pdp-line: rgba(15,79,74,.12);
  --pdp-card: #fff;
  width: min(1260px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0 72px;
  color: var(--pdp-ink);
}

.mc-product-breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; color: var(--pdp-muted); font-size: 12px; font-weight: 800; }
.mc-product-breadcrumb a { color: inherit; text-decoration: none; }

.mc-pdp-hero { display: grid; grid-template-columns: minmax(0, .94fr) minmax(380px, .76fr); gap: 18px; align-items: start; }
.mc-pdp-gallery, .mc-pdp-buybox, .mc-pdp-panel, .mc-pdp-products-section { border: 1px solid var(--pdp-line); border-radius: 14px; background: var(--pdp-card); box-shadow: 0 18px 48px rgba(20,34,33,.08); }
.mc-pdp-gallery { padding: 14px; }
.mc-pdp-image-stage { position: relative; min-height: 520px; display: grid; place-items: center; overflow: hidden; border-radius: 12px; background: radial-gradient(circle at 18% 12%, rgba(255,244,238,.95), transparent 35%), linear-gradient(180deg, #fff, #f8fbfa); }
.mc-pdp-image-stage img { width: min(100%, 620px); max-height: 520px; object-fit: contain; transition: transform .22s ease; }
.mc-pdp-image-stage img.is-zooming { transform: scale(1.65); }
.mc-pdp-discount { position: absolute; top: 14px; right: 14px; z-index: 2; border-radius: 999px; background: var(--pdp-orange); color: #fff; padding: 7px 12px; font-size: 12px; font-weight: 950; }
.mc-pdp-thumbs { display: flex; gap: 8px; overflow-x: auto; padding-top: 12px; }
.mc-pdp-thumbs button, .mc-pdp-video-thumb { flex: 0 0 74px; width: 74px; height: 74px; border: 1px solid var(--pdp-line); border-radius: 10px; background: #fff; overflow: hidden; cursor: pointer; }
.mc-pdp-thumbs button.is-active { border-color: var(--pdp-orange); box-shadow: 0 0 0 3px rgba(200,111,68,.12); }
.mc-pdp-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.mc-pdp-video-thumb { display: grid; place-items: center; background: var(--pdp-teal); color: #fff; text-decoration: none; font-size: 12px; font-weight: 950; }

.mc-pdp-buybox { position: sticky; top: 104px; padding: 20px; }
.mc-pdp-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.mc-pdp-brand-row img { width: 42px; height: 42px; object-fit: contain; border: 1px solid var(--pdp-line); border-radius: 10px; background: #fff; padding: 5px; }
.mc-pdp-brand-row a { color: var(--pdp-teal); font-size: 13px; font-weight: 950; text-decoration: none; }
.mc-pdp-buybox h1 { margin: 0; font-size: clamp(24px, 2.6vw, 36px); line-height: 1.55; letter-spacing: 0; color: var(--pdp-ink); }
.mc-pdp-title-en { margin: 8px 0 0; color: var(--pdp-orange); font-size: 13px; font-weight: 800; direction: ltr; text-align: right; }
.mc-pdp-summary { margin: 12px 0 16px; color: var(--pdp-muted); font-size: 14px; line-height: 2; }

.mc-pdp-price-card { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 16px 0 10px; padding: 16px; border-radius: 12px; background: linear-gradient(135deg, #f2faf8, #fff8f4); border: 1px solid var(--pdp-line); }
.mc-pdp-price-card strong { display: block; color: var(--pdp-teal); font-size: 24px; font-weight: 1000; }
.mc-pdp-price-card del { color: #9aa5a3; font-size: 13px; }
.mc-pdp-stock { flex: 0 0 auto; border-radius: 999px; background: #e6f7ed; color: #1a7f43; padding: 7px 11px; font-size: 11px; font-weight: 950; }
.mc-pdp-stock[data-stock="limited"] { background: #fff5db; color: #906a00; }
.mc-pdp-stock[data-stock="preorder"] { background: #e8f1ff; color: #1b56b3; }
.mc-pdp-stock[data-stock="out_of_stock"] { background: #fdecec; color: #b42318; }

.mc-pdp-trust-near-price { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 12px 0 18px; }
.mc-pdp-trust-near-price span { position: relative; padding-right: 16px; color: var(--pdp-muted); font-size: 12px; font-weight: 850; }
.mc-pdp-trust-near-price span::before { content: ""; position: absolute; right: 0; top: 50%; width: 7px; height: 7px; border-radius: 999px; background: var(--pdp-orange); transform: translateY(-50%); }

.mc-pdp-option-block { display: grid; gap: 10px; margin-top: 16px; }
.mc-pdp-option-block strong { font-size: 13px; color: var(--pdp-ink); }
.mc-pdp-size-options, .mc-pdp-color-options { display: flex; flex-wrap: wrap; gap: 8px; }
.mc-product-page .mc-variant-choice { min-height: 38px; border: 1px solid var(--pdp-line); border-radius: 999px; background: #fff; color: var(--pdp-ink); padding: 8px 13px; font-family: inherit; font-size: 12px; font-weight: 900; cursor: pointer; }
.mc-product-page .mc-variant-choice.is-active { border-color: var(--pdp-teal); background: var(--pdp-teal); color: #fff; }
.mc-product-page .mc-variant-choice:disabled { opacity: .45; cursor: not-allowed; }
.mc-pdp-color-options .mc-variant-choice { display: inline-flex; align-items: center; gap: 7px; }
.mc-pdp-color-options .mc-variant-choice span { width: 18px; height: 18px; border-radius: 999px; box-shadow: 0 0 0 1px rgba(0,0,0,.1), inset 0 0 0 2px rgba(255,255,255,.65); }

.mc-pdp-cart-form { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(130px, .6fr); gap: 10px; margin-top: 18px; }
.mc-pdp-primary-btn, .mc-pdp-secondary-btn { min-height: 48px; border: 0; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; padding: 10px 16px; font-family: inherit; font-size: 13px; font-weight: 950; text-decoration: none; cursor: pointer; }
.mc-pdp-primary-btn { background: var(--pdp-orange); color: #fff; }
.mc-pdp-primary-btn:disabled { background: #b8c2bf; cursor: not-allowed; }
.mc-pdp-secondary-btn { border: 1px solid var(--pdp-line); background: #fff; color: var(--pdp-teal); }
.mc-pdp-shipping-box { margin-top: 16px; padding: 13px; border-radius: 10px; background: #f7fbfa; border: 1px solid var(--pdp-line); }
.mc-pdp-shipping-box strong { display: block; margin-bottom: 6px; color: var(--pdp-teal); font-size: 13px; }
.mc-pdp-shipping-box p { margin: 0; color: var(--pdp-muted); font-size: 12px; line-height: 1.9; }

.mc-pdp-benefits { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 16px; }
.mc-pdp-benefits div { display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 10px; align-items: center; min-height: 74px; padding: 14px; border: 1px solid var(--pdp-line); border-radius: 12px; background: #fff; box-shadow: 0 12px 32px rgba(20,34,33,.055); }
.mc-pdp-benefits b { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 999px; background: var(--pdp-peach); color: var(--pdp-orange); font-size: 12px; }
.mc-pdp-benefits span { color: var(--pdp-ink); font-size: 13px; font-weight: 850; line-height: 1.8; }

.mc-pdp-content-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 18px; }
.mc-pdp-panel, .mc-pdp-products-section { padding: 18px; }
.mc-pdp-section-head { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--pdp-line); }
.mc-pdp-section-head span { color: var(--pdp-orange); font-size: 11px; font-weight: 950; letter-spacing: 1.2px; text-transform: uppercase; }
.mc-pdp-section-head h2 { margin: 0; color: var(--pdp-ink); font-size: 20px; line-height: 1.5; }
.mc-pdp-suitable-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.mc-pdp-suitable-grid > div { border-radius: 10px; background: #f8fbfa; padding: 14px; }
.mc-pdp-suitable-grid strong { display: block; margin-bottom: 8px; color: var(--pdp-teal); font-size: 13px; }
.mc-pdp-suitable-grid ul { margin: 0; padding: 0 18px 0 0; color: var(--pdp-muted); font-size: 13px; line-height: 2; }

.mc-pdp-spec-table, .mc-pdp-compare-table table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 10px; }
.mc-pdp-spec-table th, .mc-pdp-spec-table td, .mc-pdp-compare-table th, .mc-pdp-compare-table td { border: 1px solid var(--pdp-line); padding: 11px 12px; vertical-align: top; font-size: 13px; line-height: 1.8; }
.mc-pdp-spec-table th, .mc-pdp-compare-table th { width: 32%; background: #f7fbfa; color: var(--pdp-teal); text-align: right; font-weight: 950; }
.mc-pdp-spec-table td, .mc-pdp-compare-table td { color: var(--pdp-ink); }
.mc-pdp-rich-text { color: var(--pdp-muted); font-size: 14px; line-height: 2.1; }
.mc-pdp-rich-text p { margin: 0; }

.mc-pdp-brand-card { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 14px; align-items: center; }
.mc-pdp-brand-card img { width: 92px; height: 92px; object-fit: contain; border: 1px solid var(--pdp-line); border-radius: 14px; background: #fff; padding: 10px; }
.mc-pdp-brand-card h3 { margin: 0 0 8px; font-size: 18px; }
.mc-pdp-brand-card p { margin: 0 0 10px; color: var(--pdp-muted); font-size: 13px; line-height: 2; }
.mc-pdp-brand-card a { color: var(--pdp-orange); font-size: 12px; font-weight: 950; text-decoration: none; }

.mc-pdp-faq { display: grid; gap: 10px; }
.mc-pdp-faq details { border: 1px solid var(--pdp-line); border-radius: 10px; background: #fff; padding: 12px 14px; }
.mc-pdp-faq summary { cursor: pointer; color: var(--pdp-ink); font-size: 13px; font-weight: 950; }
.mc-pdp-faq p { margin: 10px 0 0; padding-top: 10px; border-top: 1px solid var(--pdp-line); color: var(--pdp-muted); font-size: 13px; line-height: 2; }
.mc-pdp-comparison, .mc-pdp-reviews, .mc-pdp-products-section { margin-top: 18px; }
.mc-pdp-compare-table { overflow-x: auto; }
.mc-pdp-compare-table td, .mc-pdp-compare-table th { min-width: 170px; }
.mc-pdp-compare-table a { color: var(--pdp-teal); font-weight: 900; text-decoration: none; }
.mc-pdp-review-list { display: grid; gap: 10px; }
.mc-pdp-review-list article { border: 1px solid var(--pdp-line); border-radius: 10px; background: #fff8f4; padding: 14px; }
.mc-pdp-review-list strong { color: var(--pdp-ink); }
.mc-pdp-review-list span { float: left; color: var(--pdp-orange); font-weight: 950; }
.mc-pdp-review-list p { margin: 8px 0; color: var(--pdp-muted); font-size: 13px; line-height: 2; }
.mc-pdp-review-list small, .mc-pdp-empty { color: var(--pdp-muted); font-size: 12px; }

.milanco-dark .mc-product-page { --pdp-card: #16211f; --pdp-ink: #eef8f5; --pdp-muted: #afbfbc; --pdp-line: rgba(255,255,255,.12); }
.milanco-dark .mc-pdp-gallery, .milanco-dark .mc-pdp-buybox, .milanco-dark .mc-pdp-panel, .milanco-dark .mc-pdp-products-section, .milanco-dark .mc-pdp-benefits div, .milanco-dark .mc-pdp-thumbs button, .milanco-dark .mc-pdp-faq details, .milanco-dark .mc-pdp-review-list article { background: #16211f; }
.milanco-dark .mc-pdp-image-stage, .milanco-dark .mc-pdp-price-card, .milanco-dark .mc-pdp-suitable-grid > div, .milanco-dark .mc-pdp-shipping-box, .milanco-dark .mc-pdp-spec-table th, .milanco-dark .mc-pdp-compare-table th { background: #1b2a27; }

@media (max-width: 980px) {
  .mc-pdp-hero, .mc-pdp-content-grid { grid-template-columns: 1fr; }
  .mc-pdp-buybox { position: static; }
  .mc-pdp-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .mc-product-page { width: min(100% - 20px, 1260px); padding-top: 10px; padding-bottom: 100px; }
  .mc-pdp-gallery, .mc-pdp-buybox, .mc-pdp-panel, .mc-pdp-products-section { border-radius: 12px; padding: 12px; }
  .mc-pdp-image-stage { min-height: 360px; }
  .mc-pdp-image-stage img { max-height: 360px; }
  .mc-pdp-image-stage img.is-zooming { transform: none; }
  .mc-pdp-buybox h1 { font-size: 22px; }
  .mc-pdp-price-card { align-items: flex-start; flex-direction: column; }
  .mc-pdp-trust-near-price, .mc-pdp-benefits, .mc-pdp-suitable-grid, .mc-pdp-cart-form { grid-template-columns: 1fr; }
  .mc-pdp-section-head { align-items: flex-start; flex-direction: column; gap: 4px; }
  .mc-pdp-section-head h2 { font-size: 18px; }
  .mc-pdp-brand-card { grid-template-columns: 70px minmax(0, 1fr); }
  .mc-pdp-brand-card img { width: 70px; height: 70px; }
}


/* ================================================
   MILANCO DESIGN FIX - اعمال شده توسط Claude
   ================================================ */

/* 1. Hero تمام‌عرض */
.mln-retail-hero {
  grid-template-columns: 1fr !important;
  height: 520px !important;
  gap: 0 !important;
}

.mln-retail-hero > *:not(.mln-retail-hero-main) {
  display: none !important;
}

.mln-retail-hero-main {
  width: 100% !important;
  height: 520px !important;
  border-radius: 20px !important;
  overflow: hidden !important;
}

.mln-retail-hero-main > picture,
.mln-retail-hero-main > picture img,
.mln-retail-hero-main > img {
  width: 100% !important;
  height: 520px !important;
  object-fit: cover !important;
  object-position: center top !important;
}

/* 2. متن روی بنر */
.mln-retail-hero-copy {
  padding: 48px 56px !important;
}

.mln-retail-hero-copy h1 {
  font-size: 2.4rem !important;
  line-height: 1.5 !important;
  margin-bottom: 12px !important;
}

/* 3. دسته‌بندی‌ها */
.mln-retail-quick {
  margin-top: 32px !important;
  gap: 16px !important;
}

.mln-retail-quick-card {
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.mln-retail-quick-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,0.16) !important;
}

/* 4. فضای بیشتر */
.mln-retail-duo-row,
.mln-retail-section,
.mln-retail-banners {
  margin-top: 40px !important;
}

/* 5. کارت محصولات */
[class*="product-card"],
[class*="mln-card"] {
  border-radius: 14px !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07) !important;
  transition: box-shadow 0.2s ease, transform 0.2s ease !important;
}

[class*="product-card"]:hover,
[class*="mln-card"]:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.13) !important;
  transform: translateY(-3px) !important;
}