:root {
  color-scheme: light;
  --ink: #171313;
  --muted: #766a66;
  --line: #eadfdc;
  --cream: #fffaf6;
  --ivory: #fffdfb;
  --nude: #ead2cb;
  --rose: #bd7e74;
  --rose-deep: #8e4f49;
  --gold: #b9925c;
  --surface: rgba(255,255,255,.82);
  --surface-strong: rgba(255,255,255,.94);
  --surface-soft: rgba(255,250,246,.84);
  --surface-muted: rgba(255,255,255,.68);
  --backdrop: rgba(23,19,19,.38);
  --shadow: 0 18px 45px rgba(71, 39, 34, .12);
  --soft-shadow: 0 10px 24px rgba(71, 39, 34, .09);
}

.orders-page,
.order-detail-page {
  display: grid;
  gap: 14px;
  padding: 14px 12px calc(28px + env(safe-area-inset-bottom));
  background: #f7f7f7;
  min-height: calc(100vh - 56px);
}
.orders-group {
  display: grid;
  gap: 10px;
}
.orders-group-title {
  margin: 4px 2px 0;
  font-size: 15px;
  font-weight: 800;
  color: #222;
}
.order-card,
.order-detail-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid #ececec;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(20, 20, 20, .04);
}
.order-status-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.order-status-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #f5f5f5;
  color: #222;
  flex: 0 0 auto;
}
.order-status-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.order-status-text {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}
.order-status-text.is-success,
.order-detail-badge.is-success {
  color: #14834c;
}
.order-status-text.is-danger,
.order-detail-badge.is-danger {
  color: #222;
}
.order-status-meta {
  font-size: 12px;
  color: #666;
}
.order-product-link {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.order-product-thumb {
  width: 72px;
  height: 88px;
  border-radius: 14px;
  overflow: hidden;
  background: #f1f1f1;
  border: 1px solid #f0f0f0;
}
.order-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.order-product-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}
.order-brand {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: #666;
}
.order-title {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}
.order-size,
.order-courier {
  font-size: 12px;
  color: #666;
}
.order-arrow {
  color: #777;
  font-size: 15px;
}
.order-detail-link {
  justify-self: start;
  font-size: 12px;
  font-weight: 700;
  color: #ff3f6c;
  text-decoration: none;
}
.order-review,
.order-purchased-for,
.order-detail-block {
  border-top: 1px solid #efefef;
  padding-top: 12px;
}
.order-review-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.order-review-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.order-review-stars {
  display: inline-flex;
  gap: 2px;
  color: #ff3f6c;
  font-size: 14px;
}
.order-review-star {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.order-review-star i {
  pointer-events: none;
}
.order-review-star.is-active {
  color: #ff3f6c;
}
.order-review-text {
  font-size: 13px;
  color: #444;
}
.order-review-text strong {
  color: #14834c;
}
.order-review-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #eef9f1;
  color: #14834c;
  flex: 0 0 auto;
}
.order-review-btn {
  margin-top: 10px;
  justify-self: start;
}
.order-purchased-for {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.order-purchased-copy {
  display: grid;
  gap: 6px;
}
.order-purchased-copy span {
  font-size: 13px;
  color: #444;
}
.order-profile-pill-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.order-profile-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f4f4f4;
  color: #222;
  font-size: 12px;
  font-weight: 700;
}
.order-profile-pill i {
  color: #888;
}
.orders-empty {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
  padding: 32px 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #ececec;
}
.orders-empty p {
  margin: 0;
  color: #666;
}
.order-detail-grid {
  display: grid;
  gap: 12px;
}
.order-detail-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.order-invoice-btn {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.order-detail-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f6f6f6;
  color: #222;
  font-size: 12px;
  font-weight: 700;
}
.order-detail-summary {
  display: grid;
  gap: 8px;
}
.order-detail-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: #444;
}
.order-detail-summary-row strong {
  color: #111;
}
.order-detail-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.order-tracker-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #ffe6ec;
  color: #ff3f6c;
  font-size: 11px;
  font-weight: 700;
}
.order-tracker {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
.order-tracker-step {
  position: relative;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}
.order-tracker-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #d6d6d6;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #ddd;
  margin-top: 2px;
}
.order-tracker-line {
  position: absolute;
  left: 6px;
  top: 18px;
  width: 2px;
  height: calc(100% + 6px);
  background: #e1e1e1;
}
.order-tracker-step.is-completed .order-tracker-dot,
.order-tracker-step.is-current .order-tracker-dot {
  background: #03a685;
  box-shadow: 0 0 0 1px rgba(3, 166, 133, .18);
}
.order-tracker-step.is-completed .order-tracker-line {
  background: #03a685;
}
.order-tracker-copy {
  display: grid;
  gap: 2px;
}
.order-tracker-copy strong {
  font-size: 13px;
  color: #222;
}
.order-tracker-copy span,
.order-tracker-copy small {
  color: #666;
  font-size: 12px;
}
.order-support-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}
.order-support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding-inline: 10px;
}
.order-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.order-review-page {
  min-height: calc(100vh - 56px);
  background: #f5f5f6;
  padding: 14px 12px calc(98px + env(safe-area-inset-bottom));
}
.order-review-form {
  display: grid;
  gap: 14px;
}
.order-review-product-card,
.order-review-panel {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #ededed;
  box-shadow: 0 8px 24px rgba(20, 20, 20, .04);
}
.order-review-product-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
}
.order-review-product-media {
  width: 84px;
  height: 104px;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f3f3;
  border: 1px solid #eee;
}
.order-review-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.order-review-product-copy {
  min-width: 0;
  display: grid;
  gap: 7px;
  align-content: start;
}
.order-review-rating-picker {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.order-review-rating-star {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ff3f6c;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}
.order-review-rating-star i {
  pointer-events: none;
}
.order-review-rating-label {
  margin: 0;
  min-height: 18px;
  color: #ff3f6c;
  font-size: 13px;
  font-weight: 700;
}
.order-review-reward-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #edf9f1;
  color: #14834c;
  font-size: 13px;
  font-weight: 700;
  justify-self: start;
}
.order-review-panel {
  padding: 16px 14px;
  display: grid;
  gap: 12px;
}
.order-review-panel h3 {
  margin: 0;
  font-size: 17px;
  color: #1f1f1f;
}
.order-review-panel p {
  margin: -6px 0 0;
  color: #666;
  font-size: 13px;
}
.order-review-upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.order-review-upload-tile {
  min-height: 126px;
  border: 1.5px dashed #8a57ff;
  border-radius: 18px;
  background: #fff;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 12px;
  text-align: center;
  color: #5332a3;
  cursor: pointer;
}
.order-review-upload-tile input {
  display: none;
}
.order-review-upload-tile i {
  font-size: 20px;
}
.order-review-upload-tile strong {
  font-size: 14px;
  color: #1f1f1f;
}
.order-review-upload-tile span {
  font-size: 12px;
  color: #7a6f94;
}
.order-review-media-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.order-review-media-tile {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #eee;
  background: #f4f4f4;
  min-height: 110px;
}
.order-review-media-tile img,
.order-review-media-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.order-review-media-badge {
  position: absolute;
  left: 8px;
  bottom: 8px;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(23, 19, 19, .72);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}
.order-review-existing-video video {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #eee;
}
.order-review-textarea {
  min-height: 180px;
  resize: vertical;
}
.order-review-help-text {
  margin: 0;
  color: #666;
  font-size: 12px;
  line-height: 1.5;
}
.order-review-errors {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff2f5;
  color: #b42345;
  font-size: 12px;
}
.order-review-errors p {
  margin: 0;
}
.order-review-submit-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
  background: rgba(245,245,246,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid #e8e8ea;
}
.order-review-submit-btn {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  background: #ff3f6c;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.order-review-submit-btn:disabled {
  background: #c7c7cc;
  color: #fff;
  cursor: not-allowed;
}

@media print {
  .top-ribbon,
  .site-header,
  .checkout-header,
  .mobile-bottom-nav,
  .site-footer,
  .order-review,
  .order-purchased-for,
  .order-invoice-btn,
  .order-arrow {
    display: none !important;
  }

  body,
  .order-detail-page {
    background: #fff !important;
    padding: 0 !important;
  }

  .order-card,
  .order-detail-card {
    box-shadow: none !important;
    border-color: #ddd !important;
    break-inside: avoid;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.modal-open {
  overflow: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font: inherit; }

.top-ribbon {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 9px 16px;
  background: #171313;
  color: #fff7ef;
  font-size: 13px;
}
.top-ribbon i { color: var(--gold); margin-right: 6px; }
.page-chrome-hidden {
  display: none !important;
}
.checkout-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: #fff;
  border-bottom: 1px solid rgba(234,223,220,.85);
  box-shadow: 0 4px 16px rgba(71, 39, 34, .05);
}
.checkout-header-main,
.checkout-header-trail {
  display: flex;
  align-items: center;
}
.checkout-header-main {
  gap: 10px;
  min-width: 0;
}
.checkout-header-trail {
  justify-content: flex-end;
}
.back-btn {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  font-size: 22px;
  cursor: pointer;
}
.page-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.checkout-wallet-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff1e5;
  color: #4f2b11;
  border: 1px solid rgba(185,146,92,.28);
  font-size: 13px;
  font-weight: 700;
}
.checkout-wallet-pill i {
  color: #d48f1c;
  font-size: 13px;
}

.header-delivery-strip {
  display: none;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(234,223,220,.72);
}
.header-delivery-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
  color: #4f4340;
  font-size: 12px;
}
.header-delivery-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.header-delivery-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--rose-deep);
  background: rgba(255,255,255,.68);
}
.header-delivery-label,
.header-delivery-location {
  color: var(--muted);
}
.header-delivery-copy strong {
  font-size: 13px;
  color: var(--ink);
}
.header-delivery-location {
  font-size: 13px;
  line-height: 1.3;
  color: var(--ink);
}
.header-delivery-action {
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}
.header-delivery-action i { font-size: 13px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding: 16px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(234,223,220,.8);
  background: rgba(255,250,246,.84);
  backdrop-filter: blur(18px);
}
.header-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.desktop-brand {
  flex: 0 0 auto;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}
.desktop-nav a {
  color: #4f4340;
  font-size: 14px;
  font-weight: 600;
}
.desktop-nav a:hover {
  color: var(--rose-deep);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Playfair Display", serif; font-size: 26px; font-weight: 700; }
.site-search {
  position: relative;
  width: min(100%, 380px);
  flex: 0 1 380px;
  order: 1;
  margin-right: 0;
}
.site-search.is-hidden {
  display: none !important;
}
.site-search-field {
  position: relative;
  display: flex;
  align-items: center;
}
.search-mark {
  position: absolute;
  left: 14px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  color: var(--rose-deep);
  font-size: 15px;
}
.site-search-input {
  width: 100%;
  height: 44px;
  padding: 0 88px 0 36px;
  border: 1px solid rgba(234,223,220,.95);
  border-radius: 14px;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  outline: none;
  font-size: 13px;
  box-shadow: 0 10px 24px rgba(71, 39, 34, .06);
}
.site-search-input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(189,126,116,.12);
}
.search-animated-placeholder {
  position: absolute;
  left: 36px;
  right: 94px;
  top: 50%;
  transform: translateY(-50%);
  color: #8c7f7a;
  font-size: 13px;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transition: opacity .45s ease, transform .45s ease;
}
.search-animated-placeholder.visible {
  opacity: 1;
  transform: translateY(-50%);
}
.search-animated-placeholder.exit {
  opacity: 0;
  transform: translateY(calc(-50% - 6px));
}
.search-tool-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #7e6f6b;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.search-tool-btn:hover {
  background: #fff1ed;
  color: var(--rose-deep);
  transform: translateY(-50%) scale(1.03);
}
.search-tool-btn i { font-size: 13px; }
.search-tool-btn[data-search-mic] { right: 38px; }
.search-tool-camera { right: 8px; }
.search-tool-camera input { display: none; }
.site-search-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: none;
  padding: 10px 0;
  border: 1px solid rgba(234,223,220,.95);
  border-radius: 18px;
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.site-search-dropdown.open { display: block; }
.suggestion {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
}
.suggestion:hover { background: #fff7f3; }
.suggestion strong { color: var(--ink); }
.suggestion span { color: var(--muted); font-size: 13px; }
.suggestion-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
}
.suggestion-meta i { color: var(--rose-deep); font-size: 11px; }
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, #171313, #9b625c 58%, #cda56b);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions { order: 2; }
.icon-btn {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.icon-btn:hover { transform: translateY(-2px); box-shadow: var(--soft-shadow); background: #fff; }
.cart-link { position: relative; }
.cart-link span {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--rose-deep);
  color: white;
  font-size: 11px;
}
.mobile-category-strip,
.global-loader,
.global-loader-spinner,
.mobile-hero-dots {
  display: none;
}
body.cart-page-active .mobile-bottom-nav {
  display: none !important;
}

body.checkout-flow-active .mobile-bottom-nav {
  display: none !important;
}
.btn.is-loading,
.icon-btn.is-loading,
button.is-loading {
  opacity: .72;
  pointer-events: none;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-notification,
.top-account { display: inline-grid; }

.btn {
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--soft-shadow); }
.btn-dark { background: var(--ink); color: white; }
.btn-light { background: white; color: var(--ink); }
.btn-ghost { border: 1px solid rgba(23,19,19,.18); background: rgba(255,255,255,.62); color: var(--ink); }
.btn-rose { background: var(--rose-deep); color: white; }
.btn-small { padding: 10px 16px; font-size: 13px; }
.full { width: 100%; }
.lux-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  padding: 13px 15px;
  color: var(--ink);
  outline: none;
}
.lux-input:focus { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(189,126,116,.12); }

.hero {
  min-height: 78vh;
  position: relative;
  display: grid;
  align-items: center;
  padding: clamp(70px, 10vw, 130px) clamp(20px, 6vw, 90px);
  overflow: hidden;
}
.hero-carousel {
  margin: 0 clamp(18px, 5vw, 76px);
  min-height: 76vh;
  border-radius: 36px;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #f8e7e2, #fffaf6 68%);
}
.hero-carousel-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}
.hero-carousel-slides {
  overflow: hidden;
  border-radius: inherit;
}
.hero-slide {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
  transform: scale(1.02);
  background: linear-gradient(135deg, #f8e7e2, #fffaf6 68%);
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0;
}
.eyebrow { margin: 0 0 10px; text-transform: uppercase; letter-spacing: 0; color: var(--rose-deep); font-size: 12px; font-weight: 800; }
h1, h2, h3 { font-family: "Playfair Display", serif; line-height: 1.04; margin: 0; }
h1 { font-size: clamp(56px, 9vw, 118px); }
h2 { font-size: clamp(32px, 5vw, 58px); }
h3 { font-size: 24px; }
.hero-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.84);
  box-shadow: var(--soft-shadow);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transform: translateY(-50%);
}
.hero-carousel-prev { left: 28px; }
.hero-carousel-next { right: 28px; }
.hero-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.hero-carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.48);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.hero-carousel-dots button.is-active {
  width: 30px;
  background: #fff;
}
.home-category-marquee {
  padding: 10px clamp(18px, 5vw, 76px) 0;
}
.home-category-marquee-shell {
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 22px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.home-category-marquee-shell::-webkit-scrollbar {
  display: none;
}
.home-category-marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 4px 0 8px;
  scroll-behavior: smooth;
}
.home-category-marquee-shell.is-paused {
  cursor: grabbing;
}
.home-category-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(234,223,220,.9);
  box-shadow: 0 8px 20px rgba(71, 39, 34, .06);
  transition: transform .25s ease, box-shadow .25s ease, color .25s ease;
}
.home-category-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
}
.home-category-thumb {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 4px 12px rgba(71, 39, 34, .08);
}
.home-category-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-category-name {
  font-size: 14px;
  font-weight: 800;
  color: #514543;
  transition: color .25s ease;
}
.home-category-item:hover .home-category-thumb {
  transform: scale(1.06);
}
.home-category-item:hover .home-category-name {
  color: var(--rose-deep);
}
.home-feed-section {
  padding: 0 clamp(18px, 5vw, 76px) clamp(42px, 7vw, 86px);
}
.home-feed-sticky-shell {
  position: sticky;
  top: 88px;
  z-index: 12;
  display: grid;
  gap: 12px;
  padding: 0 0 14px;
  background: linear-gradient(180deg, rgba(255,250,246,.96), rgba(255,250,246,.88) 72%, rgba(255,250,246,0));
  backdrop-filter: blur(12px);
}
.home-feed-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}
.home-feed-intro-copy {
  display: grid;
  gap: 4px;
}
.home-feed-intro h2,
.home-feed-intro p {
  margin: 0;
}
.home-feed-count-badge {
  flex: 0 0 auto;
  align-self: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(185,146,92,.24);
  background: linear-gradient(135deg, rgba(23,19,19,.96), rgba(74,52,33,.92));
  color: #fff5e6;
  box-shadow: 0 12px 30px rgba(23, 19, 19, .16);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}
.home-filter-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.home-filter-trigger {
  min-height: 52px;
  border: 1px solid rgba(234,223,220,.92);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,243,239,.94));
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--soft-shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.home-filter-trigger i {
  color: var(--rose-deep);
}
.home-filter-trigger:hover {
  transform: translateY(-1px);
}
.home-filter-trigger.is-active {
  border-color: rgba(185,146,92,.45);
  background: linear-gradient(180deg, rgba(31,26,22,.98), rgba(74,52,33,.96));
  color: #fff6ea;
  box-shadow: 0 14px 28px rgba(74, 52, 33, .18);
}
.home-filter-trigger.is-active i {
  color: #d9b26d;
}
.home-filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.home-filter-pill {
  border: 0;
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(189,126,116,.12);
  color: var(--rose-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.home-feed-grid {
  margin-top: 10px;
}
.home-feed-loader,
.home-feed-end {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.home-feed-loader-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(189,126,116,.2);
  border-top-color: var(--rose-deep);
  animation: loaderSpin 1s linear infinite;
}
.home-filter-modal-card {
  width: min(440px, 100%);
  padding: 22px 20px 20px;
  border-radius: 30px;
  border: 1px solid rgba(234,223,220,.92);
  background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(255,248,243,.98));
  box-shadow: 0 28px 70px rgba(35, 24, 21, .18);
}
.home-filter-modal-head {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}
.home-filter-modal-head h3,
.home-filter-modal-head p {
  margin: 0;
}
.home-filter-panel {
  display: grid;
  gap: 10px;
}
.home-filter-panel[hidden] {
  display: none !important;
}
.home-filter-check-grid {
  display: grid;
  gap: 10px;
}
.home-filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(234,223,220,.92);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--soft-shadow);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.home-filter-check input {
  width: 18px;
  height: 18px;
  accent-color: #171313;
}
.home-filter-check-all {
  margin-bottom: 2px;
}
.home-filter-option {
  border: 1px solid rgba(234,223,220,.92);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  text-align: left;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--soft-shadow);
}
.home-filter-option.active {
  border-color: rgba(185,146,92,.38);
  background: linear-gradient(180deg, rgba(23,19,19,.98), rgba(74,52,33,.96));
  color: #fff7ef;
}
.home-advanced-filter-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.home-filter-actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.home-filter-actions .btn {
  flex: 1 1 0;
}

.section, .promise-marquee, .shop-layout, .product-detail, .cart-layout, .checkout-layout, .dashboard-grid, .info-grid, .faq-list, .coupon-grid, .split-story, .newsletter, .testimonials, .instagram-section {
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 76px);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.section-head a { color: var(--rose-deep); font-weight: 800; }
.promise-marquee {
  padding-top: 20px;
  padding-bottom: 16px;
}
.promise-marquee-shell {
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(234,223,220,.88);
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(250,240,228,.92));
  box-shadow: var(--soft-shadow);
}
.promise-marquee-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  padding: 14px 18px;
  animation: promiseTicker 22s linear infinite;
}
.promise-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  color: #473a35;
  white-space: nowrap;
}
.promise-marquee-item i {
  color: var(--gold);
  font-size: 16px;
}
.category-tile, .dashboard-card, .info-grid article, .coupon-card, .testimonials article, .summary-card {
  border: 1px solid rgba(234,223,220,.85);
  background: rgba(255,255,255,.68);
  box-shadow: var(--soft-shadow);
}
.category-tile i, .info-grid i, .coupon-card i { color: var(--gold); font-size: 22px; }

.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.category-tile { border-radius: 24px; padding: 24px; min-height: 180px; transition: transform .25s ease, box-shadow .25s ease; }
.category-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.category-tile p { color: var(--muted); margin-bottom: 0; }
.blush-band { background: linear-gradient(135deg, #fff7f3, #efd5cf); }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.product-card {
  --product-accent: #8e4f49;
  --product-accent-soft: rgba(142,79,73,.12);
  --product-accent-strong: rgba(142,79,73,.18);
  --product-accent-text: #8e4f49;
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,250,246,.94));
  border: 1px solid rgba(234,223,220,.92);
  box-shadow: var(--soft-shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card[data-category="makeup"] {
  --product-accent: #b44766;
  --product-accent-soft: rgba(180,71,102,.12);
  --product-accent-strong: rgba(180,71,102,.18);
  --product-accent-text: #9a264a;
}
.product-card[data-category="skincare"] {
  --product-accent: #1f8f7a;
  --product-accent-soft: rgba(31,143,122,.12);
  --product-accent-strong: rgba(31,143,122,.18);
  --product-accent-text: #176f5f;
}
.product-card[data-category="haircare"] {
  --product-accent: #7b58b0;
  --product-accent-soft: rgba(123,88,176,.12);
  --product-accent-strong: rgba(123,88,176,.18);
  --product-accent-text: #684498;
}
.product-card[data-category="fragrance"] {
  --product-accent: #c3832b;
  --product-accent-soft: rgba(195,131,43,.12);
  --product-accent-strong: rgba(195,131,43,.18);
  --product-accent-text: #a06318;
}
.product-card[data-category="beauty-tools"] {
  --product-accent: #3b6ab2;
  --product-accent-soft: rgba(59,106,178,.12);
  --product-accent-strong: rgba(59,106,178,.18);
  --product-accent-text: #2d5591;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-media {
  position: relative;
  display: block;
  aspect-ratio: 0.76;
  overflow: hidden;
  background: linear-gradient(180deg, #f7ebe4, #efe1d8);
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .35s ease; }
.product-card:hover .product-media img { transform: scale(1.08); filter: saturate(1.08); }
.badge {
  border-radius: 999px;
  padding: 7px 12px;
  color: white;
  background: linear-gradient(135deg, rgba(23,19,19,.92), rgba(101,72,44,.9));
  box-shadow: 0 12px 22px rgba(23, 19, 19, .18);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
}
.product-badge-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  max-width: calc(100% - 104px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-discount-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f9f58, #0c7d46);
  color: #fff;
  box-shadow: 0 12px 22px rgba(12, 125, 70, .2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .03em;
}
.quick-actions {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  flex-direction: column;
  display: flex;
  gap: 8px;
  opacity: 1;
  transform: none;
}
.quick-actions button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.58);
  background: rgba(255,255,255,.92);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(71, 39, 34, .12);
  display: inline-grid;
  place-items: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.quick-actions button:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 14px 26px rgba(71, 39, 34, .16);
}
.quick-actions button i {
  font-size: 14px;
}
.quick-actions button.is-active,
.quick-actions button[aria-pressed="true"],
.icon-btn[data-wishlist].is-active,
.icon-btn[data-wishlist][aria-pressed="true"] {
  color: #ff3f6c;
  background: #fff0f4;
  border-color: rgba(255, 63, 108, .28);
  box-shadow: 0 12px 24px rgba(255, 63, 108, .16);
}
.product-overlay-actions {
  pointer-events: auto;
}
.product-info {
  display: grid;
  gap: 8px;
  padding: 16px 16px 18px;
}
.product-brand { color: var(--product-accent-text); text-transform: uppercase; font-size: 12px; font-weight: 800; margin: 0 0 5px; }
.product-info h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.product-card-copy {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  min-height: 38px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.product-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--product-accent-soft);
  color: var(--product-accent-text);
  font-weight: 800;
  font-size: 12px;
}
.rating span { color: var(--muted); font-weight: 500; }
.product-offer-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(16, 124, 65, .1);
  color: #107c41;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}
.price-stack {
  display: grid;
  gap: 4px;
}
.price-row, .detail-price, .order-line { display: flex; gap: 10px; align-items: center; justify-content: space-between; margin-top: 0; }
.price-row strong {
  font-size: 20px;
  line-height: 1;
}
.product-savings {
  margin: 0;
  color: #107c41;
  font-size: 12px;
  font-weight: 800;
}
.product-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
  padding-top: 2px;
}
.product-action-btn {
  min-height: 42px;
  border: 1px solid rgba(23,19,19,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.86);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.product-action-btn i {
  color: var(--product-accent-text);
}
.product-action-btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--product-accent), #171313);
  color: #fff9f0;
  box-shadow: 0 12px 22px var(--product-accent-strong);
}
.product-action-btn-primary i {
  color: #fff9f0;
}
del { color: var(--muted); }

.split-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.split-story > div:first-child { max-width: 580px; }
.story-image { min-height: 480px; border-radius: 30px; background-size: cover; background-position: center; box-shadow: var(--shadow); }
.offer-banner {
  margin: 40px clamp(18px, 5vw, 76px);
  border-radius: 34px;
  padding: clamp(30px, 5vw, 58px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: white;
  background: radial-gradient(circle at top left, #c29386, #2b2020 62%);
}
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonials article { border-radius: 24px; padding: 24px; }
.stars { color: var(--gold); }
.instagram-section { background: #fff; }
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.insta-grid img { aspect-ratio: 1; object-fit: cover; border-radius: 24px; }
.newsletter { text-align: center; background: linear-gradient(135deg, #f4ded8, #fffaf6); }
.newsletter form { max-width: 560px; display: flex; gap: 10px; margin: 24px auto 0; }

.page-hero {
  padding: clamp(58px, 8vw, 100px) clamp(18px, 6vw, 90px);
  background: linear-gradient(135deg, #f6ded8, #fffaf6 72%);
}
.page-hero.compact h1 { font-size: clamp(42px, 6vw, 72px); }
.offers-hero, .about-hero { min-height: 360px; }
.shop-layout { display: grid; grid-template-columns: 290px 1fr; gap: 28px; align-items: start; }
.filters-panel {
  position: sticky;
  top: 94px;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 20px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--soft-shadow);
}
.filters-panel form { display: grid; gap: 14px; }
.filters-panel label { color: var(--muted); font-size: 13px; font-weight: 800; }
.range-row, .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.check-line { display: flex; gap: 8px; align-items: center; }
.shop-toolbar { display: flex; justify-content: space-between; color: var(--muted); margin-bottom: 18px; }

.product-detail { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 42px; align-items: start; }
.product-gallery-shell {
  display: grid;
  gap: 14px;
}
.product-gallery-stage {
  position: relative;
  padding: 18px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(247,232,226,.82));
  border: 1px solid rgba(234,223,220,.9);
  box-shadow: var(--shadow);
}
.product-gallery-topline {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.product-gallery-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(23,19,19,.86);
  color: #fff7ef;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.product-gallery-chip-soft {
  background: rgba(255,255,255,.78);
  color: var(--rose-deep);
}
.viewer {
  position: relative;
  aspect-ratio: 1;
  border-radius: 32px;
  overflow: hidden;
  background: #f2dfd6;
  box-shadow: var(--shadow);
  perspective: 900px;
}
.viewer img, .viewer video { width: 100%; height: 100%; object-fit: cover; transition: transform .12s ease; }
.viewer-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
}
.thumbs { display: flex; gap: 10px; margin-top: 14px; }
.thumbs button { position: relative; border: 1px solid var(--line); border-radius: 16px; padding: 0; overflow: hidden; width: 82px; aspect-ratio: 1; cursor: pointer; background: #f5e8e1; }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }
.play-dot {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(23,19,19,.22);
  font-size: 18px;
}
.product-copy { display: grid; gap: 18px; }
.product-copy-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(234,223,220,.88);
  background: rgba(255,255,255,.82);
  box-shadow: var(--soft-shadow);
}
.product-copy-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-copy-topline .eyebrow {
  margin: 0;
}
.product-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-copy-hero h1 {
  font-size: clamp(32px, 4.8vw, 56px);
}
.product-short-copy {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.detail-price strong { font-size: 34px; }
.stock { font-weight: 800; }
.stock.in { color: #27714a; }
.stock.out { color: #a33d3d; }
.product-buy-panel {
  gap: 16px;
}
.product-field-label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.product-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.qty-row { display: flex; width: 160px; }
.qty-row button { width: 44px; border: 1px solid var(--line); background: #fff; cursor: pointer; }
.qty-row input { border-radius: 0; text-align: center; }
.detail-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.detail-actions .btn {
  flex: 1 1 180px;
  min-height: 52px;
}
.icon-btn.big { width: 50px; height: 50px; }
.coupon-highlight { border: 1px dashed var(--gold); border-radius: 18px; padding: 14px; color: var(--rose-deep); background: #fff; font-weight: 800; }
.accordion details { border-top: 1px solid var(--line); padding: 18px 0; }
.accordion summary { cursor: pointer; font-weight: 900; }
.review-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}
.review-list { display: grid; gap: 14px; }
.review-card, .review-form {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 20px;
  background: rgba(255,255,255,.76);
  box-shadow: var(--soft-shadow);
}
.review-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--gold);
}
.review-head strong { color: var(--ink); }
.review-card h3 { font-size: 22px; margin-top: 10px; }
.review-images {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.review-images img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
}
.review-form {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 12px;
}
.review-page {
  display: grid;
  gap: 14px;
  padding: 14px 12px calc(28px + env(safe-area-inset-bottom));
  min-height: calc(100vh - 56px);
  background: #f7f7f7;
}
.review-page-shell {
  display: grid;
  gap: 14px;
}
.review-product-card {
  border: 1px solid #ececec;
  border-radius: 22px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 6px 18px rgba(20, 20, 20, .04);
}
.review-product-link {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}
.review-product-thumb {
  width: 76px;
  height: 92px;
  border-radius: 16px;
  overflow: hidden;
  background: #f2f2f2;
  border: 1px solid #eee;
}
.review-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-product-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}
.review-product-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.review-product-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f6f6f6;
  color: #4b4b4b;
  font-size: 11px;
  font-weight: 700;
}
.review-product-meta-chip i {
  color: #ff3f6c;
}
.review-form-page {
  position: static;
  top: auto;
  background: #fff;
  border-radius: 28px;
  padding: 18px 16px 16px;
}
.review-form-block {
  display: grid;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
}
.review-form-block:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}
.review-form-intro {
  gap: 4px;
}
.review-form-intro h3 {
  margin: 0;
  font-size: 20px;
  color: #1f1f1f;
}
.review-form-intro p {
  margin: 0;
  font-size: 13px;
  color: #666;
}
.review-field-label {
  font-size: 13px;
  font-weight: 700;
  color: #222;
}
.review-textarea {
  min-height: 152px;
}
.review-form-tip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 0 2px;
  color: #666;
  font-size: 12px;
  line-height: 1.5;
}
.review-form-tip i {
  color: #ff3f6c;
  margin-top: 1px;
}
.review-submit-bar {
  position: sticky;
  bottom: calc(10px + env(safe-area-inset-bottom));
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid #f0d7de;
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 30px rgba(20, 20, 20, .08);
  backdrop-filter: blur(10px);
}
.review-submit-bar .form-note {
  margin: 0;
  min-height: 18px;
  font-size: 12px;
}
.review-submit-btn {
  width: 100%;
  min-height: 48px;
}
.review-image-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.review-image-preview-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee;
  background: #f6f6f6;
  box-shadow: 0 6px 16px rgba(20, 20, 20, .05);
}
.review-image-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-image-preview-badge {
  position: absolute;
  left: 8px;
  bottom: 8px;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(23, 19, 19, .72);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}
.review-image-preview-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 19, 19, .74);
  color: #fff;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .16);
}
.review-image-preview-remove i {
  pointer-events: none;
}
.review-images-existing {
  margin-top: 4px;
}
.review-rating-picker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 0 4px;
}
.review-rating-star {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 63, 108, .08);
  color: #c9b8ba;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.review-rating-star i {
  pointer-events: none;
}
.review-rating-star.is-active {
  color: #ff3f6c;
  background: rgba(255, 63, 108, .14);
}
.review-rating-star:hover {
  transform: translateY(-1px);
}
.review-rating-select {
  display: none;
}
.review-form textarea { resize: vertical; }
.file-drop {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 124px;
  border: 1px dashed var(--gold);
  border-radius: 20px;
  background: #fffaf6;
  color: var(--rose-deep);
  font-weight: 800;
  cursor: pointer;
  text-align: center;
}
.file-drop input { display: none; }
.before-after { background: #fff; }
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.proof-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #f5e8e1;
  box-shadow: var(--soft-shadow);
}
.proof-card img, .proof-card video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.proof-card span {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1;
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255,255,255,.82);
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-layout, .checkout-layout { display: grid; grid-template-columns: 1fr 370px; gap: 28px; align-items: start; }
.cart-page {
  display: grid;
  gap: 16px;
  padding: 18px clamp(14px, 4vw, 28px) calc(116px + env(safe-area-inset-bottom));
}
.cart-address-bar,
.bag-header,
.cart-card,
.cart-offers-card,
.cart-summary-card {
  border: 1px solid rgba(234,223,220,.92);
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--soft-shadow);
}
.cart-address-bar,
.bag-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
}
.cart-address-copy h2,
.bag-header h3 {
  margin: 0;
  font-size: 18px;
}
.cart-address-copy p:last-child,
.bag-header p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.cart-tabs {
  display: flex;
  gap: 6px;
  padding: 8px 10px;
  position: sticky;
  top: 56px;
  background: #fffaf7;
  z-index: 50;
}
.cart-tab {
  flex: 1;
  min-width: 0;
  min-height: 34px;
  border: 1px solid rgba(223,223,223,.92);
  border-radius: 14px;
  background: #f5f5f5;
  color: #555;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .01em;
  padding: 8px 3px;
  text-align: center;
  white-space: nowrap;
  overflow: visible;
  text-overflow: unset;
  cursor: pointer;
}
.cart-tab.is-active {
  background: #ffe6ec;
  border-color: rgba(255,63,108,.28);
  color: #ff3f6c;
  font-weight: 600;
}
.cart-tab-long {
  font-size: 10px;
}
.offers-tab {
  font-size: 10px;
}
.savings-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 999px;
  background: #e9f8ec;
  color: #188847;
  font-size: 13px;
  font-weight: 800;
}
.bag-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bag-header-actions .icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}
.bag-header-actions [data-cart-delete-selected] {
  color: #cc3f58;
}
.cart-panel {
  display: block;
}
.cart-panel.is-active {
  display: block;
}
.cart-section {
  scroll-margin-top: 120px;
}
.cart-card {
  padding: 14px 14px 6px;
}
.cart-items {
  display: grid;
}
.cart-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 4px 18px;
}
.cart-item.is-selected .item-image-wrap {
  box-shadow: 0 0 0 2px rgba(240,98,146,.22);
}
.cart-item-separator {
  border-top: 1px dashed rgba(142,79,73,.22);
  margin: 0 4px;
}
.item-image-wrap {
  position: relative;
}
.item-image {
  width: 92px;
  height: 112px;
  border-radius: 18px;
  object-fit: cover;
  background: #f5e8e1;
}
.cart-item-check {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
}
.cart-item-check input {
  position: absolute;
  opacity: 0;
}
.cart-item-check span {
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 6px;
  border: 1.5px solid rgba(23,19,19,.24);
  background: rgba(255,255,255,.94);
  box-shadow: 0 6px 12px rgba(23,19,19,.12);
}
.cart-item-check input:checked + span {
  background: #ff4f8a;
  border-color: #ff4f8a;
  position: relative;
}
.cart-item-check input:checked + span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.item-info {
  display: grid;
  gap: 10px;
  min-width: 0;
}
.item-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.item-title-row h3 {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.3;
}
.item-title-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.cart-item-remove {
  border: 0;
  padding: 0;
  background: transparent;
  color: #c7465e;
  font-size: 15px;
  cursor: pointer;
}
.item-meta-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.item-meta-pill {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(23,19,19,.08);
  border-radius: 12px;
  background: rgba(248,244,242,.94);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
}
.item-qty-pill {
  position: relative;
  padding-right: 28px;
}
.item-qty-pill select {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  padding-right: 2px;
}
.item-qty-pill i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 11px;
}
.item-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.item-price-row strong {
  font-size: 17px;
}
.item-price-row del {
  font-size: 13px;
}
.item-discount {
  color: #e64678;
  font-size: 13px;
  font-weight: 800;
}
.item-return-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c6652;
  font-size: 12px;
  font-weight: 700;
}
.cart-summary-card {
  padding: 20px;
}
.summary-card { border-radius: 26px; padding: 22px; position: sticky; top: 94px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); }
.summary-row.total { font-weight: 900; font-size: 20px; border-bottom: 0; }
.cart-coupon-form {
  margin: 12px 0;
}
.cart-coupon-input-wrap {
  position: relative;
}
.cart-coupon-input {
  padding-right: 52px;
  border-radius: 18px;
}
.cart-coupon-apply {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #171313;
  color: #fff7ef;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(23, 19, 19, .18);
}
.cart-coupon-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cart-coupon-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(15,159,88,.08);
  color: #0c7d46;
  font-size: 13px;
  font-weight: 800;
}
.cart-coupon-chip button {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 50%;
  background: rgba(12,125,70,.12);
  color: #0c7d46;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}
.cart-offers-head h3 {
  margin: 0 0 6px;
}
.cart-offers-head p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
}
.sticky-order-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  gap: 10px;
  padding: 12px clamp(14px, 4vw, 28px) calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,250,246,.98);
  border-top: 1px solid rgba(234,223,220,.92);
  box-shadow: 0 -18px 30px rgba(23,19,19,.08);
}
.sticky-order-strip {
  min-height: 42px;
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(234,223,220,.92);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  box-shadow: var(--soft-shadow);
}
.sticky-order-strip strong {
  font-size: 13px;
}
.sticky-order-strip span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.sticky-order-btn {
  width: 100%;
  min-height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff4f8a, #ff6b9d);
  color: #fff;
  box-shadow: 0 16px 28px rgba(255,79,138,.28);
  font-size: 16px;
  font-weight: 900;
}
.checkout-form { border: 1px solid var(--line); border-radius: 28px; padding: 24px; background: rgba(255,255,255,.75); box-shadow: var(--soft-shadow); }
.payment-methods { display: grid; gap: 10px; margin: 18px 0; }
.checkout-address-layout {
  align-items: start;
}
.checkout-stage {
  display: grid;
  gap: 18px;
}
.checkout-address-panel,
.checkout-address-editor {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--soft-shadow);
}
.checkout-address-head,
.checkout-address-editor-head,
.checkout-payment-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.checkout-address-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.checkout-address-card {
  border: 1px solid rgba(234,223,220,.95);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,249,244,.94));
  padding: 18px;
  display: grid;
  gap: 14px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.checkout-address-card.is-selected {
  border-color: rgba(185,146,92,.48);
  box-shadow: 0 16px 36px rgba(74, 52, 33, .14);
  transform: translateY(-2px);
}
.checkout-address-card.is-default {
  background: linear-gradient(180deg, rgba(255,250,242,.99), rgba(255,246,235,.95));
}
.checkout-address-select {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: start;
  cursor: pointer;
}
.checkout-address-select input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.checkout-address-radio {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  border: 2px solid rgba(142,79,73,.35);
  background: #fff;
  position: relative;
}
.checkout-address-card.is-selected .checkout-address-radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--rose-deep);
}
.checkout-address-copy {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 14px;
}
.checkout-address-topline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.checkout-address-topline strong {
  color: var(--ink);
  font-size: 16px;
}
.checkout-address-tag,
.checkout-address-default {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 800;
}
.checkout-address-tag {
  background: rgba(142,79,73,.08);
  color: var(--rose-deep);
}
.checkout-address-default {
  background: rgba(185,146,92,.15);
  color: #8b642c;
}
.checkout-address-copy p {
  margin: 0;
  color: var(--ink);
  line-height: 1.45;
}
.checkout-address-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.checkout-address-delete {
  color: #c44747;
}
.checkout-address-empty {
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 34px 22px;
  border: 1px dashed rgba(185,146,92,.4);
  border-radius: 24px;
  background: rgba(255,252,247,.9);
  text-align: center;
}
.checkout-payment-panel {
  display: grid;
  gap: 16px;
}
.checkout-address-note {
  margin: 0;
}
.checkout-address-page {
  padding: 0 clamp(18px, 5vw, 76px) clamp(42px, 7vw, 86px);
}
.checkout-address-editor {
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.checkout-flow-page {
  width: min(640px, 100%);
  margin: 0 auto;
  padding: 20px 16px 148px;
  display: grid;
  gap: 16px;
}
.checkout-flow-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.checkout-flow-header h1 {
  margin: 0;
  font-size: 18px;
  letter-spacing: .08em;
}
.checkout-flow-back {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(234,223,220,.92);
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  box-shadow: var(--soft-shadow);
}
.checkout-progress {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
}
.checkout-progress-step {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: #9c8f89;
  font-size: 12px;
  font-weight: 800;
}
.checkout-progress-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(156,143,137,.4);
  display: inline-grid;
  place-items: center;
  background: #fff;
}
.checkout-progress-step.is-complete,
.checkout-progress-step.is-active {
  color: #15803d;
}
.checkout-progress-step.is-complete .checkout-progress-icon,
.checkout-progress-step.is-active .checkout-progress-icon {
  border-color: #15803d;
}
.checkout-progress-step.is-complete .checkout-progress-icon {
  background: #15803d;
  color: #fff;
}
.checkout-progress-line {
  height: 2px;
  background: rgba(156,143,137,.28);
}
.checkout-progress-line.is-complete {
  background: #15803d;
}
.checkout-flow-card {
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(234,223,220,.92);
  padding: 18px;
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 14px;
}
.checkout-flow-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.checkout-flow-card-head h2 {
  margin: 4px 0 0;
  font-size: 18px;
}
.checkout-flow-eyebrow {
  margin: 0;
  color: #9c8f89;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.checkout-change-btn {
  border: 0;
  background: transparent;
  color: #ff3f8a;
  font-size: 14px;
  font-weight: 900;
  padding: 0;
}
.checkout-selected-address {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(31,176,97,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,255,250,.98));
}
.checkout-selected-address-empty {
  border-style: dashed;
  border-color: rgba(156,143,137,.35);
  background: #fffdfa;
}
.checkout-selected-address-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.checkout-selected-address-top strong {
  font-size: 16px;
}
.checkout-selected-address-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.checkout-selected-address p,
.checkout-selected-address-phone {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.checkout-address-picker {
  display: grid;
  gap: 10px;
  padding-top: 2px;
}
.checkout-address-picker-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(234,223,220,.92);
  background: #fff9f6;
  cursor: pointer;
}
.checkout-address-picker-item.is-selected {
  border-color: #ff7bab;
  box-shadow: 0 12px 24px rgba(255,79,138,.12);
}
.checkout-address-picker-item input {
  margin-top: 3px;
  accent-color: #ff4f8a;
}
.checkout-address-picker-copy {
  display: grid;
  gap: 4px;
}
.checkout-address-picker-copy strong {
  color: var(--ink);
  font-size: 14px;
}
.checkout-address-picker-copy span,
.checkout-address-picker-copy small,
.checkout-address-picker-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.checkout-add-address {
  min-height: 50px;
  border-radius: 18px;
  border: 1px dashed rgba(255,79,138,.42);
  color: #ff3f8a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 900;
  background: rgba(255,79,138,.05);
}
.checkout-address-empty-state,
.checkout-empty-copy {
  color: var(--muted);
  font-size: 14px;
}
.checkout-delivery-list {
  display: grid;
  gap: 12px;
}
.checkout-delivery-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
}
.checkout-delivery-thumb {
  width: 64px;
  height: 78px;
  border-radius: 16px;
  overflow: hidden;
  background: #f8f1eb;
}
.checkout-delivery-thumb img,
.checkout-delivery-thumb .image-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checkout-delivery-copy {
  display: grid;
  gap: 4px;
}
.checkout-delivery-copy strong {
  font-size: 14px;
}
.checkout-delivery-copy span {
  color: #15803d;
  font-size: 13px;
  font-weight: 700;
}
.checkout-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 42;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,250,246,.98);
  border-top: 1px solid rgba(234,223,220,.92);
  box-shadow: 0 -18px 30px rgba(23,19,19,.08);
  display: grid;
  gap: 10px;
}
.checkout-sticky-btn {
  width: 100%;
  min-height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff4f8a, #ff6b9d);
  color: #fff;
  box-shadow: 0 16px 28px rgba(255,79,138,.28);
  font-size: 16px;
  font-weight: 900;
}
.payment-method-list {
  gap: 12px;
}
.checkout-mini-items,
.checkout-price-summary {
  display: grid;
  gap: 10px;
}
.checkout-mini-item,
.checkout-price-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.checkout-price-summary span {
  color: var(--muted);
}
.checkout-price-summary .is-total {
  padding-top: 10px;
  border-top: 1px solid rgba(234,223,220,.92);
}
.checkout-price-summary .is-total span,
.checkout-price-summary .is-total strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}
.checkout-offers-card {
  gap: 8px;
}
.payment-hero-card {
  display: grid;
  gap: 14px;
  background:
    radial-gradient(circle at top right, rgba(255,111,145,.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,247,243,.98));
}
.payment-hero-copy {
  display: grid;
  gap: 6px;
}
.payment-hero-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}
.payment-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.payment-hero-trust span,
.payment-info-tile {
  border: 1px solid rgba(234,223,220,.92);
  background: rgba(255,255,255,.88);
  border-radius: 16px;
  padding: 12px 14px;
}
.payment-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}
.payment-hero-trust i {
  color: var(--rose-deep);
}
.payment-gateway-note {
  margin: 0;
  color: #b42318;
}
.payment-screen {
  display: grid;
  gap: 16px;
}
.payment-accordion {
  display: grid;
  gap: 12px;
}
.payment-accordion-item {
  border: 1px solid rgba(234,223,220,.92);
  border-radius: 20px;
  background: #fffaf7;
  overflow: hidden;
}
.payment-accordion-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
}
.payment-accordion-trigger span {
  display: grid;
  gap: 4px;
}
.payment-accordion-trigger strong {
  font-size: 15px;
}
.payment-accordion-trigger small {
  color: var(--muted);
  font-size: 12px;
}
.payment-accordion-trigger i {
  color: #8f857f;
  transition: transform .2s ease;
}
.payment-accordion-item.is-open .payment-accordion-trigger i {
  transform: rotate(180deg);
}
.payment-accordion-panel {
  display: grid;
  gap: 10px;
  padding: 0 16px 16px;
  border-top: 1px solid rgba(234,223,220,.75);
}
.payment-option-card {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(234,223,220,.92);
  background: #fff;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.payment-option-card-featured {
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,250,246,.98));
}
.payment-option-card-inline-note {
  min-height: 58px;
}
.payment-option-radio {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
}
.payment-option-radio input {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
}
.payment-custom-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(143,133,127,.45);
  background: #fff;
  position: relative;
}
.payment-option-card:has(input:checked) {
  border-color: rgba(21,128,61,.42);
  background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(247,255,250,.98));
  box-shadow: 0 12px 24px rgba(21,128,61,.10);
}
.payment-option-card:has(input:checked) .payment-custom-radio {
  border-color: #15803d;
}
.payment-option-card:has(input:checked) .payment-custom-radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #15803d;
}
.payment-option-copy {
  display: grid;
  gap: 4px;
}
.payment-option-copy strong {
  font-size: 14px;
}
.payment-option-copy small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
.payment-option-icon,
.payment-option-indicator {
  color: #8f857f;
  display: inline-grid;
  place-items: center;
}
.payment-upi-pay-btn {
  display: none;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff4f8a, #ff6b9d);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.payment-upi-pay-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}
.payment-option-card:has(input:checked) .payment-upi-pay-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.payment-option-card:has(.payment-upi-pay-btn) {
  grid-template-columns: auto auto 1fr auto auto;
}
.payment-option-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #fff3ef;
}
.payment-app-badge {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
}
.payment-app-badge-phonepe { background: #6b3fd0; }
.payment-app-badge-gpay { background: #1a73e8; }
.payment-app-badge-amazon { background: #ff9900; }
.payment-app-badge-imobile { background: #e53935; }
.payment-placeholder-card {
  min-height: 56px;
  border-radius: 16px;
  border: 1px dashed rgba(143,133,127,.34);
  background: #fffdfb;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  font-size: 13px;
}
.payment-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.payment-info-tile {
  display: grid;
  gap: 6px;
}
.payment-info-tile strong {
  font-size: 14px;
}
.payment-info-tile small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.checkout-payment-sticky {
  gap: 8px;
}
.payment-sticky-summary {
  border: 0;
  cursor: pointer;
}
.payment-sticky-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}
.payment-sticky-copy span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.payment-sticky-summary i {
  transition: transform .2s ease;
}
.payment-sticky-summary[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.payment-sticky-panel {
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(234,223,220,.92);
  box-shadow: var(--soft-shadow);
  padding: 14px;
}

.coupon-grid, .dashboard-grid, .info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.coupon-card, .dashboard-card, .info-grid article { border-radius: 24px; padding: 24px; }
.faq-list { max-width: 900px; margin: auto; }
.faq-list details { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 20px; margin-bottom: 12px; }
.image-fallback { display: grid; place-items: center; height: 100%; color: var(--rose-deep); font-size: 46px; }
.image-fallback.large { min-height: 500px; }

.site-footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
  padding: 54px clamp(18px, 5vw, 76px);
  background: var(--ink);
  color: #fff7ef;
}
.site-footer a { display: block; margin: 8px 0; color: #f4dcd4; }
.footer-brand { color: white; }
.socials { display: flex; gap: 14px; font-size: 22px; }

.modal-shell {
  position: fixed;
  z-index: 80;
  transition: opacity .2s ease, transform .25s ease;
}
.modal-shell {
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(23,19,19,.38);
  padding: 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.modal-shell.open { display: grid; }
.modal-card {
  position: relative;
  width: min(460px, 100%);
  max-height: min(88vh, 760px);
  overflow-y: auto;
  overscroll-behavior: contain;
  border-radius: 30px;
  background: var(--cream);
  padding: 28px;
  box-shadow: var(--shadow);
}
.location-modal-card {
  width: min(420px, 100%);
  border-radius: 28px;
  padding: 22px 20px 24px;
}
.location-modal-head h3 {
  font-size: 24px;
  margin-bottom: 18px;
}
.location-modal-body {
  display: grid;
  gap: 14px;
}
.location-pincode-input {
  height: 48px;
  border-radius: 16px;
}
.location-text-link,
.location-text-option {
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}
.location-text-link {
  color: #d94f8b;
}
.location-text-option {
  color: var(--ink);
}
.location-divider {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 4px 0;
}
.location-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid rgba(234,223,220,.9);
}
.location-divider span {
  position: relative;
  z-index: 1;
  padding: 0 12px;
  background: var(--cream);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.location-saved-block {
  display: grid;
  gap: 12px;
}
.location-saved-block h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}
.location-saved-list {
  display: grid;
  gap: 10px;
}
.saved-address-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(234,223,220,.95);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
}
.saved-address-option input {
  margin-top: 3px;
  accent-color: #d94f8b;
}
.saved-address-copy {
  display: grid;
  gap: 4px;
}
.saved-address-copy strong {
  font-size: 14px;
}
.saved-address-meta {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
}
.saved-address-copy p {
  margin: 0;
  color: #4f4340;
  font-size: 13px;
  line-height: 1.4;
}
.location-empty {
  margin: 0;
  padding: 14px;
  border: 1px dashed rgba(185,146,92,.38);
  border-radius: 18px;
  color: var(--muted);
  font-size: 13px;
}
.account-modal-card {
  width: min(420px, 100%);
  padding: 22px 20px 20px;
}
.share-modal-card {
  width: min(420px, 100%);
  padding: 24px 20px 20px;
}
.share-modal-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.share-modal-head h3,
.share-modal-head p {
  margin: 0;
}
.share-modal-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
}
.share-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.share-option {
  min-height: 92px;
  border: 1px solid rgba(234,223,220,.92);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--soft-shadow);
}
.share-option i {
  font-size: 20px;
  color: var(--rose-deep);
}
.account-panel {
  display: grid;
  gap: 16px;
}
.account-page {
  display: grid;
  gap: 18px;
  padding: 18px clamp(16px, 5vw, 28px) calc(110px + env(safe-area-inset-bottom));
}
.account-page-hero {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(234,223,220,.92);
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(247,229,223,.82));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.account-page-hero-top {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}
.account-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #171313, #9b625c 58%, #cda56b);
  color: white;
  font-size: 28px;
}
.account-hero-copy {
  min-width: 0;
}
.account-hero-copy h1 {
  font-size: clamp(28px, 7vw, 40px);
  margin-bottom: 6px;
  word-break: break-word;
}
.account-hero-copy p {
  margin: 0;
  color: #5f5552;
  font-size: 14px;
  line-height: 1.45;
}
.account-page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.account-page-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(234,223,220,.95);
  color: #4f4340;
  font-size: 13px;
  font-weight: 700;
}
.account-panel .btn i {
  font-size: 14px;
}
.account-shopping-for {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid rgba(234,223,220,.95);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
}
.account-shopping-for span {
  color: var(--muted);
  font-size: 13px;
}
.account-shopping-for strong {
  font-size: 15px;
}
.account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.account-shortcut,
.account-settings {
  border: 1px solid rgba(234,223,220,.95);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  font-weight: 700;
  cursor: pointer;
  min-width: 0;
}
.account-shortcut i,
.account-settings i {
  color: var(--rose-deep);
  font-size: 16px;
}
.account-settings {
  justify-content: center;
}
.dashboard-card {
  min-width: 0;
  overflow-wrap: anywhere;
}
.dashboard-address-card {
  display: grid;
  gap: 16px;
}
.dashboard-address-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.dashboard-address-head h3,
.dashboard-address-head p {
  margin: 0;
}
.dashboard-address-list {
  display: grid;
  gap: 12px;
}
.profile-address-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(234,223,220,.95);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
}
.profile-address-card.is-default {
  border-color: rgba(189,126,116,.34);
  box-shadow: inset 0 0 0 1px rgba(189,126,116,.16);
}
.profile-address-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.profile-address-top strong {
  font-size: 15px;
}
.profile-address-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(189,126,116,.12);
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.profile-address-card p,
.profile-address-name {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.profile-address-name {
  color: var(--ink);
  font-weight: 700;
}
.profile-address-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.profile-address-actions .btn {
  min-height: 36px;
}
.profile-address-delete {
  border-color: rgba(163,61,61,.2);
  color: #a33d3d;
}
.profile-address-modal {
  width: min(520px, 100%);
}
.profile-address-form {
  gap: 12px;
}
.profile-address-default {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}
.profile-address-default input {
  accent-color: #d94f8b;
}
.dashboard-card h3,
.dashboard-card p,
.account-shortcut span,
.account-page-band span {
  overflow-wrap: anywhere;
}
.order-line {
  flex-wrap: wrap;
}
.account-page-band {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(234,223,220,.95);
  background: rgba(255,255,255,.84);
}
.account-page-guest {
  padding-top: 18px;
}
.modal-close { position: absolute; right: 16px; top: 16px; }
.auth-tabs { display: flex; gap: 8px; margin-bottom: 18px; }
.auth-tabs button { border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; background: white; cursor: pointer; }
.auth-tabs .active { background: var(--ink); color: white; }
.auth-form { display: none; gap: 12px; }
.auth-form.active { display: grid; }
.password-field {
  position: relative;
  display: block;
}
.password-field .lux-input {
  width: 100%;
  padding-right: 48px;
}
.password-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--muted);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.form-note { color: var(--rose-deep); font-weight: 700; }
.suggestion img { width: 58px; height: 68px; object-fit: cover; border-radius: 12px; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 90;
  transform: translate(-50%, 18px);
  opacity: 0;
  background: var(--ink);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  pointer-events: none;
  transition: .25s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.mobile-panel { display: none; }
.mobile-bottom-nav { display: none; }
.mobile-bottom-label {
  display: block;
  margin: 0;
  line-height: 1;
  font-size: 11px;
  font-weight: 700;
  color: inherit;
  opacity: 1;
  -webkit-text-fill-color: currentColor;
  pointer-events: none;
}
.reveal { opacity: 1; transform: translateY(0); }
html.reveal-ready .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
html.reveal-ready .reveal.visible { opacity: 1; transform: translateY(0); }
.global-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(255,250,246,.6);
  backdrop-filter: blur(14px);
  color: var(--ink);
}
.global-loader.is-visible {
  display: grid;
}
.global-loader-card {
  position: relative;
  min-width: min(240px, 100%);
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 26px 28px 22px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,248,244,.78));
  box-shadow: 0 24px 60px rgba(71, 39, 34, .16);
  overflow: hidden;
}
.global-loader-card::before {
  content: "";
  position: absolute;
  inset: -30% 40% auto -30%;
  height: 70%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.45), rgba(255,255,255,0));
  transform: rotate(18deg);
  animation: loaderShimmer 2.3s ease-in-out infinite;
}
.global-loader-spinner {
  position: relative;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
}
.global-loader-ring,
.global-loader-core {
  position: absolute;
  border-radius: 50%;
}
.global-loader-ring-outer {
  inset: 0;
  border: 3px solid rgba(189,126,116,.16);
  border-top-color: var(--rose-deep);
  border-right-color: var(--gold);
  animation: loaderSpin 1.15s linear infinite;
}
.global-loader-ring-inner {
  inset: 12px;
  border: 3px solid rgba(185,146,92,.14);
  border-bottom-color: var(--gold);
  border-left-color: var(--rose-deep);
  animation: loaderSpinReverse 1.45s linear infinite;
}
.global-loader-core {
  inset: 24px;
  background: radial-gradient(circle at 30% 30%, #fff, #f3d8d1 55%, #d7ab9e 100%);
  box-shadow: 0 0 24px rgba(189,126,116,.3);
  animation: loaderPulse 1.6s ease-in-out infinite;
}
.global-loader-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  text-align: center;
}
.global-loader-copy strong {
  font-size: 16px;
  letter-spacing: .02em;
}
.global-loader-copy span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.profile-shell {
  width: min(100%, 520px);
  margin: 0 auto;
  display: grid;
  gap: 16px;
  padding: 18px 16px calc(108px + env(safe-area-inset-bottom));
}
.profile-shell-guest {
  min-height: 55vh;
  align-content: start;
}
.profile-card,
.cosmetic-profile-card {
  border: 1px solid rgba(234,223,220,.92);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,248,244,.9));
  box-shadow: var(--soft-shadow);
}
.profile-card {
  padding: 18px;
}
.profile-premium-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px;
  gap: 16px;
  padding: 22px 20px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(235,196,120,.32), transparent 34%),
    linear-gradient(135deg, #0f0d0d 0%, #1b1717 58%, #533b17 100%);
  color: #fff5d5;
  box-shadow: 0 24px 42px rgba(21, 17, 14, .26);
  overflow: hidden;
}
.profile-premium-banner::after {
  content: "";
  position: absolute;
  inset: auto -18% -42% 36%;
  height: 180px;
  background: radial-gradient(circle, rgba(234,197,124,.24), transparent 62%);
}
.profile-premium-copy,
.cosmetic-profile-head {
  position: relative;
  z-index: 1;
}
.profile-premium-label {
  margin: 0 0 8px;
  color: #d8b26a;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  font-weight: 800;
}
.profile-premium-banner h1,
.cosmetic-profile-head h1 {
  font-size: clamp(28px, 7vw, 38px);
}
.profile-premium-banner h1 {
  margin-bottom: 10px;
  color: #fff9ea;
}
.profile-premium-text,
.cosmetic-profile-head p,
.profile-card-note {
  margin: 0;
  color: #d4c6b3;
  font-size: 14px;
  line-height: 1.5;
}
.profile-card-note {
  color: var(--muted);
}
.profile-premium-btn {
  margin-top: 16px;
  padding-inline: 18px;
  background: linear-gradient(135deg, #e6bd6c, #c89334);
  color: #1a1410;
  box-shadow: none;
}
.profile-premium-crown {
  position: relative;
  z-index: 1;
  width: 74px;
  height: 74px;
  border-radius: 24px;
  align-self: start;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(247,216,154,.24), rgba(169,118,33,.12));
  border: 1px solid rgba(236,197,117,.28);
}
.profile-premium-crown i {
  font-size: 32px;
  color: #f1c768;
}
.profile-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.profile-section-head span {
  font-size: 18px;
  font-weight: 800;
}
.profile-address-manager-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}
.profile-panel-close {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(234,223,220,.92);
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #4c403d;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--soft-shadow);
}
.profile-shopping-row {
  display: flex;
  align-items: center;
  gap: 18px;
}
.profile-shopping-persona,
.profile-add-tile {
  display: grid;
  justify-items: center;
  gap: 8px;
}
.profile-add-button,
.profile-pill-button {
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
}
.profile-avatar-ring,
.profile-add-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.profile-avatar-ring {
  background: linear-gradient(135deg, #141111, #5f4330 64%, #d2a25e);
  color: #fff7ef;
  font-size: 28px;
  font-weight: 800;
}
.profile-avatar-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-add-circle {
  border: 1.5px dashed rgba(185,146,92,.5);
  background: linear-gradient(180deg, rgba(255,250,243,.94), rgba(247,238,226,.84));
  color: var(--gold);
  font-size: 24px;
}
.profile-shopping-persona strong,
.profile-add-tile span {
  font-size: 14px;
  font-weight: 700;
}
.profile-pill-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.profile-beauty-pill,
.profile-status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
}
.profile-beauty-pill {
  background: #141111;
  color: #fff6dd;
}
.profile-pill-button {
  background: #141111;
  color: #fff6dd;
}
.profile-status-chip {
  background: rgba(185,146,92,.14);
  color: #8c6128;
}
.profile-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.profile-quick-action {
  min-height: 88px;
  padding: 14px 10px;
  border-radius: 24px;
  border: 1px solid rgba(234,223,220,.92);
  background: rgba(255,255,255,.92);
  box-shadow: var(--soft-shadow);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}
.profile-quick-action-button {
  border: 1px solid rgba(234,223,220,.92);
  font: inherit;
  cursor: pointer;
}
.profile-quick-action i {
  font-size: 18px;
  color: var(--rose-deep);
}
.profile-accordion-stack {
  display: grid;
  gap: 12px;
}
.profile-expandable {
  border: 1px solid rgba(234,223,220,.92);
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}
.profile-expandable summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
}
.profile-expandable summary::-webkit-details-marker {
  display: none;
}
.profile-expandable summary i {
  transition: transform .2s ease;
}
.profile-expandable[open] summary i {
  transform: rotate(180deg);
}
.profile-expandable-body {
  display: grid;
  gap: 0;
  padding: 0 18px 14px;
}
.profile-expandable-body a {
  padding: 13px 0;
  border-top: 1px solid rgba(234,223,220,.85);
  color: #493f3b;
  font-weight: 600;
}
.profile-inline-link {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-top: 1px solid rgba(234,223,220,.85);
  background: transparent;
  color: #493f3b;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.profile-inline-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.profile-inline-toggle i {
  transition: transform .2s ease;
}
.profile-inline-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.profile-settings-form {
  display: grid;
  gap: 14px;
}
.profile-switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.profile-switch-row strong,
.profile-mini-item strong,
.profile-address-topline strong {
  display: block;
  font-size: 15px;
}
.profile-switch-row small,
.profile-mini-item small,
.profile-address-item p {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.profile-address-item p {
  margin: 0;
}
.profile-switch {
  position: relative;
  display: inline-flex;
}
.profile-switch input {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.profile-switch-slider {
  position: relative;
  width: 54px;
  height: 32px;
  border-radius: 999px;
  background: #d8cdc6;
  transition: background .2s ease;
}
.profile-switch-slider::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(23,19,19,.16);
  transition: transform .2s ease;
}
.profile-switch input:checked + .profile-switch-slider {
  background: linear-gradient(135deg, #161211, #c3923f);
}
.profile-switch input:checked + .profile-switch-slider::after {
  transform: translateX(22px);
}
.profile-inline-message {
  margin: 0;
  color: #8c6128;
  font-size: 13px;
  font-weight: 700;
}
.profile-mini-list {
  display: grid;
  gap: 12px;
}
.profile-mini-item,
.profile-address-item {
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,252,247,.92);
  border: 1px solid rgba(234,223,220,.88);
}
.profile-mini-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.profile-mini-item span {
  font-size: 14px;
  font-weight: 800;
}
.profile-address-item {
  display: grid;
  gap: 8px;
}
.profile-address-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.profile-footer-links {
  display: grid;
  gap: 12px;
  padding: 4px 4px 0;
}
.profile-footer-links a {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(23,19,19,.08);
  font-size: 14px;
  font-weight: 600;
  color: #453c39;
}
.profile-logout-form {
  margin-top: 2px;
}
.profile-logout-btn {
  min-height: 52px;
  background: linear-gradient(135deg, #c63b3b, #8f1717);
  color: #fff5f5;
  box-shadow: 0 14px 28px rgba(154, 24, 24, .22);
}
.profile-logout-btn:hover {
  box-shadow: 0 18px 32px rgba(154, 24, 24, .28);
}
.profile-brand-footer {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin: 2px 0 0;
  text-align: center;
}
.profile-brand-footer-name {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: lowercase;
  animation: profileBrandFloat 2.8s ease-in-out infinite;
}
.profile-brand-footer-version {
  color: #9b8b84;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.profile-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: -4px;
}
.profile-social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(234,223,220,.92);
  background: rgba(255,255,255,.92);
  color: #4c403d;
  display: inline-grid;
  place-items: center;
  box-shadow: var(--soft-shadow);
}
.profile-social-row i {
  font-size: 16px;
}
.profile-address-manager {
  scroll-margin-top: 92px;
}
.profile-detail-panel {
  scroll-margin-top: 92px;
}
.profile-account-form,
.profile-form-stack {
  display: grid;
  gap: 14px;
}
.profile-account-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 14px;
  margin-bottom: 8px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(233,191,112,.2), transparent 36%),
    linear-gradient(135deg, #171212 0%, #221818 58%, #5e4320 100%);
  color: #fff4dc;
  border: 1px solid rgba(233,191,112,.16);
  box-shadow: 0 18px 38px rgba(23, 18, 18, .2);
}
.profile-account-hero-main {
  display: grid;
  gap: 14px;
}
.profile-account-badge {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: rgba(244,208,141,.14);
  border: 1px solid rgba(244,208,141,.2);
  color: #f0ca82;
  font-size: 16px;
}
.profile-account-identity {
  display: flex;
  align-items: center;
  gap: 14px;
}
.profile-account-hero-art {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(247,216,154,.2), rgba(169,118,33,.08));
  border: 1px solid rgba(236,197,117,.24);
}
.profile-account-hero-art i {
  font-size: 28px;
  color: #f1c768;
}
.profile-account-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #141111, #5f4330 64%, #d2a25e);
  color: #fff7ef;
  font-size: 22px;
  font-weight: 800;
  flex: 0 0 auto;
}
.profile-account-avatar-upload {
  position: relative;
  cursor: pointer;
}
.profile-account-avatar-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.profile-avatar-edit-badge {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #171212, #c49343);
  color: #fff8e7;
  border: 2px solid #fffaf6;
  display: inline-grid;
  place-items: center;
  font-size: 11px;
  box-shadow: 0 8px 18px rgba(23, 18, 18, .18);
}
.profile-account-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-account-copy {
  display: grid;
  gap: 4px;
}
.profile-account-copy strong {
  font-size: 16px;
  color: #fff9ea;
}
.profile-account-copy span {
  color: #d8c5aa;
  font-size: 13px;
}
.profile-form-shell {
  gap: 12px;
}
.profile-form-block {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,252,247,.92);
  border: 1px solid rgba(234,223,220,.88);
}
.profile-form-block-label {
  margin: 0;
  color: #8c6128;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.profile-detail-list {
  display: grid;
  gap: 10px;
}
.profile-form-field {
  display: grid;
  gap: 8px;
}
.profile-form-field > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.profile-form-field .lux-input {
  background: rgba(255,255,255,.96);
  border-color: rgba(234,223,220,.95);
}
.profile-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid rgba(234,223,220,.85);
}
.profile-detail-row:first-child {
  border-top: 0;
}
.profile-detail-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.profile-detail-row strong,
.profile-detail-row a {
  text-align: right;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.profile-detail-row-soft {
  padding: 16px;
  border-top: 0;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,252,247,.96), rgba(251,245,235,.9));
  border: 1px solid rgba(234,223,220,.88);
}
.profile-account-save {
  min-height: 52px;
  gap: 10px;
  background: linear-gradient(135deg, #171212, #c49343);
  color: #fff8e7;
  box-shadow: 0 16px 32px rgba(126, 88, 24, .22);
}
.profile-account-save:hover {
  box-shadow: 0 20px 36px rgba(126, 88, 24, .28);
}
.cosmetic-profile-card {
  padding: 20px;
}
.cosmetic-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #544945;
  font-size: 14px;
  font-weight: 700;
}
.cosmetic-profile-head {
  margin-bottom: 20px;
}
.cosmetic-profile-head p {
  color: var(--muted);
}
.cosmetic-profile-form,
.cosmetic-profile-grid {
  display: grid;
  gap: 14px;
}
.cosmetic-profile-grid label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #413836;
}
@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

@keyframes promiseTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes profileBrandFloat {
  0%, 100% { transform: translateY(0); opacity: .82; }
  50% { transform: translateY(-3px); opacity: 1; }
}
@keyframes loaderSpinReverse {
  to { transform: rotate(-360deg); }
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(.92); opacity: .92; }
  50% { transform: scale(1); opacity: 1; }
}
@keyframes loaderShimmer {
  0% { transform: translateX(-110%) rotate(18deg); }
  100% { transform: translateX(260%) rotate(18deg); }
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --ink: #f8efeb;
    --muted: #beaead;
    --line: rgba(255, 228, 223, .12);
    --cream: #130f11;
    --ivory: #181315;
    --nude: #2f2528;
    --rose: #d7988d;
    --rose-deep: #f0b1a6;
    --gold: #d8b27a;
    --surface: rgba(29,22,25,.92);
    --surface-strong: rgba(23,18,20,.97);
    --surface-soft: rgba(19,15,17,.9);
    --surface-muted: rgba(32,24,27,.88);
    --backdrop: rgba(5,4,5,.62);
    --shadow: 0 18px 40px rgba(0, 0, 0, .34);
    --soft-shadow: 0 12px 28px rgba(0, 0, 0, .24);
  }

  body {
    background:
      radial-gradient(circle at top, rgba(74, 43, 52, .22), transparent 36%),
      linear-gradient(180deg, #161012 0%, #130f11 55%, #100c0e 100%);
  }

  .top-ribbon,
  .site-footer,
  .btn-dark,
  .toast {
    background: #0f0b0d;
    color: #fff3ef;
  }

  .site-header,
  .mobile-bottom-nav,
  .global-loader {
    background: rgba(19,15,17,.92);
    border-color: var(--line);
  }

  .checkout-header {
    background: rgba(19,15,17,.96);
    border-bottom-color: var(--line);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
  }
  .checkout-wallet-pill {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.08);
    color: var(--ink);
  }
  .checkout-wallet-pill i {
    color: var(--gold);
  }

  .header-delivery-strip,
  .location-divider::before,
  .summary-row,
  .accordion details,
  .site-header,
  .mobile-bottom-nav {
    border-color: var(--line);
  }

  .header-delivery-copy,
  .saved-address-copy p,
  .account-page-badge,
  .account-hero-copy p,
  .desktop-nav a,
  .search-animated-placeholder,
  .search-tool-btn,
  .site-footer a,
  .product-info p:not(.product-brand),
  .rating span,
  del,
  .form-note,
  .location-divider span,
  .location-empty,
  .account-shopping-for span,
  .category-tile p,
  .suggestion span,
  .shop-toolbar,
  .filters-panel label,
  .dashboard-card p,
  .dashboard-card h3,
  .summary-card p,
  .summary-card label,
  .faq-list p,
  .account-page-band span,
  .mobile-bottom-link span,
  .mobile-bottom-label {
    color: var(--muted);
  }

  .header-delivery-icon,
  .icon-btn,
  .site-search-input,
  .site-search-dropdown,
  .lux-input,
  .home-filter-trigger,
  .home-filter-option,
  .mobile-category-pill,
  .home-category-item,
  .promise-marquee-shell,
  .category-tile,
  .dashboard-card,
  .info-grid article,
  .coupon-card,
  .testimonials article,
  .summary-card,
  .product-card,
  .filters-panel,
  .gallery-shell,
  .review-card,
  .cart-line,
  .checkout-form,
  .checkout-address-panel,
  .checkout-address-editor,
  .faq-list details,
  .saved-address-option,
  .account-page-hero,
  .account-shopping-for,
  .account-shortcut,
  .account-settings,
  .account-page-band,
  .modal-card,
  .auth-tabs button,
  .thumbs button,
  .qty-row button,
  .search-tool-btn:hover {
    background: var(--surface);
    border-color: var(--line);
    color: var(--ink);
    box-shadow: var(--soft-shadow);
  }

  .hero-carousel,
  .hero-slide,
  .newsletter,
  .offer-banner,
  .blush-band {
    background: linear-gradient(135deg, #22191c, #171214 68%);
  }

  .global-loader-card {
    border-color: rgba(255,255,255,.08);
    background: linear-gradient(180deg, rgba(27,21,24,.94), rgba(19,15,17,.9));
    box-shadow: 0 26px 70px rgba(0, 0, 0, .34);
  }

  .global-loader-card::before {
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.12), rgba(255,255,255,0));
  }

  .global-loader-core {
    background: radial-gradient(circle at 30% 30%, #fff2ef, #f0b1a6 55%, #8e4f49 100%);
    box-shadow: 0 0 24px rgba(240,177,166,.28);
  }

  .brand-mark,
  .account-avatar {
    background: linear-gradient(135deg, #f0b1a6, #8e4f49 55%, #d8b27a);
    color: #120d0f;
  }

  .site-search-input::placeholder,
  .lux-input::placeholder {
    color: #9f8f8d;
  }

  .btn-light,
  .auth-tabs .active {
    background: #f7ede9;
    color: #171313;
  }

  .btn-ghost {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.12);
  }

  .product-media,
  .gallery-main,
  .before-after,
  .cart-line img,
  .suggestion:hover {
    background: #22191b;
  }

  .hero-slide img,
  .product-media img,
  .suggestion img,
  .cart-line img,
  .thumbs img,
  .gallery-main img,
  video {
    filter: none;
  }

  .hero-carousel-arrow {
    background: rgba(255,255,255,.08);
    color: var(--ink);
  }

  .hero-carousel-dots button {
    background: rgba(255,255,255,.22);
  }

  .hero-carousel-dots button.is-active,
  .mobile-bottom-link-badge span,
  .cart-link span {
    background: var(--rose-deep);
    color: #171313;
  }

  .mobile-bottom-link,
  .mobile-bottom-link i,
  .mobile-bottom-link span,
  .mobile-bottom-label,
  .auth-tabs button,
  .location-text-option,
  .suggestion strong,
  .review-head strong,
  .account-shortcut span,
  .header-delivery-location,
  .header-delivery-copy strong,
  .site-footer h4,
  .site-footer p,
  .section h1,
  .section h2,
  .section h3,
  .section h4,
  .section strong,
  .product-title,
  .price-row,
  .summary-row,
  .stock,
  .coupon-highlight,
  .auth-form h3,
  .location-modal-head h3,
  .location-saved-block h4 {
    color: var(--ink);
  }

  .location-text-link,
  .product-brand,
  .section-head a,
  .header-delivery-icon,
  .account-shortcut i,
  .account-settings i,
  .suggestion-meta i {
    color: var(--rose-deep);
  }

  .profile-address-card {
    background: rgba(255,255,255,.04);
    border-color: var(--line);
  }

  .profile-address-badge {
    background: rgba(240,177,166,.14);
    color: var(--rose-deep);
  }

  .profile-card,
  .cosmetic-profile-card,
  .profile-quick-action,
  .profile-expandable,
  .profile-mini-item,
  .profile-address-item,
  .profile-account-hero,
  .profile-form-block,
  .profile-detail-row-soft,
  .share-option {
    background: var(--surface);
    border-color: var(--line);
    color: var(--ink);
  }

  .profile-footer-links a,
  .cosmetic-back-link,
  .profile-expandable-body a,
  .profile-inline-link {
    color: var(--ink);
  }

  .home-feed-sticky-shell {
    background: linear-gradient(180deg, rgba(19,15,17,.96), rgba(19,15,17,.88) 72%, rgba(19,15,17,0));
  }

  .home-filter-pill {
    background: rgba(240,177,166,.14);
    color: var(--rose-deep);
  }

  .profile-panel-close {
    background: var(--surface);
    border-color: var(--line);
    color: var(--ink);
  }

  .profile-account-copy strong,
  .profile-account-copy span {
    color: var(--ink);
  }

  .profile-account-badge {
    color: var(--gold);
    border-color: rgba(216,178,122,.24);
  }

  .profile-premium-banner {
    background:
      radial-gradient(circle at top right, rgba(235,196,120,.18), transparent 32%),
      linear-gradient(135deg, #0f0c0d 0%, #161114 56%, #4d3817 100%);
    color: #fff2d2;
  }

  .share-option i {
    color: var(--rose-deep);
  }

  .profile-premium-text {
    color: #d7c7b0;
  }

  .profile-switch-slider {
    background: rgba(255,255,255,.18);
  }

  .profile-footer-links a {
    border-bottom-color: rgba(255,255,255,.08);
  }

  .profile-social-row a {
    background: var(--surface);
    border-color: var(--line);
    color: var(--ink);
  }

  .profile-brand-footer-version {
    color: #bdaea7;
  }
}

@media (max-width: 1100px) {
  .header-main-row { justify-content: space-between; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .product-detail, .cart-layout, .checkout-layout, .shop-layout { grid-template-columns: 1fr; }
  .filters-panel, .summary-card, .review-form { position: static; }
}
@media (max-width: 760px) {
  body { padding-bottom: 78px; }
  .top-ribbon { display: none; }
  .header-delivery-strip {
    display: flex;
    padding: 0 0 8px;
  }
  .header-delivery-copy {
    font-size: 12px;
  }
  .header-delivery-copy strong {
    font-size: 13px;
  }
  .location-modal-card {
    width: min(100%, 100%);
    max-height: min(86vh, 100%);
    padding: 20px 16px 22px;
    border-radius: 24px 24px 0 0;
  }
  .modal-shell[data-location-modal].open {
    align-items: end;
    padding: 0;
  }
  .account-modal-card {
    width: min(100%, 100%);
    max-height: min(86vh, 100%);
    border-radius: 24px 24px 0 0;
    padding: 20px 16px 20px;
  }
  .modal-shell[data-account-modal].open {
    align-items: end;
    padding: 0;
  }
  .site-header {
    padding: 12px 14px;
    gap: 8px;
  }
  .desktop-brand,
  .desktop-nav,
  .top-cart {
    display: none;
  }
  .header-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
  }
  .header-tools {
    flex: 1 1 auto;
    min-width: 0;
    gap: 6px;
    margin-left: 0;
  }
  .site-search {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
  }
  .site-search-input {
    height: 40px;
    padding-right: 82px;
  }
  .nav-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: nowrap;
  }
  .top-notification,
  .top-account,
  .nav-actions a[aria-label="Wishlist"] { display: inline-grid; }
  .nav-actions .icon-btn {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
  }
  .mobile-category-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 14px 8px;
    scrollbar-width: none;
  }
  .mobile-category-strip::-webkit-scrollbar {
    display: none;
  }
  .mobile-category-pill {
    flex: 0 0 auto;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(234,223,220,.95);
    background: rgba(255,255,255,.88);
    box-shadow: var(--soft-shadow);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
  }
  .home-category-marquee {
    padding: 8px 14px 0;
  }
  .home-feed-section {
    padding: 0 14px 28px;
  }
  .home-feed-sticky-shell {
    top: 78px;
    gap: 10px;
    padding-bottom: 12px;
  }
  .home-feed-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .home-feed-count-badge {
    align-self: flex-start;
    padding: 8px 12px;
  }
  .home-feed-intro h2 {
    font-size: clamp(28px, 8vw, 36px);
  }
  .home-filter-bar {
    gap: 8px;
  }
  .home-filter-trigger {
    min-height: 46px;
    border-radius: 16px;
    padding-inline: 8px;
    font-size: 12px;
    flex-direction: column;
    gap: 4px;
  }
  .home-filter-pills {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  .home-filter-pills::-webkit-scrollbar {
    display: none;
  }
  .home-filter-pill {
    flex: 0 0 auto;
  }
  .home-filter-modal-card {
    width: min(100%, 100%);
    max-height: min(86vh, 100%);
    border-radius: 24px 24px 0 0;
    padding: 20px 16px 20px;
  }
  .modal-shell[data-home-filter-modal].open {
    align-items: end;
    padding: 0;
  }
  .home-filter-actions {
    flex-direction: column;
  }
  .home-filter-check {
    padding: 13px 14px;
    border-radius: 16px;
    font-size: 13px;
  }
  .checkout-address-head,
  .checkout-address-editor-head,
  .checkout-payment-head {
    flex-direction: column;
    align-items: stretch;
  }
  .checkout-address-panel,
  .checkout-address-editor,
  .checkout-payment-panel {
    padding: 18px;
    border-radius: 22px;
  }
  .checkout-address-card {
    padding: 15px;
    border-radius: 20px;
  }
  .payment-info-grid {
    grid-template-columns: 1fr;
  }
  .checkout-address-select {
    grid-template-columns: 18px 1fr;
    gap: 10px;
  }
  .checkout-address-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .home-category-marquee-shell {
    scrollbar-width: none;
  }
  .home-category-marquee-shell::-webkit-scrollbar {
    display: none;
  }
  .home-category-marquee-track {
    gap: 10px;
    padding: 2px 0 8px;
  }
  .home-category-item {
    padding: 6px 12px 6px 6px;
  }
  .home-category-thumb {
    width: 34px;
    height: 34px;
  }
  .home-category-name {
    font-size: 13px;
  }
  .hero {
    min-height: 230px;
    padding: 0 0 56px;
    margin: 0 14px 14px;
    border-radius: 28px;
  }
  .hero-slide img {
    object-position: center;
  }
  .hero-carousel-arrow {
    top: auto;
    bottom: 20px;
    transform: none;
    width: 42px;
    height: 42px;
  }
  .hero-carousel-prev {
    left: 18px;
  }
  .hero-carousel-next {
    right: 18px;
  }
  .hero-carousel-dots {
    bottom: 32px;
    gap: 8px;
  }
  .hero-carousel-dots button {
    width: 8px;
    height: 8px;
  }
  .hero-carousel-dots button.is-active {
    width: 22px;
  }
  .testimonials, .coupon-grid, .dashboard-grid, .info-grid, .site-footer { grid-template-columns: 1fr; }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .promise-marquee {
    padding-top: 14px;
    padding-bottom: 12px;
  }
  .promise-marquee-track {
    gap: 14px;
    padding: 12px 16px;
    animation-duration: 18s;
  }
  .promise-marquee-item {
    font-size: 12px;
  }
  .product-detail {
    gap: 18px;
    padding: 16px 14px 28px;
  }
  .product-gallery-stage {
    padding: 14px;
    border-radius: 28px;
  }
  .product-gallery-topline {
    top: 14px;
    left: 14px;
    right: 14px;
  }
  .product-gallery-chip {
    padding: 7px 10px;
    font-size: 10px;
  }
  .viewer {
    border-radius: 24px;
    min-height: 0;
  }
  .viewer-badge {
    left: 12px;
    bottom: 12px;
    padding: 7px 10px;
    font-size: 11px;
  }
  .thumbs {
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  .thumbs::-webkit-scrollbar {
    display: none;
  }
  .thumbs button {
    width: 68px;
    min-width: 68px;
    border-radius: 14px;
  }
  .product-copy {
    gap: 14px;
  }
  .product-copy-card {
    padding: 18px;
    border-radius: 24px;
  }
  .product-copy-hero h1 {
    font-size: clamp(28px, 8vw, 38px);
  }
  .product-copy-topline {
    align-items: flex-start;
  }
  .product-header-actions {
    gap: 8px;
  }
  .product-header-actions .icon-btn.big {
    width: 42px;
    height: 42px;
  }
  .product-short-copy {
    font-size: 14px;
  }
  .product-meta-row {
    align-items: flex-start;
  }
  .detail-price {
    align-items: baseline;
  }
  .detail-price strong {
    font-size: 28px;
  }
  .product-controls-row {
    align-items: stretch;
    flex-direction: column;
  }
  .qty-row {
    width: 100%;
  }
  .qty-row button {
    width: 52px;
  }
  .detail-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .detail-actions .btn {
    width: 100%;
    min-height: 50px;
    padding-inline: 12px;
    font-size: 14px;
  }
  .coupon-highlight {
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.45;
  }
  .accordion {
    padding: 0 2px;
  }
  .accordion details {
    padding: 15px 0;
  }
  .product-card {
    border-radius: 20px;
  }
  .product-media {
    aspect-ratio: .78;
  }
  .product-info {
    padding: 14px;
  }
  .product-badge-label {
    top: 10px;
    left: 10px;
    max-width: calc(100% - 92px);
    padding: 6px 10px;
    font-size: 10px;
  }
  .product-discount-badge {
    left: 10px;
    bottom: 10px;
    padding: 6px 10px;
    font-size: 10px;
  }
  .quick-actions {
    top: 10px;
    right: 10px;
    gap: 6px;
  }
  .quick-actions button {
    width: 32px;
    height: 32px;
  }
  .product-brand {
    font-size: 11px;
    margin-bottom: 2px;
  }
  .product-info h3 {
    font-size: 15px;
  }
  .product-card-copy {
    font-size: 12px;
    min-height: 34px;
  }
  .product-card-meta {
    align-items: stretch;
    flex-wrap: wrap;
  }
  .rating,
  .product-offer-chip {
    font-size: 11px;
  }
  .price-row {
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
  }
  .price-row strong {
    font-size: 17px;
  }
  .product-savings {
    font-size: 11px;
  }
  .product-card-actions {
    grid-template-columns: minmax(0, 1fr) 70px;
    gap: 6px;
  }
  .product-action-btn {
    min-height: 38px;
    border-radius: 12px;
    font-size: 12px;
    gap: 6px;
  }
  .before-after-grid { grid-template-columns: 1fr; }
  .review-layout { grid-template-columns: 1fr; }
  .order-support-actions {
    grid-template-columns: 1fr;
  }
  .order-review-upload-grid,
  .order-review-media-preview {
    grid-template-columns: 1fr 1fr;
  }
  .review-form-page {
    padding: 16px 14px 14px;
    border-radius: 24px;
  }
  .review-product-card {
    padding: 12px;
    border-radius: 20px;
  }
  .review-product-link {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
  }
  .review-product-thumb {
    width: 72px;
    height: 88px;
  }
  .review-submit-bar {
    bottom: calc(8px + env(safe-area-inset-bottom));
    border-radius: 18px;
    padding: 10px;
  }
  .review-image-preview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .category-grid, .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .account-page {
    gap: 14px;
    padding: 14px 14px calc(104px + env(safe-area-inset-bottom));
  }
  .profile-shell {
    width: min(100%, 100%);
    padding: 14px 14px calc(104px + env(safe-area-inset-bottom));
  }
  .profile-premium-banner {
    grid-template-columns: minmax(0, 1fr) 62px;
    padding: 20px 18px;
    border-radius: 26px;
  }
  .profile-premium-crown {
    width: 62px;
    height: 62px;
    border-radius: 20px;
  }
  .profile-card,
  .cosmetic-profile-card {
    border-radius: 24px;
  }
  .profile-quick-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }
  .profile-quick-action {
    min-height: 82px;
    padding: 12px 8px;
  }
  .profile-shopping-row {
    gap: 16px;
  }
  .profile-avatar-ring,
  .profile-add-circle {
    width: 68px;
    height: 68px;
  }
  .profile-switch-row {
    align-items: flex-start;
  }
  .account-page-hero {
    padding: 18px;
    border-radius: 24px;
  }
  .account-page-hero-top {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }
  .account-avatar {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  .account-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .account-shortcut,
  .account-settings {
    padding: 12px 12px;
    font-size: 13px;
  }
  .dashboard-card {
    padding: 18px;
  }
  .dashboard-address-head {
    align-items: stretch;
    flex-direction: column;
  }
  .profile-address-card {
    padding: 14px;
  }
  .order-line {
    align-items: flex-start;
  }
  .section-head, .offer-banner, .newsletter form, .summary-card form { align-items: stretch; flex-direction: column; }
  .split-story { grid-template-columns: 1fr; }
  .story-image { min-height: 320px; }
  .cart-page {
    gap: 14px;
    padding: 14px 14px calc(116px + env(safe-area-inset-bottom));
  }
  .cart-address-bar,
  .bag-header,
  .cart-card,
  .cart-offers-card,
  .cart-summary-card {
    border-radius: 20px;
  }
  .cart-address-bar,
  .bag-header {
    padding: 14px;
    align-items: flex-start;
    flex-direction: column;
  }
  .cart-tabs {
    display: flex;
    gap: 6px;
    padding: 8px 10px;
    overflow-x: hidden;
  }
  .cart-tab {
    min-height: 34px;
    min-width: 0;
    padding: 8px 3px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
  }
  .cart-tab-long {
    font-size: 10px;
    letter-spacing: 0;
  }
  .cart-item {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 0 16px;
  }
  .item-image {
    width: 78px;
    height: 92px;
  }
  .item-title-row h3 {
    font-size: 15px;
  }
  .item-title-row p,
  .item-price-row,
  .item-return-row {
    font-size: 12px;
  }
  .item-meta-row {
    gap: 6px;
  }
  .item-meta-pill {
    min-height: 32px;
    padding: 0 10px;
    font-size: 11px;
  }
  .sticky-order-bar {
    gap: 10px;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  }
  .sticky-order-strip {
    min-height: 40px;
    padding: 10px 12px;
    gap: 8px;
  }
  .sticky-order-strip strong,
  .sticky-order-strip span {
    font-size: 12px;
  }
  .sticky-order-btn {
    min-width: 132px;
    min-height: 48px;
  }
  .cart-coupon-chip-row {
    margin-bottom: 12px;
  }
  .cart-checkout-btn {
    min-height: 48px;
  }
  .form-grid, .range-row { grid-template-columns: 1fr; }
  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255,250,246,.96);
    border-top: 1px solid rgba(234,223,220,.95);
    backdrop-filter: blur(18px);
  }
  .mobile-bottom-link {
    position: relative;
    min-height: 54px;
    border: 0;
    border-radius: 16px;
    background: transparent;
    color: var(--ink);
    display: grid;
    place-items: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 700;
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }
  .mobile-bottom-link[aria-current="page"] {
    background: rgba(189,126,116,.12);
    color: var(--rose-deep);
  }
  .mobile-bottom-link i { font-size: 18px; }
  .mobile-bottom-link-badge i { font-size: 18px; }
  .mobile-bottom-link i {
    pointer-events: none;
  }
  .mobile-bottom-label {
    font-size: 11px;
  }
  .mobile-bottom-link-badge [data-cart-count-mobile] {
    position: absolute;
    top: 4px;
    right: calc(50% - 20px);
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--rose-deep);
    color: white;
    display: grid;
    place-items: center;
    font-size: 11px;
    pointer-events: none;
  }

  @media (prefers-color-scheme: dark) {
    .mobile-bottom-nav {
      background: rgba(19,15,17,.96);
      border-top-color: rgba(255, 228, 223, .12);
      box-shadow: 0 -10px 28px rgba(0, 0, 0, .28);
    }

    .mobile-bottom-link,
    .mobile-bottom-link i,
    .mobile-bottom-label {
      color: #f8efeb;
      -webkit-text-fill-color: currentColor;
    }

    .mobile-bottom-link[aria-current="page"] {
      background: rgba(240,177,166,.14);
      color: #fff7f3;
    }

    .mobile-bottom-link-badge [data-cart-count-mobile],
    .cart-link span {
      background: #f0b1a6;
      color: #171313;
    }
  }
}
