:root {
  --lc-ground: #faf7f4;
  --lc-surface: #fff;
  --lc-ink: #2b2226;
  --lc-rose: #c05f79;
  --lc-rose-hover: #a94b64;
  --lc-rose-active: #8e3d53;
  --lc-deep-rose: #9d4359;
  --lc-muted: #78686b;
  --lc-muted-light: #9b8b8c;
  --lc-rule: #eae1d9;
  --lc-tint: #f7f1ec;
  --lc-footer: #f4efe9;
}

html { scroll-behavior: smooth; }
body.lc-storefront {
  background: var(--lc-ground);
  color: var(--lc-ink);
  font-family: "Jost", sans-serif;
  font-weight: 300;
}
body.lc-storefront.rtl { font-family: "IBM Plex Sans Arabic", "Jost", sans-serif; }
body.lc-storefront h1,
body.lc-storefront h2,
body.lc-storefront h3,
body.lc-storefront .wp-block-heading {
  color: var(--lc-ink);
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: .5px;
}
body.lc-storefront.rtl h1,
body.lc-storefront.rtl h2,
body.lc-storefront.rtl h3 { font-family: "IBM Plex Sans Arabic", sans-serif; }
body.lc-storefront a { color: inherit; }
body.lc-storefront .wp-site-blocks { padding: 0; }

/* Prototype header and announcement */
body.lc-storefront header.wp-block-template-part { position: sticky; top: 0; z-index: 1000; background: #fff; }
body.admin-bar.lc-storefront header.wp-block-template-part { top: 32px; }
body.lc-storefront header.wp-block-template-part .wp-block-group { border-color: var(--lc-rule) !important; }
body.lc-storefront header nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
body.lc-storefront header nav a:hover { color: var(--lc-deep-rose); }
body.lc-storefront header img { mix-blend-mode: multiply; filter: brightness(1.05); }

/* Uniform announcement marquee. The track stays physically LTR so the shared
   keyframes loop correctly; Arabic messages keep their own RTL reading order. */
.lc-announcement-bar {
  font-family: "Jost", sans-serif !important;
  font-size: 11.5px !important;
  font-weight: 400 !important;
  letter-spacing: 3px !important;
  line-height: 1.4 !important;
  direction: ltr !important;
  text-align: left !important;
  -webkit-text-size-adjust: 100% !important;
  text-size-adjust: 100% !important;
}
.lc-announcement-track {
  align-items: center !important;
  direction: ltr !important;
  width: max-content !important;
  animation-duration: 27s !important;
  will-change: transform;
}
.lc-announcement-track > span {
  flex: 0 0 auto !important;
  font: inherit !important;
  letter-spacing: inherit !important;
  line-height: inherit !important;
  vertical-align: middle !important;
}
.lc-announcement-message {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 16px;
  white-space: nowrap !important;
}
.lc-announcement-message .lc-en,
.lc-announcement-message .lc-ar {
  font: inherit !important;
  font-size: 11.5px !important;
  font-weight: inherit !important;
  letter-spacing: inherit !important;
  line-height: inherit !important;
  vertical-align: middle !important;
  white-space: nowrap !important;
}
html[dir="rtl"] .lc-announcement-bar {
  font-family: "IBM Plex Sans Arabic", "Jost", sans-serif !important;
}
html[dir="rtl"] .lc-announcement-message {
  direction: rtl !important;
  unicode-bidi: isolate;
}
html[dir="rtl"] .lc-announcement-message .lc-en { display: none !important; }
html[dir="rtl"] .lc-announcement-message .lc-ar { display: inline !important; }
#lc-cc-switcher.lc-in-header { position: static !important; inset: auto !important; z-index: auto !important; }
#lc-cc-switcher.lc-in-header select {
  min-height: 40px;
  box-shadow: none !important;
  color: var(--lc-ink) !important;
  border-color: var(--lc-rule) !important;
}

/* Checkout inherits the storefront currency automatically. Keep the selector
   available while shopping, but remove the redundant checkout decision. */
body.lc-checkout-page #lc-cc-switcher { display: none !important; }

/* First-visit experience */
.lc-welcome {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(43,34,38,.42);
  animation: lcFade .25s ease both;
}
.lc-welcome[hidden] { display: none; }
.lc-welcome__dialog {
  width: min(420px, 100%);
  padding: 34px 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(43,34,38,.22);
  text-align: center;
}
.lc-welcome__dialog h2 { margin: 0 0 7px; font-size: 30px; }
.lc-welcome__dialog p { margin: 0 0 25px; color: var(--lc-muted); font-size: 14px; }
.lc-welcome__choices { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.lc-welcome__choices--regions { grid-template-columns: repeat(2, minmax(0,1fr)); }
.lc-welcome__choice {
  min-height: 84px;
  padding: 16px;
  border: 1px solid var(--lc-rule);
  border-radius: 16px;
  background: #fff;
  color: var(--lc-ink);
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s, box-shadow .2s;
}
.lc-welcome__choice:hover,
.lc-welcome__choice:focus-visible {
  border-color: var(--lc-rose);
  background: var(--lc-tint);
  box-shadow: 0 10px 26px rgba(43,34,38,.09);
  transform: translateY(-2px);
  outline: none;
}
.lc-welcome__choice strong { display: block; font: 500 16px "Jost",sans-serif; }
.lc-welcome__choice small { display: block; margin-top: 5px; color: var(--lc-deep-rose); letter-spacing: 1px; }
body.lc-modal-open { overflow: hidden; }

/* Home */
body.home.lc-storefront main { margin-top: 0 !important; background: var(--lc-ground); }
body.home.lc-storefront main > .wp-block-group:first-child { width: 100% !important; max-width: none !important; box-sizing: border-box; margin-inline: 0 !important; padding: 0 !important; }
body.home.lc-storefront .wp-block-post-title { display: none !important; }
body.home.lc-storefront .wp-block-post-content { width: 100% !important; max-width: none !important; box-sizing: border-box; margin-inline: 0 !important; padding: 0 !important; }
body.home.lc-storefront main > .wp-block-group:first-child { background: linear-gradient(115deg,#faf7f4 0%,#f6ece7 52%,#f1e1dd 100%); }
.lc-home-hero,
.lc-home-benefits { width: 100% !important; max-width: none !important; }
.lc-home-hero__grid {
  grid-template-columns: minmax(300px,.78fr) minmax(480px,1.22fr) !important;
  width: min(100%,1240px) !important;
  max-width: 1240px !important;
  min-height: 500px;
  box-sizing: border-box;
  padding: clamp(34px,4vw,54px) 28px !important;
  gap: clamp(38px,5vw,72px) !important;
}
.lc-home-hero__copy { align-self: center; }
.lc-home-hero__media {
  position: relative;
  isolation: isolate;
  width: auto !important;
  min-height: 350px;
  aspect-ratio: 16/10 !important;
  overflow: hidden;
  background: #f7f2ef !important;
  box-shadow: 0 22px 55px rgba(118,76,84,.12);
}
.lc-home-hero__media::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -20px;
  background: var(--lc-home-hero-image) center 59%/cover no-repeat;
  filter: blur(14px);
  opacity: .72;
  transform: scale(1.06);
}
.lc-home-hero__media::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(238,213,213,.24);
}
.lc-home-hero__media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 72%;
  height: 92%;
  min-height: 0;
  border-radius: 12px;
  object-fit: cover;
  object-position: center 59%;
  box-shadow: 0 12px 32px rgba(67,39,46,.18);
  opacity: 0;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  transition: opacity .16s ease;
}
.lc-home-hero__media.is-loaded img { opacity: 1; }
.lc-home-hero__media.has-image-error::before { background-image: none; }
.lc-home-categories {
  width: min(100%,1200px) !important;
  max-width: 1200px !important;
  box-sizing: border-box;
  padding: 42px 24px 8px !important;
}
.lc-home-categories > h2 { margin-bottom: 28px !important; }
.lc-home-categories__grid {
  grid-template-columns: repeat(4,minmax(0,1fr)) !important;
  gap: 16px !important;
}
.lc-home-category-card { max-width: none !important; transition: transform .2s, box-shadow .2s, border-color .2s; }
.lc-home-category-card:hover { transform: translateY(-3px); border-color: #decac2 !important; box-shadow: 0 12px 28px rgba(43,34,38,.08); }
.lc-home-category-card__media { height: 118px !important; }
.lc-home-category-card--bracelets .lc-home-category-card__media { background-repeat: no-repeat !important; }
.lc-home-category-card--photo .lc-home-category-card__media { background-color: #fff !important; }
.lc-home-category-card--engraved-rings .lc-home-category-card__media { background-size: 108% auto !important; }
.lc-home-category-card--custom-watches .lc-home-category-card__media { background-size: auto 112% !important; }
.lc-home-category-card--engraved-necklaces .lc-home-category-card__media { background-size: 104% auto !important; }
.lc-home-category-card--charms-collection .lc-home-category-card__media { background-size: auto 108% !important; }
.lc-home-category-card--gift-add-ons .lc-home-category-card__media { background-size: auto 106% !important; }
.lc-home-category-card--packages .lc-home-category-card__media { background-position: center 58% !important; background-size: auto 112% !important; }
.lc-home-category-card__content { padding: 12px 10px !important; }
body.home.lc-storefront .wp-block-button__link,
body.lc-storefront .wc-block-components-button,
body.lc-storefront button[type=submit] {
  border-radius: 2px !important;
  background: var(--lc-rose);
  color: #fff;
  font: 500 12px "Jost",sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: none;
  transition: background .2s, transform .15s;
}
body.home.lc-storefront .wp-block-button__link:hover,
body.lc-storefront .wc-block-components-button:hover,
body.lc-storefront button[type=submit]:hover { background: var(--lc-rose-hover); }
body.home.lc-storefront .wp-block-button__link:active,
body.lc-storefront .wc-block-components-button:active,
body.lc-storefront button[type=submit]:active { background: var(--lc-rose-active); transform: translateY(1px); }
body.home.lc-storefront h1 { font-size: clamp(42px,6vw,64px); }
body.home.lc-storefront h2 { font-size: clamp(32px,5vw,46px); letter-spacing: 2px; }
body.home.lc-storefront main img[src*="placeholder"] { opacity: .24; }
.lc-home-gifts { width: 100% !important; box-sizing: border-box; }
.lc-home-gift-card { min-width: 0; }
.lc-home-gift-card__media {
  display: grid;
  overflow: hidden;
  padding: 12px;
  place-items: center;
  background: #fff !important;
}
.lc-home-gift-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: contain;
  object-position: 50% 50%;
}
.lc-home-gift-card--personalized .lc-home-gift-card__media img {
  width: 76%;
  height: auto;
  max-width: none;
  max-height: none;
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: no-preference) {
  html.lc-reveal-ready .lc-reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .52s ease var(--lc-reveal-delay,0ms), transform .52s cubic-bezier(.22,.61,.36,1) var(--lc-reveal-delay,0ms);
    will-change: opacity, transform;
  }
  html.lc-reveal-ready .lc-reveal.is-visible { opacity: 1; transform: translateY(0); }
}

/* The storefront intentionally has no footer. */
body.lc-storefront footer.wp-block-template-part { display: none !important; }

/* Collections */
body.lc-collection-page .woocommerce-breadcrumb,
body.lc-collection-page .woocommerce-result-count,
body.lc-collection-page .woocommerce-ordering { display: none !important; }
.lc-collection-intro {
  max-width: 780px;
  margin: 42px auto 34px;
  padding: 0 24px;
  text-align: center;
  animation: lcFadeUp .4s ease both;
}
.lc-collection-intro__content { max-width: 780px; margin-inline: auto; }
.lc-collection-intro h1 { margin: 0 0 8px; font-size: clamp(38px,6vw,52px); letter-spacing: 2px; }
.lc-collection-intro__sub { margin: 0 0 15px; color: var(--lc-muted); font-size: 16px; }
.lc-collection-intro__copy { margin: 0 auto; color: var(--lc-muted); font-size: 14px; line-height: 1.8; }
body.lc-collection-page main > h1,
body.lc-collection-page .wp-block-query-title { display: none !important; }
.lc-collection-main { width: 100%; max-width: none !important; padding-inline: 0 !important; }
.lc-collection-grid-wrap {
  position: relative;
  left: calc(50% - 50vw);
  width: 100vw !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.lc-collection-page ul.products,
body.lc-collection-page .wc-block-product-template {
  display: grid !important;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 28px !important;
  width: calc(100vw - 48px) !important;
  max-width: 1280px !important;
  margin: 0 auto 90px !important;
  padding: 0 !important;
}
body.term-charms-collection.lc-collection-page ul.products,
body.term-charms-collection.lc-collection-page .wc-block-product-template { grid-template-columns: repeat(4,minmax(0,1fr)); }
body.lc-collection-page li.product,
body.lc-collection-page .wc-block-product {
  display: flex;
  float: none !important;
  width: 100% !important;
  min-width: 0;
  box-sizing: border-box;
  flex-direction: column;
  overflow: hidden;
  margin: 0 !important;
  border: 1px solid var(--lc-rule);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(43,34,38,.035);
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
body.lc-collection-page li.product:hover,
body.lc-collection-page .wc-block-product:hover { transform: translateY(-3px); border-color: #decac2; box-shadow: 0 12px 30px rgba(43,34,38,.08); }
body.lc-collection-page li.product img { aspect-ratio: 1; width: 100%; object-fit: cover; background: #f8f5f2; }
body.lc-collection-page li.product h2 { padding: 0 22px; font: 500 20px/1.35 "Jost",sans-serif !important; }
body.lc-collection-page li.product .price { color: var(--lc-deep-rose); font-size: 16px; font-weight: 500; }
.lc-product-card__link { display: flex; flex: 1 1 auto; flex-direction: column; color: inherit; text-decoration: none; }
.lc-product-card__media { display: grid; width: 100%; aspect-ratio: 1; place-items: center; overflow: hidden; background: #f8f5f2; }
.lc-product-card__media img { width: 100%; height: 100%; object-fit: cover; }
body.term-custom-bracelets .lc-product-card:first-child .lc-product-card__media img { object-position: center 57%; }
body.term-custom-bracelets .lc-product-card__link[href*="/product/bundle-of-2-bracelets/"] .lc-product-card__media img {
  object-fit: cover;
  object-position: center 44%;
  background: #fff;
}
.lc-product-card__link[href*="/product/matching-necklace-set/"] .lc-product-card__media img {
  object-fit: contain;
  object-position: center;
  transform: scale(1.14);
  transform-origin: center 58%;
  background: #fff;
}
.lc-product-card__link[href*="/product/forever-set/"] .lc-product-card__media img {
  object-fit: contain;
  object-position: center;
  background: #fff;
}
.lc-card-placeholder { display: grid; width: 100%; height: 100%; place-items: center; border-bottom: 1px solid #eee6e0; background: linear-gradient(145deg,#faf8f6,#f4efeb); color: #d9cbc3; }
.lc-card-placeholder svg { width: 44px; }
.lc-live-products .woocommerce-loop-product__title { margin: 20px 0 8px; }
.lc-live-products .price { display: block; min-height: 26px; padding-inline: 18px; }
.lc-price-prefix { color: var(--lc-muted); font-size: 14px; font-weight: 400; }
body.lc-collection-page li.product .button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin: 15px 20px 22px !important;
  padding: 0 22px;
  border: 1px solid var(--lc-rule);
  border-radius: 2px;
  background: #fff;
  color: var(--lc-deep-rose);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

/* The generated catalog uses flex sizing so incomplete product rows remain balanced. */
body.lc-collection-page ul.lc-live-products {
  position: relative;
  left: calc(50% - 50vw);
  display: flex !important;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}
body.lc-collection-page ul.lc-live-products > .lc-product-card {
  flex: 0 1 calc((100% - 56px) / 3);
  width: calc((100% - 56px) / 3) !important;
  max-width: 408px;
}
body.term-charms-collection.lc-collection-page ul.lc-live-products > .lc-product-card {
  flex-basis: calc((100% - 84px) / 4);
  width: calc((100% - 84px) / 4) !important;
  max-width: none;
}
body.term-custom-bracelets.lc-collection-page ul.lc-live-products,
body.term-engraved-rings.lc-collection-page ul.lc-live-products,
body.term-engraved-necklaces.lc-collection-page ul.lc-live-products {
  left: auto;
  display: grid !important;
  grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  gap: 28px !important;
  width: calc(100% - 48px) !important;
  max-width: 900px !important;
  overflow: visible !important;
  margin-inline: auto !important;
}
body.term-custom-bracelets.lc-collection-page ul.lc-live-products::before,
body.term-custom-bracelets.lc-collection-page ul.lc-live-products::after,
body.term-engraved-rings.lc-collection-page ul.lc-live-products::before,
body.term-engraved-rings.lc-collection-page ul.lc-live-products::after,
body.term-engraved-necklaces.lc-collection-page ul.lc-live-products::before,
body.term-engraved-necklaces.lc-collection-page ul.lc-live-products::after {
  content: none !important;
  display: none !important;
}
body.term-custom-bracelets.lc-collection-page ul.lc-live-products > .lc-product-card,
body.term-engraved-rings.lc-collection-page ul.lc-live-products > .lc-product-card,
body.term-engraved-necklaces.lc-collection-page ul.lc-live-products > .lc-product-card {
  width: 100% !important;
  max-width: none;
  min-width: 0;
}

/* Guided product experience */
body.lc-product-page .woocommerce-breadcrumb,
body.lc-product-page main > .wp-block-columns,
body.lc-product-page main > .wp-block-woocommerce-product-details,
body.lc-product-page .wp-block-woocommerce-related-products,
body.lc-product-page .wp-block-woocommerce-product-collection,
body.lc-product-page .wp-block-post-terms,
body.lc-product-page .product_meta { display: none !important; }
.lc-product-experience { max-width: 960px; margin: 0 auto; padding: 46px 24px 150px; animation: lcFade .25s ease both; }
.lc-product-hero { text-align: center; }
.lc-product-hero h1 { margin: 0 0 7px; font-size: clamp(38px,6vw,52px); letter-spacing: 2px; }
.lc-product-hero p { max-width: 680px; margin: 0 auto 25px; color: var(--lc-muted); font-size: 14px; line-height: 1.7; }
.lc-product-image {
  position: relative;
  display: grid;
  width: min(240px,70vw);
  aspect-ratio: 1;
  margin: 0 auto 38px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--lc-rule);
  border-radius: 22px;
  background: #f8f6f4;
  box-shadow: 0 12px 34px rgba(43,34,38,.05);
  color: var(--lc-muted);
}
.lc-product-image img { width: 100%; height: 100%; object-fit: cover; }
.lc-product-image.lc-product-image--custom-bracelet > img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center 75% !important;
}
.lc-product-image.lc-product-image--bundle-bracelets > img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center 44% !important;
  background: #fff;
}
.lc-product-image.lc-product-image--matching-necklace > img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: scale(1.14);
  transform-origin: center 58%;
  background: #fff;
}
.lc-product-image.lc-product-image--engraved-ring > img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #fff;
}
.lc-product-image.lc-product-image--birthday-cards > img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #fff;
}
.lc-product-image.lc-product-image--printed-photo > img,
.lc-product-image.lc-product-image--gift-card > img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #fff;
}
.lc-text-field--unlimited textarea {
  min-height: 140px;
  padding-inline-end: 16px;
  resize: vertical;
}
.lc-product-gallery { margin: 0 auto 38px; }
.lc-product-gallery .lc-product-image { margin-bottom: 12px; }
.lc-product-image.lc-product-image--matching-ring > img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #fff;
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}
.lc-product-image.lc-product-image--matching-ring > img.is-active { opacity: 1; }
.lc-product-gallery__arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  transform: translateY(-50%);
  place-items: center;
  border: 1px solid rgba(166,108,125,.22);
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  box-shadow: 0 4px 14px rgba(43,34,38,.08);
  color: var(--lc-deep-rose);
  font: 400 28px/1 Georgia,serif;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.lc-product-gallery__arrow:hover { background: #fff; transform: translateY(-50%) scale(1.04); }
.lc-product-gallery__arrow--prev { left: 10px; }
.lc-product-gallery__arrow--next { right: 10px; }
.lc-product-gallery__dots { display: flex; justify-content: center; gap: 8px; }
.lc-product-gallery__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #e6cfd6;
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.lc-product-gallery__dot.is-active { width: 22px; border-radius: 999px; background: var(--lc-deep-rose); }
.lc-product-image--placeholder { border-style: dashed; }
.lc-product-image__placeholder { display: grid; gap: 9px; place-items: center; padding: 20px; font-size: 13px; }
.lc-product-image__placeholder svg { width: 28px; color: var(--lc-muted-light); }
.lc-step { margin: 0 0 42px; animation: lcFadeUp .38s ease both; }
.lc-step[hidden] { display: none; }
.lc-step__kicker { margin-bottom: 7px; color: var(--lc-deep-rose); font-size: 12px; font-weight: 500; letter-spacing: 3.4px; text-transform: uppercase; }
.lc-step h2 { margin: 0 0 18px; font-size: clamp(25px,4vw,32px); }
.lc-step__hint { margin: -9px 0 18px; color: var(--lc-muted); font-size: 13px; }
.lc-option-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(180px,100%),1fr)); gap: 14px; }
.lc-option-grid--compact { grid-template-columns: repeat(auto-fit,minmax(min(120px,100%),1fr)); }
.lc-option {
  position: relative;
  min-height: 104px;
  padding: 20px 18px;
  border: 1px solid var(--lc-rule);
  border-radius: 16px;
  background: #fff;
  color: var(--lc-ink);
  cursor: pointer;
  text-align: start;
  transition: border-color .2s, background .2s, box-shadow .2s, transform .2s;
}
.lc-option:hover { transform: translateY(-2px); border-color: #decac2; box-shadow: 0 12px 30px rgba(43,34,38,.08); }
.lc-option.is-selected { border: 2px solid var(--lc-rose); background: var(--lc-tint); box-shadow: 0 10px 26px rgba(43,34,38,.09); }
.lc-option.is-selected::after {
  content: "";
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lc-rose);
}
.lc-option__visual { display: grid; width: 100%; min-height: 92px; margin: -8px 0 15px; place-items: center; border-radius: 12px; background: #f7f3f0; color: var(--lc-deep-rose); }
.lc-option__visual svg { width: 28px; }
.lc-option__visual img { width: 100%; height: 104px; border-radius: 10px; object-fit: cover; }
.lc-option__visual img.lc-birthday-style-image { object-fit: contain; background: #fff; }
.lc-option__visual img.lc-candle-variant-image { object-fit: contain; background: #fff; }
.lc-option strong { display: block; padding-inline-end: 22px; font-size: 15px; font-weight: 500; }
.lc-option small { display: block; margin-top: 5px; color: var(--lc-muted); font-size: 12px; line-height: 1.45; }
.lc-option__price { display: block; margin-top: 10px; color: var(--lc-deep-rose); font-size: 13px; font-weight: 600; }
.lc-text-field { position: relative; }
.lc-text-field input,
.lc-text-field textarea {
  width: 100%;
  min-height: 54px;
  box-sizing: border-box;
  padding: 14px 58px 14px 16px;
  border: 1px solid var(--lc-rule);
  border-radius: 14px;
  background: #fff;
  color: var(--lc-ink);
  font: 400 16px "Jost",sans-serif;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.lc-text-field input:focus,
.lc-text-field textarea:focus { border-color: var(--lc-rose); box-shadow: 0 0 0 3px rgba(192,95,121,.10); }
.lc-text-field__count { position: absolute; top: 18px; inset-inline-end: 16px; color: var(--lc-muted-light); font-size: 12px; }
.lc-field-error { margin-top: 8px; color: #a23b50; font-size: 12px; }
.lc-upload-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(min(112px,100%),1fr)); gap: 10px; }
.lc-upload-slot {
  position: relative;
  display: grid;
  min-height: 106px;
  padding: 10px;
  place-items: center;
  border: 1px dashed #dcc9c0;
  border-radius: 14px;
  background: #fff;
  color: var(--lc-muted);
  cursor: pointer;
  text-align: center;
  transition: border-color .2s, background .2s, transform .2s;
}
.lc-upload-slot:hover { border-color: var(--lc-rose); background: var(--lc-tint); transform: translateY(-2px); }
.lc-upload-slot.is-filled { border-style: solid; border-color: var(--lc-rose); }
.lc-upload-slot strong { display: block; color: var(--lc-ink); font-size: 12px; font-weight: 500; }
.lc-upload-slot small { display: block; max-width: 92px; margin-top: 4px; overflow: hidden; color: var(--lc-muted-light); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.lc-upload-slot__remove { position: absolute; top: 7px; inset-inline-end: 7px; display: grid; width: 28px; height: 28px; padding: 0; place-items: center; border: 0; border-radius: 50%; background: #fff; color: var(--lc-deep-rose); box-shadow: 0 2px 8px rgba(43,34,38,.12); }
.lc-step--grouped { padding: 26px; border: 1px solid var(--lc-rule); border-radius: 18px; background: #fff; }
.lc-grouped-fields { display: grid; gap: 26px; }
.lc-subfield h3,
.lc-upload-group h3 { margin: 0 0 12px; color: var(--lc-ink); font: 500 15px "Jost",sans-serif; }
.lc-upload-group + .lc-upload-group { padding-top: 22px; border-top: 1px solid var(--lc-rule); }
.lc-style-preview { display: grid; min-height: 300px; margin-bottom: 16px; place-items: center; overflow: hidden; border: 1px solid var(--lc-rule); border-radius: 18px; background: linear-gradient(145deg,#faf8f6,#f4efeb); color: var(--lc-deep-rose); }
.lc-style-preview img { width: 100%; height: 300px; object-fit: contain; }
.lc-watch-picker .lc-option__visual img { object-fit: contain; background: #fff; }
.lc-style-preview strong { margin: 12px; font-size: 15px; font-weight: 500; }
.lc-style-preview__placeholder { display: grid; width: 100%; min-height: 240px; place-items: center; color: #d1c0b8; }
.lc-style-preview__placeholder svg { width: 44px; }
.lc-package-includes { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 0 0 34px; padding: 20px 24px; border: 1px solid #ead1d7; border-radius: 16px; background: #fbf0f3; }
.lc-package-includes span { color: var(--lc-muted); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.lc-package-includes strong { color: var(--lc-deep-rose); font-size: 14px; font-weight: 500; }
.lc-back-link { display: inline-flex; margin-bottom: 24px; color: var(--lc-deep-rose); font-size: 11px; font-weight: 600; letter-spacing: 1.6px; text-decoration: none; }
.lc-charms-panel { padding: 25px; border: 1px solid #ead1d7; border-radius: 18px; background: #fbf0f3; }
.lc-charms-panel h2 { margin: 0 0 5px; font-size: 27px; }
.lc-charms-panel p { margin: 0 0 17px; color: var(--lc-muted); }
.lc-charms-panel a { display: inline-flex; min-height: 44px; align-items: center; padding: 0 22px; border-radius: 2px; background: var(--lc-rose); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: 1.8px; text-decoration: none; text-transform: uppercase; }
.lc-engraving-note { margin-top: 14px; color: var(--lc-muted); font-size: 12px; font-style: italic; }
.lc-form-bridge { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; clip-path: inset(50%) !important; }

/* Sticky purchase/return bar */
.lc-sticky-purchase {
  position: fixed;
  z-index: 9990;
  bottom: 20px;
  left: 50%;
  display: flex;
  width: min(640px,calc(100% - 32px));
  min-height: 82px;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 16px 13px 20px;
  border: 1px solid var(--lc-rule);
  border-radius: 20px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 40px rgba(43,34,38,.10);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
}
.lc-sticky-purchase__summary { min-width: 0; }
.lc-sticky-purchase__line { overflow: hidden; color: var(--lc-muted-light); font-size: 11px; letter-spacing: .8px; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.lc-sticky-purchase__price { margin-top: 3px; color: var(--lc-deep-rose); font-size: 18px; font-weight: 600; }
.lc-sticky-purchase__button { flex: 0 0 auto; min-width: 168px; min-height: 50px; padding: 0 24px; border: 0; border-radius: 2px; background: var(--lc-rose); color: #fff; font: 600 12px "Jost",sans-serif; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; }
.lc-sticky-purchase__button:hover { background: var(--lc-rose-hover); }

/* Integrated charms journey */
body.lc-charms-journey li.product .button.is-selected { background: var(--lc-rose); color: #fff; border-color: var(--lc-rose); }
body.lc-charms-journey { padding-bottom: 120px; }
.lc-journey-subtitle { margin-top: 7px; color: var(--lc-deep-rose); font-size: 13px; font-weight: 500; }

/* Cart and checkout */
body.woocommerce-cart.lc-storefront main,
body.woocommerce-checkout.lc-storefront main { max-width: 1120px; margin: 0 auto; padding: 42px 24px 90px; }
body.woocommerce-cart.lc-storefront main h1,
body.woocommerce-checkout.lc-storefront main h1 { font-size: 42px; }
body.lc-storefront .wc-block-cart-items,
body.lc-storefront .wc-block-components-sidebar,
body.lc-storefront .wc-block-checkout__main .wc-block-components-checkout-step {
  border: 1px solid var(--lc-rule) !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: none !important;
}
body.lc-storefront .wc-block-cart-items { overflow: hidden; }
body.lc-storefront .wc-block-components-sidebar { padding: 24px !important; }
body.lc-storefront .wc-block-components-text-input input,
body.lc-storefront .wc-block-components-combobox .wc-block-components-combobox-control input { border-radius: 12px !important; border-color: var(--lc-rule) !important; }
.lc-free-price { color: var(--lc-deep-rose); font-weight: 600; letter-spacing: 1px; }
.lc-gift-name-field { margin: 16px 0; padding: 18px; border: 1px solid #eddfd7; border-radius: 14px; background: #f5eee8; }
.lc-gift-name-field label { display: block; margin-bottom: 8px; color: var(--lc-ink); font-size: 13px; font-weight: 500; }
.lc-gift-name-field input { width: 100%; min-height: 48px; box-sizing: border-box; padding: 12px 14px; border: 1px solid var(--lc-rule); border-radius: 10px; background: #fff; font-size: 16px; }
.lc-gift-name-field__counter { margin-top: 7px; color: var(--lc-muted); font-size: 12px; text-align: end; }

/* Optional Checkout Block gift flow */
body.lc-storefront .wc-block-checkout__main .wc-block-components-checkout-step.lc-gift-checkout {
  padding: 22px 24px 24px !important;
  overflow: hidden;
  transition: background-color .25s ease, border-color .25s ease;
}
body.lc-storefront .lc-gift-checkout.is-gift-enabled {
  border-color: #ead1da !important;
  background: linear-gradient(180deg,#fffafd 0%,#fff 42%) !important;
}
.lc-gift-checkout .wc-block-components-checkout-step__heading { margin-bottom: 14px !important; }
.lc-gift-checkout .wc-block-components-checkout-step__title { font-family: var(--lc-serif); font-size: 25px !important; font-weight: 500 !important; }
.lc-gift-checkout__toggle {
  margin: 0 !important;
  padding: 15px 16px !important;
  border: 1px solid #eadde1;
  border-radius: 13px;
  background: #fff7fa;
}
.lc-gift-checkout__toggle label { color: var(--lc-ink) !important; font-size: 15px !important; font-weight: 600 !important; }
.lc-gift-checkout__toggle input { accent-color: var(--lc-deep-rose); }
.lc-gift-checkout__heading { margin: 26px 0 13px; padding-top: 22px; border-top: 1px solid #eee1e5; animation: lcFadeUp .25s ease both; }
.lc-gift-checkout__heading h3 { margin: 0 0 6px; color: var(--lc-ink); font-family: var(--lc-serif); font-size: 23px; font-weight: 500; }
.lc-gift-checkout__heading p { max-width: 660px; margin: 0; color: var(--lc-muted); font-size: 13px; line-height: 1.55; }
.lc-gift-checkout:not(.is-gift-enabled) .lc-gift-checkout__heading,
.lc-gift-checkout:not(.is-gift-enabled) .lc-gift-checkout__surprise { display: none !important; }
.lc-gift-checkout__field { animation: lcFadeUp .22s ease both; }
.lc-gift-checkout__field input::placeholder {
  color: transparent !important;
  opacity: 0 !important;
}
.lc-gift-checkout__field--address-method { margin-top: 21px !important; }
.lc-gift-checkout__surprise {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 12px 0 4px;
  padding: 14px 16px;
  border: 1px solid #ecd7df;
  border-radius: 13px;
  background: #fff2f7;
  color: var(--lc-ink);
  animation: lcFadeUp .22s ease both;
}
.lc-gift-checkout__surprise strong { color: var(--lc-deep-rose); font-family: var(--lc-serif); font-size: 18px; font-weight: 500; }
.lc-gift-checkout__surprise span { color: var(--lc-muted); font-size: 13px; line-height: 1.5; }
.lc-gift-checkout__surprise[hidden] { display: none !important; }
html[dir="rtl"] .lc-gift-checkout__heading,
html[dir="rtl"] .lc-gift-checkout__surprise { text-align: right; }

@keyframes lcFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lcFadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
@media (max-width: 900px) {
  body.lc-storefront header.wp-block-template-part { position: relative; top: auto; }
  body.lc-storefront header nav { overflow-x: auto; scrollbar-width: none; }
  body.lc-storefront header nav ul { width: max-content; flex-wrap: nowrap !important; }
  body.lc-storefront header nav a { white-space: nowrap; }
  body.lc-collection-page ul.products,
  body.lc-collection-page .wc-block-product-template,
  body.term-charms-collection.lc-collection-page ul.products,
  body.term-charms-collection.lc-collection-page .wc-block-product-template { grid-template-columns: repeat(2,minmax(0,1fr)); }
  body.lc-collection-page ul.lc-live-products > .lc-product-card,
  body.term-charms-collection.lc-collection-page ul.lc-live-products > .lc-product-card {
    flex-basis: calc((100% - 28px) / 2);
    width: calc((100% - 28px) / 2) !important;
    max-width: none;
  }
  .lc-home-hero__grid {
    grid-template-columns: minmax(250px,.85fr) minmax(360px,1.15fr) !important;
    min-height: 440px;
    gap: 28px !important;
  }
  .lc-home-hero__media { min-height: 280px; }
  .lc-home-categories__grid { grid-template-columns: repeat(3,minmax(0,1fr)) !important; }
}

@media (max-width: 600px) {
  body.lc-storefront .wc-block-checkout__main .wc-block-components-checkout-step.lc-gift-checkout { padding: 18px 16px 20px !important; }
  .lc-gift-checkout .wc-block-components-checkout-step__title { font-size: 22px !important; }
  .lc-gift-checkout__toggle { padding: 13px 14px !important; }
  .lc-gift-checkout__toggle label { font-size: 14px !important; line-height: 1.45 !important; }
  .lc-gift-checkout__heading { margin-top: 22px; padding-top: 19px; }
  .lc-gift-checkout__heading h3 { font-size: 21px; }
}
@media (max-width: 720px) {
  body.lc-storefront { padding-bottom: 56px; }
  body.lc-storefront .trp-language-switcher.trp-floating-switcher { display: none !important; }
  .lc-phone-first-checkout .lc-contact-phone-field input::placeholder { color: transparent !important; opacity: 0 !important; }
  .lc-home-hero__grid {
    grid-template-columns: 1fr !important;
    min-height: 0;
    padding: 24px 18px 26px !important;
    gap: 18px !important;
  }
  .lc-home-hero__copy h1 { margin-bottom: 10px !important; font-size: clamp(34px,9.2vw,38px) !important; line-height: 1.04 !important; }
  .lc-home-hero__copy p { max-width: 340px !important; margin-bottom: 18px !important; font-size: 14px !important; line-height: 1.55 !important; }
  .lc-home-hero__copy > a { display: none !important; }
  .lc-home-hero__media { min-height: 0; aspect-ratio: 16/9 !important; border-radius: 18px !important; }
  .lc-home-hero__media img { width: 100% !important; height: 100% !important; border-radius: inherit; object-fit: cover; object-position: center 59%; box-shadow: none; }
  .lc-home-benefits > div:first-child { grid-template-columns: repeat(3,minmax(0,1fr)) !important; gap: 8px !important; padding: 13px 10px !important; }
  .lc-home-benefits > div:first-child > div { min-width: 0; flex-direction: column; gap: 6px !important; text-align: center; }
  .lc-home-benefits > div:first-child > div > div:first-child { width: 34px !important; height: 34px !important; }
  .lc-home-benefits > div:first-child > div > div:last-child > div:first-child { font-size: 9px !important; line-height: 1.25 !important; letter-spacing: .7px !important; }
  .lc-home-benefits > div:first-child > div > div:last-child > div:last-child { display: none !important; }
  .lc-home-categories { padding: 28px 12px 6px !important; }
  .lc-home-categories > h2 { margin-bottom: 18px !important; }
  .lc-home-categories__grid { grid-template-columns: repeat(2,minmax(0,1fr)) !important; gap: 10px !important; }
  .lc-home-category-card__media { height: clamp(104px,29vw,116px) !important; }
  .lc-home-category-card__content { padding: 10px 7px !important; }
  .lc-home-category-card--engraved-rings .lc-home-category-card__media { background-size: 114% auto !important; }
  .lc-home-category-card--custom-watches .lc-home-category-card__media { background-size: auto 116% !important; }
  .lc-home-category-card--engraved-necklaces .lc-home-category-card__media { background-size: 108% auto !important; }
  .lc-home-category-card--charms-collection .lc-home-category-card__media { background-size: auto 112% !important; }
  .lc-home-category-card--gift-add-ons .lc-home-category-card__media { background-size: auto 110% !important; }
  .lc-home-category-card--packages .lc-home-category-card__media { background-size: auto 116% !important; }
  .lc-home-categories__grid > .lc-home-category-card:last-child:nth-child(odd) { grid-column: 1 / -1; width: calc((100% - 10px)/2); justify-self: center; }
  body.lc-collection-page ul.lc-live-products > .lc-product-card,
  body.term-charms-collection.lc-collection-page ul.lc-live-products > .lc-product-card {
    flex-basis: calc((100% - 12px) / 2);
    width: calc((100% - 12px) / 2) !important;
    max-width: none;
  }
  .lc-product-experience { padding-inline: 16px; }
  .lc-collection-intro { margin-top: 24px; padding-inline: 16px; }
  body.lc-collection-page ul.products,
  body.lc-collection-page .wc-block-product-template { width: calc(100vw - 24px) !important; gap: 12px !important; padding: 0 !important; }
  .lc-sticky-purchase { bottom: 60px; width: calc(100% - 24px); }
  .lc-step--grouped { padding: 20px 16px; }
  .lc-package-includes { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 560px) {
  body.admin-bar.lc-storefront header.wp-block-template-part { top: auto; }
  .lc-welcome__choices,
  .lc-welcome__choices--regions { grid-template-columns: 1fr; }
  .lc-welcome__dialog { max-height: calc(100vh - 32px); overflow-y: auto; padding: 27px 20px; }
  .lc-product-experience { padding-top: 30px; }
  .lc-product-hero h1 { font-size: 38px; }
  .lc-option-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
  .lc-option { min-height: 104px; padding: 16px 14px; }
  .lc-option__visual { min-height: 72px; }
  .lc-text-field input,.lc-text-field textarea { font-size: 16px; }
  .lc-upload-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  body.lc-collection-page ul.products,
  body.lc-collection-page .wc-block-product-template,
  body.term-charms-collection.lc-collection-page ul.products,
  body.term-charms-collection.lc-collection-page .wc-block-product-template { grid-template-columns: repeat(2,minmax(0,1fr)); }
  body.lc-collection-page li.product h2 { padding-inline: 10px; font-size: 15px; }
  body.lc-collection-page li.product .price { font-size: 14px; }
  .lc-live-products .woocommerce-loop-product__title { margin-top: 13px; }
  .lc-live-products .price { padding-inline: 8px; }
  .lc-price-prefix { display: block; font-size: 11px; }
  body.lc-collection-page li.product .button { min-height: 40px; margin: 10px 8px 12px !important; padding-inline: 8px; font-size: 9px; letter-spacing: 1.1px; }
  body.term-custom-bracelets.lc-collection-page ul.lc-live-products,
  body.term-engraved-rings.lc-collection-page ul.lc-live-products,
  body.term-engraved-necklaces.lc-collection-page ul.lc-live-products {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    gap: 12px !important;
    width: calc(100% - 24px) !important;
    overflow: visible !important;
  }
  .lc-sticky-purchase { align-items: stretch; gap: 10px; padding: 12px; border-radius: 16px; }
  .lc-sticky-purchase__summary { display: flex; min-width: 0; flex: 1 1 auto; flex-direction: column; justify-content: center; }
  .lc-sticky-purchase__button { min-width: 142px; padding-inline: 14px; }
}
