:root {
  --ink: #271b17;
  --muted: #7f7067;
  --canvas: #f3eee8;
  --paper: #fffaf4;
  --white: #fffdf9;
  --line: #e7ddd3;
  --maroon: #701e2c;
  --maroon-deep: #591522;
  --gold: #b28a4b;
  --shadow: 0 32px 64px rgba(56, 34, 25, .13);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 12%, rgba(178, 138, 75, .13), transparent 29rem),
    var(--canvas);
  font-family: "Inter", Arial, sans-serif;
}

button, a { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
.phone ::selection { background: transparent; color: inherit; }

.review-header {
  align-items: end;
  border-bottom: 1px solid rgba(112, 30, 44, .08);
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1240px;
  padding: 32px 36px 25px;
}

.label, .eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.review-header h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(31px, 3.1vw, 43px);
  font-weight: 600;
  line-height: 1;
  margin: 0;
}

.admin-link {
  border: 1px solid rgba(112, 30, 44, .2);
  border-radius: 999px;
  color: var(--maroon);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 19px;
  text-decoration: none;
}

.review-layout {
  align-items: center;
  display: grid;
  gap: clamp(42px, 7vw, 108px);
  grid-template-columns: minmax(295px, 440px) 402px;
  justify-content: center;
  min-height: calc(100vh - 104px);
  padding: 34px 36px 48px;
}

.review-notes h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 4.2vw, 55px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: .98;
  margin: 0 0 22px;
}

.intro {
  color: #66574f;
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 33px;
  max-width: 410px;
}

.screen-tabs {
  background: rgba(255, 250, 244, .6);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  gap: 4px;
  padding: 5px;
}

.screen-tab {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  padding: 11px 23px;
}

.screen-tab.is-active {
  background: var(--maroon);
  color: var(--white);
}

.feedback-card {
  background: rgba(255, 250, 244, .72);
  border: 1px solid var(--line);
  border-radius: 20px;
  line-height: 1.58;
  margin-top: 40px;
  max-width: 400px;
  padding: 23px 25px;
}

.feedback-card p:last-child {
  color: #5f5049;
  font-size: 14px;
  margin: 0;
}

.prototype-note {
  color: #8b7c73;
  font-size: 12px;
  line-height: 1.55;
  margin: 20px 0 0;
  max-width: 400px;
}

.phone {
  background: var(--paper);
  border: 8px solid #201b1a;
  border-radius: 42px;
  box-shadow: var(--shadow);
  height: min(820px, calc(100vh - 156px));
  min-height: 700px;
  overflow: hidden;
  position: relative;
  width: 384px;
}

.phone-top {
  align-items: center;
  background: var(--paper);
  color: #463933;
  display: flex;
  font-size: 11px;
  font-weight: 600;
  height: 34px;
  justify-content: space-between;
  padding: 10px 24px 4px;
}

.sensor {
  background: #1e1918;
  border-radius: 99px;
  height: 19px;
  width: 93px;
}

.phone-screen {
  height: calc(100% - 100px);
  overflow: hidden;
  position: relative;
}

.screen {
  background: var(--paper);
  display: none;
  height: 100%;
  overflow-y: auto;
  padding: 0 18px 18px;
  scrollbar-width: none;
}

.screen::-webkit-scrollbar { display: none; }
.screen.is-active { display: block; }

.app-header {
  align-items: center;
  display: flex;
  height: 58px;
  justify-content: space-between;
}

.menu-button span,
.menu-button span:before,
.menu-button span:after {
  background: currentColor;
  content: "";
  display: block;
  height: 1.5px;
  position: relative;
  width: 18px;
}

.menu-button span:before {
  position: absolute;
  top: -6px;
}

.menu-button span:after {
  position: absolute;
  top: 6px;
}

.wordmark {
  color: var(--maroon-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .065em;
  line-height: .9;
}

.wordmark span {
  color: var(--gold);
  display: block;
  font-size: 12px;
  letter-spacing: .29em;
  padding-top: 6px;
}

.icon-row { display: flex; gap: 8px; }

.catalog-search {
  align-items: center;
  background: #f7f0e9;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #94847d;
  display: flex;
  font-size: 12px;
  gap: 12px;
  height: 43px;
  margin: 3px 0 18px;
  padding: 0 13px;
}

.catalog-search .search {
  color: #74675f;
  flex: none;
}

.category-shortcuts {
  display: flex;
  gap: var(--module-gap, 13px);
  margin: 0 calc(-1 * var(--module-padding-x, 18px)) 0;
  overflow-x: auto;
  padding: 0 var(--module-padding-x, 18px) 2px;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.category-shortcuts::-webkit-scrollbar { display: none; }
.category-shortcuts.is-dragging,
.occasion-grid.is-dragging,
.product-grid.is-dragging,
.hero-track.is-dragging,
.custom-media-track.is-dragging { cursor: grabbing; }

.home-modules {
  display: flex;
  flex-direction: column;
}

.home-module[hidden] { display: none; }

.home-module {
  background: var(--module-bg-color, transparent);
  margin-bottom: var(--module-margin-bottom, 20px);
  margin-top: var(--module-margin-top, 0);
  text-align: var(--module-text-align, left);
}

.announcement-module {
  align-items: center;
  color: var(--module-text-color, #fff);
  display: flex;
  font-size: var(--module-title-size, 12px);
  font-weight: 700;
  gap: 6px;
  margin-left: calc(-1 * var(--module-padding-x, 18px));
  margin-right: calc(-1 * var(--module-padding-x, 18px));
  margin-top: 0;
  margin-bottom: 0;
  padding: 7px var(--module-padding-x, 18px);
}

#announcement-slot .announcement-module {
  margin-left: -18px;
  margin-right: -18px;
}

.announcement-track {
  display: flex;
  flex: 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.announcement-track::-webkit-scrollbar { display: none; }

.announcement-item {
  color: inherit;
  flex: 0 0 100%;
  letter-spacing: .01em;
  text-align: center;
  text-decoration: none;
}

.announcement-arrow {
  background: transparent;
  border: 0;
  color: inherit;
  font-size: 18px;
  line-height: 1;
  padding: 0 4px;
}

.announcement-module.hide-arrows .announcement-arrow { display: none; }

.category-item {
  background: transparent;
  border: 0;
  color: var(--module-text-color, #4d4039);
  flex: none;
  padding: 0;
  text-align: var(--module-text-align, center);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  width: 56px;
}

.category-item img {
  border: 1px solid rgba(178, 138, 75, .38);
  border-radius: 50%;
  height: var(--module-image-height, 56px);
  margin: 0 auto 7px;
  object-fit: cover;
  width: var(--module-image-height, 56px);
}

.category-item span {
  display: block;
  color: var(--module-text-color, #4d4039);
  font-size: clamp(9px, calc(var(--module-title-size, 18px) * .56), 15px);
  font-weight: 500;
  line-height: 1.12;
}

.icon-button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  display: inline-flex;
  height: 35px;
  justify-content: center;
  padding: 0;
  width: 35px;
}

.icon {
  display: block;
  height: 18px;
  position: relative;
  width: 18px;
}

.search:before {
  border: 1.6px solid currentColor;
  border-radius: 50%;
  content: "";
  height: 11px;
  left: 1px;
  position: absolute;
  top: 1px;
  width: 11px;
}

.search:after {
  background: currentColor;
  content: "";
  height: 1.6px;
  position: absolute;
  right: 1px;
  top: 13px;
  transform: rotate(45deg);
  width: 7px;
}

.bag:before {
  border: 1.5px solid currentColor;
  border-radius: 2px;
  bottom: 1px;
  content: "";
  height: 12px;
  left: 3px;
  position: absolute;
  width: 12px;
}

.bag:after {
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  content: "";
  height: 5px;
  left: 7px;
  position: absolute;
  top: 1px;
  width: 5px;
}

.hero {
  border-radius: 21px;
  height: var(--module-image-height, 238px);
  margin-top: 0;
  overflow: hidden;
  position: relative;
}

.hero-carousel {
  margin: 0 calc(-1 * var(--module-padding-x, 18px));
  padding: 0 var(--module-padding-x, 18px) 1px;
  position: relative;
}

.home-module.full-width .hero-carousel {
  margin-left: -18px;
  margin-right: -18px;
  padding-left: 0;
  padding-right: 0;
}

.home-module.full-width .hero-track {
  gap: 0;
  padding-right: 0;
}

.home-module.full-width .hero-track .hero {
  border-radius: 0;
  flex-basis: 100%;
}

.hero-track {
  display: flex;
  gap: var(--module-gap, 10px);
  overflow-x: auto;
  padding-right: 34px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.hero-track::-webkit-scrollbar { display: none; }

.hero-track .hero {
  flex: 0 0 calc(100% - 24px);
  scroll-snap-align: start;
}

.hero:after {
  background: linear-gradient(0deg, rgba(36, 18, 17, .7), rgba(36, 18, 17, 0) 60%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero:not(.has-copy):after,
.home-module.hide-text .hero:after {
  display: none;
}

.slider-arrow {
  align-items: center;
  background: rgba(255, 253, 249, .9);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--maroon);
  display: none;
  font-size: 22px;
  height: 32px;
  justify-content: center;
  position: absolute;
  top: calc(50% - 28px);
  width: 32px;
  z-index: 2;
}

.slider-arrow.previous { left: 25px; }
.slider-arrow.next { right: 25px; }

.home-module.hide-arrows .slider-arrow {
  display: none !important;
}

.slider-dots {
  bottom: 3px;
  display: flex;
  gap: 6px;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
}

.slider-dots span {
  background: #dfd3c9;
  border-radius: 99px;
  display: block;
  height: 5px;
  width: 5px;
}

.slider-dots span.is-active {
  background: var(--maroon);
  width: 17px;
}

.home-module.hide-dots .slider-dots {
  display: none;
}

.hero img {
  background: #e4d2c3;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-copy {
  bottom: 20px;
  color: var(--white);
  left: 22px;
  position: absolute;
  z-index: 1;
}

.hero-copy h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  font-weight: 600;
  line-height: .96;
  margin: 0 0 16px;
}

.hero-body {
  color: rgba(255, 253, 249, .9);
  font-size: 11px;
  line-height: 1.4;
  margin: -7px 0 13px;
  max-width: 195px;
}

.hero-body:empty { display: none; }

.primary-action {
  background: var(--white);
  border: 0;
  border-radius: 999px;
  color: var(--maroon);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  padding: 11px 21px;
  text-transform: uppercase;
}

.hero-copy h3:empty,
.hero-copy .hero-body:empty,
.hero-copy .primary-action:empty,
.home-module.hide-text .hero-copy {
  display: none;
}

.delivery-strip {
  background: #f6ebdf;
  border-radius: 8px;
  color: var(--maroon);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  margin: 0;
  padding: 11px 10px;
  text-align: center;
  text-transform: uppercase;
}

.section-heading {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
  margin-bottom: 13px;
  text-align: var(--module-text-align, left);
}

.home-module[data-text-align="center"] .section-heading {
  justify-content: center;
}

.home-module[data-text-align="right"] .section-heading {
  justify-content: flex-end;
}

.occasion-heading { margin-bottom: 13px; }

.occasion-grid {
  display: grid;
  gap: var(--module-gap, 9px);
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 24px;
}

.occasion-grid.is-rail {
  display: flex;
  gap: var(--module-gap, 10px);
  margin-left: calc(-1 * var(--module-padding-x, 18px));
  margin-right: calc(-1 * var(--module-padding-x, 18px));
  overflow-x: auto;
  padding: 0 var(--module-padding-x, 18px) 3px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.occasion-grid.is-rail::-webkit-scrollbar { display: none; }

.occasion-grid.is-rail .occasion-tile {
  flex: 0 0 104px;
  scroll-snap-align: start;
}

.occasion-tile {
  background: transparent;
  border: 0;
  color: var(--module-text-color, var(--ink));
  padding: 0;
  text-align: var(--module-text-align, left);
}

.occasion-tile img {
  border-radius: 8px;
  height: var(--module-image-height, 94px);
  object-fit: cover;
  width: 100%;
}

.occasion-tile span {
  color: var(--module-text-color, var(--ink));
  display: block;
  font-size: clamp(10px, calc(var(--module-title-size, 18px) * .62), 16px);
  font-weight: 500;
  margin-top: 7px;
}

.section-heading h3 {
  color: var(--module-text-color, var(--ink));
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--module-title-size, 25px);
  font-weight: 600;
  margin: 0;
}

.section-heading button {
  background: none;
  border: 0;
  color: var(--maroon);
  font-size: 11px;
  font-weight: 600;
}

.product-grid {
  display: grid;
  gap: var(--module-gap, 13px);
  grid-template-columns: 1fr 1fr;
}

.product-grid.is-rail {
  display: flex;
  margin-left: calc(-1 * var(--module-padding-x, 18px));
  margin-right: calc(-1 * var(--module-padding-x, 18px));
  overflow-x: auto;
  padding: 0 var(--module-padding-x, 18px) 3px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.product-grid.is-rail::-webkit-scrollbar { display: none; }

.product-grid.is-rail .product-card {
  flex: 0 0 155px;
  scroll-snap-align: start;
}

.product-grid.is-rail .custom-media-card {
  flex: 0 0 155px;
}

.custom-module { margin-bottom: var(--module-margin-bottom, 24px); }

.custom-slider-wrap {
  position: relative;
}

.custom-media-track {
  display: flex;
  gap: var(--module-gap, 10px);
  margin-left: calc(-1 * var(--module-padding-x, 18px));
  margin-right: calc(-1 * var(--module-padding-x, 18px));
  overflow-x: auto;
  padding: 0 var(--module-padding-x, 18px) 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.custom-media-track::-webkit-scrollbar { display: none; }

.module-slider-arrow {
  align-items: center;
  background: rgba(255, 253, 249, .9);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--maroon);
  display: flex;
  font-size: 22px;
  height: 32px;
  justify-content: center;
  position: absolute;
  top: calc(50% - 22px);
  width: 32px;
  z-index: 3;
}

.module-slider-arrow.previous { left: 6px; }
.module-slider-arrow.next { right: 6px; }
.home-module.hide-arrows .module-slider-arrow { display: none; }

.module-slider-dots {
  bottom: 4px;
  display: flex;
  gap: 6px;
  justify-content: center;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 3;
}

.module-slider-dots span {
  background: #dfd3c9;
  border-radius: 99px;
  display: block;
  height: 5px;
  width: 5px;
}

.module-slider-dots span.is-active {
  background: var(--maroon);
  width: 17px;
}

.home-module.hide-dots .module-slider-dots { display: none; }

.custom-media-card {
  background: transparent;
  border: 0;
  color: var(--module-text-color, var(--ink));
  flex: 0 0 127px;
  padding: 0;
  scroll-snap-align: start;
  text-align: var(--module-text-align, left);
}

.custom-media-track.is-slider .custom-media-card { flex-basis: calc(100% - 28px); }

.custom-media-track.is-circles .custom-media-card {
  flex-basis: 72px;
  text-align: center;
}

.custom-media-track.is-circles .custom-media-card img {
  border: 1px solid rgba(178, 138, 75, .38);
  border-radius: 50%;
  height: var(--module-image-height, 62px);
  margin: 0 auto;
  width: var(--module-image-height, 62px);
}

.custom-media-track.is-circles .custom-media-card strong {
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(9px, calc(var(--module-title-size, 18px) * .56), 15px);
  font-weight: 500;
}

.custom-media-track.is-circles .custom-media-card .media-text { display: none; }

.custom-media-card img {
  border-radius: 12px;
  height: var(--module-image-height, 146px);
  object-fit: cover;
  width: 100%;
}

.custom-media-card video {
  border-radius: 12px;
  display: block;
  height: var(--module-image-height, 146px);
  object-fit: cover;
  width: 100%;
}

.media-frame {
  background: #eee2d7;
  display: block;
  overflow: hidden;
  position: relative;
}

.custom-media-card .media-frame video {
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity .2s ease;
  z-index: 1;
}

.custom-media-card.has-video-src .media-frame {
  height: var(--module-image-height, 146px);
}

.custom-media-card.has-video .media-frame video {
  opacity: 1;
}

.custom-media-track.is-shop-look .custom-media-card.has-video .media-frame img {
  opacity: 0;
}

.custom-media-card.video-failed .media-frame video {
  display: none;
}

.custom-media-track.is-shop-look .custom-media-card:not(.has-video) .media-frame img {
  display: block;
  position: relative;
  z-index: 1;
}

.custom-media-card strong {
  color: var(--module-text-color, var(--ink));
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 8px;
}

.custom-media-card .media-text {
  color: var(--module-text-color, var(--muted));
  display: block;
  font-size: 11px;
  line-height: 1.42;
  margin-top: 4px;
}

.custom-media-card em {
  color: var(--maroon);
  display: block;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .08em;
  margin-top: 9px;
  text-transform: uppercase;
}

.custom-media-track.is-icon-grid,
.custom-media-track.is-promo-grid,
.custom-media-track.is-text-cta {
  display: grid;
  overflow: visible;
  scroll-snap-type: none;
}

.custom-media-track.is-icon-grid,
.custom-media-track.is-text-cta {
  margin-left: 0;
  margin-right: 0;
  padding: 0;
}

.custom-media-track.is-icon-grid {
  column-gap: var(--module-gap, 10px);
  grid-template-columns: repeat(2, 1fr);
  row-gap: 34px;
}

.custom-media-track.is-icon-grid .custom-media-card {
  align-items: center;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: var(--module-text-align, center);
}

.custom-media-track.is-icon-grid .media-frame {
  align-items: center;
  background: var(--module-bg-color, #fff);
  display: flex;
  height: var(--module-image-height, 100px);
  justify-content: center;
  margin-bottom: 0;
  padding: 12px;
  width: var(--module-image-height, 100px);
}

.custom-media-track.is-icon-grid .media-frame img {
  border-radius: 0;
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.custom-media-track.is-icon-grid .media-frame video {
  display: none;
}

.custom-media-track.is-icon-grid .custom-media-card strong {
  color: #140d0b;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--module-title-size, 18px);
  line-height: 1.05;
  margin: 0;
  max-width: 118px;
}

.custom-media-track.is-icon-grid .custom-media-card .media-text,
.custom-media-track.is-icon-grid .custom-media-card em {
  display: none;
}

.custom-media-track.is-logo-grid {
  display: grid;
  gap: var(--module-gap, 12px);
  grid-auto-columns: calc((100% - var(--module-gap, 12px)) / 2);
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  margin-left: 0;
  margin-right: 0;
  overflow-x: auto;
  padding: 0 0 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.custom-media-track.is-logo-grid::-webkit-scrollbar {
  display: none;
}

.custom-media-track.is-logo-grid .custom-media-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 11px rgba(37, 26, 20, .12);
  display: flex;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  padding: 0;
  scroll-snap-align: start;
  width: 100%;
}

.custom-media-track.is-logo-grid .media-frame {
  align-items: center;
  background: transparent;
  display: flex;
  height: auto;
  justify-content: center;
  width: 100%;
}

.custom-media-track.is-logo-grid .media-frame img {
  border-radius: 0;
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.custom-media-track.is-logo-grid .media-frame video {
  display: none;
}

.custom-media-track.is-logo-grid .custom-media-card strong,
.custom-media-track.is-logo-grid .custom-media-card .media-text,
.custom-media-track.is-logo-grid .custom-media-card em {
  display: none;
}

.custom-media-track.is-promo-grid {
  gap: var(--module-gap, 10px);
  grid-template-columns: repeat(2, 1fr);
  margin-left: calc(-1 * var(--module-padding-x, 18px));
  margin-right: calc(-1 * var(--module-padding-x, 18px));
  padding: 0 var(--module-padding-x, 18px);
}

.custom-media-track.is-promo-grid .custom-media-card {
  background: transparent;
  border-radius: 0;
  min-height: var(--module-image-height, 215px);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.custom-media-track.is-promo-grid .custom-media-card img {
  border-radius: 0;
  filter: none;
  height: var(--module-image-height, 215px);
  object-fit: cover;
  width: 100%;
}

.custom-media-track.is-promo-grid .media-frame {
  background: transparent;
  height: var(--module-image-height, 215px);
}

.custom-media-track.is-promo-grid .custom-media-card strong,
.custom-media-track.is-promo-grid .custom-media-card .media-text,
.custom-media-track.is-promo-grid .custom-media-card em {
  color: #fff;
  left: 10px;
  margin: 0;
  position: absolute;
  right: 10px;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

.custom-media-track.is-promo-grid .custom-media-card strong { bottom: 38px; font-family: "Inter", Arial, sans-serif; font-size: 15px; }
.custom-media-track.is-promo-grid .custom-media-card .media-text { bottom: 23px; font-size: 10px; }
.custom-media-track.is-promo-grid .custom-media-card em { bottom: 9px; font-size: 9px; }

.custom-media-track.is-text-cta {
  grid-template-columns: 1fr;
}

.custom-media-track.is-text-cta .custom-media-card {
  background: #fbefe9;
  border: 0;
  border-radius: 0;
  padding: 28px 20px;
  text-align: var(--module-text-align, center);
}

.custom-media-track.is-text-cta .custom-media-card strong {
  color: var(--maroon-deep);
  font-size: var(--module-title-size, 23px);
}

.custom-media-track.is-text-cta .custom-media-card .media-text {
  color: var(--ink);
  font-size: 13px;
  margin-top: 18px;
}

.custom-media-track.is-text-cta .custom-media-card em {
  background: #050505;
  border-radius: 2px;
  color: #fff;
  display: inline-block;
  margin-top: 17px;
  padding: 10px 16px;
}

.saree-edit-card {
  background: #fbf0eb;
  margin-left: calc(-1 * var(--module-padding-x, 18px));
  margin-right: calc(-1 * var(--module-padding-x, 18px));
  padding: 16px var(--module-padding-x, 18px) 26px;
  text-align: center;
}

.saree-edit-collage {
  display: grid;
  gap: 8px;
  grid-template-columns: 1.12fr .88fr .55fr;
  grid-template-rows: 115px 115px;
  margin-bottom: 28px;
}

.saree-edit-collage span {
  background: #eadfd5;
  display: block;
  overflow: hidden;
}

.saree-edit-collage span:first-child {
  grid-row: 1 / span 2;
}

.saree-edit-collage span:nth-child(2) {
  grid-column: 2 / span 2;
}

.saree-edit-collage img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.saree-edit-copy h4 {
  color: var(--maroon-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--module-title-size, 23px);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 20px;
}

.saree-edit-copy button {
  background: #050505;
  border: 0;
  border-radius: 2px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  margin-bottom: 24px;
  padding: 10px 15px;
}

.saree-edit-copy p {
  color: #050505;
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

.custom-media-track.module-full-banner .custom-media-card,
.custom-media-track.module-video-story .custom-media-card {
  flex-basis: 100%;
}

.custom-media-track.module-full-banner .custom-media-card img {
  border-radius: 0;
  height: var(--module-image-height, 300px);
}

.custom-media-track.module-video-story .custom-media-card {
  background: #fff;
  text-align: var(--module-text-align, center);
}

.custom-media-track.module-video-story {
  margin-left: -18px;
  margin-right: -18px;
  padding-left: var(--module-padding-x, 18px);
  padding-right: var(--module-padding-x, 18px);
}

.custom-media-track.module-video-story .media-frame {
  cursor: default;
}

.custom-media-track.module-video-story .media-frame:after {
  display: none;
}

.custom-media-track.module-video-story .custom-media-card video {
  border-radius: 0;
  height: var(--module-image-height, 190px);
  position: relative;
  z-index: 2;
}

.custom-media-track.module-video-story .custom-media-card img {
  border-radius: 0;
  height: var(--module-image-height, 190px);
}

.custom-media-track.module-video-story .custom-media-card.has-video .media-frame img {
  display: none;
}

.custom-media-track.module-video-story .custom-media-card em {
  cursor: pointer;
  text-decoration: underline;
  text-transform: none;
}

.custom-media-track.is-shop-look {
  gap: 12px;
}

.custom-media-track.is-shop-look .custom-media-card {
  background: #080808;
  border-radius: 12px;
  flex-basis: calc(100% - 24px);
  min-height: var(--module-image-height, 420px);
  overflow: hidden;
  position: relative;
}

.custom-media-track.is-shop-look .custom-media-card.is-preview-poster:not(.has-video) video {
  display: none;
}

.custom-media-track.is-shop-look .custom-media-card.is-preview-poster:not(.has-video) img {
  opacity: 1 !important;
  position: relative;
  z-index: 1;
}

.custom-media-track.is-shop-look .custom-media-card.image-failed .media-frame {
  align-items: center;
  color: #7d6c62;
  display: flex;
  font-size: 12px;
  justify-content: center;
  padding: 18px;
}

.custom-media-track.is-shop-look .custom-media-card.image-failed .media-frame:before {
  content: attr(data-error);
}

.custom-media-track.is-shop-look .custom-media-card.is-preview-poster:not(.has-video) .media-frame:before {
  align-items: center;
  background: rgba(255, 253, 249, .92);
  border-radius: 50%;
  color: #201b1a;
  content: "▶";
  display: flex;
  font-size: 23px;
  height: 58px;
  justify-content: center;
  left: calc(50% - 29px);
  position: absolute;
  top: calc(50% - 29px);
  width: 58px;
  z-index: 4;
}

.custom-media-track.is-shop-look .media-frame,
.custom-media-track.is-shop-look video,
.custom-media-track.is-shop-look img {
  border-radius: 12px;
  height: var(--module-image-height, 420px);
  object-position: right center;
}

.custom-media-track.is-shop-look .media-frame:after {
  background: linear-gradient(0deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, 0) 38%);
  border-radius: 0 0 12px 12px;
  bottom: 0;
  content: "";
  height: 42%;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 2;
}

.custom-media-track.is-shop-look .custom-media-card strong,
.custom-media-track.is-shop-look .custom-media-card em {
  color: #fff;
  left: 14px;
  margin: 0;
  position: absolute;
  right: 14px;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
  z-index: 3;
}

.custom-media-track.is-shop-look .custom-media-card strong {
  bottom: 54px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
}

.custom-media-track.is-shop-look .custom-media-card .media-text {
  display: none;
}

.custom-media-track.is-shop-look .custom-media-card em {
  background: #050505;
  bottom: 0;
  display: block;
  font-size: 13px;
  letter-spacing: 0;
  padding: 15px 12px;
  text-transform: none;
}

.home-module.hide-text .category-item span,
.home-module.hide-text .occasion-tile span,
.home-module.hide-text .custom-media-card strong,
.home-module.hide-text .custom-media-card .media-text {
  display: none;
}

.home-module.overlay-bottom .custom-media-card,
.home-module.overlay-center .custom-media-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.home-module.overlay-bottom .custom-media-card img,
.home-module.overlay-center .custom-media-card img {
  filter: brightness(.78);
}

.home-module.overlay-bottom .custom-media-card strong,
.home-module.overlay-bottom .custom-media-card .media-text,
.home-module.overlay-center .custom-media-card strong,
.home-module.overlay-center .custom-media-card .media-text {
  color: #fffdf9;
  left: 11px;
  margin: 0;
  position: absolute;
  right: 11px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .34);
  z-index: 1;
}

.home-module.overlay-bottom .custom-media-card strong { bottom: 28px; }
.home-module.overlay-bottom .custom-media-card .media-text { bottom: 10px; }
.home-module.overlay-center .custom-media-card strong { top: calc(50% - 16px); }
.home-module.overlay-center .custom-media-card .media-text { top: calc(50% + 8px); }

.loading {
  color: var(--muted);
  font-size: 13px;
  grid-column: 1 / -1;
}

.product-card {
  background: transparent;
  border: 0;
  color: inherit;
  padding: 0;
  position: relative;
  text-align: left;
}

.product-open {
  background: transparent;
  border: 0;
  color: inherit;
  display: block;
  padding: 0;
  text-align: left;
  width: 100%;
}

.product-card img {
  background: #eee2d7;
  border-radius: 12px;
  height: var(--module-image-height, 150px);
  object-fit: cover;
  width: 100%;
}

.wish-toggle {
  align-items: center;
  background: rgba(255, 253, 249, .88);
  border: 0;
  border-radius: 50%;
  color: var(--maroon);
  display: flex;
  height: 28px;
  justify-content: center;
  position: absolute;
  right: 8px;
  top: 8px;
  width: 28px;
}

.heart {
  display: inline-block;
  height: 13px;
  position: relative;
  transform: rotate(-45deg);
  width: 13px;
}

.heart:before, .heart:after {
  border: 1.4px solid currentColor;
  content: "";
  position: absolute;
}

.heart:before {
  border-radius: 8px 8px 0 0;
  border-bottom: 0;
  height: 8px;
  left: 0;
  top: 0;
  width: 13px;
}

.heart:after {
  border-left: 0;
  border-top: 0;
  height: 9px;
  left: 2px;
  top: 4px;
  transform: rotate(45deg);
  width: 9px;
}

.wish-toggle.saved .heart:before, .wish-toggle.saved .heart:after,
.heart-button.saved .heart:before, .heart-button.saved .heart:after {
  background: var(--maroon);
}

.product-card h4 {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.36;
  margin: 9px 0 4px;
}

.product-card p {
  color: var(--maroon);
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}

.inner-toolbar {
  align-items: center;
  display: flex;
  height: 59px;
  justify-content: space-between;
}

.inner-toolbar p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 23px;
  font-weight: 600;
  margin: 0;
}

.back span {
  border-bottom: 1.5px solid var(--ink);
  border-left: 1.5px solid var(--ink);
  display: block;
  height: 10px;
  transform: rotate(45deg);
  width: 10px;
}

.detail-image-wrap {
  background: #eee2d7;
  border-radius: 18px;
  height: 403px;
  overflow: hidden;
}

.detail-image-wrap img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.detail-content { padding: 20px 3px; }

.detail-type {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .17em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.detail-content h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 8px;
}

.detail-price {
  color: var(--maroon);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 20px;
}

.purchase-row {
  align-items: end;
  display: flex;
  gap: 15px;
}

.field-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  margin: 0 0 7px;
  text-transform: uppercase;
}

.quantity {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  height: 45px;
  width: 105px;
}

.quantity button {
  background: transparent;
  border: 0;
  color: var(--ink);
  flex: 1;
  font-size: 18px;
}

.quantity span {
  font-size: 13px;
  font-weight: 600;
}

.checkout-button, .account-login {
  background: var(--maroon);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 16px 17px;
  text-transform: uppercase;
}

.checkout-button { flex: 1; }
.toolbar-space { display: block; width: 35px; }

.account-hero {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  margin: 46px 8px 27px;
  padding-bottom: 42px;
  text-align: center;
}

.account-mark {
  align-items: center;
  background: #f1e5d9;
  border-radius: 50%;
  color: var(--maroon);
  display: flex;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 29px;
  font-weight: 700;
  height: 74px;
  justify-content: center;
  margin-bottom: 25px;
  width: 74px;
}

.account-hero h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 33px;
  font-weight: 600;
  margin: 0 0 11px;
}

.account-hero p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
  margin: 0 0 28px;
}

.account-login {
  min-width: 232px;
}

.account-options {
  margin: 0 8px;
}

.account-options div {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: #443731;
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  padding: 18px 4px;
}

.account-options b {
  color: var(--gold);
  font-size: 22px;
  font-weight: 400;
}

.bottom-nav {
  align-items: center;
  background: var(--white);
  border-top: 1px solid var(--line);
  bottom: 0;
  display: flex;
  height: 66px;
  justify-content: space-evenly;
  left: 0;
  position: absolute;
  right: 0;
}

.nav-item {
  align-items: center;
  background: transparent;
  border: 0;
  color: #9a8c84;
  display: flex;
  flex-direction: column;
  font-size: 10px;
  gap: 5px;
  height: 54px;
  justify-content: center;
  min-width: 53px;
}

.nav-item.is-active { color: var(--maroon); font-weight: 600; }

.nav-item span {
  display: block;
  height: 17px;
  position: relative;
  width: 19px;
}

.nav-home:before {
  border: 1.5px solid currentColor;
  border-top: 0;
  bottom: 0;
  content: "";
  height: 9px;
  left: 4px;
  position: absolute;
  width: 10px;
}

.nav-home:after {
  border-left: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  content: "";
  height: 8px;
  left: 5px;
  position: absolute;
  top: 2px;
  transform: rotate(45deg);
  width: 8px;
}

.nav-shop:before {
  border: 1.5px solid currentColor;
  border-radius: 2px;
  bottom: 0;
  content: "";
  height: 11px;
  left: 2px;
  position: absolute;
  width: 15px;
}

.nav-shop:after {
  border: 1.5px solid currentColor;
  border-bottom: 0;
  content: "";
  height: 4px;
  left: 6px;
  position: absolute;
  top: 0;
  width: 7px;
}

.nav-heart:before {
  color: currentColor;
  content: "\2661";
  font-size: 24px;
  left: 0;
  line-height: 15px;
  position: absolute;
  top: 0;
}

.nav-person:before {
  border: 1.5px solid currentColor;
  border-radius: 50%;
  content: "";
  height: 7px;
  left: 6px;
  position: absolute;
  top: 0;
  width: 7px;
}

.nav-person:after {
  border: 1.5px solid currentColor;
  border-radius: 10px 10px 0 0;
  bottom: 0;
  content: "";
  height: 8px;
  left: 3px;
  position: absolute;
  width: 13px;
}

.toast {
  background: #332723;
  border-radius: 9px;
  bottom: 76px;
  color: var(--white);
  font-size: 12px;
  left: 24px;
  line-height: 1.4;
  opacity: 0;
  padding: 12px 14px;
  pointer-events: none;
  position: absolute;
  right: 24px;
  transform: translateY(10px);
  transition: opacity .22s, transform .22s;
  z-index: 4;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.app-popup {
  align-items: center;
  background: rgba(32, 27, 26, .48);
  bottom: 66px;
  display: flex;
  justify-content: center;
  left: 0;
  padding: 22px;
  position: absolute;
  right: 0;
  top: 34px;
  z-index: 8;
}

.app-popup[hidden] { display: none; }

.app-popup-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 22px 44px rgba(32, 27, 26, .24);
  max-height: 100%;
  overflow: auto;
  padding: 14px;
  position: relative;
  text-align: center;
  width: 100%;
}

.popup-close {
  align-items: center;
  background: rgba(255, 253, 249, .92);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--maroon);
  display: flex;
  font-size: 22px;
  height: 32px;
  justify-content: center;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 32px;
  z-index: 1;
}

.app-popup-card img {
  border-radius: 13px;
  max-height: 330px;
  object-fit: contain;
  width: 100%;
}

.app-popup-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1.05;
  margin: 14px 8px 8px;
}

.app-popup-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 0 8px 14px;
}

.popup-action {
  background: var(--maroon);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 12px 18px;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .review-header {
    padding: 24px 20px 20px;
  }

  .review-header h1 { font-size: 30px; }
  .admin-link { display: none; }

  .review-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-height: 0;
    padding: 30px 15px 34px;
  }

  .review-notes {
    max-width: 430px;
    width: 100%;
  }

  .review-notes h2 { font-size: 40px; }
  .feedback-card { margin-top: 28px; }

  .phone {
    height: 760px;
    max-width: calc(100vw - 22px);
    min-height: 0;
    width: 384px;
  }
}

@media (min-width: 560px) {
  .slider-arrow { display: flex; }
}
