:root {
  --lm-peony: #ee9ca8;
  --lm-ocean: #a2d4eb;
  --lm-ice: #f7f6f2;
  --lm-sand: #e8dbb9;
  --lm-ballad: #c1cfdc;
  --lm-berry: #ce5c76;
  --lm-slate: #5c6c7b;
  --lm-navy: #1c1e2a;
  --lm-olive: #686456;
  --lm-white: #ffffff;
  --lm-text: #1c1e2a;
  --lm-muted: rgba(28, 30, 42, .62);
  --lm-border: rgba(28, 30, 42, .1);
  --lm-shadow: 0 18px 48px rgba(28, 30, 42, .08);
  --lm-shadow-hover: 0 26px 58px rgba(28, 30, 42, .14);
  --lm-radius-xl: 42px;
  --lm-radius-lg: 30px;
  --lm-radius-md: 22px;
  --lm-shell: min(1240px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--lm-text);
  background: var(--lm-ice);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }

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

.lm-shell { width: var(--lm-shell); margin-inline: auto; }
.section-space { padding: 88px 0; }

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: .95rem;
  font-weight: 700;
  color: #d6aa83;
}

.section-kicker--centered {
  display: block;
  text-align: center;
  margin-bottom: 18px;
}

.section-heading { margin-bottom: 42px; }
.section-heading--centered { text-align: center; }
.section-heading--narrow {
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 42px;
}
.section-heading--compact { margin-bottom: 24px; }

.hero-section__title,
.section-heading h2,
.story-section__content h2,
.season-banner__content h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 800;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.hero-section__text,
.story-section__content p,
.season-banner__content p,
.site-footer__text {
  font-size: 1.06rem;
  line-height: 1.9;
  color: var(--lm-muted);
}

.hero-section__text { max-width: 700px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 242, .75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(28, 30, 42, .06);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 86px;
}

.site-branding__logo-link,
.site-branding__text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-branding__text {
  font-size: 1.28rem;
  font-weight: 800;
}

.site-branding__mark { color: var(--lm-peony); }
.site-branding__logo-link {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  height: 56px;
}

.site-branding__logo-image,
.site-branding .custom-logo {
  display: block;
  width: auto;
  height: 52px;
  max-width: min(240px, 32vw);
  max-height: 52px;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-branding__logo-image--theme {
  width: auto;
  height: 52px;
  max-height: 52px;
}

.site-nav {
  justify-self: center;
}

.site-nav__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav__item {
  position: relative;
}

.site-nav__menu a,
.site-header__link,
.site-nav__dropdown-toggle {
  font-size: .95rem;
  font-weight: 600;
  color: rgba(28, 30, 42, .76);
}

.site-nav__menu a,
.site-nav__dropdown-toggle,
.site-nav__mega-parent,
.site-nav__mega-column a,
.site-nav__mega-view-all {
  transition: color .24s ease, background-color .24s ease, border-color .24s ease, box-shadow .24s ease, transform .24s ease, opacity .24s ease;
}

.site-nav__item > a,
.site-nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-nav__item > a,
.site-nav__dropdown-trigger > a,
.site-nav__dropdown-toggle {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  line-height: 46px;
}

.site-nav__item > a:hover,
.site-nav__item > a:focus-visible,
.site-nav__dropdown-trigger > a:hover,
.site-nav__dropdown-trigger > a:focus-visible,
.site-nav__dropdown-toggle:hover,
.site-nav__dropdown-toggle:focus-visible,
.site-header__link:hover,
.site-header__link:focus-visible {
  color: var(--lm-navy);
  background: rgba(255, 255, 255, .78);
}

.site-nav__item--has-dropdown.is-open > .site-nav__dropdown-trigger > a,
.site-nav__item--has-dropdown.is-open > .site-nav__dropdown-trigger > .site-nav__dropdown-toggle {
  color: var(--lm-navy);
  background: rgba(255, 255, 255, .92);
}

.site-nav__dropdown-trigger {
  position: relative;
  min-height: 46px;
  border-radius: 999px;
}

.site-nav__dropdown-toggle {
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  padding-left: 10px;
  padding-right: 14px;
  cursor: pointer;
}

.site-nav__chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transition: transform .24s ease;
}

.site-nav__item--has-dropdown.is-open .site-nav__chevron {
  transform: translateY(1px) rotate(-135deg);
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 250px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 28px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 24px 56px rgba(28, 30, 42, .12);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px) scale(.985);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity .26s ease, transform .28s cubic-bezier(.22, 1, .36, 1), visibility .26s ease;
}

.site-nav__dropdown::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 14px;
}

.site-nav__item--has-dropdown:hover > .site-nav__dropdown,
.site-nav__item--has-dropdown:focus-within > .site-nav__dropdown,
.site-nav__item--has-dropdown.is-open > .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
}

.site-nav__dropdown-list {
  display: grid;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav__dropdown-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--lm-text);
}

.site-nav__dropdown-list a:hover,
.site-nav__dropdown-list a:focus-visible {
  background: rgba(238, 156, 168, .12);
}

.site-nav__dropdown-list small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(238, 156, 168, .14);
  color: rgba(28, 30, 42, .65);
  font-size: .72rem;
  font-weight: 700;
}

.site-nav__dropdown--mega {
  width: min(940px, calc(100vw - 48px));
  padding: 14px;
}

.site-nav__mega {
  display: grid;
  grid-template-columns: minmax(190px, 220px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.site-nav__mega-parents {
  display: grid;
  gap: 10px;
}

.site-nav__mega-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 22px;
  border: 1px solid rgba(238, 156, 168, .24);
  background: rgba(255, 255, 255, .52);
  color: rgba(28, 30, 42, .84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45);
}

.site-nav__mega-parent:hover,
.site-nav__mega-parent:focus-visible,
.site-nav__mega-parent.is-active {
  color: var(--lm-navy);
  background: rgba(255, 255, 255, .88);
  border-color: rgba(238, 156, 168, .38);
  box-shadow: 0 14px 24px rgba(28, 30, 42, .08);
  transform: translateY(-1px);
}

.site-nav__mega-parent span:first-child {
  font-size: 1rem;
  font-weight: 700;
}

.site-nav__mega-arrow {
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: .75;
  flex: 0 0 auto;
}

.site-nav__mega-panels {
  position: relative;
  min-height: 324px;
  border-radius: 20px;
  border: 1px solid rgba(28, 30, 42, .06);
  background: rgba(255, 255, 255, .86);
  overflow: hidden;
}

.site-nav__mega-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 22px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .24s ease, visibility .2s ease;
}

.site-nav__mega-panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav__mega-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-nav__mega-panel-head h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.1;
}

.site-nav__mega-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(238, 156, 168, .22);
  background: rgba(238, 156, 168, .12);
  color: var(--lm-text);
  font-size: .84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.site-nav__mega-view-all:hover,
.site-nav__mega-view-all:focus-visible {
  background: rgba(238, 156, 168, .18);
  border-color: rgba(238, 156, 168, .34);
}

.site-nav__mega-columns {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 1fr);
  gap: 10px 12px;
  justify-content: start;
  align-content: start;
  align-items: start;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.site-nav__mega-column {
  display: grid;
  grid-auto-rows: minmax(0, auto);
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 150px;
}

.site-nav__mega-column a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, .58);
  color: rgba(28, 30, 42, .82);
  font-weight: 600;
}

.site-nav__mega-column a:hover,
.site-nav__mega-column a:focus-visible {
  background: rgba(255, 255, 255, .9);
  border-color: rgba(238, 156, 168, .22);
  color: var(--lm-navy);
  transform: translateX(2px);
}

.site-nav__mega-empty {
  display: flex;
  align-items: center;
  min-height: 180px;
}

.site-nav__mega-empty p {
  margin: 0;
  color: var(--lm-muted);
  font-size: 1rem;
  line-height: 1.7;
}
.site-header__actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.site-header__account {
  position: relative;
  flex: 0 0 auto;
}

.site-header__account .site-nav__dropdown-trigger {
  gap: 0;
  min-height: 48px;
  padding: 0;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--lm-border);
  box-shadow: var(--lm-shadow);
}

.site-header__account .site-nav__dropdown-trigger > a,
.site-header__account .site-nav__dropdown-toggle {
  min-height: 48px;
  line-height: 48px;
  background: transparent;
}

.site-header__account .site-nav__dropdown-trigger > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 14px;
  padding-right: 10px;
}

.site-header__account .site-nav__dropdown-toggle {
  padding-left: 8px;
  padding-right: 14px;
}

.site-header__account-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--lm-navy);
  flex: 0 0 auto;
}

.site-header__account-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.site-header__account .site-nav__dropdown {
  left: auto;
  right: 0;
  transform: translate(0, 12px) scale(.985);
  transform-origin: top right;
}

.site-header__account.site-nav__item--has-dropdown:hover > .site-nav__dropdown,
.site-header__account.site-nav__item--has-dropdown:focus-within > .site-nav__dropdown,
.site-header__account.site-nav__item--has-dropdown.is-open > .site-nav__dropdown {
  transform: translate(0, 0) scale(1);
}

.site-header__cart {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--lm-border);
  box-shadow: var(--lm-shadow);
}

.site-header__cart strong {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  min-height: 24px;
  border-radius: 50%;
  background: var(--lm-peony);
  color: #fff;
  font-size: .82rem;
}

.site-header__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--lm-shadow);
}

.site-header__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--lm-navy);
  margin: 4px auto;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 36px;
  background: #f4e2e4;
}

.hero-section__grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 48px;
  align-items: center;
  min-height: 640px;
}

.hero-section__content {
  max-width: 600px;
  padding-bottom: 36px;
}

.hero-wave {
  height: 28px;
  background: radial-gradient(circle at 14px -2px, transparent 18px, var(--lm-ice) 19px) 0 0 / 62px 28px repeat-x;
  transform: translateY(1px);
}

.hero-section__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-section__accent-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 8px 0 18px;
}

.hero-section__accent {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 3vw, 4.8rem);
  line-height: .92;
  font-style: italic;
  font-weight: 600;
  color: #d96a86;
  letter-spacing: -.05em;
}

.hero-section__scribble {
  position: absolute;
  left: -8px;
  right: -16px;
  bottom: -18px;
  height: 28px;
  border: 4px solid rgba(238, 156, 168, .92);
  border-radius: 999px;
  transform: rotate(5deg);
  animation: lmScribbleFloat 3.4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes lmScribbleFloat {
  0%, 100% { transform: rotate(5deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(2px); }
}

.lm-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 184px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.lm-button:hover { transform: translateY(-2px); }

.lm-button--primary {
  background: var(--lm-navy);
  color: #fff;
  box-shadow: 0 18px 32px rgba(28, 30, 42, .16);
}

.lm-button--secondary {
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(28, 30, 42, .12);
}

.hero-section__visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-section__visual-stack {
  position: relative;
  width: min(100%, 560px);
  min-height: 560px;
}

.hero-section__photo {
  position: absolute;
  overflow: hidden;
  isolation: isolate;
  border-radius: 26px;
  background: #f4f1ea;
  box-shadow: 0 30px 55px rgba(28, 30, 42, .14);
  transform-origin: center;
  will-change: transform;
}

.hero-section__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-section__photo--has-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .16) 0%, rgba(255, 255, 255, 0) 34%);
  pointer-events: none;
}

.hero-section__photo--back {
  width: 275px;
  height: 350px;
  right: 208px;
  top: 0px;
  z-index: 1;
  transform: rotate(-10deg);
  animation: lmHeroFloatBack 10.5s ease-in-out infinite;
}

.hero-section__photo--front {
  width: 320px;
  height: 430px;
  right: 18px;
  top: 82px;
  z-index: 3;
  transform: rotate(6deg);
  animation: lmHeroFloatFront 10.2s ease-in-out infinite;
}

.hero-section__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: .8;
  pointer-events: none;
}

.hero-section__glow--blush {
  width: 124px;
  height: 84px;
  right: 54px;
  top: 92px;
  background: rgba(238, 156, 168, .22);
}

.hero-section__glow--mist {
  width: 140px;
  height: 96px;
  left: 92px;
  bottom: 54px;
  background: rgba(255, 255, 255, .65);
}

@keyframes lmHeroFloatBack {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-10deg); }
  50% { transform: translate3d(-8px, -10px, 0) rotate(-8deg); }
}

@keyframes lmHeroFloatFront {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(6deg); }
  50% { transform: translate3d(8px, -12px, 0) rotate(7.5deg); }
}

.brand-strip {
  padding: 48px 0 24px;
}

.brand-strip__items {
  --brand-reveal-progress: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  text-align: center;
}

.brand-strip__item {
  --brand-fill-stop: clamp(0%, calc(var(--brand-reveal-progress, 0) * 100%), 100%);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 6px 0;
  font-size: clamp(1.6rem, 1.35rem + .55vw, 2rem);
  font-weight: 700;
  letter-spacing: -.03em;
  color: transparent;
  background-image: linear-gradient(
    90deg,
    rgba(28, 30, 42, .96) 0%,
    rgba(28, 30, 42, .96) var(--brand-fill-stop),
    rgba(28, 30, 42, .26) var(--brand-fill-stop),
    rgba(28, 30, 42, .26) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  transform: translate3d(0, calc((1 - var(--brand-reveal-progress, 0)) * 12px), 0);
  opacity: calc(.56 + (var(--brand-reveal-progress, 0) * .44));
  transition: transform .45s ease, opacity .35s ease, filter .35s ease;
  will-change: transform, opacity;
}

.brand-strip__item::after {
  content: '';
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 5px;
  height: 1px;
  border-radius: 999px;
  background: rgba(28, 30, 42, .12);
  transform: scaleX(calc(.72 + (var(--brand-reveal-progress, 0) * .28)));
  opacity: calc(.12 + (var(--brand-reveal-progress, 0) * .3));
  transition: opacity .35s ease, transform .45s ease;
}

.brand-strip__item:hover {
  transform: translate3d(0, -2px, 0);
  filter: saturate(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .brand-strip__item,
  .brand-strip__item::after {
    transition: none;
  }
}

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

.product-card {
  transition: transform .24s ease, box-shadow .24s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card__visual-link {
  display: block;
}

.product-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1.16;
  background: rgba(255, 255, 255, .72);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .65);
  padding: 18px;
  transition: box-shadow .24s ease, transform .24s ease, background-color .24s ease;
}

.product-card:hover .product-card__visual {
  box-shadow: var(--lm-shadow-hover);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .86);
}

.product-card__image-frame {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 24px;
  display: block;
}

.product-card__meta {
  padding-top: 26px;
}

.product-card__meta h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 800;
}

.product-card__meta p {
  margin: 0 0 10px;
  font-size: .95rem;
  color: var(--lm-muted);
  text-transform: uppercase;
  letter-spacing: .02em;
}

.product-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--lm-text);
}

.product-card__price del {
  position: relative;
  color: rgba(28, 30, 42, .42);
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(28, 30, 42, .38);
}

.product-card__price ins {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(206, 92, 118, .12);
  color: var(--lm-berry);
  text-decoration: none;
  font-weight: 900;
}

.product-card__price .amount {
  white-space: nowrap;
}

.product-card__price .woocommerce-Price-currencySymbol {
  margin-left: 2px;
}

.story-section__grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  align-items: center;
  gap: 64px;
}

.story-section__visuals {
  position: relative;
  min-height: 430px;
}

.story-photo {
  position: absolute;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--lm-shadow);
}

.story-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-photo--has-image {
  background: #f4f1ea;
}

.story-photo--has-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, 0) 28%);
  pointer-events: none;
}

.story-photo--left {
  width: 250px;
  height: 320px;
  left: 20px;
  top: 34px;
  transform: rotate(-12deg);
  border-radius: 12px;
  background:
    radial-gradient(circle at 55% 22%, #f4dccf 0 18%, transparent 18.5%),
    radial-gradient(circle at 50% 47%, #f7f6f2 0 22%, transparent 22.5%),
    linear-gradient(180deg, #efc766 0%, #e9bf58 100%);
}

.story-photo--right {
  width: 250px;
  height: 320px;
  left: 190px;
  top: 74px;
  transform: rotate(5deg);
  border-radius: 12px;
  background:
    radial-gradient(circle at 55% 22%, #f4dccf 0 18%, transparent 18.5%),
    radial-gradient(circle at 50% 47%, #f7f6f2 0 22%, transparent 22.5%),
    linear-gradient(180deg, #dfe7f2 0%, #cfdced 100%);
}

.story-sketch {
  position: absolute;
  width: 98px;
  height: 58px;
  border: 3px solid rgba(238, 156, 168, .9);
  border-radius: 50%;
  left: 270px;
  bottom: 22px;
  transform: rotate(-12deg);
}

.categories-section {
  position: relative;
  isolation: isolate;
  padding-top: 112px;
  padding-bottom: 112px;
}

.categories-section::before,
.categories-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 34px;
  pointer-events: none;
  opacity: .92;
}

.categories-section::before {
  top: 18px;
  background: radial-gradient(circle at 17px 34px, transparent 17px, rgba(241, 177, 202, .34) 18px) 0 0 / 72px 34px repeat-x;
}

.categories-section::after {
  bottom: 18px;
  background: radial-gradient(circle at 17px 0, transparent 17px, rgba(241, 177, 202, .34) 18px) 0 0 / 72px 34px repeat-x;
}

.category-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.category-card {
  position: relative;
  min-height: 280px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(28, 30, 42, .08);
  transition: transform .28s ease, box-shadow .28s ease;
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .16) 0%, rgba(255, 255, 255, 0) 42%);
  opacity: .8;
  pointer-events: none;
  transition: opacity .28s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(28, 30, 42, .14);
}

.category-card:hover::after {
  opacity: 1;
}

.category-card--1,
.category-card--2 {
  min-height: 250px;
}

.category-card__link {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: stretch;
  height: 100%;
  padding: 36px 32px;
  z-index: 1;
}

.category-card__link::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 24px;
  opacity: 0;
  transform: scale(.98);
  transition: opacity .28s ease, transform .28s ease;
}

.category-card:hover .category-card__link::before {
  opacity: 1;
  transform: scale(1);
}

.category-card span {
  display: block;
  margin-bottom: 18px;
  font-size: .95rem;
  color: rgba(255, 255, 255, .82);
  transition: transform .28s ease, opacity .28s ease;
}

.category-card h3 {
  margin: 0;
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  line-height: .96;
  color: #fff;
  letter-spacing: -.045em;
  transition: transform .28s ease;
}

.category-card:hover span,
.category-card:hover h3 {
  transform: translateY(-3px);
}

.category-card__shape {
  justify-self: end;
  align-self: end;
  width: clamp(144px, 16vw, 190px);
  aspect-ratio: 1 / 1;
  padding: clamp(10px, 1.1vw, 14px);
  border-radius: 24px;
  background-color: rgba(255, 251, 248, .94);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 72% auto;
  box-shadow: 0 14px 26px rgba(28, 30, 42, .10);
  overflow: hidden;
  transition: transform .34s ease, filter .34s ease, box-shadow .34s ease;
  transform-origin: center bottom;
}

.category-card__media {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.category-card__shape img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.category-card:hover .category-card__shape {
  transform: translateY(-6px) scale(1.035);
  filter: drop-shadow(0 12px 18px rgba(255, 255, 255, .12));
}

.category-card--peach { background: #e3a878; }
.category-card--pink { background: #e7b0c8; }
.category-card--sand { background: #ecd488; }
.category-card--sky { background: #86ade9; }

.category-card--1 .category-card__shape { background-image: url('../img/product-jacket.svg'); }
.category-card--2 .category-card__shape { background-image: url('../img/product-shorts.svg'); }
.category-card--3 .category-card__shape { background-image: url('../img/product-cardigan.svg'); }
.category-card--4 .category-card__shape { background-image: url('../img/product-swimwear.svg'); }

.season-banner__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 56px;
}

.season-banner__visual {
  position: relative;
  min-height: 360px;
}

.coat {
  position: absolute;
  bottom: 40px;
  width: 180px;
  height: 230px;
  border-radius: 44px 44px 30px 30px;
  background: #ddd;
  box-shadow: var(--lm-shadow);
}

.coat--red {
  left: 40px;
  background: linear-gradient(#ff6a60, #ec5b53);
}

.coat--navy {
  left: 190px;
  height: 250px;
  background: linear-gradient(#b8792d 0 28%, #1f335f 28%);
}

.coat--blue {
  left: 360px;
  background: linear-gradient(#a7cfee, #7fa9df);
}


.season-banner__product-card {
  position: absolute;
  bottom: 28px;
  width: 214px;
  height: 324px;
  padding: 18px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 40px rgba(28, 30, 42, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}

.season-banner__product-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.season-banner__product-card--left {
  left: 112px;
  z-index: 4;
}

.season-banner__product-card--center {
  left: 292px;
  bottom: 58px;
  z-index: 5;
}

.season-banner__product-card--right {
  left: 472px;
  z-index: 4;
}

.season-banner__badge {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--lm-peony);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  text-align: center;
  padding: 16px;
  transform: rotate(-12deg);
  z-index: 999;
}

.instagram-section .lm-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.instagram-section .section-heading {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 28px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  grid-auto-rows: 78px;
  gap: 18px;
  width: min(100%, 1040px);
  max-width: 1040px;
  margin: 0 auto;
  justify-content: center;
  align-items: stretch;
}

.instagram-card {
  grid-column: span 4;
  grid-row: span 3;
}

.instagram-card:nth-child(1),
.instagram-card:nth-child(5),
.instagram-card:nth-child(9) {
  grid-column: span 6;
  grid-row: span 4;
}

.instagram-card__photo {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .82)), url('../img/photo-baby.svg') center/cover no-repeat;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 40px rgba(226, 141, 177, 0.16);
  transform: translateY(0);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.instagram-card__photo:hover,
.instagram-card__photo:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(226, 141, 177, 0.22);
  border-color: rgba(235, 163, 191, 0.72);
}

.instagram-card__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.instagram-card__photo--custom {
  background: none;
}

.site-footer {
  position: relative;
  margin-top: 40px;
  background: linear-gradient(180deg, #f1b1ca 0%, #eba3bf 100%);
  color: #fff;
  padding-top: 36px;
}

.site-footer__wave {
  height: 28px;
  background: radial-gradient(circle at 14px -2px, transparent 18px, #f1b1ca 19px) 0 0 / 62px 28px repeat-x;
  position: absolute;
  top: -27px;
  left: 0;
  right: 0;
}

.site-footer__grid--ref {
  display: grid;
  grid-template-columns: .9fr .9fr .9fr 1.3fr;
  gap: 42px;
  padding: 88px 0 42px;
}

.site-footer__title {
  margin: 0 0 22px;
  font-size: 1.05rem;
  font-weight: 800;
}

.site-footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.site-footer__menu a,
.site-footer__menu li {
  color: rgba(255, 255, 255, .88);
}

.site-footer__menu a,
.site-footer__bottom a,
.site-footer__newsletter button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .24s ease, opacity .24s ease, transform .24s ease;
}

.site-footer__menu a::after,
.site-footer__bottom a::after,
.site-footer__newsletter button::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: .72;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .24s ease, opacity .24s ease;
}

.site-footer__menu a:hover,
.site-footer__menu a:focus-visible,
.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible,
.site-footer__newsletter button:hover,
.site-footer__newsletter button:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.site-footer__menu a:hover::after,
.site-footer__menu a:focus-visible::after,
.site-footer__bottom a:hover::after,
.site-footer__bottom a:focus-visible::after,
.site-footer__newsletter button:hover::after,
.site-footer__newsletter button:focus-visible::after {
  transform: scaleX(1);
}

.site-footer__text--light {
  color: rgba(255, 255, 255, .9);
  max-width: 320px;
  margin: 0 0 34px;
}

.site-footer__newsletter {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, .65);
  padding-bottom: 12px;
  max-width: 420px;
}

.site-footer__newsletter input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fff;
  outline: none;
}

.site-footer__newsletter input::placeholder {
  color: rgba(255, 255, 255, .88);
  transition: opacity .24s ease;
}

.site-footer__newsletter:focus-within input::placeholder {
  opacity: .62;
}

.site-footer__newsletter button {
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.site-footer__menu--contact a {
  word-break: break-word;
}

.site-footer__menu--contact a:hover,
.site-footer__menu--contact a:focus-visible {
  opacity: 1;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.site-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 10px 24px rgba(120, 44, 76, .12);
  transition: transform .24s ease, background-color .24s ease, border-color .24s ease, box-shadow .24s ease, opacity .24s ease;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .3);
  box-shadow: 0 14px 28px rgba(120, 44, 76, .18);
}

.site-footer__socials svg {
  width: 18px;
  height: 18px;
  display: block;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 28px;
  color: rgba(255, 255, 255, .9);
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.site-footer__bottom p,
.site-footer__bottom a {
  margin: 20px 0 0;
}

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-strip__items { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .brand-strip__item { min-height: 50px; }
  .site-footer__grid--ref,
  .hero-section__grid,
  .story-section__grid,
  .season-banner__grid { grid-template-columns: 1fr; }
  .category-mosaic { grid-template-columns: 1fr; }
  .hero-section__visual { justify-content: center; }
  .hero-section__visual-stack { min-height: 500px; }
  .hero-section__photo--back { right: 190px; top: 52px; }
  .hero-section__photo--front { right: 8px; top: 112px; }
}

@media (max-width: 820px) {
  .site-header__inner { grid-template-columns: auto auto auto; }
  .site-header__toggle { display: block; justify-self: center; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 24px;
    right: 24px;
    justify-self: stretch;
    padding: 16px;
    border: 1px solid rgba(28, 30, 42, .08);
    border-radius: 28px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 24px 40px rgba(28, 30, 42, .12);
    backdrop-filter: blur(18px);
  }
  .site-nav.is-open { display: block; }
  .site-nav__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .site-nav__item > a,
  .site-nav__dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }
  .site-nav__item > a,
  .site-nav__dropdown-trigger > a,
  .site-nav__dropdown-toggle {
    min-height: 52px;
  }
  .site-nav__dropdown {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    display: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(247, 246, 242, .96);
  }
  .site-nav__dropdown--mega {
    width: 100%;
    padding: 12px;
  }
  .site-nav__mega {
    grid-template-columns: 1fr;
  }
  .site-nav__mega-panels {
    min-height: 0;
    background: transparent;
    border: 0;
  }
  .site-nav__mega-panel {
    position: static;
    display: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .site-nav__mega-panel.is-active {
    display: flex;
  }
  .site-nav__mega-columns {
    grid-template-columns: 1fr;
  }
  .site-nav__item--has-dropdown:hover > .site-nav__dropdown,
  .site-nav__item--has-dropdown:focus-within > .site-nav__dropdown {
    display: none;
  }
  .site-nav__item--has-dropdown.is-open > .site-nav__dropdown {
    display: block;
  }
  .site-header__actions {
    justify-self: end;
    gap: 10px;
  }
  .site-header__account .site-nav__dropdown-trigger > a > span:last-child {
    display: none;
  }
  .site-header__account .site-nav__dropdown-toggle {
    padding-left: 6px;
    padding-right: 12px;
  }
  .site-header__link { display: none; }
  .site-branding__logo-image,
  .site-branding .custom-logo {
    width: auto;
    height: 48px;
    max-width: min(220px, 46vw);
    max-height: 48px;
  }
  .instagram-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 180px; max-width: 100%; }
  .instagram-card,
  .instagram-card:nth-child(1),
  .instagram-card:nth-child(5),
  .instagram-card:nth-child(9) { grid-column: span 1; grid-row: span 1; }
  .story-photo--right { left: 140px; }
  .hero-section__visual-stack { width: min(100%, 460px); min-height: 430px; }
  .hero-section__photo--back { width: 210px; height: 270px; right: 154px; top: 54px; }
  .hero-section__photo--front { width: 250px; height: 336px; right: 6px; top: 102px; }
  .section-space { padding: 70px 0; }
}

@media (max-width: 560px) {
  :root { --lm-shell: min(1240px, calc(100vw - 28px)); }

  .brand-strip__items,
  .product-grid,
  .instagram-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-auto-rows: 240px; gap: 16px; }

  .story-photo--left { width: 180px; height: 230px; }
  .story-photo--right { width: 180px; height: 230px; left: 110px; }

  .hero-section__visual-stack { width: min(100%, 340px); min-height: 330px; }
  .hero-section__photo--back { width: 146px; height: 192px; right: 126px; top: 32px; border-radius: 18px; }
  .hero-section__photo--front { width: 182px; height: 248px; right: 0; top: 78px; border-radius: 18px; }
  .hero-section__glow--blush { right: 18px; top: 54px; }
  .hero-section__glow--mist { left: 34px; bottom: 24px; }

  .hero-section__title,
  .section-heading h2,
  .story-section__content h2,
  .season-banner__content h2 { font-size: 2.2rem; }

  .hero-section__accent { font-size: 3rem; }

  .site-footer__grid--ref { padding-top: 72px; }
  .site-branding__logo-image,
  .site-branding .custom-logo {
    width: auto;
    height: 44px;
    max-width: 170px;
    max-height: 44px;
  }
}

/* Catalog / category pages */
.lm-catalog-hero {
  padding-top: 54px;
  padding-bottom: 24px;
}

.lm-catalog-hero__inner {
  padding: 44px 48px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(244, 226, 228, .92) 0%, rgba(255, 255, 255, .9) 100%);
  box-shadow: var(--lm-shadow);
}

.lm-catalog-hero__copy {
  max-width: 760px;
}

.lm-catalog-hero__copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 3vw, 4rem);
  line-height: .98;
  letter-spacing: -.04em;
  font-weight: 800;
}

.lm-catalog-hero__copy p {
  margin: 18px 0 0;
  max-width: 620px;
  color: var(--lm-muted);
  line-height: 1.8;
}

.lm-catalog {
  padding-top: 8px;
}

.lm-catalog__grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.lm-catalog__sidebar {
  position: sticky;
  top: 112px;
}

.lm-filters {
  display: grid;
  gap: 18px;
}

.lm-filter-card {
  padding: 22px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(28, 30, 42, .08);
  border-radius: 28px;
  box-shadow: 0 12px 30px rgba(28, 30, 42, .05);
}

.lm-filter-card__label {
  display: block;
  margin-bottom: 14px;
  font-size: .95rem;
  font-weight: 800;
  color: var(--lm-navy);
}

.lm-filter-search input,
.lm-filter-price input,
.lm-catalog .woocommerce-ordering select {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(28, 30, 42, .12);
  border-radius: 16px;
  background: #fff;
  color: var(--lm-text);
}

.lm-filter-search input:focus,
.lm-filter-price input:focus,
.lm-catalog .woocommerce-ordering select:focus {
  outline: none;
  border-color: rgba(238, 156, 168, .7);
  box-shadow: 0 0 0 4px rgba(238, 156, 168, .12);
}

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

.lm-filter-price label span {
  display: block;
  margin-bottom: 8px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--lm-muted);
}

.lm-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lm-filter-pill {
  position: relative;
  cursor: pointer;
}

.lm-filter-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.lm-filter-pill span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(244, 226, 228, .7);
  border: 1px solid rgba(232, 203, 208, .7);
  color: rgba(28, 30, 42, .82);
  font-size: .9rem;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45);
  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.lm-filter-pill:hover span {
  background: rgba(238, 156, 168, .18);
  border-color: rgba(238, 156, 168, .35);
  color: var(--lm-navy);
  transform: translateY(-1px);
}

.lm-filter-pill input:focus-visible + span {
  outline: none;
  border-color: rgba(222, 104, 130, .52);
  box-shadow: 0 0 0 4px rgba(238, 156, 168, .16);
}

.lm-filter-pill input:checked + span {
  background: linear-gradient(135deg, rgba(238, 156, 168, .28), rgba(255, 197, 205, .5));
  border-color: rgba(222, 104, 130, .58);
  color: var(--lm-navy);
  box-shadow: 0 10px 22px rgba(238, 156, 168, .16), 0 0 0 1px rgba(222, 104, 130, .18);
}

.lm-filter-actions {
  display: grid;
  gap: 12px;
}

.lm-filter-actions .lm-button {
  width: 100%;
  min-width: 0;
}

.lm-catalog__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(28, 30, 42, .06);
}

.lm-catalog__results,
.lm-catalog .woocommerce-result-count {
  margin: 0;
  color: var(--lm-muted);
  font-size: .95rem;
}

.lm-catalog .woocommerce-ordering {
  margin: 0;
}

.lm-catalog ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lm-catalog ul.products::before,
.lm-catalog ul.products::after {
  display: none;
}

.lm-catalog ul.products li.product {
  width: 100%;
  margin: 0;
  padding: 18px;
  border-radius: 30px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 34px rgba(28, 30, 42, .06);
  transition: transform .22s ease, box-shadow .22s ease;
}

.lm-catalog ul.products li.product:hover {
  transform: translateY(-5px);
  box-shadow: var(--lm-shadow-hover);
}

.lm-catalog ul.products li.product a {
  color: inherit;
}

.lm-catalog ul.products li.product img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  border-radius: 22px;
  margin: 0 0 18px;
  background: #fff;
}

.lm-catalog ul.products li.product .woocommerce-loop-product__title {
  margin: 0 0 10px;
  font-size: 1.04rem;
  line-height: 1.3;
  font-weight: 800;
  color: var(--lm-navy);
}

.lm-catalog ul.products li.product .price {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  margin: 0;
  color: var(--lm-navy);
  font-weight: 800;
  line-height: 1.2;
}

.lm-catalog ul.products li.product .price del {
  color: rgba(28, 30, 42, .42);
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(28, 30, 42, .34);
}

.lm-catalog ul.products li.product .price ins {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(206, 92, 118, .12);
  color: var(--lm-berry);
  text-decoration: none;
}

.lm-catalog ul.products li.product .price .amount {
  white-space: nowrap;
}

.lm-catalog ul.products li.product .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: 16px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--lm-navy);
  color: #fff;
  font-weight: 700;
}

.lm-catalog ul.products li.product .onsale {
  top: 14px;
  left: 14px;
  right: auto;
  margin: 0;
  min-width: 52px;
  min-height: 52px;
  border-radius: 50%;
  background: var(--lm-peony);
  color: #fff;
  border: 0;
  line-height: 52px;
  font-size: .78rem;
  font-weight: 800;
}

.lm-shop-pagination {
  margin-top: 28px;
}

.lm-catalog nav.woocommerce-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  border: 0;
  margin: 0;
  padding: 0;
}

.lm-catalog nav.woocommerce-pagination ul li {
  border: 0;
  overflow: visible;
}

.lm-catalog nav.woocommerce-pagination ul li span,
.lm-catalog nav.woocommerce-pagination ul li a {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--lm-text);
  font-weight: 700;
}

.lm-catalog nav.woocommerce-pagination ul li .current {
  background: var(--lm-navy);
  color: #fff;
}

.lm-shop-empty {
  padding: 48px 32px;
  border-radius: 32px;
  background: rgba(255,255,255,.82);
  text-align: center;
  box-shadow: var(--lm-shadow);
}

.lm-shop-empty h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.lm-shop-empty p {
  margin: 0;
  color: var(--lm-muted);
}

@media (max-width: 1100px) {
  .lm-catalog__grid {
    grid-template-columns: 1fr;
  }

  .lm-catalog__sidebar {
    position: static;
  }

  .lm-catalog ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .lm-catalog-hero__inner,
  .lm-filter-card,
  .lm-catalog__toolbar,
  .lm-catalog ul.products li.product,
  .lm-shop-empty {
    border-radius: 24px;
  }

  .lm-catalog-hero__inner {
    padding: 30px 22px;
  }

  .lm-catalog__toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .lm-filter-price,
  .lm-catalog ul.products {
    grid-template-columns: 1fr;
  }
}

/* Single product */
.lm-single-product .woocommerce-breadcrumb {
  margin: 0 0 28px;
  color: var(--lm-muted);
  font-size: .95rem;
}

.lm-single-product__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: 34px;
  align-items: start;
}

.lm-single-product__media-card,
.lm-product-summary-card,
.lm-single-product__details-card,
.lm-single-product__related .related {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(28,30,42,.06);
  border-radius: 34px;
  box-shadow: 0 18px 44px rgba(28,30,42,.06);
}

.lm-single-product__media-card {
  position: relative;
  padding: 34px;
  overflow: hidden;
}

.lm-product-gallery-nav {
  pointer-events: none;
}

.lm-product-gallery-nav__button {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(28, 30, 42, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  color: var(--lm-navy);
  box-shadow: 0 16px 34px rgba(28, 30, 42, .12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateY(-50%);
  transition: transform .22s ease, opacity .22s ease, background-color .22s ease, color .22s ease, box-shadow .22s ease;
  pointer-events: auto;
  cursor: pointer;
}

.lm-product-gallery-nav__button span {
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 500;
}

.lm-product-gallery-nav__button--prev {
  left: 18px;
}

.lm-product-gallery-nav__button--next {
  right: 18px;
}

.lm-product-gallery-nav__button:hover,
.lm-product-gallery-nav__button:focus-visible {
  transform: translateY(-50%) scale(1.04);
  background: #ffffff;
  box-shadow: 0 20px 38px rgba(28, 30, 42, .16);
}

.lm-product-gallery-nav__button:disabled {
  opacity: .38;
  cursor: default;
  transform: translateY(-50%);
  box-shadow: 0 10px 22px rgba(28, 30, 42, .08);
}

.lm-single-product__media-card.is-gallery-single .lm-product-gallery-nav,
.lm-single-product__media-card.no-gallery .lm-product-gallery-nav {
  display: none;
}

.lm-single-product__media .woocommerce-product-gallery {
  width: 100% !important;
  float: none !important;
  margin: 0;
}

.lm-single-product__media .woocommerce-product-gallery__wrapper {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.92);
}

.lm-single-product__media .woocommerce-product-gallery__image {
  display: block;
}

.lm-single-product__media .woocommerce-product-gallery__image a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  padding: 28px;
}

.lm-single-product__media .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: center;
  border-radius: 24px;
  box-shadow: none !important;
}

.lm-single-product__media .flex-control-thumbs {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 18px 4px 0;
  margin: 0;
  scrollbar-width: thin;
}

.lm-single-product__media .flex-control-thumbs li {
  float: none !important;
  width: 92px !important;
  min-width: 92px;
  margin: 0 !important;
  list-style: none;
}

.lm-single-product__media .flex-control-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  border: 2px solid transparent;
  background: #fff;
  opacity: 1;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  cursor: pointer;
}

.lm-single-product__media .flex-control-thumbs img.flex-active,
.lm-single-product__media .flex-control-thumbs img:hover {
  border-color: rgba(238, 156, 168, .55);
  box-shadow: 0 10px 26px rgba(238, 156, 168, .18);
  transform: translateY(-2px);
}

.lm-product-summary-card {
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lm-product-summary-card__eyebrow {
  margin: 0;
  color: #d6a574;
  font-size: .95rem;
  line-height: 1.2;
  font-weight: 800;
}

.lm-product-summary-card__eyebrow a {
  color: inherit;
}

.lm-product-summary-card__title {
  margin: 0;
  color: var(--lm-navy);
  font-size: clamp(2.5rem, 3vw, 4.6rem);
  line-height: .95;
  letter-spacing: -.05em;
}

.lm-product-summary-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
  color: var(--lm-navy);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.15;
}

.lm-product-summary-card__price del {
  color: rgba(28,30,42,.42);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(28, 30, 42, .34);
}

.lm-product-summary-card__price ins {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(206, 92, 118, .12);
  color: var(--lm-berry);
  text-decoration: none;
}

.lm-product-summary-card__about {
  position: relative;
  overflow: hidden;
  padding: 24px 24px 34px;
  border-radius: 28px;
  /*background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(249,245,238,.96) 100%);*/
  border: 1px solid rgba(28,30,42,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}

.lm-product-summary-card__about::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18px;
  background:
    radial-gradient(circle at 14px 0, transparent 13px, rgba(255, 224, 236, .9) 14px) repeat-x;
  background-size: 28px 18px;
  background-position: left bottom;
}

.lm-product-summary-card__about h2 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: var(--lm-navy);
}

.lm-product-summary-card__about-copy,
.lm-product-summary-card__about-copy p {
  margin: 0;
  color: var(--lm-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.lm-product-summary-card__facts,
.lm-product-summary-card__purchase {
  display: grid;
  gap: 12px;
}

.lm-product-fact-row {
  display: grid;
  grid-template-columns: minmax(92px, 140px) 1fr;
  align-items: center;
  gap: 18px;
  min-height: 60px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(247,246,242,.92);
  border: 1px solid rgba(28,30,42,.07);
}

.lm-product-fact-row--meta {
  min-height: 62px;
}

.lm-product-fact-row__label {
  color: var(--lm-muted);
  font-size: .95rem;
  font-weight: 700;
}

.lm-product-fact-row__value,
.lm-product-fact-row__value p {
  margin: 0;
  color: var(--lm-navy);
  font-size: 1rem;
  font-weight: 800;
  text-align: right;
}

.lm-product-fact-row__value .stock {
  display: inline;
  font-weight: inherit;
}

.lm-product-fact-row__value.is-in-stock,
.lm-product-fact-row__value .in-stock {
  color: #8e9300;
}

.lm-product-fact-row__value.is-out-of-stock,
.lm-product-fact-row__value .out-of-stock {
  color: #c8483f;
}

.lm-product-summary-card__cart .variations_form,
.lm-product-summary-card__cart form.cart {
  margin: 6px 0 0;
}

.lm-product-summary-card__cart .quantity {
  margin-right: 12px !important;
}

.lm-product-summary-card__cart .qty {
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(28,30,42,.08);
  padding: 0 14px;
}

.lm-product-summary-card__cart button.single_add_to_cart_button,
.lm-product-summary-card__cart .single_add_to_cart_button {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  border: 0;
  background: var(--lm-navy) !important;
  color: #fff !important;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(28,30,42,.14);
}

.lm-product-summary-card__cart .stock.out-of-stock,
.lm-product-summary-card__cart p.stock {
  margin: 0 0 12px;
  padding: 22px 24px;
  border-radius: 28px;
  border: 1px solid rgba(238,156,168,.32);
  background: rgba(255, 243, 244, .96);
  color: #c8483f;
  font-size: 1.05rem;
  font-weight: 700;
}

.lm-single-product__details,
.lm-single-product__related {
  margin-top: 34px;
}

.lm-single-product__details-card {
  padding: 40px 42px;
}

.lm-single-product__details-card .woocommerce-tabs::before,
.lm-single-product__details-card .woocommerce-tabs::after {
  display: none;
}

.lm-single-product__details-card .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0 0 28px;
  border: 0;
  list-style: none;
}

.lm-single-product__details-card .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.lm-single-product__details-card .woocommerce-tabs ul.tabs li::before,
.lm-single-product__details-card .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.lm-single-product__details-card .woocommerce-tabs ul.tabs li a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(247,246,242,.96);
  color: var(--lm-muted);
  font-weight: 700;
}

.lm-single-product__details-card .woocommerce-tabs ul.tabs li.active a {
  background: var(--lm-navy);
  color: #fff;
}

.lm-single-product__details-card .woocommerce-Tabs-panel {
  margin: 0;
}

.lm-single-product__details-card .woocommerce-Tabs-panel h2,
.lm-single-product__details-card .woocommerce-Tabs-panel h3 {
  color: var(--lm-navy);
}

.lm-single-product__details-card .woocommerce-Tabs-panel p,
.lm-single-product__details-card .woocommerce-Tabs-panel li,
.lm-single-product__details-card .woocommerce-Tabs-panel td,
.lm-single-product__details-card .woocommerce-Tabs-panel th {
  color: var(--lm-muted);
  line-height: 1.8;
}

.lm-single-product__details-card .shop_attributes {
  border: 0;
}

.lm-single-product__details-card .shop_attributes th,
.lm-single-product__details-card .shop_attributes td {
  padding: 14px 0;
  border-bottom: 1px solid rgba(28,30,42,.08);
}

.lm-single-product__related .related {
  padding: 38px 34px 34px;
  margin-bottom: 150px;
}

.lm-single-product__related .related > h2 {
  margin: 0 0 26px;
  color: var(--lm-navy);
  font-size: clamp(2.1rem, 3vw, 3.5rem);
  line-height: .95;
  letter-spacing: -.045em;
}

.lm-single-product__related ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lm-single-product__related ul.products::before,
.lm-single-product__related ul.products::after {
  display: none;
}

.lm-single-product__related ul.products li.product {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 18px;
  border-radius: 30px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(28,30,42,.06);
  box-shadow: 0 14px 34px rgba(28,30,42,.05);
}

.lm-single-product__related ul.products li.product img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: contain;
  margin: 0 0 16px;
  border-radius: 24px;
  background: #fff;
}

.lm-single-product__related ul.products li.product .woocommerce-loop-product__title {
  margin: 0 0 10px;
  color: var(--lm-navy);
  font-size: 1.02rem;
  line-height: 1.28;
  font-weight: 800;
}

.lm-single-product__related ul.products li.product .price {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  margin: 0 0 16px;
  color: var(--lm-navy);
  font-weight: 800;
  line-height: 1.2;
}

.lm-single-product__related ul.products li.product .price del {
  color: rgba(28, 30, 42, .42);
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(28, 30, 42, .34);
}

.lm-single-product__related ul.products li.product .price ins {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(206, 92, 118, .12);
  color: var(--lm-berry);
  text-decoration: none;
}

.lm-single-product__related ul.products li.product .button {
  display: inline-flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--lm-navy);
  color: #fff;
  font-weight: 800;
}

@media (max-width: 1280px) {
  .lm-single-product__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lm-product-summary-card__title {
    font-size: clamp(2.4rem, 6vw, 4rem);
  }

  .lm-single-product__related ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .lm-single-product__media-card,
  .lm-product-summary-card,
  .lm-single-product__details-card,
  .lm-single-product__related .related {
    border-radius: 26px;
  }

  .lm-single-product__media-card,
  .lm-product-summary-card,
  .lm-single-product__details-card,
  .lm-single-product__related .related {
    padding-left: 22px;
    padding-right: 22px;
  }

  .lm-single-product__media .woocommerce-product-gallery__image a {
    min-height: 420px;
    padding: 18px;
  }

  .lm-product-gallery-nav__button {
    width: 50px;
    height: 50px;
  }

  .lm-single-product__media .woocommerce-product-gallery__image img {
    max-height: 380px;
  }

  .lm-product-fact-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 6px;
    min-height: 0;
    padding: 16px 18px;
    border-radius: 24px;
  }

  .lm-product-fact-row__value,
  .lm-product-fact-row__value p {
    text-align: left;
  }

  .lm-single-product__related ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .lm-single-product__media .woocommerce-product-gallery__image a {
    min-height: 320px;
    padding-left: 52px;
    padding-right: 52px;
  }

  .lm-product-gallery-nav__button {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .lm-product-gallery-nav__button--prev {
    left: 10px;
  }

  .lm-product-gallery-nav__button--next {
    right: 10px;
  }

  .lm-single-product__related ul.products {
    grid-template-columns: 1fr;
  }
}


.lm-product-summary-card__swatches {
  display: grid;
  gap: 12px;
}

.lm-product-fact-row--swatch {
  grid-template-columns: minmax(50px, 50px) 1fr;
}

.lm-product-swatch-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.lm-product-swatch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(28,30,42,.08);
  background: rgba(255,255,255,.9);
  color: var(--lm-navy);
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
  cursor: pointer;
}

.lm-product-swatch:hover {
  transform: translateY(-1px);
  border-color: rgba(238,156,168,.32);
  box-shadow: 0 10px 24px rgba(28,30,42,.06);
}

.lm-product-swatch.is-active {
  border-color: rgba(238,156,168,.5);
  background: rgba(244,229,235,.6);
  box-shadow: 0 10px 24px rgba(238,156,168,.14);
}

.lm-product-swatch__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lm-swatch-color, #fff);
  border: 2px solid rgba(255,255,255,.72);
  box-shadow: inset 0 0 0 1px rgba(28,30,42,.12);
}

.lm-product-swatch.is-active .lm-product-swatch__dot {
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.82), 0 0 0 1px rgba(28,30,42,.16);
}

.lm-product-stock-pill {
  margin: 4px 0 0;
  min-height: 62px;
  padding: 16px 22px;
  border-radius: 999px;
  border: 1px solid rgba(28,30,42,.07);
  background: rgba(247,246,242,.92);
  color: var(--lm-navy);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.lm-product-stock-pill .stock {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-weight: inherit;
  font-size: inherit;
}

.lm-product-stock-pill.is-in-stock,
.lm-product-stock-pill .in-stock {
  color: #8e9300;
}

.lm-product-stock-pill.is-out-of-stock,
.lm-product-stock-pill .out-of-stock {
  color: #c8483f;
}

.lm-product-summary-card__cart .variations {
  width: 100%;
  border: 0;
  margin: 0 0 14px;
}

.lm-product-summary-card__cart .variations tr,
.lm-product-summary-card__cart .variations td,
.lm-product-summary-card__cart .variations th {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
}

.lm-product-summary-card__cart .variations tr + tr {
  margin-top: 12px;
}

.lm-product-summary-card__cart .variations label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lm-product-summary-card__cart .variations select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.lm-product-summary-card__cart .reset_variations {
  display: inline-flex !important;
  margin-top: 10px;
  color: var(--lm-muted) !important;
  font-weight: 700;
}

.lm-product-summary-card__cart .single_variation_wrap {
  display: grid;
  gap: 12px;
}

.lm-product-summary-card__cart .woocommerce-variation-price,
.lm-product-summary-card__cart .woocommerce-variation-availability {
  display: none !important;
}

@media (max-width: 900px) {
  .lm-product-fact-row--swatch {
    grid-template-columns: 1fr;
  }

  .lm-product-swatch-list {
    justify-content: flex-start;
  }

  .lm-product-stock-pill {
    justify-content: flex-start;
    border-radius: 24px;
  }
}


.woocommerce-breadcrumb {
  margin: 0 auto!important;
  margin-top: 20px!important;
  margin-bottom: 20px!important;
  max-width: 1200px!important;
  text-align: left;
}

.woocommerce-breadcrumb > a {
  text-decoration: underline;
  transition: 0.3s;
}

.woocommerce-breadcrumb > a:hover {
  cursor: pointer;
  color: black;
}

/* Product add-to-cart refinement */
.lm-product-summary-card__cart .single_variation {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.lm-product-summary-card__cart .single_variation_wrap {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.lm-product-summary-card__cart .woocommerce-variation-add-to-cart {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.lm-product-summary-card__cart .quantity {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 68px;
  margin: 0 !important;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(28,30,42,.08);
  background: #fff;
  box-shadow: 0 10px 24px rgba(28,30,42,.06);
}

.lm-product-summary-card__cart .qty {
  width: 72px;
  min-height: auto;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--lm-navy);
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
  box-shadow: none;
}

.lm-product-summary-card__cart .qty:focus {
  outline: none;
}

.lm-product-summary-card__cart input.qty::-webkit-outer-spin-button,
.lm-product-summary-card__cart input.qty::-webkit-inner-spin-button {
  opacity: 1;
}

.lm-product-summary-card__cart button.single_add_to_cart_button,
.lm-product-summary-card__cart .single_add_to_cart_button {
  min-width: 260px;
  min-height: 68px;
  padding: 0 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1f2237 0%, #15182b 100%) !important;
  color: #fff !important;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.02em;
  box-shadow: 0 18px 36px rgba(20, 24, 43, .18);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.lm-product-summary-card__cart button.single_add_to_cart_button:hover,
.lm-product-summary-card__cart .single_add_to_cart_button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(20, 24, 43, .22);
}

.lm-product-summary-card__cart button.single_add_to_cart_button:disabled,
.lm-product-summary-card__cart .single_add_to_cart_button:disabled {
  opacity: .7;
  transform: none;
  box-shadow: none;
}

@media (max-width: 900px) {
  .lm-product-summary-card__cart .woocommerce-variation-add-to-cart {
    align-items: stretch;
  }

  .lm-product-summary-card__cart .quantity,
  .lm-product-summary-card__cart button.single_add_to_cart_button,
  .lm-product-summary-card__cart .single_add_to_cart_button {
    width: 100%;
    min-width: 0;
  }
}

/* Delivery page */
.info-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at top left, rgba(238, 156, 168, .22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(162, 212, 235, .22), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .38));
}

.info-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 36px;
  align-items: center;
}

.info-hero__title {
  margin: 0;
  font-size: clamp(2.3rem, 4.2vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 800;
  max-width: 14ch;
}

.info-hero__text {
  max-width: 670px;
  margin: 24px 0 0;
  font-size: 1.06rem;
  line-height: 1.9;
  color: var(--lm-muted);
}

.info-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.info-hero-card,
.delivery-card,
.delivery-note,
.delivery-editorial__content,
.delivery-timeline {
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(28, 30, 42, .08);
  box-shadow: var(--lm-shadow);
  backdrop-filter: blur(14px);
}

.info-hero-card {
  position: relative;
  padding: 30px 28px;
  border-radius: 34px;
}

.info-hero-card::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px dashed rgba(238, 156, 168, .28);
  pointer-events: none;
}

.info-hero-card__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(238, 156, 168, .14);
  color: var(--lm-berry);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.info-hero-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.info-hero-card__list li {
  position: relative;
  padding-left: 26px;
  font-weight: 600;
  color: rgba(28, 30, 42, .82);
}

.info-hero-card__list li::before,
.delivery-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lm-peony), var(--lm-ocean));
  box-shadow: 0 0 0 5px rgba(238, 156, 168, .12);
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.delivery-card {
  height: 100%;
  padding: 28px;
  border-radius: 30px;
}

.delivery-card__icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(238, 156, 168, .22), rgba(162, 212, 235, .18));
  color: var(--lm-berry);
  font-size: .92rem;
  font-weight: 800;
}

.delivery-card h3,
.timeline-step h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
  line-height: 1.3;
}

.delivery-card p,
.timeline-step p,
.delivery-note__content p {
  margin: 0;
  color: var(--lm-muted);
  line-height: 1.85;
}

.delivery-timeline-wrap {
  padding-top: 10px;
}

.delivery-timeline {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: 34px;
  padding: 34px;
  border-radius: 38px;
}

.delivery-timeline__intro h2,
.delivery-note__content h2 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.delivery-timeline__intro p {
  margin: 0;
  color: var(--lm-muted);
  line-height: 1.85;
}

.delivery-timeline__steps {
  display: grid;
  gap: 18px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(247, 246, 242, .95);
  border: 1px solid rgba(28, 30, 42, .06);
}

.timeline-step strong {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(238, 156, 168, .2), rgba(162, 212, 235, .24));
  color: var(--lm-berry);
  font-size: 1rem;
}

.delivery-note {
  position: relative;
  padding: 36px;
  border-radius: 40px;
  margin-bottom: 150px;
}

.delivery-note::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 18px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 156, 168, .18), transparent 72%);
  pointer-events: none;
}

.delivery-checklist {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 16px;
}

.delivery-checklist li {
  position: relative;
  padding-left: 28px;
  color: rgba(28, 30, 42, .8);
  line-height: 1.85;
}

.delivery-editorial {
  padding-top: 0;
}

.delivery-editorial__content {
  padding: 34px;
  border-radius: 32px;
}

.delivery-editorial__content > *:first-child {
  margin-top: 0;
}

.delivery-editorial__content > *:last-child {
  margin-bottom: 0;
}

.delivery-editorial__content p,
.delivery-editorial__content li {
  line-height: 1.85;
  color: var(--lm-muted);
}

@media (max-width: 980px) {
  .info-hero__grid,
  .delivery-grid,
  .delivery-timeline {
    grid-template-columns: 1fr;
  }

  .info-hero__title {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .info-hero {
    padding: 54px 0 72px;
  }

  .delivery-card,
  .delivery-note,
  .delivery-timeline,
  .delivery-editorial__content,
  .info-hero-card {
    padding: 24px;
    border-radius: 26px;
  }

  .timeline-step {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 18px;
  }

  .timeline-step strong {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }
}


.info-hero--delivery {
  padding-bottom: 118px;
}

.info-hero--delivery .hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 42px;
  background:
    radial-gradient(circle at 21px -1px, transparent 24px, rgba(247, 246, 242, .98) 25px) 0 0 / 72px 42px repeat-x,
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(247,246,242,.92) 100%);
  transform: none;
  pointer-events: none;
}

.info-hero__content {
  position: relative;
  z-index: 1;
}

.info-hero__aside {
  position: relative;
  z-index: 1;
}

.delivery-hero-showcase {
  position: relative;
  min-height: 520px;
  margin-left: -26px;
  padding: 24px 0 24px 22px;
}

.delivery-hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
  padding: 28px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(250, 247, 244, .92)),
    rgba(255, 255, 255, .92);
  border: 1px solid rgba(28, 30, 42, .08);
  box-shadow: 0 26px 60px rgba(28, 30, 42, .12);
  overflow: hidden;
}

.delivery-hero-panel::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 26px;
  border: 1px dashed rgba(238, 156, 168, .28);
  pointer-events: none;
}

.delivery-hero-panel__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
}

.delivery-hero-panel__top h3 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.delivery-hero-panel__top p {
  margin: 0;
  max-width: 34ch;
  color: var(--lm-muted);
  line-height: 1.7;
}

.delivery-hero-stats {
  display: grid;
  gap: 10px;
}

.delivery-hero-stat {
  display: grid;
  gap: 2px;
  min-width: 112px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(247, 246, 242, .9);
  border: 1px solid rgba(28, 30, 42, .06);
  text-align: left;
}

.delivery-hero-stat strong {
  font-size: 1.1rem;
  line-height: 1;
}

.delivery-hero-stat span {
  color: var(--lm-muted);
  font-size: .88rem;
  font-weight: 700;
}

.delivery-hero-steps {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 8px 0 8px 4px;
}

.delivery-hero-steps::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(180deg, rgba(238, 156, 168, .28), rgba(162, 212, 235, .3));
}

.delivery-hero-step {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.delivery-hero-step__dot {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  margin-top: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(238, 156, 168, .95), rgba(162, 212, 235, .95));
  box-shadow: 0 0 0 6px rgba(255, 255, 255, .8);
  animation: lmDeliveryDotGlow 3.2s ease-in-out infinite;
}

.delivery-hero-step strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  line-height: 1.35;
}

.delivery-hero-step p {
  margin: 0;
  color: var(--lm-muted);
  line-height: 1.65;
}

.delivery-hero-floating-card {
  position: absolute;
  z-index: 3;
  max-width: 250px;
  padding: 18px 18px 17px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(28, 30, 42, .08);
  box-shadow: 0 22px 46px rgba(28, 30, 42, .12);
  backdrop-filter: blur(12px);
}

.delivery-hero-floating-card strong {
  display: block;
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.3;
}

.delivery-hero-floating-card p {
  margin: 0;
  color: var(--lm-muted);
  line-height: 1.6;
  font-size: .94rem;
}

.delivery-hero-floating-card__label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(238, 156, 168, .14);
  color: var(--lm-berry);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.delivery-hero-floating-card__icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(238, 156, 168, .22), rgba(162, 212, 235, .24));
  color: var(--lm-berry);
}

.delivery-hero-floating-card__icon svg {
  width: 20px;
  height: 20px;
}

.delivery-hero-floating-card--support {
  left: 0;
  bottom: 34px;
  animation: lmDeliveryFloat 6.2s ease-in-out infinite;
}

.delivery-hero-floating-card--badge {
  right: -14px;
  top: 42px;
  max-width: 220px;
  animation: lmDeliveryFloat 7.2s ease-in-out infinite reverse;
}

.delivery-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.delivery-hero-orb--pink {
  top: 6px;
  right: 22px;
  width: 132px;
  height: 132px;
  background: radial-gradient(circle, rgba(238, 156, 168, .32) 0%, rgba(238, 156, 168, 0) 72%);
  animation: lmDeliveryOrb 8s ease-in-out infinite;
}

.delivery-hero-orb--blue {
  left: 28px;
  bottom: 10px;
  width: 176px;
  height: 176px;
  background: radial-gradient(circle, rgba(162, 212, 235, .28) 0%, rgba(162, 212, 235, 0) 72%);
  animation: lmDeliveryOrb 10s ease-in-out infinite reverse;
}

@keyframes lmDeliveryFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes lmDeliveryOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -10px, 0) scale(1.04); }
}

@keyframes lmDeliveryDotGlow {
  0%, 100% { transform: scale(.94); box-shadow: 0 0 0 6px rgba(255, 255, 255, .8); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 9px rgba(255, 255, 255, .68); }
}

.info-hero-card--visual {
  display: grid;
  gap: 20px;
}

.delivery-brand-strip,
.payment-badges,
.delivery-method-card__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.delivery-brand-chip,
.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(28, 30, 42, .08);
  background: rgba(247, 246, 242, .88);
  color: rgba(28, 30, 42, .82);
  font-size: .92rem;
  font-weight: 700;
  line-height: 1;
}

.delivery-brand-chip__icon,
.delivery-method-card__logo {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  flex: 0 0 auto;
}

.delivery-brand-chip__icon svg,
.delivery-card__icon svg,
.delivery-method-card__logo svg {
  width: 20px;
  height: 20px;
}

.delivery-brand-chip--nova .delivery-brand-chip__icon,
.delivery-method-card__logo--nova {
  background: rgba(225, 36, 48, .12);
  color: #d83a4b;
}

.delivery-brand-chip--ukr .delivery-brand-chip__icon,
.delivery-method-card__logo--ukr {
  background: rgba(255, 212, 59, .2);
  color: #8b6a00;
}

.delivery-method-card__logo--payment {
  background: linear-gradient(135deg, rgba(238, 156, 168, .22), rgba(162, 212, 235, .24));
  color: var(--lm-berry);
}

.payment-badge--visa {
  color: #1a3da6;
}

.payment-badge--mc {
  color: #22253a;
}

.payment-badge__mc-circles {
  position: relative;
  width: 28px;
  height: 16px;
  display: inline-block;
}

.payment-badge__mc-circles i {
  position: absolute;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  opacity: .9;
}

.payment-badge__mc-circles i:first-child {
  left: 0;
  background: #ea001b;
}

.payment-badge__mc-circles i:last-child {
  right: 0;
  background: #ff9900;
}

.payment-badge--cod {
  color: var(--lm-berry);
}

.delivery-methods {
  padding-top: 24px;
}

.delivery-methods__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.delivery-method-card {
  height: 100%;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(28, 30, 42, .08);
  box-shadow: var(--lm-shadow);
}

.delivery-method-card__head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.delivery-method-card__head h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.delivery-method-card__head p {
  margin: 0;
  color: var(--lm-muted);
  line-height: 1.7;
}

.delivery-method-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.delivery-method-card__list li {
  position: relative;
  padding-left: 24px;
  color: rgba(28, 30, 42, .8);
  line-height: 1.75;
}

.delivery-method-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lm-peony), var(--lm-ocean));
  box-shadow: 0 0 0 4px rgba(238, 156, 168, .12);
}

.delivery-method-card--payment {
  background:
    radial-gradient(circle at top right, rgba(162, 212, 235, .18), transparent 34%),
    rgba(255, 255, 255, .82);
}

.delivery-card__icon {
  color: var(--lm-berry);
}

.delivery-card__icon svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 980px) {
  .delivery-hero-showcase {
    min-height: 0;
    margin-left: 0;
    padding: 0;
  }

  .delivery-hero-panel__top {
    grid-template-columns: 1fr;
  }

  .delivery-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delivery-hero-floating-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    max-width: none;
    margin-top: 16px;
    animation: none;
  }

  .delivery-hero-orb {
    display: none;
  }

  .delivery-methods__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .info-hero--delivery {
    padding-bottom: 94px;
  }

  .info-hero--delivery .hero-wave {
    height: 34px;
    background:
      radial-gradient(circle at 17px -1px, transparent 20px, rgba(247, 246, 242, .98) 21px) 0 0 / 58px 34px repeat-x,
      linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(247,246,242,.92) 100%);
  }

  .delivery-hero-panel {
    padding: 22px;
    border-radius: 26px;
  }

  .delivery-hero-panel::before {
    inset: 10px;
    border-radius: 20px;
  }

  .delivery-hero-stats {
    grid-template-columns: 1fr;
  }

  .delivery-hero-step {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 12px;
  }

  .delivery-hero-step p,
  .delivery-hero-floating-card p {
    font-size: .92rem;
  }

  .delivery-method-card {
    padding: 24px;
    border-radius: 26px;
  }
}


/* Delivery page refinements */
.info-hero__title {
  max-width: 11ch;
}

.info-hero__text {
  max-width: 34ch;
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.75;
}

.delivery-method-card__payments {
  align-items: center;
}

.payment-badge {
  min-height: 48px;
  padding: 11px 16px;
  font-size: .98rem;
}

.payment-badge__mark,
.payment-badge__cash-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.payment-badge__mark {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 800;
}

.payment-badge__mark--vchasno {
  background: linear-gradient(135deg, rgba(55, 109, 255, .14), rgba(61, 204, 132, .2));
  color: #2d68d8;
}

.payment-badge__mark--liqpay {
  position: relative;
  width: 26px;
  height: 18px;
}

.payment-badge__mark--liqpay::before,
.payment-badge__mark--liqpay::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
}

.payment-badge__mark--liqpay::before {
  background: #67bf25;
}

.payment-badge__mark--liqpay::after {
  inset: 4px 5px;
  background: #fff;
  opacity: .22;
}

.payment-badge__cash-icon {
  width: 24px;
  height: 24px;
}

.payment-badge__cash-icon svg {
  width: 22px;
  height: 22px;
}

.payment-badge--vchasno {
  color: #2e6ad9;
}

.payment-badge--liqpay {
  color: #478b18;
}

.payment-badge--cod {
  color: var(--lm-berry);
}

.delivery-flow-wrap {
  padding-top: 8px;
}

.delivery-flow {
  position: relative;
  padding: 38px;
  border-radius: 40px;
  background:
    radial-gradient(circle at top right, rgba(162, 212, 235, .18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(238, 156, 168, .14), transparent 28%),
    rgba(255, 255, 255, .82);
  border: 1px solid rgba(28, 30, 42, .08);
  box-shadow: var(--lm-shadow);
  overflow: hidden;
}

.delivery-flow__intro {
  max-width: 560px;
  margin-bottom: 34px;
}

.delivery-flow__intro h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.delivery-flow__intro p {
  margin: 0;
  color: var(--lm-muted);
  line-height: 1.8;
}

.delivery-flow__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.delivery-flow__track {
  position: absolute;
  left: 11%;
  right: 11%;
  top: 205px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(238, 156, 168, .12), rgba(162, 212, 235, .18));
  overflow: hidden;
}

.delivery-flow__track span {
  position: absolute;
  top: 0;
  left: -16%;
  width: 16%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(238, 156, 168, .55), rgba(162, 212, 235, .8));
  box-shadow: 0 0 14px rgba(162, 212, 235, .45);
  animation: lmFlowPulse 5.2s ease-in-out infinite;
}

.flow-node {
  position: relative;
  min-height: 260px;
  padding: 26px 22px 24px;
  border-radius: 30px;
  background: rgba(247, 246, 242, .9);
  border: 1px solid rgba(28, 30, 42, .06);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.flow-node:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(28, 30, 42, .12);
  border-color: rgba(238, 156, 168, .22);
}

.flow-node::after {
  content: '';
  position: absolute;
  top: 79px;
  right: -11px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(238, 156, 168, .88), rgba(162, 212, 235, .96));
  box-shadow: 0 0 0 6px rgba(255, 255, 255, .65);
  animation: lmNodeGlow 2.6s ease-in-out infinite;
}

.flow-node:last-child::after {
  display: none;
}

.flow-node__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  margin-bottom: 14px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(238, 156, 168, .14);
  color: var(--lm-berry);
  font-size: .88rem;
  font-weight: 800;
}

.flow-node__icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(238, 156, 168, .22), rgba(162, 212, 235, .2));
  color: var(--lm-berry);
}

.flow-node__icon svg {
  width: 24px;
  height: 24px;
}

.flow-node h3 {
  margin: 0 0 10px;
  font-size: 1.14rem;
  line-height: 1.28;
}

.flow-node p {
  margin: 0;
  color: var(--lm-muted);
  line-height: 1.72;
}

@keyframes lmFlowPulse {
  0% { left: -16%; }
  55% { left: 100%; }
  100% { left: 100%; }
}

@keyframes lmNodeGlow {
  0%, 100% { transform: scale(.92); box-shadow: 0 0 0 6px rgba(255, 255, 255, .65); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 9px rgba(255, 255, 255, .55); }
}

@media (max-width: 1100px) {
  .delivery-flow__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delivery-flow__track {
    display: none;
  }

  .flow-node::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .delivery-flow {
    padding: 24px;
    border-radius: 28px;
  }

  .delivery-flow__intro {
    margin-bottom: 24px;
  }

  .delivery-flow__grid {
    grid-template-columns: 1fr;
  }

  .flow-node {
    min-height: 0;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .payment-badge {
    min-height: 44px;
    font-size: .92rem;
  }
}

/* FAQ page */
.info-hero--faq {
  padding-top: 42px;
}

.info-hero--faq .hero-wave {
  opacity: .82;
}

.faq-hero-card {
  overflow: hidden;
}

.faq-hero-card::after {
  content: '';
  position: absolute;
  inset: auto -10% -24% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 212, 235, .24), rgba(162, 212, 235, 0) 72%);
  pointer-events: none;
}

.faq-hero-card__chips,
.faq-topic-pills,
.faq-cta-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-topic-chip,
.faq-topic-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(28, 30, 42, .08);
  background: rgba(255, 255, 255, .78);
  color: rgba(28, 30, 42, .76);
  font-size: .92rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(28, 30, 42, .05);
}

.faq-topic-chip:nth-child(2n),
.faq-topic-pill:nth-child(2n) {
  background: rgba(238, 156, 168, .12);
}

.faq-topic-chip:nth-child(3n),
.faq-topic-pill:nth-child(3n) {
  background: rgba(162, 212, 235, .16);
}

.faq-hero-card__list {
  margin-top: 20px;
}

.faq-section {
  padding-top: 32px;
}

.faq-topic-pills {
  justify-content: center;
  margin: 0 0 28px;
}

.faq-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.faq-group,
.faq-cta-card {
  position: relative;
  border: 1px solid rgba(28, 30, 42, .08);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .82));
  box-shadow: var(--lm-shadow);
}

.faq-group {
  padding: 28px;
}

.faq-group__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.faq-group__head h3,
.faq-cta-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.1;
  color: var(--lm-navy);
}

.faq-group__icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(244, 226, 228, .9), rgba(255, 255, 255, .95));
  color: var(--lm-berry);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.faq-group__icon svg {
  width: 24px;
  height: 24px;
}

.faq-accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(28, 30, 42, .08);
  border-radius: 24px;
  background: rgba(247, 246, 242, .76);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease;
}

.faq-item[open] {
  background: rgba(255, 255, 255, .95);
  border-color: rgba(238, 156, 168, .22);
  box-shadow: 0 14px 32px rgba(28, 30, 42, .06);
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-item__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__question {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--lm-navy);
}

.faq-item__toggle {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(238, 156, 168, .12);
  transition: background-color .22s ease, transform .22s ease;
}

.faq-item__toggle::before,
.faq-item__toggle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--lm-berry);
  transform: translate(-50%, -50%);
}

.faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__toggle {
  background: rgba(162, 212, 235, .18);
  transform: rotate(180deg);
}

.faq-item[open] .faq-item__toggle::after {
  opacity: 0;
}

.faq-item__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .26s ease;
}

.faq-item[open] .faq-item__content {
  grid-template-rows: 1fr;
}

.faq-item__content p {
  overflow: hidden;
  margin: 0;
  padding: 0 22px 22px;
  color: var(--lm-muted);
  line-height: 1.85;
}

.faq-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding: 28px 30px;
  background: linear-gradient(135deg, rgba(244, 226, 228, .62), rgba(255, 255, 255, .94));
}

.faq-cta-card .section-kicker {
  margin-bottom: 10px;
}

@keyframes faqFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.faq-group__icon,
.faq-topic-chip,
.faq-topic-pill {
  animation: faqFloat 5.2s ease-in-out infinite;
}

.faq-topic-chip:nth-child(2),
.faq-topic-chip:nth-child(4),
.faq-topic-pill:nth-child(2),
.faq-topic-pill:nth-child(4) {
  animation-delay: .8s;
}

@media (max-width: 980px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .faq-group {
    padding: 22px;
    border-radius: 28px;
  }

  .faq-item__summary {
    padding: 18px 18px;
  }

  .faq-item__content p {
    padding: 0 18px 18px;
  }

  .faq-topic-pills {
    justify-content: flex-start;
  }

  .faq-topic-chip,
  .faq-topic-pill {
    min-height: 38px;
    padding: 0 14px;
    font-size: .88rem;
  }
}

/* Catalog AJAX filtering */
.lm-filter-status {
  min-height: 20px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--lm-muted);
}

.lm-catalog__content {
  position: relative;
}

.lm-catalog__content.is-filtering {
  pointer-events: none;
}

.lm-catalog__content.is-filtering .js-lm-catalog-products,
.lm-catalog__content.is-filtering .js-lm-catalog-pagination,
.lm-catalog__content.is-filtering .js-lm-catalog-results {
  opacity: .58;
  transition: opacity .2s ease;
}

.lm-catalog__content.is-filtering::after {
  content: '';
  position: absolute;
  inset: 86px 0 0;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(247, 246, 242, .24), rgba(247, 246, 242, .52));
  pointer-events: none;
}

.lm-filter-price input::-webkit-outer-spin-button,
.lm-filter-price input::-webkit-inner-spin-button {
  margin: 0;
}

/* Catalog attribute filters */
.lm-filter-pill span {
  gap: 8px;
}

.lm-filter-pill span small {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: rgba(28, 30, 42, .58);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  transition: background .2s ease, color .2s ease;
}

.lm-filter-pill input:checked + span small {
  background: rgba(255,255,255,.92);
  color: rgba(173, 70, 95, .92);
}

.lm-filter-options--colors {
  gap: 12px;
}

.lm-filter-color-pill {
  position: relative;
  cursor: pointer;
}

.lm-filter-color-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.lm-filter-color-pill__dot {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lm-swatch-color, #d9dce4);
  border: 2px solid rgba(255,255,255,.95);
  box-shadow: 0 0 0 1px rgba(28,30,42,.12), 0 8px 18px rgba(28,30,42,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.lm-filter-color-pill:hover .lm-filter-color-pill__dot {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(238,156,168,.34), 0 12px 22px rgba(28,30,42,.08);
}

.lm-filter-color-pill input:checked + .lm-filter-color-pill__dot {
  transform: scale(1.06);
  box-shadow: 0 0 0 2px rgba(28,30,42,.88), 0 12px 22px rgba(28,30,42,.08);
}


.site-header__cart {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background-color .24s ease;
}

.site-header__cart:hover,
.site-header__cart:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(241, 125, 155, .28);
}

.site-header__cart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--lm-navy);
  flex: 0 0 auto;
}

.site-header__cart-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.site-header__cart-count {
  transition: transform .2s ease;
}

/* Generic page shell */
.lm-page-shell {
  position: relative;
}

.lm-page-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3.2vw, 44px);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.82)),
    radial-gradient(circle at top left, rgba(238, 156, 168, .14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(162, 212, 235, .16), transparent 32%);
  border: 1px solid rgba(28, 30, 42, .08);
  box-shadow: 0 24px 64px rgba(28, 30, 42, .08);
}

.lm-page-card__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(14px);
  opacity: .8;
}

.lm-page-card__glow--one {
  top: -52px;
  right: -34px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(238,156,168,.24) 0%, rgba(238,156,168,0) 72%);
}

.lm-page-card__glow--two {
  bottom: -70px;
  left: -42px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(162,212,235,.24) 0%, rgba(162,212,235,0) 72%);
}

.lm-page-content,
.prose-card,
.lm-entry {
  position: relative;
  z-index: 1;
}

.prose-card {
  padding: clamp(24px, 3vw, 36px);
  border-radius: 28px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(28,30,42,.08);
  box-shadow: 0 18px 40px rgba(28,30,42,.06);
}

.prose-card h1,
.lm-entry h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.prose-card > div,
.lm-entry__content {
  color: var(--lm-muted);
  line-height: 1.85;
}

.prose-card > div > *:first-child,
.lm-entry__content > *:first-child {
  margin-top: 0;
}

.prose-card > div > *:last-child,
.lm-entry__content > *:last-child {
  margin-bottom: 0;
}

/* WooCommerce page shell */
.lm-page-card--woocommerce {
  padding: clamp(24px, 3vw, 38px);
}

.lm-page-hero--woocommerce {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, .65fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 26px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.78)),
    linear-gradient(135deg, rgba(238,156,168,.12), rgba(162,212,235,.12));
  border: 1px solid rgba(28,30,42,.07);
  box-shadow: 0 20px 46px rgba(28,30,42,.06);
}

.lm-page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(238,156,168,.16);
  color: rgba(173,70,95,.92);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.lm-page-hero__title {
  margin: 14px 0 12px;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: .96;
  letter-spacing: -.05em;
}

.lm-page-hero__text {
  max-width: 700px;
  margin: 0;
  color: var(--lm-muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.lm-page-hero__aside {
  display: grid;
  gap: 16px;
  justify-items: end;
}

.lm-page-hero__badge-card {
  display: grid;
  gap: 6px;
  width: min(100%, 240px);
  padding: 18px 18px 20px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,255,255,.82));
  border: 1px solid rgba(28,30,42,.08);
  box-shadow: 0 16px 34px rgba(28,30,42,.07);
}

.lm-page-hero__badge-card span {
  font-size: .8rem;
  font-weight: 700;
  color: rgba(173,70,95,.82);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.lm-page-hero__badge-card strong {
  font-size: 1.05rem;
  line-height: 1.25;
}

.lm-page-hero__dots {
  display: inline-flex;
  gap: 10px;
}

.lm-page-hero__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(238,156,168,.9), rgba(162,212,235,.85));
  box-shadow: 0 0 0 6px rgba(255,255,255,.58);
}

.lm-page-content--woocommerce {
  display: grid;
}

.lm-entry--woocommerce {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

/* WooCommerce global refinement */
.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #payment #place_order {
  /*min-height: 54px;*/
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(241, 125, 155, .24);
  background: linear-gradient(135deg, #f4b3bd 0%, #e58ea0 48%, #d8728b 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 18px 34px rgba(206, 92, 118, .22);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.woocommerce .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-checkout #payment #place_order:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(206, 92, 118, .28);
  filter: saturate(1.04);
  color: #fff;
}

.woocommerce .button.alt.disabled,
.woocommerce .button:disabled,
.woocommerce button.button:disabled,
.woocommerce input.button:disabled,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.disabled,
.woocommerce-checkout #payment #place_order:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(28,30,42,.1);
  background: rgba(255,255,255,.9);
  color: var(--lm-text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

.woocommerce form .form-row textarea {
  min-height: 136px;
  padding: 16px 18px;
  resize: vertical;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus,
.woocommerce-cart table.cart td.actions .coupon .input-text:focus,
.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default.select2-container--open .select2-selection--single {
  outline: none;
  border-color: rgba(229, 142, 160, .48);
  box-shadow: 0 0 0 4px rgba(238,156,168,.12);
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
  padding: 18px 22px 18px 52px !important;
  border: 1px solid rgba(28,30,42,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.86);
  color: var(--lm-text);
  box-shadow: 0 16px 34px rgba(28,30,42,.05);
  max-width: 1250px;
}

.woocommerce-info::before,
.woocommerce-message::before,
.woocommerce-error::before {
  top: 19px;
  left: 20px;
}

/* Cart page */
.woocommerce-cart .entry-content > .woocommerce,
.woocommerce-checkout .entry-content > .woocommerce,
.woocommerce-account .entry-content > .woocommerce {
  display: grid;
  gap: 22px;
}

.woocommerce-cart .woocommerce-cart-form,
.woocommerce-cart .cart-collaterals,
.woocommerce-checkout form.checkout,
.woocommerce-account .woocommerce,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  position: relative;
  z-index: 1;
}

.woocommerce-cart table.cart,
.woocommerce-checkout .woocommerce-checkout-review-order-table,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 100%;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(28,30,42,.08);
  box-shadow: 0 18px 40px rgba(28,30,42,.06);
}

.woocommerce-cart table.cart th,
.woocommerce-cart table.cart td,
.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
  padding: 20px 18px;
  border-color: rgba(28,30,42,.08);
}

.woocommerce-cart table.cart thead th,
.woocommerce-checkout .woocommerce-checkout-review-order-table thead th {
  background: linear-gradient(180deg, rgba(247,246,242,.96), rgba(247,246,242,.84));
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(28,30,42,.62);
}

.woocommerce-cart table.cart td.product-thumbnail img {
  width: 88px;
  min-width: 88px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,246,242,.92));
  box-shadow: inset 0 0 0 1px rgba(28,30,42,.06);
}

.woocommerce-cart table.cart td.product-name a,
.woocommerce-checkout .woocommerce-checkout-review-order-table td.product-name {
  color: var(--lm-text);
  font-weight: 700;
}

.woocommerce-cart table.cart td.product-name dl.variation,
.woocommerce-checkout .woocommerce-checkout-review-order-table dl.variation {
  margin-top: 8px;
  color: var(--lm-muted);
  font-size: .92rem;
}

.woocommerce-cart table.cart td.product-name dl.variation dt,
.woocommerce-cart table.cart td.product-name dl.variation dd,
.woocommerce-checkout .woocommerce-checkout-review-order-table dl.variation dt,
.woocommerce-checkout .woocommerce-checkout-review-order-table dl.variation dd {
  margin-bottom: 4px;
}

.woocommerce-cart table.cart td.product-remove a.remove {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(28,30,42,.04);
  color: rgba(206,92,118,.92) !important;
  transition: transform .2s ease, background-color .2s ease;
}

.woocommerce-cart table.cart td.product-remove a.remove:hover {
  transform: scale(1.06);
  background: rgba(238,156,168,.18);
  color: rgba(173,70,95,.96) !important;
}

.woocommerce-cart table.cart td.actions {
  padding: 24px 20px;
}

.woocommerce-cart table.cart td.actions .coupon {
  display: none !important;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
  float: none;
  width: min(320px, 100%);
  margin: 0;
}

.woocommerce-cart table.cart td.actions > button,
.woocommerce-cart table.cart td.actions > .button,
.woocommerce-cart table.cart td.actions .coupon button,
.woocommerce-cart table.cart td.actions .coupon .button {
  min-height: 52px;
}

.woocommerce-cart .quantity {
  display: inline-flex;
  align-items: center;
  min-width: 118px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(28,30,42,.1);
  background: rgba(255,255,255,.92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.woocommerce-cart .quantity .qty,
.woocommerce-checkout .quantity .qty {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  text-align: center;
  font-weight: 700;
  color: var(--lm-text);
}

.woocommerce-cart .cart-collaterals {
  display: block;
  width: 100%;
  margin-top: 8px;
}

.woocommerce-cart .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-checkout #customer_details,
.woocommerce-checkout #payment,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  border-radius: 28px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(28,30,42,.08);
  box-shadow: 0 18px 40px rgba(28,30,42,.06);
}

.woocommerce-cart .cart_totals {
  float: none;
  width: 100%;
  max-width: none;
  padding: 28px 32px;
}


.woocommerce-cart .cart-collaterals .cart_totals {
  margin: 0;
}

.woocommerce-cart .cart-collaterals .cart_totals::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  margin: 0 0 24px;
  background: linear-gradient(90deg, rgba(238,156,168,0), rgba(238,156,168,.5), rgba(238,156,168,0));
}

.woocommerce-cart .cart_totals table {
  width: 100%;
}

.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
  width: 50%;
  padding-top: 18px;
  padding-bottom: 18px;
}

.woocommerce-cart .cart_totals .wc-proceed-to-checkout {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
}

.woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button {
  width: auto;
  min-width: 260px;
  padding-left: 32px;
  padding-right: 32px;
}

.woocommerce-cart .cart_totals h2,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #customer_details h3,
.woocommerce-checkout #payment .payment_methods > li > label,
.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
  margin: 0 0 18px;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.woocommerce-cart .cart_totals table,
.woocommerce-checkout .woocommerce-checkout-review-order-table,
.woocommerce-checkout #payment {
  margin-bottom: 0;
}

.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td,
.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
  padding-left: 0;
  padding-right: 0;
}

.woocommerce-cart .cart_totals table td,
.woocommerce-checkout .woocommerce-checkout-review-order-table td,
.woocommerce-cart .cart_totals .order-total td,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
  text-align: right;
}

.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--lm-text);
}

.woocommerce-cart .wc-proceed-to-checkout {
  margin: 18px 0 0;
  padding: 0;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
}

.woocommerce-cart .cart_totals .shipping-calculator-button,
.woocommerce-checkout .woocommerce-privacy-policy-text a,
.woocommerce-checkout .showcoupon,
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info a {
  color: rgba(173,70,95,.94);
  font-weight: 700;
}

/* Checkout page */
.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  gap: 22px;
  align-items: start;
}

.woocommerce-checkout #customer_details {
  padding: 24px;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
  float: none;
  width: 100%;
}

.woocommerce-checkout #customer_details .col-2 {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(28,30,42,.08);
}

.woocommerce-checkout #customer_details .woocommerce-billing-fields,
.woocommerce-checkout #customer_details .woocommerce-shipping-fields,
.woocommerce-checkout #customer_details .woocommerce-additional-fields {
  display: grid;
  gap: 14px;
}

.woocommerce-checkout #order_review_heading {
  display: none;
}

.woocommerce-checkout #order_review {
  position: sticky;
  top: 110px;
  padding: 24px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table {
  box-shadow: none;
  border: 0;
  background: transparent;
}

.woocommerce-checkout #payment {
  margin-top: 16px;
  padding: 18px 18px 20px;
  background: linear-gradient(180deg, rgba(247,246,242,.8), rgba(255,255,255,.9));
}

.woocommerce-checkout #payment div.payment_box {
  border-radius: 18px;
  background: rgba(255,255,255,.84);
  color: var(--lm-muted);
}

.woocommerce-checkout #payment ul.payment_methods {
  border-bottom: 1px solid rgba(28,30,42,.08);
}

.woocommerce-checkout #payment ul.payment_methods > li {
  margin: 0;
  padding: 12px 0;
}

.woocommerce-checkout #payment .place-order {
  padding: 18px 0 0;
}

.woocommerce-checkout #payment #place_order {
  float: none;
  width: 100%;
}

/* My account */
.woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 22px;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  padding: 18px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  color: var(--lm-text);
  font-weight: 700;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation a:focus-visible {
  background: rgba(238,156,168,.14);
  color: rgba(173,70,95,.96);
}

.woocommerce-account .woocommerce-MyAccount-content {
  padding: 24px;
}

/* Empty cart */
.woocommerce-cart .cart-empty,
.woocommerce-cart .return-to-shop,
.woocommerce-account .woocommerce-message {
  position: relative;
  z-index: 1;
}

.woocommerce-cart .cart-empty {
  margin: 0;
}

@media (max-width: 1080px) {
  .woocommerce-checkout form.checkout,
  .woocommerce-account .woocommerce,
  .lm-page-hero--woocommerce {
    grid-template-columns: 1fr;
  }

  .lm-page-hero__aside {
    justify-items: start;
  }

  .woocommerce-checkout #order_review {
    position: static;
    top: auto;
  }
}

@media (max-width: 767px) {
  .lm-page-card,
  .lm-page-card--woocommerce,
  .prose-card,
  .woocommerce-cart .cart_totals,
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review,
  .woocommerce-account .woocommerce-MyAccount-content,
  .woocommerce-account .woocommerce-MyAccount-navigation {
    border-radius: 24px;
  }

  .woocommerce-cart table.cart,
  .woocommerce-cart table.cart tbody,
  .woocommerce-cart table.cart tr,
  .woocommerce-cart table.cart td {
    display: block;
    width: 100%;
  }

  .woocommerce-cart table.cart thead,
  .woocommerce-cart table.cart td.product-remove::before,
  .woocommerce-cart table.cart td.actions::before {
    display: none;
  }

  .woocommerce-cart table.cart tr {
    position: relative;
    padding: 18px 18px 10px;
    border-bottom: 1px solid rgba(28,30,42,.08);
  }

  .woocommerce-cart table.cart td {
    padding: 10px 0;
    text-align: left !important;
    border: 0;
  }

  .woocommerce-cart table.cart td.product-remove {
    position: absolute;
    top: 14px;
    right: 14px;
    width: auto;
    padding: 0;
  }

  .woocommerce-cart table.cart td.product-thumbnail {
    padding-right: 48px;
  }

  .woocommerce-cart table.cart td.product-price::before,
  .woocommerce-cart table.cart td.product-quantity::before,
  .woocommerce-cart table.cart td.product-subtotal::before {
    display: block;
    margin-bottom: 6px;
    font-size: .74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(28,30,42,.5);
  }

  .woocommerce-cart table.cart td.product-price::before {
    content: 'Ціна';
  }

  .woocommerce-cart table.cart td.product-quantity::before {
    content: 'Кількість';
  }

  .woocommerce-cart table.cart td.product-subtotal::before {
    content: 'Сума';
  }

  .woocommerce-cart table.cart td.actions .coupon {
    margin-bottom: 12px;
  }

  .woocommerce-cart table.cart td.actions .coupon,
  .woocommerce-cart table.cart td.actions .coupon .input-text,
  .woocommerce-cart table.cart td.actions > button,
  .woocommerce-cart table.cart td.actions .coupon .button {
    width: 100%;
  }

  .woocommerce-cart .cart_totals {
    width: 100%;
  }


  .woocommerce-cart .cart_totals {
    padding: 22px 18px;
  }

  .woocommerce-cart .cart_totals .wc-proceed-to-checkout {
    justify-content: stretch;
  }

  .woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button {
    width: 100%;
    min-width: 0;
  }
}


/* Checkout refinement — Nova Poshta + review items */
.woocommerce-checkout .shop_table .product-name,
.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name {
  width: 70%;
}

.woocommerce-checkout .shop_table .product-total,
.woocommerce-checkout .woocommerce-checkout-review-order-table .product-total {
  width: 30%;
}

.lm-checkout-review__product {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lm-checkout-review__thumb {
  flex: 0 0 74px;
  width: 74px;
  height: 74px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,246,242,.92));
  box-shadow: inset 0 0 0 1px rgba(28,30,42,.08);
}

.lm-checkout-review__thumb img,
.lm-checkout-review__thumb-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lm-checkout-review__name {
  min-width: 0;
  flex: 1 1 auto;
}

.lm-np-checkout {
  margin-top: 24px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(226, 189, 202, .8);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(253,249,251,.98));
  box-shadow: 0 18px 40px rgba(28,30,42,.05);
}

.lm-np-checkout__header {
  margin-bottom: 20px;
}

.lm-np-checkout__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  background: rgba(238,156,168,.18);
  color: rgba(173,70,95,.96);
  font-size: .92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.lm-np-checkout__header h3 {
  margin: 18px 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.lm-np-checkout__header p {
  max-width: 780px;
  margin: 0;
  color: var(--lm-muted);
}

.lm-np-checkout__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
}

.lm-np-checkout .form-row {
  float: none !important;
  width: 100% !important;
  margin: 0;
}

.lm-np-checkout .form-row-wide {
  grid-column: 1 / -1;
}

.lm-np-checkout label {
  margin-bottom: 10px;
  font-size: .95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--lm-text);
}

.lm-np-checkout select,
.lm-np-checkout .select2-selection,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row .input-text {
  min-height: 60px;
  border-radius: 20px;
}

.lm-np-checkout select {
  width: 100%;
  padding: 0 18px;
  border: 1px solid rgba(28,30,42,.12);
  background: rgba(255,255,255,.96);
  color: var(--lm-text);
  font-size: 1rem;
}

.lm-np-checkout .form-row.is-loading select {
  opacity: .7;
}

.woocommerce-checkout .select2-container .select2-selection--single {
  height: 60px;
  border: 1px solid rgba(28,30,42,.12);
  border-radius: 20px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.96);
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 58px;
  padding-left: 18px;
  padding-right: 42px;
  color: var(--lm-text);
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 58px;
  right: 14px;
}

.woocommerce-checkout #customer_details .woocommerce-additional-fields {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(28,30,42,.08);
}

.woocommerce-checkout #customer_details h3 {
  margin-bottom: 18px;
}

@media (max-width: 767px) {
  .lm-np-checkout {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .lm-np-checkout__grid {
    grid-template-columns: 1fr;
  }

  .lm-np-checkout .form-row-wide {
    grid-column: auto;
  }

  .lm-checkout-review__product {
    align-items: flex-start;
  }

  .lm-checkout-review__thumb {
    flex-basis: 62px;
    width: 62px;
    height: 62px;
  }
}


/* Checkout cleanup and readability refinements */
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .shipping_address,
.woocommerce-checkout #ship-to-different-address,
.woocommerce-checkout .woocommerce-additional-fields {
  display: none !important;
}

.woocommerce-checkout #customer_details .col-1 .woocommerce-billing-fields {
  position: relative;
}

.woocommerce-checkout #customer_details .col-1 .woocommerce-billing-fields h3,
.woocommerce-checkout #customer_details .col-1 .woocommerce-billing-fields > h3 {
  margin-bottom: 26px;
  margin-top: 26px;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-first,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-last,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-wide {
  float: none !important;
  width: 100% !important;
  margin: 0;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-wide {
  grid-column: 1 / -1;
}

.lm-np-delivery {
  margin-top: 26px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(226, 189, 202, .8);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(253,249,251,.98));
  box-shadow: 0 18px 40px rgba(28,30,42,.05);
}

.lm-np-delivery__header {
  margin-bottom: 22px;
}

.lm-np-delivery__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(238,156,168,.16);
  color: rgba(173,70,95,.96);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lm-np-delivery__header h3 {
  margin: 14px 0 12px;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  line-height: 1.15;
  color: var(--lm-text);
}

.lm-np-delivery__header p {
  max-width: 760px;
  margin: 0;
  color: rgba(89, 92, 105, .88);
  font-size: 1.02rem;
  line-height: 1.7;
}

.lm-np-delivery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.lm-np-delivery .form-row {
  float: none !important;
  width: 100% !important;
  margin: 0;
}

.lm-np-delivery .form-row-wide {
  grid-column: 1 / -1;
}

.woocommerce-checkout .form-row label,
.lm-np-delivery label {
  display: block;
  margin-bottom: 10px;
  color: rgba(102, 104, 116, .98);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.woocommerce-checkout .form-row label .required,
.lm-np-delivery label .required {
  color: #d3567d;
}

.woocommerce-checkout .form-row .input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .select2-container .select2-selection--single,
.lm-np-delivery select {
  min-height: 64px;
  border-radius: 24px;
  border: 1px solid rgba(180, 184, 196, .55);
  background: rgba(255,255,255,.98);
  color: var(--lm-text);
  box-shadow: none;
}

.woocommerce-checkout .form-row .input-text {
  padding: 0 22px;
  font-size: 1.08rem;
  font-weight: 500;
  color: rgba(33, 36, 48, .98);
}

.woocommerce-checkout .form-row .input-text::placeholder {
  color: rgba(120, 123, 136, .9);
}

.woocommerce-checkout .form-row select,
.lm-np-delivery select {
  width: 100%;
  padding: 0 48px 0 22px;
  font-size: 1.04rem;
  font-weight: 500;
  color: rgba(33, 36, 48, .98);
}

.woocommerce-checkout .form-row .input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .select2-container--focus .select2-selection--single,
.woocommerce-checkout .select2-container--open .select2-selection--single,
.lm-np-delivery select:focus {
  border-color: rgba(230, 143, 170, .92);
  box-shadow: 0 0 0 5px rgba(244, 181, 198, .22);
  outline: none;
}

.woocommerce-checkout .select2-container .select2-selection--single {
  display: flex;
  align-items: center;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 62px;
  padding-left: 22px;
  padding-right: 48px;
  color: rgba(33, 36, 48, .98);
  font-size: 1.04rem;
  font-weight: 500;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: rgba(120, 123, 136, .9);
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 62px;
  right: 18px;
}

.woocommerce-checkout .select2-container--default .select2-results__option {
  font-size: 1rem;
  color: rgba(33, 36, 48, .98);
}

@media (max-width: 767px) {
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
  .lm-np-delivery__grid {
    grid-template-columns: 1fr;
  }

  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-wide,
  .lm-np-delivery .form-row-wide {
    grid-column: auto;
  }

  .lm-np-delivery {
    padding: 22px 18px;
    border-radius: 24px;
  }
}


/* Checkout micro-refinements */
.woocommerce-checkout .woocommerce-checkout-review-order-table td.product-name .lm-checkout-review__name {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table td.product-name .product-quantity {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(238, 156, 168, .16);
  color: rgba(173, 70, 95, .96);
  font-size: .96rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table td.product-name {
  vertical-align: middle;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table td.product-total {
  vertical-align: middle;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone {
  letter-spacing: .01em;
}

@media (max-width: 767px) {
  .woocommerce-checkout .woocommerce-checkout-review-order-table td.product-name .lm-checkout-review__name {
    align-items: flex-start;
  }

  .woocommerce-checkout .woocommerce-checkout-review-order-table td.product-name .product-quantity {
    min-height: 30px;
    padding: 5px 12px;
    font-size: .9rem;
  }
}


.woocommerce-checkout .woocommerce-checkout-review-order-table tr.cart-subtotal {
  display: none;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table td.product-name .lm-checkout-review__product {
  align-items: center;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table td.product-name .lm-checkout-review__thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table td.product-name .lm-checkout-review__name {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
}

@media (max-width: 767px) {
  .woocommerce-checkout .woocommerce-checkout-review-order-table td.product-name .lm-checkout-review__thumb {
    flex-basis: 58px;
    width: 58px;
    height: 58px;
  }
}

.checkout-shell {
  margin-top: 50px;
  margin-bottom: 150px;
}

/* LiqPay checkout integration */
.woocommerce-checkout #payment ul.payment_methods > li.payment_method_lovely_mammy_liqpay > label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.woocommerce-checkout #payment ul.payment_methods > li.payment_method_lovely_mammy_liqpay > label::after {
  content: 'LiqPay';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  margin-left: 6px;
  background: linear-gradient(135deg, #7ad17c, #34a853);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(52,168,83,.24);
}

.lm-liqpay-payment-note,
.lm-liqpay-redirect {
  border-radius: 22px;
  border: 1px solid rgba(52,168,83,.16);
  background: linear-gradient(180deg, rgba(247,255,249,.98), rgba(255,255,255,.96));
  box-shadow: 0 18px 36px rgba(26,37,29,.08);
}

.lm-liqpay-payment-note {
  margin-top: 12px;
  padding: 14px 16px;
}

.lm-liqpay-payment-note__badge,
.lm-liqpay-redirect__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(52,168,83,.12);
  color: #2c8c4b;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lm-liqpay-payment-note p,
.lm-liqpay-redirect p {
  margin: 10px 0 0;
  color: rgba(28,30,42,.72);
}

.lm-liqpay-redirect {
  margin-top: 22px;
  padding: 20px;
}

.lm-liqpay-redirect__header h3 {
  margin: 12px 0 0;
  font-size: 1.15rem;
  line-height: 1.2;
}

.lm-liqpay-redirect__form {
  margin-top: 16px;
}

.lm-liqpay-redirect__form .button {
  width: 100%;
}

.cart-subtotal > th{
  padding-left: 10px!important;

}

.order-total > th {
  padding-left: 10px!important;
}

.woocommerce-Price-amount > bdi{
  padding-right: 10px!important;

}

.category-card--has-image .category-card__shape {
  background-image: none !important;
}

.category-card--has-image .category-card__shape {
  background-color: rgba(255, 255, 255, .88);
}

.category-card--has-image .category-card__shape img {
  border-radius: 18px;
}

@media (max-width: 991px) {
  .category-card__link {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .category-card__shape {
    justify-self: start;
  }
}

@media (max-width: 767px) {
  .category-mosaic {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 260px;
  }

  .category-card--1,
  .category-card--2 {
    min-height: 260px;
  }

  .category-card__link {
    padding: 24px 22px;
  }

  .category-card__shape {
    width: min(100%, 240px);
  }
}


/* ============================= */
/* RELATED PRODUCTS – SIMPLE HOVER */
/* ============================= */

.related.products .product {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Light lift */
.related.products .product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* Subtle image zoom */
.related.products .product a img {
    transition: transform 0.35s ease;
}

.related.products .product:hover a img {
    transform: scale(1.03);
}


@media (max-width: 640px) {
  .product-card__price,
  .lm-catalog ul.products li.product .price,
  .lm-single-product__related ul.products li.product .price {
    gap: 8px;
  }

  .product-card__price ins,
  .lm-catalog ul.products li.product .price ins,
  .lm-single-product__related ul.products li.product .price ins {
    min-height: 30px;
    padding: 4px 10px;
  }

  .lm-product-summary-card__price ins {
    min-height: 38px;
    padding: 6px 12px;
  }
}

.onsale {
  display: none;
}

/* Account refinement fix */
.site-nav__dropdown--account {
  min-width: 260px;
}

.woocommerce-account .woocommerce {
  display: grid !important;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr) !important;
  gap: 24px;
  align-items: start;
}

.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after,
.woocommerce-account .woocommerce-MyAccount-navigation::before,
.woocommerce-account .woocommerce-MyAccount-navigation::after,
.woocommerce-account .woocommerce-MyAccount-content::before,
.woocommerce-account .woocommerce-MyAccount-content::after {
  display: none !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  float: none !important;
  clear: none !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  min-width: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  position: sticky;
  top: 108px;
  align-self: start;
  padding: 18px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: 10px;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  min-height: 56px;
  padding: 0 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(247,246,242,.72));
  border: 1px solid rgba(28,30,42,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.76);
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation a:focus-visible {
  background: linear-gradient(135deg, rgba(252,236,240,.96), rgba(255,245,247,.88));
  border-color: rgba(229,142,160,.42);
  box-shadow: 0 10px 26px rgba(229,142,160,.12);
}

.woocommerce-account .woocommerce-MyAccount-content {
  padding: 28px;
}

.woocommerce-account .woocommerce-MyAccount-content > p:first-child {
  margin-top: 0;
  color: var(--lm-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-order,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-table,
.woocommerce-account .woocommerce-MyAccount-content form,
.woocommerce-account .woocommerce-MyAccount-content fieldset {
  width: 100%;
  max-width: 100%;
}

.woocommerce-account .woocommerce-MyAccount-content form,
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
  display: grid;
  gap: 16px;
}

.woocommerce-account .woocommerce-MyAccount-content form .form-row,
.woocommerce-account .woocommerce form.login .form-row,
.woocommerce-account .woocommerce form.register .form-row {
  margin: 0;
  width: 100%;
}

.woocommerce-account .woocommerce-EditAccountForm,
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register,
.woocommerce-account .woocommerce-ResetPassword {
  padding: clamp(22px, 2.6vw, 30px);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(247,246,242,.82));
  border: 1px solid rgba(28,30,42,.08);
  box-shadow: 0 14px 34px rgba(28,30,42,.05);
}

.woocommerce-account .woocommerce .col2-set {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  margin: 0;
}

.woocommerce-account .woocommerce .col2-set .col-1,
.woocommerce-account .woocommerce .col2-set .col-2 {
  float: none;
  width: auto;
  margin: 0;
}

.woocommerce-account .woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lm-muted);
  font-weight: 600;
}

.woocommerce-account .woocommerce-form-login .woocommerce-LostPassword,
.woocommerce-account .woocommerce-form-login .woocommerce-form-login__submit,
.woocommerce-account .woocommerce-form-register .woocommerce-Button,
.woocommerce-account .woocommerce-EditAccountForm .woocommerce-Button {
  margin-top: 6px;
}

.woocommerce-account .woocommerce-MyAccount-content .shop_table,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-table,
.woocommerce-account .woocommerce-MyAccount-content table.my_account_orders,
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table {
  width: 100% !important;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(28,30,42,.08);
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 34px rgba(28,30,42,.05);
}

.woocommerce-account .woocommerce-MyAccount-content table.shop_table th,
.woocommerce-account .woocommerce-MyAccount-content table.shop_table td,
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table th,
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table td {
  padding: 16px 18px;
  border-color: rgba(28,30,42,.08);
  vertical-align: middle;
  text-align: left;
}

.woocommerce-account .woocommerce-MyAccount-content table.shop_table thead th,
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table thead th {
  background: linear-gradient(180deg, rgba(247,246,242,.96), rgba(247,246,242,.84));
  color: rgba(28,30,42,.6);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody tr:hover {
  background: rgba(252,245,247,.72);
}

.woocommerce-account .woocommerce-MyAccount-content .order-number a,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-number a {
  color: var(--lm-text);
  font-weight: 800;
}

.woocommerce-account .woocommerce-MyAccount-content .order-status,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-status {
  font-weight: 700;
}

.woocommerce-account .woocommerce-MyAccount-content .button,
.woocommerce-account .woocommerce-MyAccount-content a.button {
  min-height: 46px;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.woocommerce-account .woocommerce-orders-table__cell-order-actions .button,
.woocommerce-account .woocommerce-button.button.view {
  white-space: nowrap;
}

.woocommerce-account .woocommerce-order-details,
.woocommerce-account .woocommerce-customer-details,
.woocommerce-account .woocommerce-column--billing-address,
.woocommerce-account .woocommerce-column--shipping-address {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(247,246,242,.82));
  border: 1px solid rgba(28,30,42,.08);
  box-shadow: 0 14px 34px rgba(28,30,42,.05);
}

.woocommerce-account .woocommerce-order-details,
.woocommerce-account .woocommerce-customer-details {
  margin-top: 22px;
}

.lm-account-section {
  margin-top: 24px;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(247,246,242,.82));
  border: 1px solid rgba(28,30,42,.08);
  box-shadow: 0 14px 34px rgba(28,30,42,.05);
}

.lm-account-section__head {
  margin-bottom: 18px;
}

.lm-account-section__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(238,156,168,.14);
  color: rgba(173,70,95,.92);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lm-account-section h3 {
  margin: 14px 0 8px;
}

.lm-account-section p {
  margin: 0;
  color: var(--lm-muted);
}

.lm-account-np {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.lm-account-np .form-row {
  margin: 0;
  width: 100%;
}

.woocommerce-account .woocommerce-form-login-toggle,
.woocommerce-account .woocommerce-form-coupon-toggle,
.woocommerce-account .woocommerce-notices-wrapper:empty {
  display: none;
}

.woocommerce-account .woocommerce .u-column1,
.woocommerce-account .woocommerce .u-column2 {
  width: 100%;
}

.woocommerce-account .woocommerce-orders-table__cell-order-total,
.woocommerce-account .woocommerce-orders-table__cell-order-actions,
.woocommerce-account .woocommerce-table__cell-product-total,
.woocommerce-account .woocommerce-table__cell-order-total {
  text-align: right;
}

@media (max-width: 1080px) {
  .woocommerce-account .woocommerce {
    grid-template-columns: 1fr !important;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    position: static;
    top: auto;
  }

  .woocommerce-account .woocommerce .col2-set,
  .lm-account-np {
    grid-template-columns: 1fr;
  }
}

.woocommerce-account .woocommerce-MyAccount-content table.my_account_orders tbody td,
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table tbody td {
  font-size: .98rem;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-number,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-date,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-status,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-total {
  white-space: nowrap;
}

.woocommerce-account .woocommerce-orders-table__cell-order-actions {
  min-width: 220px;
}

.woocommerce-account .woocommerce-orders-table__cell-order-actions .button,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  margin: 0 8px 8px 0;
}

@media (max-width: 767px) {
  .site-nav__dropdown--account {
    min-width: 220px;
  }

  .site-header__actions {
    gap: 8px;
  }

  .site-header__account .site-nav__dropdown-trigger {
    min-height: 44px;
  }

  .site-header__account .site-nav__dropdown-trigger > a,
  .site-header__account .site-nav__dropdown-toggle,
  .site-header__cart {
    min-height: 44px;
    line-height: 44px;
  }

  .site-header__account .site-nav__dropdown-trigger > a {
    padding-left: 12px;
    padding-right: 8px;
  }

  .woocommerce-account .woocommerce-MyAccount-content,
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .lm-account-section,
  .woocommerce-account .woocommerce-EditAccountForm,
  .woocommerce-account .woocommerce-form-login,
  .woocommerce-account .woocommerce-form-register,
  .woocommerce-account .woocommerce-order-details,
  .woocommerce-account .woocommerce-customer-details {
    padding: 20px;
  }

  .woocommerce-account .woocommerce-MyAccount-content table.shop_table,
  .woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody,
  .woocommerce-account .woocommerce-MyAccount-content table.shop_table tr,
  .woocommerce-account .woocommerce-MyAccount-content table.shop_table td,
  .woocommerce-account .woocommerce-MyAccount-content table.shop_table th {
    display: block;
    width: 100%;
  }

  .woocommerce-account .woocommerce-MyAccount-content table.shop_table thead {
    display: none;
  }

  .woocommerce-account .woocommerce-MyAccount-content table.shop_table {
    border-radius: 24px;
    overflow: hidden;
  }

  .woocommerce-account .woocommerce-MyAccount-content table.shop_table tr {
    padding: 18px;
    border-bottom: 1px solid rgba(28,30,42,.08);
  }

  .woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody tr:last-child {
    border-bottom: 0;
  }

  .woocommerce-account .woocommerce-MyAccount-content table.shop_table td {
    padding: 10px 0;
    text-align: left !important;
  }

  .woocommerce-account .woocommerce-MyAccount-content table.shop_table td::before {
    content: attr(data-title);
    display: block;
    margin-bottom: 6px;
    color: rgba(28,30,42,.56);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  .woocommerce-account .woocommerce-orders-table__cell-order-number,
  .woocommerce-account .woocommerce-orders-table__cell-order-date,
  .woocommerce-account .woocommerce-orders-table__cell-order-status,
  .woocommerce-account .woocommerce-orders-table__cell-order-total {
    white-space: normal;
  }

  .woocommerce-account .woocommerce-orders-table__cell-order-actions {
    min-width: 0;
  }

  .woocommerce-account .woocommerce-orders-table__cell-order-actions .button,
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions a.button {
    min-width: 88px;
  }
}

/* Account auth remake */
.lm-page-shell--account-auth .lm-shell {
  max-width: 1160px;
}

.lm-page-card--account-auth {
  overflow: hidden;
}

.lm-page-hero--account-auth {
  margin-bottom: 32px;
}

.lm-page-content--account-auth {
  padding-top: 0;
}

.entry-content--account-auth {
  width: 100%;
}

.lm-auth-shell {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 8px 0 16px;
}

.lm-auth-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: 32px;
  border: 1px solid rgba(210, 180, 191, 0.42);
  background:
    radial-gradient(circle at top right, rgba(244, 196, 210, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(252,248,249,0.94));
  box-shadow: 0 24px 60px rgba(40, 32, 52, 0.09);
}

.lm-auth-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 31px;
  border: 1px solid rgba(255,255,255,0.72);
  pointer-events: none;
}

.lm-auth-card__inner {
  position: relative;
  padding: clamp(28px, 4vw, 40px);
}

.lm-auth-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(240, 215, 223, 0.66);
  color: #c76f85;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lm-auth-card__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #1b2033;
}

.lm-auth-card__text {
  margin: 14px 0 0;
  color: var(--lm-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.lm-auth-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.lm-auth-form .form-row,
.lm-auth-form .woocommerce-form-row {
  margin: 0;
}

.lm-auth-form label {
  display: block;
  margin-bottom: 8px;
  color: #5a6072;
  font-weight: 700;
  font-size: 0.95rem;
}

.lm-auth-form .required {
  color: #d86f8f;
}

.lm-auth-form input[type="text"],
.lm-auth-form input[type="email"],
.lm-auth-form input[type="password"] {
  width: 100%;
  min-height: 60px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(197, 173, 183, 0.42);
  background: rgba(255,255,255,0.88);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
  color: #1b2033;
  font-size: 1rem;
}

.lm-auth-form input::placeholder {
  color: #a8a1af;
}

.lm-auth-form input:focus {
  outline: none;
  border-color: rgba(217, 124, 150, 0.62);
  box-shadow: 0 0 0 4px rgba(233, 183, 198, 0.22);
}

.lm-auth-form .password-input {
  display: block;
  width: 100%;
}

.lm-auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.lm-auth-form .woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #5a6072;
}

.lm-auth-form .woocommerce-form-login__rememberme input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  border-radius: 5px;
}

.lm-auth-inline-link,
.lm-auth-card__footer a {
  color: #cf6f87;
  font-weight: 700;
  text-decoration: none;
}

.lm-auth-inline-link:hover,
.lm-auth-card__footer a:hover {
  color: #b95772;
}

.lm-auth-form button.button,
.lm-auth-form .woocommerce-button.button,
.lm-auth-form .woocommerce-Button.button {
  width: 100%;
  min-height: 60px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #e790a7, #d96e8d);
  box-shadow: 0 18px 34px rgba(217, 110, 141, 0.26);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.01em;
}

.lm-auth-form button.button:hover,
.lm-auth-form .woocommerce-button.button:hover,
.lm-auth-form .woocommerce-Button.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.lm-auth-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 6px;
  color: #7b8191;
  font-weight: 600;
}

.lm-auth-note {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(248, 237, 241, 0.78);
  border: 1px solid rgba(226, 188, 199, 0.42);
  color: #6a7080;
  line-height: 1.7;
}

.woocommerce-account .entry-content--account-auth .woocommerce-notices-wrapper {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 18px;
}

.woocommerce-account .entry-content--account-auth .woocommerce-error,
.woocommerce-account .entry-content--account-auth .woocommerce-info,
.woocommerce-account .entry-content--account-auth .woocommerce-message {
  border-radius: 18px;
  border: 1px solid rgba(210, 180, 191, 0.42);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 14px 30px rgba(40,32,52,0.05);
}

@media (max-width: 767px) {
  .lm-page-hero--account-auth {
    margin-bottom: 22px;
  }

  .lm-auth-card__inner {
    padding: 22px;
  }

  .lm-auth-card__title {
    font-size: 2rem;
  }

  .lm-auth-row,
  .lm-auth-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Minimal auth-only account pages */
body.woocommerce-account:not(.logged-in) {
  background:
    radial-gradient(circle at top center, rgba(238, 156, 168, .10), transparent 34%),
    linear-gradient(180deg, #fffdfd 0%, #fff8fa 100%);
}

.site-main--auth-only {
  min-height: 100vh;
}

.lm-auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 48px);
}

.lm-auth-page__inner,
.lm-auth-page__article,
.lm-auth-page .entry-content--account-auth {
  width: 100%;
}

.lm-auth-page__article {
  margin: 0;
}

.lm-auth-shell {
  padding: 0;
}

.lm-auth-card {
  max-width: 520px;
  border: 1px solid rgba(221, 201, 208, 0.44);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 54px rgba(40, 32, 52, 0.08);
}

.lm-auth-card::before {
  display: none;
}

.lm-auth-card__inner {
  padding: clamp(28px, 4vw, 38px);
}

.lm-auth-card__badge {
  margin-bottom: 16px;
}

.lm-auth-card__text {
  max-width: 34ch;
}

.lm-auth-form {
  margin-top: 24px;
}

.lm-auth-form input[type="text"],
.lm-auth-form input[type="email"],
.lm-auth-form input[type="password"] {
  min-height: 58px;
  border-color: rgba(213, 192, 199, 0.5);
  background: #fff;
  box-shadow: none;
}

.lm-auth-note {
  background: rgba(248, 237, 241, 0.5);
}

.woocommerce-account .entry-content--account-auth .woocommerce-notices-wrapper {
  max-width: 520px;
  margin: 0 auto 16px;
}

@media (max-width: 767px) {
  .lm-auth-page {
    align-items: flex-start;
    padding: 20px 16px 28px;
  }

  .lm-auth-card {
    border-radius: 26px;
  }

  .lm-auth-card__inner {
    padding: 22px;
  }
}
