/** Shopify CDN: Minification failed

Line 39:0 All "@import" rules must come first

**/
/* ============================================
   Legacy Timeless Jewel — Luxury Design System
   Mogok, Burma to Brooklyn, NY · Est. 1988
   ============================================ */

/* ---- Design Tokens ---- */
:root {
  --ltj-cream:       #FAF8F5;
  --ltj-cream-dark:  #F0EAE0;
  --ltj-warm-white:  #FEFCF9;
  --ltj-ink:         #1C1410;
  --ltj-ink-soft:    #4A4035;
  --ltj-ink-muted:   #8A7E72;
  --ltj-gold:        #4FB06A;
  --ltj-gold-light:  #74C68E;
  --ltj-gold-pale:   #CDEBD6;
  --ltj-gold-dark:   #3C9455;
  --ltj-border:      #E4DDD4;
  --ltj-border-gold: rgba(79,176,106,0.25);
  --ltj-dark-bg:     #1C1410;
  --ltj-dark-mid:    #2E231A;
  --ltj-ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ltj-transition:  all 0.3s var(--ltj-ease);
  --ltj-shadow-sm:   0 2px 12px rgba(28,20,16,0.07);
  --ltj-shadow-md:   0 8px 32px rgba(28,20,16,0.10);
  --ltj-shadow-lg:   0 20px 60px rgba(28,20,16,0.14);
}

/* ============================================
   GLOBAL OVERRIDES
   ============================================ */

/* Import Google Fonts for luxury feel */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

body {
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif !important;
  background-color: var(--ltj-cream) !important;
  color: var(--ltj-ink-soft) !important;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  color: var(--ltj-ink) !important;
  letter-spacing: 0.02em;
  line-height: 1.2;
  font-weight: 400;
}

h1, .h1 { font-size: 3.2rem !important; font-weight: 300; }
h2, .h2 { font-size: 2.1rem !important; letter-spacing: 0.08em; text-transform: uppercase; }

p { color: var(--ltj-ink-soft); line-height: 1.8; }

a { color: var(--ltj-ink); transition: var(--ltj-transition); }
a:hover { color: var(--ltj-gold-dark); }

/* ============================================
   ANNOUNCEMENT TICKER
   ============================================ */
.announcement-bar {
  background-color: var(--ltj-green) !important;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}
.announcement-bar__link { display: block; }
/* contain isolates the marquee's repaints so they don't cascade up to the sticky header */
.announcement-bar__ticker-wrap { display: flex; width: 100%; overflow: hidden; contain: layout paint; }
.announcement-bar__ticker {
  display: flex;
  width: max-content;
  animation: ltj-ticker 35s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}
.announcement-bar__ticker:hover { animation-play-state: paused; }
.announcement-bar__ticker-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 10px 0;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFFFFF !important;
}
.announcement-bar__ticker-item::after {
  content: '✦';
  margin: 0 28px;
  color: #FFFFFF;
  opacity: 0.65;
  font-size: 10px;
}
@keyframes ltj-ticker {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ============================================
   HEADER
   ============================================ */
/* --- Sticky wrapper: always opaque, always on top --- */
.ltj-sticky-wrap {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #FEFCF9;          /* hardcoded — never transparent */
  box-shadow: none;
  transition: box-shadow 0.3s ease;
  will-change: box-shadow;
}

/* Shadow appears once user scrolls */
.ltj-sticky-wrap.ltj-scrolled {
  box-shadow: 0 2px 20px rgba(28,20,16,0.15);
}

/* --- Shrink-on-scroll uses TRANSFORM ONLY (no height/padding/margin transitions),
       so nothing reflows during scroll and the sticky header can't jitter.
       The announcement ticker stays put (it no longer collapses). --- */
.site-header__logo-image img {
  transition: transform 0.3s ease;
  will-change: transform;
}
.ltj-sticky-wrap.ltj-scrolled .site-header__logo-image img {
  transform: scale(0.9);
  transform-origin: center center;
}

.site-header {
  background-color: #FEFCF9 !important;  /* hardcoded — never transparent */
  border-bottom: 1px solid #E4DDD4 !important;
  position: relative;
  z-index: 1;
}

/* Compact menu bar — less vertical space (logo is centre-aligned; its vertical
   margin is already 0, so we only trim the header top padding + nav margins) */
.site-header.logo--center { padding-top: 6px !important; }
.site-nav { margin: 8px 0 !important; }
@media only screen and (max-width: 749px) {
  .site-header__logo { margin: 6px 0 !important; }
}

/* Desktop: vertically center the top nav row in its container.
   Debut's .site-nav--centered uses a bottom-only padding (22px) which pins the
   menu row to the TOP of the bar; the row's own 8px margin adds to that asymmetry.
   Fix: the row centers via symmetric padding on the #AccessibleNav container,
   with the row's vertical margin/padding zeroed so nothing biases it upward. */
@media only screen and (min-width: 750px) {
  /* Container that holds the top-level menu row */
  #AccessibleNav {
    display: flex;
    align-items: center;       /* vertically center the row within the bar */
    justify-content: center;   /* horizontal centering — unchanged */
    padding: 10px 0;           /* symmetric vertical space the row centers within */
  }
  /* The row itself contributes no asymmetric vertical space anymore */
  .site-nav.site-nav--centered {
    width: 100%;
    margin: 0 !important;            /* was 8px 0 — spacing now lives on the container */
    padding-top: 0 !important;
    padding-bottom: 0 !important;    /* kill Debut's bottom-only 22px padding */
  }
  /* Equal top/bottom padding so each item's text is centered within the row */
  .site-nav--centered .site-nav__link { padding-top: 4px !important; padding-bottom: 4px !important; }
}

/* Logo */
.site-header__logo-link {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ltj-ink) !important;
}

/* Desktop nav */
.site-nav__link { transition: var(--ltj-transition); }
.site-nav__link .site-nav__label {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
  padding-bottom: 2px;
}
.site-nav__link:hover .site-nav__label,
.site-nav__link--active .site-nav__label {
  border-bottom-color: var(--ltj-green) !important;
  color: var(--ltj-ink) !important;
}

/* Header icons */
.site-header__icon svg { fill: var(--ltj-ink); }
.site-header__icon:hover svg { fill: var(--ltj-gold-dark); }

/* Cart count bubble */
.site-header__cart-count {
  background-color: var(--ltj-gold) !important;
}

/* Wishlist icon in header */
.ltj-wishlist-header-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 11px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ltj-ink);
  text-decoration: none;
  transition: var(--ltj-transition);
}
.ltj-wishlist-header-btn:hover { color: var(--ltj-gold-dark); }
.ltj-wishlist-header-btn svg { width: 20px; height: 20px; fill: currentColor; }
.ltj-wishlist-header-btn .ltj-wl-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--ltj-gold);
  color: #fff;
  border-radius: 50%;
  min-width: 16px;
  height: 16px;
  font-size: 10px;
  font-weight: 600;
  display: none;
  align-items: center;
  justify-content: center;
}
.ltj-wishlist-header-btn .ltj-wl-badge.ltj-show { display: flex; }

/* ============================================
   MOBILE MENU DRAWER
   ============================================ */
.ltj-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,20,16,0.6);
  z-index: 250;   /* above the sticky header/announcement ticker (z-index 200) */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}
.ltj-mobile-overlay.ltj-active { opacity: 1; pointer-events: auto; }

.mobile-nav-wrapper {
  position: fixed !important;
  top: 0;
  right: 0;            /* drawer anchored to the RIGHT edge */
  left: auto;          /* cancel Debut's base/inline left:0 */
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--ltj-warm-white) !important;
  z-index: 251;   /* sit above the sticky header/ticker so the X close button is visible */
  overflow-y: auto;
  /* Force full viewport height with !important so Debut's native sub-nav can't
     shrink the drawer (it sets an inline style.height to fit submenu content). */
  height: 100vh !important;
  height: 100dvh !important;
  /* !important so Debut's native inline style.transform can't override it */
  transform: translateX(100%) !important;   /* parked off-screen to the right */
  transition: transform 0.38s var(--ltj-ease);
  display: block !important;
  padding-top: 84px;   /* more breathing room below the top edge */
  box-shadow: -4px 0 40px rgba(28,20,16,0.2);   /* shadow on the inner (left) edge */
  border-left: 1px solid var(--ltj-border);
  border-right: none;
}
.mobile-nav-wrapper.ltj-drawer-open { transform: translateX(0) !important; }

/* --- Mobile drawer refinements (mobile only): narrower, starting below the
       announcement ticker, floating over a clearly-dimmed page. Slide direction,
       transition and close behaviours are inherited from the rules above. --- */
@media only screen and (max-width: 749px) {
  .mobile-nav-wrapper {
    width: clamp(210px, 52vw, 270px);         /* ~half the screen (210px floor keeps labels readable) */
    top: 44px;                                /* start just below the ~43px announcement bar */
    height: calc(100vh - 44px) !important;    /* still extends to the viewport bottom */
    height: calc(100dvh - 44px) !important;   /* dvh accounts for mobile browser chrome */
    padding-top: 60px;                        /* room for the header band (title + close) */
    box-shadow: -10px 0 34px rgba(0, 0, 0, 0.20);  /* deeper left-edge shadow → clearly floating */
  }
  .ltj-mobile-overlay {
    top: 44px;                                /* leave the announcement bar bright/visible */
    background: rgba(0, 0, 0, 0.45);          /* clearly dimmed, page still readable on the left */
    backdrop-filter: none;                    /* drop the blur so the page reads clearly */
    -webkit-backdrop-filter: none;
  }
  /* The drawer is an overlay, so block Debut's native sub-nav from pushing the
     page: toggleSubNav sets an inline transform: translateY() on #PageContainer
     when you open Catalog/Blog/Museum, which shoved the page up/down behind the
     drawer and left a white gap. !important neutralises that inline transform. */
  #PageContainer { transform: none !important; }
}

/* ---- Mobile drawer: header band (brand label + close) ---- */
/* Circular close button, top-right of the drawer */
.ltj-mobile-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 2;
  width: 34px;
  height: 34px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ltj-warm-white);
  border: 1px solid var(--ltj-border);
  border-radius: 50%;
  cursor: pointer;
  font-size: 19px;
  color: var(--ltj-ink-muted);
  line-height: 1;
  transition: var(--ltj-transition);
}
.ltj-mobile-close:hover {
  color: var(--ltj-gold-dark);
  border-color: var(--ltj-border-gold);
  background: var(--ltj-cream);
}

/* Small brand/section label, top-left */
.ltj-mobile-header-title {
  position: absolute;
  top: 22px;
  left: 22px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ltj-gold);
  font-weight: 600;
}

/* ---- Mobile nav list ---- */
/* Hairline divider under the header band */
.mobile-nav {
  border-top: 1px solid var(--ltj-border);
  padding-bottom: 24px;
}
/* Thin separators between rows */
.mobile-nav__item { border-bottom: 1px solid rgba(228, 221, 212, 0.55); }

/* Each row: generous 48px+ tap target, uppercase boutique labels */
.mobile-nav__link,
.mobile-nav__sublist-link {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ltj-ink) !important;
  padding: 16px 46px 16px 22px !important;   /* right pad clears the chevron */
  position: relative;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
/* Hover / current state: gold text, soft cream wash, slight indent */
.mobile-nav__link:hover,
.mobile-nav__link--active,
.mobile-nav__sublist-link:hover {
  color: var(--ltj-gold-dark) !important;
  background: var(--ltj-cream);
  padding-left: 28px !important;
}
/* A gold accent bar slides in on hover/active for a premium feel */
.mobile-nav__link::before,
.mobile-nav__sublist-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  transform-origin: center;
  width: 3px;
  height: 22px;
  background: var(--ltj-gold);
  transition: transform 0.2s ease;
}
.mobile-nav__link:hover::before,
.mobile-nav__link--active::before,
.mobile-nav__sublist-link:hover::before {
  transform: translateY(-50%) scaleY(1);
}

/* Chevron on submenu rows */
.mobile-nav__icon { color: var(--ltj-ink-muted); }
.mobile-nav__icon svg { width: 9px; height: 9px; fill: currentColor; }
.mobile-nav__link:hover .mobile-nav__icon,
.mobile-nav__link--active .mobile-nav__icon { color: var(--ltj-gold-dark); }

/* Submenu panels + their back/return header */
.mobile-nav__dropdown { background-color: var(--ltj-warm-white) !important; }
.mobile-nav__sublist-header {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.15rem !important;
  letter-spacing: 0.06em;
  color: var(--ltj-ink) !important;
}
.mobile-nav__return-btn { color: var(--ltj-gold-dark) !important; }

/* ============================================
   BACK TO TOP
   ============================================ */
#ltj-back-to-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--ltj-green);
  color: var(--ltj-cream);
  border: 1px solid var(--ltj-green);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: var(--ltj-transition);
  z-index: 999;
}
#ltj-back-to-top.ltj-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#ltj-back-to-top:hover { background: var(--ltj-green-dark); color: var(--ltj-cream); }
#ltj-back-to-top svg { width: 18px; height: 18px; fill: currentColor; }

/* ============================================
   SLIDESHOW — Luxury text styling
   NOTE: never put a background/overlay on .slideshow__image, .box, or
   .ratio-container — those carry the lazy-loaded background-image and any
   override hides the slide. Legibility is handled by the theme's native
   overlay (show_overlay) + text-shadow below.
   ============================================ */
.slideshow__text-wrap { position: relative; z-index: 3; }

/* Slideshow text styling */
.mega-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 300 !important;
  font-size: 3.8rem !important;
  letter-spacing: 0.06em !important;
  color: #FEFCF9 !important;
  text-shadow: 0 2px 8px rgba(28,20,16,0.65), 0 1px 30px rgba(28,20,16,0.55);
  line-height: 1.1 !important;
}
.mega-title--large { font-size: 4.6rem !important; }
.mega-subtitle, .mega-subtitle--large {
  font-family: 'Jost', sans-serif !important;
  font-weight: 300 !important;
  font-size: 1rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--ltj-gold-light) !important;
  text-shadow: 0 1px 6px rgba(28,20,16,0.7);
  margin-top: 12px !important;
}
.mega-subtitle--large { font-size: 1.05rem !important; }

/* Slideshow button */
.hero__btn {
  background: transparent !important;
  border: 1px solid rgba(116,198,142,0.7) !important;
  color: var(--ltj-gold-light) !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  padding: 14px 36px !important;
  margin-top: 28px !important;
  transition: var(--ltj-transition) !important;
  border-radius: 0 !important;
}
.hero__btn:hover {
  background: var(--ltj-gold) !important;
  border-color: var(--ltj-gold) !important;
  color: var(--ltj-dark-bg) !important;
}

/* Clean luxury slideshow — hide ALL visible controls (arrows, dots, pause).
   Markup is kept in the DOM so accessibility + Debut's slider JS still work;
   we only hide it visually. Manual navigation is via swipe/drag (ltj-custom.js). */
.slideshow__controls,
.slideshow__arrows,
.slideshow__pause,
.slideshow-wrapper .slick-dots {
  display: none !important;
}
/* Draggable feel + stop image ghost-drag / text selection while swiping */
.slideshow-wrapper { cursor: grab; }
.slideshow-wrapper.ltj-slide-grabbing { cursor: grabbing; user-select: none; }
.slideshow-wrapper img { -webkit-user-drag: none; user-select: none; }
/* Desktop: full-bleed hero photo — fills the full viewport width edge-to-edge,
   cropping vertically as needed (no horizontal stretch, no side margins). The
   slideshow is already 100vw (no max-width container); height is capped ~640px
   below so it never gets absurdly tall. Mobile keeps its own cover framing. */
@media only screen and (min-width: 750px) {
  .slideshow__image { background-size: cover !important; }
  .slideshow,
  .slideshow__slide { background-color: var(--ltj-cream); }
}

/* ============================================
   SECTION HEADERS — Luxury Style
   ============================================ */
.section-header {
  padding: 60px 0 40px;
  text-align: center;
}
.section-header__title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 400;
  font-size: 2.2rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ltj-ink) !important;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 0;
}
.section-header__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--ltj-gold);
}
/* Section label (small text above heading) */
.ltj-section-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ltj-gold);
  margin-bottom: 14px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn:not(.btn--secondary):not(.btn--link) {
  background: var(--ltj-ink) !important;
  color: var(--ltj-warm-white) !important;
  border: 1px solid var(--ltj-ink) !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  padding: 14px 32px !important;
  border-radius: 0 !important;
  transition: var(--ltj-transition) !important;
  position: relative;
  overflow: hidden;
}
.btn:not(.btn--secondary):not(.btn--link):hover {
  background: var(--ltj-gold-dark) !important;
  border-color: var(--ltj-gold-dark) !important;
}
.btn--secondary {
  background: transparent !important;
  border: 1px solid var(--ltj-ink) !important;
  color: var(--ltj-ink) !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  padding: 12px 28px !important;
  border-radius: 0 !important;
  transition: var(--ltj-transition) !important;
}
.btn--secondary:hover {
  background: var(--ltj-ink) !important;
  color: var(--ltj-warm-white) !important;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.grid-view-item,
.product-card {
  background: var(--ltj-warm-white);
  position: relative;
  transition: transform 0.36s var(--ltj-ease), box-shadow 0.36s var(--ltj-ease);
  border: 1px solid transparent;
}
.grid-view-item:hover,
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ltj-shadow-md);
  border-color: var(--ltj-border-gold);
}

/* Product image wrapper */
.grid-view-item__image-wrapper {
  overflow: hidden;
}
.grid-view-item__image {
  transition: transform 0.6s var(--ltj-ease) !important;
}
.grid-view-item:hover .grid-view-item__image {
  transform: scale(1.04);
}

/* Product title */
.grid-view-item__title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.05rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em !important;
  color: var(--ltj-ink) !important;
  padding: 12px 12px 4px !important;
  text-transform: none !important;
}

/* Product price */
.product-price__price,
.price-item,
.product__price .money {
  font-family: 'Jost', sans-serif !important;
  color: var(--ltj-gold-dark) !important;
  font-size: 0.92rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
}
.product-price__reduced-price .money,
.price--sale .money {
  color: var(--ltj-gold-dark) !important;
}
.product-price__price--compare .money {
  color: var(--ltj-ink-muted) !important;
  text-decoration: line-through;
}

/* Wishlist heart on cards */
.ltj-wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  background: rgba(254,252,249,0.88);
  border: none;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ccc;
  transition: var(--ltj-transition);
  box-shadow: var(--ltj-shadow-sm);
  border-radius: 0;
}
.ltj-wishlist-btn:hover,
.ltj-wishlist-btn.ltj-wishlisted { color: var(--ltj-green); transform: scale(1.1); }
.ltj-wishlist-btn svg { width: 16px; height: 16px; fill: currentColor; }
.ltj-wishlist-btn.ltj-wishlisted svg { fill: var(--ltj-green); }

/* ============================================
   COLLECTION LIST (homepage grids)
   ============================================ */
/* Title sits BELOW the photo (no overlay/scrim). The square image lives on the
   link; the card grows to fit the title beneath it. */
.collection-grid-item {
  position: relative;
  padding-bottom: 0 !important;   /* was a padding-square; the square moves to the link */
  height: auto;
  overflow: visible;              /* let the title show below the photo */
  box-shadow: none;
}
.collection-grid-item:hover { box-shadow: none; transform: none; }

/* The link is the square photo area */
.collection-grid-item__link {
  position: relative !important;
  display: block;
  top: auto; right: auto; bottom: auto; left: auto;
  width: 100%;
  height: 0;
  padding-bottom: 100%;           /* keep the original square aspect ratio */
}

/* Clean photo fills the square — no scrim, no gradient */
.collection-grid-item__overlay {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.5s var(--ltj-ease);
}
.collection-grid-item__link:hover .collection-grid-item__overlay { transform: scale(1.02); }
.collection-grid-item__title-wrapper::before { content: none !important; display: none !important; }

/* Category name below the photo: centered serif, dark ink, no background */
.collection-grid-item__title-wrapper {
  position: static !important;
  display: block;
  text-decoration: none;
}
.collection-grid-item__title {
  position: static !important;
  transform: none !important;
  top: auto !important;
  width: 100%;
  text-align: center;
  color: var(--ltj-ink) !important;
  text-shadow: none !important;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.1rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  padding: 16px 10px 24px !important;
  line-height: 1.35;
  transition: color 0.25s ease;
}
.collection-grid-item__title-wrapper:hover .collection-grid-item__title { color: var(--ltj-green) !important; }
@media only screen and (max-width: 749px) {
  .collection-grid-item__title { font-size: 0.95rem !important; }
}

/* Section titles for collection lists */
.index-section .section-header__title,
.collection-list-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 2rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ltj-ink) !important;
}

/* ============================================
   FEATURE ROW (About Us)
   ============================================ */
.feature-row {
  padding: 80px 0;
}
.feature-row__image-wrapper {
  border: 1px solid var(--ltj-border);
}
.feature-row__heading {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 2.4rem !important;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ltj-ink) !important;
  text-align: center;        /* heading anchors the section, centered above the columns */
  margin-bottom: 28px;
}

/* Heading sits ABOVE a two-column (image + text) block. Outer wrapper must stack
   (override the theme's flex on .feature-row), inner .feature-row__cols is the row. */
.page-width.feature-row { display: block; }
.feature-row__cols { display: block; }   /* mobile: natural stack — image then text */
@media only screen and (min-width: 750px) {
  .feature-row__cols {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .feature-row__cols .feature-row__text { align-self: flex-start; }
  /* Drop the photo down so its top lines up with the first line of body text.
     The text column has a 35px top padding ($section-spacing-small), so match it
     on the image column. */
  .feature-row__cols .feature-row__item:not(.feature-row__text) { padding-top: 35px; }
}
.feature-row__subtext {
  color: var(--ltj-ink-soft);
  line-height: 1.85;
  font-size: 15px;
  font-family: 'Jost', sans-serif;
}
.feature-row__btn-wrapper .btn {
  margin-top: 28px;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.ltj-breadcrumbs-wrap {
  width: 100%;
  background: #EDE6DB;
  border-top: 1px solid #D9CEBF;
  border-bottom: 1px solid #D9CEBF;
  margin-bottom: 24px;
}
.ltj-breadcrumbs {
  padding: 7px 0;
}
.ltj-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px;
}
.ltj-breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ltj-breadcrumbs__item:not(:last-child)::after {
  content: '›';
  color: #4FB06A;
  font-size: 13px;
  line-height: 1;
}
.ltj-breadcrumbs__link {
  color: #5C5248;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.ltj-breadcrumbs__link:hover { color: #3C9455; text-decoration: underline; }
.ltj-breadcrumbs__current {
  color: #1C1410;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.03em;
}

/* ============================================
   INPUT FIELDS
   ============================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
textarea,
select {
  border: 1px solid var(--ltj-border) !important;
  background: var(--ltj-warm-white) !important;
  color: var(--ltj-ink) !important;
  border-radius: 0 !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 14px !important;
  padding: 12px 14px !important;
  transition: border-color 0.2s ease !important;
}
input:focus, textarea:focus, select:focus {
  outline: none !important;
  border-color: var(--ltj-green) !important;
  box-shadow: 0 0 0 2px rgba(79,176,106,0.15) !important;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
  background: var(--ltj-cream-dark);
  padding: 60px 0;
  border-top: 1px solid var(--ltj-border);
  border-bottom: 1px solid var(--ltj-border);
  text-align: center;
}
.newsletter__submit.btn {
  background: var(--ltj-gold-dark) !important;
  border-color: var(--ltj-gold-dark) !important;
}
.newsletter__submit.btn:hover {
  background: var(--ltj-ink) !important;
  border-color: var(--ltj-ink) !important;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--ltj-green) !important;
  border-top: 1px solid rgba(255,255,255,0.25) !important;
  /* Compact footer — was margin-top:55px + padding:45px 0 35px */
  margin-top: 0 !important;
  padding-top: 44px !important;
  padding-bottom: 32px !important;
}
/* Tighten the big gaps between footer blocks */
.site-footer__item { margin-bottom: 16px !important; }
.site-footer__content { margin-bottom: 0 !important; }
.site-footer p,
.site-footer h4,
.site-footer a,
.site-footer small,
.site-footer .site-footer__copyright-content,
.site-footer .site-footer__linklist-item a {
  color: #FFFFFF !important;
  font-family: 'Jost', sans-serif;
}
.site-footer h4 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1rem !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFFFFF !important;
  margin-bottom: 16px;
}
.site-footer__linklist-item a {
  font-size: 13px !important;
  letter-spacing: 0.06em;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.site-footer__linklist-item a:hover {
  opacity: 1;
  color: #FFFFFF !important;
}
.site-footer__hr {
  border-bottom: 1px solid rgba(255,255,255,0.18) !important;
}
.site-footer__rte p {
  font-size: 13px;
  line-height: 1.4;            /* tighter line spacing */
  opacity: 0.85;
  color: #FFFFFF !important;
  margin: 0 0 6px;             /* small gap between address lines (was ~19px) */
}
.site-footer__rte p:last-child { margin-bottom: 0; }
/* Footer newsletter signup on green */
.site-footer .newsletter__input {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.4) !important;
  color: #FFFFFF !important;
}
.site-footer .newsletter__input::placeholder { color: rgba(255,255,255,0.6); }
/* White Subscribe button so it stands out on the green footer */
.site-footer .newsletter__submit.btn {
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
  color: var(--ltj-green) !important;
}
.site-footer .newsletter__submit.btn:hover {
  background: var(--ltj-cream) !important;
  border-color: var(--ltj-cream) !important;
  color: var(--ltj-green-dark) !important;
}
.site-footer .social-icons__link {
  color: #FFFFFF !important;
  transition: color 0.2s;
}
.site-footer .social-icons__link:hover { color: var(--ltj-cream) !important; }
.site-footer .disclosure__toggle {
  color: #FFFFFF !important;
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.35) !important;
}
.site-footer .disclosure-list {
  background: var(--ltj-green-dark) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
}
.site-footer .disclosure-list__option { color: #FFFFFF !important; }

/* ---- Compact footer internals (tighten vertical spacing only) ---- */
/* All footer paragraph text: tighter line-height */
.site-footer p { line-height: 1.4; }
/* Section headings ("Store Location", "Newsletter") → smaller gap to content */
.site-footer .h4 { margin-bottom: 14px !important; line-height: 1.3; }
/* Newsletter: tighten heading→input→button */
.site-footer__newsletter { margin-top: 0 !important; }
.site-footer .input-group { margin: 0 !important; }
.site-footer .newsletter__submit.btn { margin-top: 0 !important; }
/* Bottom strip (locale / social / payment / copyright): compact */
.site-footer__hr { margin-top: 18px !important; margin-bottom: 16px !important; }
.site-footer .grid--footer-float-right .grid__item { margin-bottom: 8px; }
.site-footer .selectors-form__item { margin-bottom: 8px; }
.site-footer__copyright-content { line-height: 1.4; }

/* Mobile: keep things tappable — min 44px targets on Subscribe + social icons */
@media only screen and (max-width: 749px) {
  .site-footer .newsletter__submit.btn { min-height: 44px; }
  .site-footer .social-icons__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
  }
}

/* ============================================
   PRODUCT PAGE
   ============================================ */
.product-single__title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 2.4rem !important;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ltj-ink) !important;
  line-height: 1.2;
}
.product-single__vendor {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ltj-gold) !important;
}
.product__price .money {
  font-family: 'Jost', sans-serif !important;
  font-size: 1.4rem !important;
  font-weight: 400 !important;
  color: var(--ltj-gold-dark) !important;
}
.product-single__description {
  font-family: 'Jost', sans-serif;
  line-height: 1.85;
  font-size: 15px;
  color: var(--ltj-ink-soft) !important;
}

/* Product wishlist button */
.ltj-product-wishlist-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--ltj-border);
  padding: 12px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ltj-ink-muted);
  cursor: pointer;
  transition: var(--ltj-transition);
  margin-top: 12px;
}
.ltj-product-wishlist-btn svg { width: 14px; height: 14px; fill: currentColor; }
.ltj-product-wishlist-btn:hover,
.ltj-product-wishlist-btn.ltj-wishlisted {
  border-color: var(--ltj-green);
  color: var(--ltj-green);
}

/* Product variant selectors */
.single-option-selector, .selector-wrapper select {
  border: 1px solid var(--ltj-border) !important;
  border-radius: 0 !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 13px !important;
}
.swatch__input:checked + .swatch__label {
  border-color: var(--ltj-green) !important;
}

/* ============================================
   CART PAGE
   ============================================ */
.cart__header {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 2rem !important;
  letter-spacing: 0.1em;
}
.cart__subtotal {
  font-family: 'Jost', sans-serif !important;
  color: var(--ltj-gold-dark) !important;
  font-weight: 500;
}

/* ============================================
   COLLECTION PAGE
   ============================================ */
.collection-hero {
  position: relative;
}
.collection-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,20,16,0.65) 0%, transparent 60%);
  pointer-events: none;
}
.collection-hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 3rem !important;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FEFCF9 !important;
  position: relative;
  z-index: 1;
}
.collection-description {
  font-family: 'Jost', sans-serif;
  color: var(--ltj-ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

/* Filter/sort toolbar */
.filters-toolbar {
  border-top: 1px solid var(--ltj-border);
  border-bottom: 1px solid var(--ltj-border);
  background: var(--ltj-warm-white);
}
.filters-toolbar__label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ltj-ink-muted) !important;
}

/* ============================================
   SEARCH DRAWER
   ============================================ */
.site-header__search-header {
  background: var(--ltj-warm-white);
  border-bottom: 1px solid var(--ltj-border);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.ltj-testimonials {
  padding: 90px 0;
  background: var(--ltj-cream);
  text-align: center;
}
.ltj-testimonials__subheading {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ltj-gold);
  margin-bottom: 12px;
}
.ltj-testimonials__heading {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 2.4rem !important;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ltj-ink) !important;
  margin-bottom: 6px;
}
.ltj-testimonials__desc { color: var(--ltj-ink-muted); font-size: 15px; margin-bottom: 56px; font-family: 'Jost', sans-serif; }
.ltj-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.ltj-testimonial-card {
  background: var(--ltj-warm-white);
  padding: 40px 32px 32px;
  border: 1px solid var(--ltj-border);
  text-align: left;
  position: relative;
  transition: var(--ltj-transition);
}
.ltj-testimonial-card:hover {
  border-color: var(--ltj-border-gold);
  box-shadow: var(--ltj-shadow-sm);
}
.ltj-testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 14px;
  left: 22px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 72px;
  color: rgba(79,176,106,0.14);
  line-height: 1;
  pointer-events: none;
}
.ltj-testimonial__stars {
  display: block;
  color: var(--ltj-gold);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 3px;
}
.ltj-testimonial__text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ltj-ink-soft);
  line-height: 1.75;
  margin-bottom: 20px;
}
.ltj-testimonial__author {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ltj-ink);
}
.ltj-testimonial__location {
  display: block;
  font-size: 11px;
  color: var(--ltj-ink-muted);
  font-family: 'Jost', sans-serif;
  margin-top: 3px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.ltj-faq { padding: 90px 0; background: var(--ltj-warm-white); }
.ltj-faq__header { text-align: center; margin-bottom: 52px; }
.ltj-faq__subheading {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ltj-gold);
  margin-bottom: 12px;
}
.ltj-faq__heading {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 2.4rem !important;
  font-weight: 400;
  color: var(--ltj-ink) !important;
}
.ltj-faq__list { max-width: 760px; margin: 0 auto; list-style: none; padding: 0; }
.ltj-faq__item { border-bottom: 1px solid var(--ltj-border); }
.ltj-faq__item:first-child { border-top: 1px solid var(--ltj-border); }
.ltj-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ltj-ink);
  gap: 16px;
  transition: color 0.2s;
}
.ltj-faq__question:hover { color: var(--ltj-gold-dark); }
.ltj-faq__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1px solid var(--ltj-border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--ltj-gold);
  transition: var(--ltj-transition);
}
.ltj-faq__item.ltj-open .ltj-faq__icon {
  background: var(--ltj-green);
  border-color: var(--ltj-green);
  color: var(--ltj-cream);
  transform: rotate(45deg);
}
.ltj-faq__answer { overflow: hidden; max-height: 0; transition: max-height 0.4s ease, padding 0.3s ease; }
.ltj-faq__item.ltj-open .ltj-faq__answer { max-height: 600px; padding-bottom: 20px; }
.ltj-faq__answer p {
  color: var(--ltj-ink-soft);
  line-height: 1.8;
  font-size: 14px;
  margin: 0;
  font-family: 'Jost', sans-serif;
}

/* ============================================
   EDUCATION SECTION (dark)
   ============================================ */
.ltj-education { padding: 90px 0; background: var(--ltj-dark-bg); color: #fff; }
.ltj-education__header { text-align: center; margin-bottom: 52px; }
.ltj-education__subheading {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ltj-gold);
  margin-bottom: 12px;
}
.ltj-education__heading {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 2.4rem !important;
  font-weight: 400;
  color: #FAF8F5 !important;
}
.ltj-education__tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 44px;
}
.ltj-education__tab-btn {
  background: transparent;
  border: 1px solid rgba(79,176,106,0.3);
  color: rgba(255,255,255,0.6);
  padding: 10px 22px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--ltj-transition);
}
.ltj-education__tab-btn.ltj-active,
.ltj-education__tab-btn:hover {
  background: var(--ltj-green);
  border-color: var(--ltj-green);
  color: var(--ltj-cream);
}
.ltj-education__panel { display: none; }
.ltj-education__panel.ltj-active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
  animation: ltj-fade-in 0.4s ease;
}
@media (max-width: 749px) { .ltj-education__panel.ltj-active { grid-template-columns: 1fr; } }
.ltj-education__grade { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.ltj-education__grade-badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(79,176,106,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: var(--ltj-gold);
  letter-spacing: 0;
}
.ltj-education__grade-info h4 {
  font-family: 'Jost', sans-serif !important;
  color: rgba(255,255,255,0.92) !important;
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.ltj-education__grade-info p {
  color: rgba(255,255,255,0.48);
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
  font-family: 'Jost', sans-serif;
}
.ltj-education__scale { display: flex; flex-direction: column; gap: 12px; }
.ltj-education__scale-item { display: flex; align-items: center; gap: 10px; }
.ltj-education__scale-label {
  font-family: 'Jost', sans-serif;
  width: 60px;
  text-align: right;
  color: var(--ltj-gold-light);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.ltj-education__scale-bar {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.07);
  overflow: hidden;
}
.ltj-education__scale-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ltj-gold-dark), var(--ltj-gold-light));
  width: 0;
  transition: width 0.9s ease 0.2s;
}

/* ============================================
   JEWELRY BUILDER
   ============================================ */
.ltj-builder { padding: 80px 0; background: var(--ltj-cream); }
.ltj-builder__header { text-align: center; margin-bottom: 52px; }
.ltj-builder__subheading {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ltj-gold);
  margin-bottom: 12px;
}
.ltj-builder__heading {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 2.4rem !important;
  color: var(--ltj-ink) !important;
}
.ltj-builder__intro { color: var(--ltj-ink-muted); font-size: 15px; font-family: 'Jost', sans-serif; }
.ltj-builder__steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 52px;
  gap: 0;
  flex-wrap: wrap;
}
.ltj-builder__step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 130px;
  position: relative;
}
.ltj-builder__step-indicator:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 17px;
  left: calc(50% + 20px);
  right: calc(-50% + 20px);
  height: 1px;
  background: var(--ltj-border);
}
.ltj-builder__step-num {
  width: 34px;
  height: 34px;
  border: 1px solid var(--ltj-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--ltj-ink-muted);
  background: var(--ltj-warm-white);
  position: relative;
  z-index: 1;
  transition: var(--ltj-transition);
}
.ltj-builder__step-label {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ltj-ink-muted);
  text-align: center;
}
.ltj-builder__step-indicator.ltj-active .ltj-builder__step-num {
  border-color: var(--ltj-green);
  color: var(--ltj-green-dark);
}
.ltj-builder__step-indicator.ltj-active .ltj-builder__step-label { color: var(--ltj-green-dark); font-weight: 600; }
.ltj-builder__step-indicator.ltj-done .ltj-builder__step-num {
  background: var(--ltj-green);
  border-color: var(--ltj-green);
  color: var(--ltj-cream);
}
.ltj-builder__panel { display: none; animation: ltj-fade-in 0.3s ease; }
.ltj-builder__panel.ltj-active { display: block; }
.ltj-builder__panel-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ltj-ink);
  margin-bottom: 6px;
}
.ltj-builder__panel-desc {
  font-family: 'Jost', sans-serif;
  color: var(--ltj-ink-muted);
  font-size: 14px;
  margin-bottom: 28px;
}
.ltj-builder__options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}
.ltj-builder__option {
  border: 1px solid var(--ltj-border);
  padding: 20px 12px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--ltj-transition);
  background: var(--ltj-warm-white);
  position: relative;
}
.ltj-builder__option:hover { border-color: var(--ltj-border-gold); }
.ltj-builder__option.ltj-selected {
  border-color: var(--ltj-green);
  background: var(--ltj-jade-light);
}
.ltj-builder__option.ltj-selected::after {
  content: '✓';
  position: absolute;
  top: 6px;
  right: 8px;
  color: var(--ltj-green);
  font-weight: 700;
  font-size: 11px;
}
.ltj-builder__option-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.ltj-builder__option-name {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--ltj-ink);
  margin-bottom: 3px;
  letter-spacing: 0.04em;
}
.ltj-builder__option-detail { font-family: 'Jost', sans-serif; font-size: 11px; color: var(--ltj-ink-muted); }
.ltj-builder__size-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ltj-ink-muted);
  margin-bottom: 10px;
  display: block;
}
.ltj-builder__size-row { display: flex; flex-wrap: wrap; gap: 8px; }
.ltj-builder__size-btn {
  padding: 9px 16px;
  border: 1px solid var(--ltj-border);
  background: var(--ltj-warm-white);
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  transition: var(--ltj-transition);
  font-weight: 400;
}
.ltj-builder__size-btn:hover { border-color: var(--ltj-border-gold); }
.ltj-builder__size-btn.ltj-selected {
  border-color: var(--ltj-green);
  background: var(--ltj-jade-light);
  color: var(--ltj-green-dark);
  font-weight: 600;
}
.ltj-builder__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--ltj-border);
}
.ltj-builder__step-count { font-family: 'Jost', sans-serif; font-size: 11px; color: var(--ltj-ink-muted); letter-spacing: 0.08em; }
.ltj-builder__summary {
  background: var(--ltj-warm-white);
  border: 1px solid var(--ltj-border-gold);
  padding: 24px 28px;
  margin-bottom: 24px;
}
.ltj-builder__summary h3 {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ltj-gold-dark);
  margin: 0 0 16px;
}
.ltj-builder__summary-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid var(--ltj-border);
  color: var(--ltj-ink-soft);
}
.ltj-builder__summary-row:last-child {
  border-bottom: none;
  font-weight: 600;
  color: var(--ltj-ink);
  padding-top: 12px;
  font-size: 15px;
}

/* ============================================
   APPOINTMENTS SECTION
   ============================================ */
.ltj-appointments { padding: 90px 0; background: var(--ltj-cream); }
.ltj-appointments__intro { text-align: center; max-width: 580px; margin: 0 auto 56px; }
.ltj-appointments__subheading {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ltj-gold);
  margin-bottom: 12px;
}
.ltj-appointments__heading {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 2.4rem !important;
  color: var(--ltj-ink) !important;
}
.ltj-appointments__desc { color: var(--ltj-ink-muted); font-size: 15px; font-family: 'Jost', sans-serif; }
.ltj-appointments__services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 52px;
}
.ltj-service-card {
  padding: 32px 24px;
  border: 1px solid var(--ltj-border);
  text-align: center;
  cursor: pointer;
  transition: var(--ltj-transition);
  background: var(--ltj-warm-white);
}
.ltj-service-card:hover,
.ltj-service-card.ltj-selected {
  border-color: var(--ltj-green);
  background: var(--ltj-jade-light);
  transform: translateY(-4px);
  box-shadow: var(--ltj-shadow-md);
}
.ltj-service-card__icon { font-size: 34px; display: block; margin-bottom: 16px; }
.ltj-service-card__name {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ltj-ink);
  margin-bottom: 8px;
}
.ltj-service-card__desc { font-family: 'Jost', sans-serif; font-size: 13px; color: var(--ltj-ink-muted); line-height: 1.6; }
.ltj-appointments__form-wrap {
  max-width: 600px;
  margin: 0 auto;
  background: var(--ltj-warm-white);
  border: 1px solid var(--ltj-border);
  padding: 48px;
  display: none;
}
.ltj-appointments__form-wrap.ltj-active { display: block; }
.ltj-appointments__form-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.8rem !important;
  font-weight: 400;
  color: var(--ltj-ink) !important;
  text-align: center;
  margin-bottom: 6px;
}
.ltj-appointments__form-subtitle {
  font-family: 'Jost', sans-serif;
  text-align: center;
  color: var(--ltj-ink-muted);
  font-size: 14px;
  margin-bottom: 32px;
}

/* ============================================
   SHARED FORM STYLES
   ============================================ */
.ltj-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 600px) { .ltj-form-grid { grid-template-columns: 1fr; } }
.ltj-form-group { margin-bottom: 14px; }
.ltj-form-group--full { grid-column: 1 / -1; }
.ltj-form-group label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ltj-ink-muted);
  margin-bottom: 6px;
}
.ltj-form-group input,
.ltj-form-group select,
.ltj-form-group textarea {
  width: 100%;
  border: 1px solid var(--ltj-border) !important;
  padding: 11px 14px !important;
  font-size: 14px !important;
  background: var(--ltj-warm-white) !important;
  color: var(--ltj-ink) !important;
  font-family: 'Jost', sans-serif !important;
  transition: border-color 0.2s ease !important;
  border-radius: 0 !important;
  -webkit-appearance: none;
}
.ltj-form-group input:focus,
.ltj-form-group select:focus,
.ltj-form-group textarea:focus {
  outline: none !important;
  border-color: var(--ltj-green) !important;
  box-shadow: 0 0 0 2px rgba(79,176,106,0.13) !important;
}

.ltj-builder__confirmation,
.ltj-form-success { display: none; text-align: center; padding: 56px 24px; }
.ltj-form-success-icon { font-size: 44px; display: block; margin-bottom: 16px; }
.ltj-builder__confirmation h3,
.ltj-form-success h3 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.8rem !important;
  color: var(--ltj-gold-dark) !important;
  font-weight: 400;
  margin-bottom: 10px;
}
.ltj-builder__confirmation p,
.ltj-form-success p { color: var(--ltj-ink-muted); font-size: 14px; font-family: 'Jost', sans-serif; }

/* ============================================
   WISHLIST PAGE
   ============================================ */
.ltj-wishlist-page { padding: 48px 0 80px; min-height: 50vh; }
.ltj-wishlist-empty { text-align: center; padding: 80px 20px; }
.ltj-wishlist-empty svg { width: 56px; height: 56px; fill: var(--ltj-border); display: block; margin: 0 auto 20px; }
.ltj-wishlist-empty p { color: var(--ltj-ink-muted); margin-bottom: 24px; font-family: 'Jost', sans-serif; }
.ltj-wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.ltj-wishlist-item { position: relative; }
.ltj-wishlist-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(254,252,249,0.92);
  border: none;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ltj-ink-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ltj-transition);
  z-index: 5;
}
.ltj-wishlist-remove:hover { background: #C0392B; color: #fff; }
.ltj-wishlist-item a { text-decoration: none; color: inherit; display: block; }
.ltj-wishlist-item img { width: 100%; display: block; }
.ltj-wishlist-item-info { padding: 12px 0; }
.ltj-wishlist-item-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  color: var(--ltj-ink);
  margin-bottom: 4px;
}
.ltj-wishlist-item-price {
  font-family: 'Jost', sans-serif;
  color: var(--ltj-gold-dark);
  font-size: 13px;
}

/* ============================================
   DISCOUNT POP-UP
   ============================================ */
.ltj-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.ltj-popup.ltj-popup--open { opacity: 1; pointer-events: auto; }
.ltj-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,20,16,0.62);
  backdrop-filter: blur(3px);
}
.ltj-popup__box {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(760px, 92vw);
  max-height: 90vh;
  background: var(--ltj-warm-white);
  box-shadow: 0 30px 80px rgba(28,20,16,0.4);
  overflow: hidden;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.4s var(--ltj-ease);
}
.ltj-popup.ltj-popup--open .ltj-popup__box { transform: translateY(0) scale(1); }
.ltj-popup__close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 3;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: var(--ltj-ink-muted);
  cursor: pointer;
  transition: color 0.2s;
}
.ltj-popup__close:hover { color: var(--ltj-gold-dark); }
.ltj-popup__image {
  flex: 0 0 42%;
  background-size: cover;
  background-position: center;
}
@media (max-width: 600px) { .ltj-popup__image { display: none; } }
.ltj-popup__content {
  flex: 1;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media (max-width: 600px) { .ltj-popup__content { padding: 40px 24px; } }
.ltj-popup__label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ltj-gold);
  margin-bottom: 12px;
}
.ltj-popup__title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 2rem !important;
  font-weight: 400;
  color: var(--ltj-ink) !important;
  line-height: 1.15;
  margin-bottom: 12px;
}
.ltj-popup__text {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--ltj-ink-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}
.ltj-popup__field { display: flex; flex-direction: column; gap: 10px; }
.ltj-popup__field input {
  width: 100%;
  border: 1px solid var(--ltj-border) !important;
  padding: 13px 16px !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 14px !important;
  text-align: center;
  border-radius: 0 !important;
}
.ltj-popup__field input:focus { outline: none; border-color: var(--ltj-green) !important; }
.ltj-popup__submit.btn { width: 100%; padding: 14px !important; }
.ltj-popup__error {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: #C0392B;
  margin-top: 10px;
}
.ltj-popup__decline {
  display: block;
  width: 100%;
  background: none;
  border: none;
  margin-top: 16px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ltj-ink-muted);
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}
.ltj-popup__decline:hover { color: var(--ltj-gold-dark); }
/* Success state */
.ltj-popup__success-icon { font-size: 40px; display: block; margin-bottom: 12px; color: var(--ltj-gold); }
.ltj-popup__code-wrap {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin: 0 auto 24px;
  max-width: 280px;
  border: 1px dashed var(--ltj-gold);
}
.ltj-popup__code {
  flex: 1;
  padding: 13px 16px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.16em;
  color: var(--ltj-gold-dark);
  background: rgba(79,176,106,0.06);
}
.ltj-popup__copy {
  border: none;
  background: var(--ltj-ink);
  color: var(--ltj-warm-white);
  padding: 0 18px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.ltj-popup__copy:hover { background: var(--ltj-gold-dark); }
.ltj-popup__copy.ltj-copied { background: var(--ltj-gold); }
.ltj-popup__cta.btn { width: 100%; padding: 14px !important; }

/* ============================================
   POLICY / LEGAL PAGES
   ============================================ */
.ltj-policy { padding: 8px 0 80px; }
.ltj-policy__inner { max-width: 760px; margin: 0 auto; }
.ltj-policy__title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 2.6rem !important;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--ltj-ink) !important;
}
.ltj-policy__content { font-size: 15px; }
.ltj-policy__content h2,
.ltj-policy__content h3 {
  margin-top: 36px;
  margin-bottom: 12px;
}
.ltj-policy__content p,
.ltj-policy__content li {
  font-family: 'Jost', sans-serif;
  line-height: 1.85;
  color: var(--ltj-ink-soft);
}
.ltj-policy__content ul,
.ltj-policy__content ol { padding-left: 22px; margin-bottom: 18px; }
.ltj-policy__content li { margin-bottom: 8px; }

/* ============================================
   BLOG & ARTICLES
   ============================================ */
/* Article page */
.article__title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 2.6rem !important;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--ltj-ink) !important;
  line-height: 1.2;
}
.article__author,
.article__date {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ltj-gold) !important;
}
.article__date { color: var(--ltj-ink-muted) !important; }

/* Blog/article body text */
.rte p { font-family: 'Jost', sans-serif; line-height: 1.85; color: var(--ltj-ink-soft); }
.rte h2, .rte h3 { font-family: 'Cormorant Garamond', Georgia, serif !important; color: var(--ltj-ink) !important; }
.rte a { color: var(--ltj-gold-dark); text-decoration: underline; }
.rte img { max-width: 100%; height: auto; }

/* Responsive video embeds pasted into blog posts (YouTube / Vimeo iframes) */
.rte iframe {
  max-width: 100%;
}
.rte iframe[src*="youtube"],
.rte iframe[src*="youtu.be"],
.rte iframe[src*="youtube-nocookie"],
.rte iframe[src*="vimeo"] {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 28px auto;
  border: 0;
}
.rte video { max-width: 100%; height: auto; display: block; margin: 28px auto; }

/* Blog listing grid cards */
.grid--blog .article__title {
  font-size: 1.5rem !important;
  font-weight: 400;
}
.grid--blog .article__link { text-decoration: none; }
.article__grid-image-wrapper { overflow: hidden; }
.article__grid-image { transition: transform 0.6s var(--ltj-ease); }
.article__link:hover .article__grid-image { transform: scale(1.04); }
.article__grid-excerpt p { font-family: 'Jost', sans-serif; font-size: 14px; color: var(--ltj-ink-soft); }
.article__grid-tag {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ltj-gold-dark);
}

/* ============================================
   360° SPIN VIEWER
   ============================================ */
.ltj-spin { margin-bottom: 16px; }
.ltj-spin__stage {
  position: relative;
  width: 100%;
  padding-top: 100%;            /* square stage */
  background: var(--ltj-warm-white);
  border: 1px solid var(--ltj-border);
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;          /* let the page scroll vertically; we own horizontal */
  user-select: none;
  outline: none;
}
.ltj-spin__stage.ltj-grabbing { cursor: grabbing; }
.ltj-spin__stage.ltj-zoomed { cursor: zoom-out; }
.ltj-spin__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
  transition: transform 0.2s var(--ltj-ease);
}
.ltj-spin__stage.ltj-zoomed .ltj-spin__img { transform: scale(2.3); }
.ltj-spin__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: var(--ltj-ink);
  color: var(--ltj-gold-light);
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 11px;
}
.ltj-spin__hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(28,20,16,0.72);
  color: #FEFCF9;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 7px 15px;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.ltj-spin__hint svg { fill: var(--ltj-gold-light); }
.ltj-spin.ltj-spin--touched .ltj-spin__hint { opacity: 0; }
.ltj-spin__zoom {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: none;
  cursor: pointer;
  background: rgba(254,252,249,0.92);
  color: var(--ltj-ink);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--ltj-shadow-sm);
  transition: var(--ltj-transition);
}
.ltj-spin__zoom:hover { background: var(--ltj-gold); color: #fff; }
.ltj-spin__loader {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ltj-warm-white);
}
.ltj-spin__loader.ltj-hide { display: none; }
.ltj-spin__spinner {
  width: 34px;
  height: 34px;
  border: 2px solid var(--ltj-border);
  border-top-color: var(--ltj-gold);
  border-radius: 50%;
  animation: ltj-spin-rotate 0.8s linear infinite;
}
@keyframes ltj-spin-rotate { to { transform: rotate(360deg); } }

/* ============================================
   ROUNDED PHOTO FRAMES  (soft shadow + gentle hover lift)
   Applies to image areas only — buttons & inputs stay sharp.
   ============================================ */
:root {
  --ltj-radius: 12px;
  --ltj-photo-shadow: 0 4px 18px rgba(28,20,16,0.08);
  --ltj-photo-shadow-hover: 0 16px 42px rgba(28,20,16,0.16);
}

/* --- Product cards (grids, search, recommendations, new arrivals) --- */
.grid-view-item,
.product-card {
  border-radius: var(--ltj-radius);
  box-shadow: var(--ltj-photo-shadow);
}
.grid-view-item__image-wrapper,
.product-card__image-wrapper,
.product-card__image-with-placeholder-wrapper {
  border-radius: var(--ltj-radius);
  overflow: hidden;
}
.grid-view-item:hover,
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ltj-photo-shadow-hover);
}

/* --- Product page main media --- */
.product-single__media,
.product-single__media-wrapper {
  border-radius: var(--ltj-radius);
  overflow: hidden;
}
.product-single__media-wrapper { box-shadow: var(--ltj-photo-shadow); }

/* --- Collection tiles: round + shadow the PHOTO (the link), not the whole card,
       so the title below stays clean text with no card background --- */
.collection-grid-item__link {
  border-radius: var(--ltj-radius);
  overflow: hidden;
  box-shadow: var(--ltj-photo-shadow);
  transition: box-shadow 0.36s var(--ltj-ease);
}
.collection-grid-item__link:hover {
  box-shadow: var(--ltj-photo-shadow-hover) !important;
}

/* --- 360° spin viewer --- */
.ltj-spin__stage {
  border-radius: var(--ltj-radius);
  box-shadow: var(--ltj-photo-shadow);
  transition: box-shadow 0.35s var(--ltj-ease), transform 0.35s var(--ltj-ease);
}
.ltj-spin__stage:not(.ltj-grabbing):not(.ltj-zoomed):hover {
  transform: translateY(-3px);
  box-shadow: var(--ltj-photo-shadow-hover);
}

/* --- Video gallery tiles + player --- */
.ltj-vg__tile,
.ltj-vg__frame {
  border-radius: var(--ltj-radius);
  overflow: hidden;
}
.ltj-vg__tile { box-shadow: var(--ltj-photo-shadow); }
.ltj-vg__tile:hover { box-shadow: var(--ltj-photo-shadow-hover); }

/* --- Heritage story image --- */
.ltj-heritage__image-col {
  border-radius: var(--ltj-radius);
  overflow: hidden;
  box-shadow: var(--ltj-photo-shadow);
}

/* --- Wishlist page thumbnails --- */
.ltj-wishlist-item img {
  border-radius: var(--ltj-radius);
  box-shadow: var(--ltj-photo-shadow);
}

/* ============================================
   UTILITY & ANIMATIONS
   ============================================ */
.ltj-page-width { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 749px) { .ltj-page-width { padding: 0 16px; } }

@keyframes ltj-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Index sections spacing */
.index-section { padding: 0; }
.index-section + .index-section { margin-top: 0; }

/* Page-width utility class */
.page-width { max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 32px; padding-right: 32px; }
@media (max-width: 749px) { .page-width { padding-left: 16px; padding-right: 16px; } }

/* Responsive */
@media (max-width: 749px) {
  .mega-title { font-size: 2.4rem !important; }
  .mega-title--large { font-size: 2.8rem !important; }
  #ltj-back-to-top { bottom: 16px; right: 14px; width: 38px; height: 38px; }
  .ltj-testimonials { padding: 64px 16px; }
  .ltj-faq { padding: 64px 0; }
  .ltj-education { padding: 64px 16px; }
  .ltj-builder { padding: 64px 0; }
  .ltj-appointments { padding: 64px 0; }
  .ltj-appointments__form-wrap { padding: 28px 16px; }
  .ltj-builder__step-indicator:not(:last-child)::after { display: none; }
  .ltj-builder__step-indicator { max-width: 80px; }
  h1, .h1 { font-size: 2.2rem !important; }
  h2, .h2 { font-size: 1.7rem !important; }
  .product-single__title { font-size: 1.8rem !important; }
}

/* ============================================
   OWNER'S GREEN BUTTONS (rounded, soft bright green) — site-wide
   Buttons are actions; gold stays for accents (prices, labels).
   Tune the shade by changing --ltj-green / --ltj-green-dark.
   ============================================ */
:root {
  --ltj-green:      #4FB06A;   /* light green — PRIMARY ACCENT (name kept for downstream refs) */
  --ltj-green-dark: #3C9455;   /* light green dark — hover/active */
  --ltj-jade-light: #E3F3E9;   /* pale green — subtle tints, borders, hover bg */
  --ltj-btn-radius: 999px;     /* fully rounded pill */
}

/* Round every button */
.btn,
.ltj-heritage__btn,
.ltj-countdown__btn { border-radius: var(--ltj-btn-radius) !important; }

/* Filled / primary buttons (Add to Cart, Submit, CTAs, slideshow, etc.) */
.btn:not(.btn--secondary):not(.btn--link):not(.btn--tertiary),
.slideshow__btn,
.hero__btn,
.ltj-heritage__btn,
.newsletter__submit.btn,
.shopify-payment-button__button--unbranded {
  background: var(--ltj-green) !important;
  border: 1px solid var(--ltj-green) !important;
  color: #FAF8F5 !important;
  border-radius: var(--ltj-btn-radius) !important;   /* beats theme's sharp rule via specificity */
}
.btn:not(.btn--secondary):not(.btn--link):not(.btn--tertiary):hover,
.slideshow__btn:hover,
.hero__btn:hover,
.ltj-heritage__btn:hover,
.newsletter__submit.btn:hover,
.shopify-payment-button__button--unbranded:hover {
  background: var(--ltj-green-dark) !important;
  border-color: var(--ltj-green-dark) !important;
  color: #FAF8F5 !important;
}

/* Outline / secondary buttons */
.btn--secondary {
  background: transparent !important;
  border: 1px solid var(--ltj-green) !important;
  color: var(--ltj-green-dark) !important;
  border-radius: var(--ltj-btn-radius) !important;
}
.btn--secondary:hover {
  background: var(--ltj-green) !important;
  color: #FAF8F5 !important;
}

/* Pop-up "Copy code" button → match the green */
.ltj-popup__copy { background: var(--ltj-green) !important; }
.ltj-popup__copy:hover { background: var(--ltj-green-dark) !important; }
.ltj-popup__copy.ltj-copied { background: var(--ltj-green-dark) !important; }

/* ============================================
   DESKTOP SLIDESHOW CAPTIONS — title + button BELOW the photo
   (Our own container, synced by JS; mobile keeps Debut's own text block.)
   ============================================ */
.ltj-slide-captions { display: none; text-align: center; padding: 28px 22px 12px; }
.ltj-slide-caption { display: none; animation: ltj-fade-in 0.4s ease; }
.ltj-slide-caption.ltj-active { display: block; }
.ltj-slide-caption__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ltj-ink);
  margin: 0 0 8px;
}
.ltj-slide-caption__sub {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ltj-gold-dark);
  margin: 0 0 18px;
}
.ltj-slide-caption__btn { margin-top: 2px; }

@media only screen and (min-width: 750px) {
  /* Cap the photo height so the whole image shows AND the caption stays on-screen */
  .slideshow.slideshow--small,
  .slideshow.slideshow--medium,
  .slideshow.slideshow--large {
    height: 62vh !important;
    max-height: 640px;
  }
  /* Desktop uses our captions; hide Debut's on-photo overlay AND its mobile text block */
  .slideshow__text-wrap--desktop,
  .slideshow__text-wrap--mobile { display: none !important; }
  .ltj-slide-captions { display: block; }
}

/* ============================================
   PRODUCT GRID — EQUAL-HEIGHT CARDS / BOTTOM-ALIGNED PRICES
   Scoped to .grid--view-items so it only affects product grids:
   collection pages, All Products, product recommendations, and the
   homepage New Arrivals grid. Collection-LIST tiles (.collection-grid-item)
   are untouched. Only vertical alignment changes here — widths, gutters,
   image ratios, fonts, colours and sizes are all left alone.
   ============================================ */

/* 1. Make the grid a flex row so every card in a row stretches to the
      tallest card's height. Debut's default inline-block grid can't do
      per-row equal heights; flex-wrap + align-items:stretch can.
      Row spacing moves from the card's bottom margin to row-gap so a
      height:100% card doesn't overflow its cell by that margin. */
.grid--view-items {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  row-gap: 35px;
  margin-bottom: 0;        /* was -35px to offset the card margin we're zeroing */
  overflow: visible;       /* was auto (float clearfix) — no floats now; lets hover lift/shadow show */
}

/* The grid cell becomes a flex box so the card inside can fill its height. */
.grid--view-items > .grid__item { display: flex; }

/* 2. Each card is a flex COLUMN that fills its (now equal-height) cell. */
.grid--view-items .grid-view-item,
.grid--view-items .product-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin-bottom: 0;        /* row spacing handled by the grid row-gap above */
  padding-bottom: 12px;    /* keep the bottom-anchored price off the rounded corner */
}

/* Image keeps its aspect-ratio height and never compresses. */
.grid--view-items .product-card__image-with-placeholder-wrapper,
.grid--view-items .grid-view-item__image-wrapper { flex-shrink: 0; }

/* 3. Reserve ~2 lines for the title so short titles still push the price
      down to a consistent line. min-height = 2 text lines (2.4em @ lh 1.2)
      + the element's existing 12px/4px vertical padding (border-box). */
.grid--view-items .grid-view-item__title {
  min-height: calc(2.4em + 16px);
}

/* 4. Anchor the price/meta block to the BOTTOM of every card, so prices
      line up across a row no matter how tall the title is. */
.grid--view-items .price--listing {
  margin-top: auto;
}

/* 5. Lift the SALE / SOLD-OUT badge OUT of the price column and overlay it
      on the top-left corner of the image, so it no longer adds height below
      the price (top-right is taken by the wishlist heart). The card is
      position:relative, so absolute positioning anchors to the card.
      z-index 5 keeps it above the full-width-link overlay (z-index 2). */
.grid--view-items .price__badges--listing {
  position: absolute;
  top: 12px;
  left: 12px;
  margin: 0;
  z-index: 5;
}

/* 6. Keep a strikethrough sale price ("$15.00 $25.00") on ONE line so sale
      cards aren't taller than single-price cards. */
.grid--view-items .price--on-sale .price__sale {
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
  column-gap: 8px;
}
.grid--view-items .price__compare { margin: 0; }

/* ============================================
   JEWELRY BUILDER — REDESIGN
   Helvetica, black text, palette = white + black + light green.
   Scoped to .ltj-builder; placed last so it overrides the original
   builder rules above (uses !important only where the originals do).
   ============================================ */
.ltj-builder {
  padding: 72px 0 !important;
  background: #FFFFFF !important;                 /* white surface */
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #1a1a1a;                                 /* near-black, readable */
}
/* Every text element inside uses Helvetica + black (beats the serif/Jost !important) */
.ltj-builder,
.ltj-builder p,
.ltj-builder span,
.ltj-builder div,
.ltj-builder button,
.ltj-builder input,
.ltj-builder select,
.ltj-builder textarea,
.ltj-builder label,
.ltj-builder h2,
.ltj-builder h3,
.ltj-builder .h2,
.ltj-builder__heading,
.ltj-builder__panel-title,
.ltj-builder__summary h3 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}

/* Header */
.ltj-builder__subheading {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ltj-green); margin-bottom: 12px;
}
.ltj-builder__heading {
  font-size: 2rem !important; font-weight: 700; letter-spacing: -0.01em;
  color: #000 !important;
}
.ltj-builder__intro { color: #555; font-size: 15px; line-height: 1.6; }

/* Step indicators */
.ltj-builder__step-indicator:not(:last-child)::after {
  top: 18px; left: calc(50% + 22px); right: calc(-50% + 22px);
  height: 2px; background: #e6e6e6;
}
.ltj-builder__step-indicator.ltj-done:not(:last-child)::after { background: var(--ltj-green); }
.ltj-builder__step-num {
  width: 36px; height: 36px; border: 2px solid #e0e0e0; border-radius: 50%;
  font-weight: 700; font-size: 14px; color: #999; background: #FFFFFF;
}
.ltj-builder__step-label { font-size: 11px; letter-spacing: 0.01em; text-transform: none; color: #888; font-weight: 500; }
.ltj-builder__step-indicator.ltj-active .ltj-builder__step-num { border-color: var(--ltj-green); color: var(--ltj-green-dark); }
.ltj-builder__step-indicator.ltj-active .ltj-builder__step-label { color: #000; font-weight: 700; }
.ltj-builder__step-indicator.ltj-done .ltj-builder__step-num { background: var(--ltj-green); border-color: var(--ltj-green); color: #FFFFFF; }

/* Panel headings */
.ltj-builder__panel-title { font-size: 1.4rem; font-weight: 700; color: #000; letter-spacing: -0.01em; margin-bottom: 6px; }
.ltj-builder__panel-desc { color: #555; font-size: 14px; line-height: 1.6; margin-bottom: 28px; }

/* Option tiles */
.ltj-builder__option { border: 2px solid #e6e6e6; border-radius: 10px; background: #FFFFFF; }
.ltj-builder__option:hover { border-color: var(--ltj-green); }
.ltj-builder__option.ltj-selected { border-color: var(--ltj-green); background: var(--ltj-jade-light); }
.ltj-builder__option.ltj-selected::after { color: var(--ltj-green-dark); font-size: 12px; top: 8px; right: 10px; }
.ltj-builder__option-name { font-size: 13px; font-weight: 700; color: #000; letter-spacing: 0; }
.ltj-builder__option-detail { font-size: 12px; color: #777; }

/* Size selectors */
.ltj-builder__size-group { margin-bottom: 8px; }
.ltj-builder__size-label { font-size: 12px; font-weight: 700; letter-spacing: 0.02em; text-transform: none; color: #000; margin-bottom: 12px; }
.ltj-builder__size-btn { border: 2px solid #e6e6e6; border-radius: 8px; background: #FFFFFF; color: #1a1a1a; font-size: 13px; font-weight: 500; padding: 10px 16px; }
.ltj-builder__size-btn:hover { border-color: var(--ltj-green); }
.ltj-builder__size-btn.ltj-selected { border-color: var(--ltj-green); background: var(--ltj-jade-light); color: var(--ltj-green-dark); font-weight: 700; }
.ltj-builder__size-note { font-size: 14px; color: #444; line-height: 1.6; background: var(--ltj-jade-light); border-radius: 8px; padding: 16px 18px; margin: 0; }

/* Nav row + counter */
.ltj-builder__nav { border-top: 1px solid #ececec; }
.ltj-builder__step-count { font-size: 12px; color: #888; letter-spacing: 0.01em; }
.ltj-builder .btn { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important; border-radius: 8px !important; }

/* Summary card */
.ltj-builder__summary { background: #FFFFFF; border: 2px solid var(--ltj-green); border-radius: 10px; }
.ltj-builder__summary h3 { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ltj-green-dark); font-weight: 700; }
.ltj-builder__summary-row { font-size: 14px; padding: 8px 0; border-bottom: 1px solid #ececec; color: #333; }
.ltj-builder__summary-row span:last-child { font-weight: 600; color: #000; }
.ltj-builder__summary-row:last-child { border-bottom: none; }

/* Step-6 contact form */
.ltj-builder .ltj-form-group label { color: #000; font-weight: 600; }
.ltj-builder .ltj-form-group input,
.ltj-builder .ltj-form-group select,
.ltj-builder .ltj-form-group textarea { color: #1a1a1a; }
.ltj-builder__confirmation { color: #1a1a1a; }
.ltj-builder__confirmation h3 { color: #000; }
.ltj-builder .ltj-form-success-icon { color: var(--ltj-green); }

/* "Please make a selection" validation message */
.ltj-builder__error {
  display: none;
  margin: 4px 0 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #c0392b;
}
.ltj-builder__error.ltj-show { display: block; }

/* ============================================
   CONTACT PAGE — REDESIGN
   Modern two-column (black info panel + white form card).
   Helvetica everywhere; palette = white + black + light green.
   ============================================ */
.ltj-contact {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #1a1a1a;
  background: #FFFFFF;
}
.ltj-contact__inner { max-width: 1080px; margin: 0 auto; padding: 64px 24px 84px; }
@media (max-width: 749px) { .ltj-contact__inner { padding: 44px 18px 60px; } }

/* Header */
.ltj-contact__header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.ltj-contact__eyebrow {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ltj-green); margin-bottom: 14px;
}
.ltj-contact__title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 2.5rem !important; font-weight: 700; letter-spacing: -0.02em;
  color: #000 !important; text-transform: none !important; margin: 0 0 14px;
}
.ltj-contact__lead { font-size: 15px; line-height: 1.7; color: #555; margin: 0; }
.ltj-contact__rte { text-align: center; max-width: 640px; margin: 0 auto 40px; color: #555; font-size: 14px; }

/* Two-column layout */
.ltj-contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: stretch;
}
@media (max-width: 749px) { .ltj-contact__grid { grid-template-columns: 1fr; gap: 18px; } }

/* Left: soft light-green info panel */
.ltj-contact__info-card {
  background: var(--ltj-jade-light); color: #1a1a1a;
  border: 1px solid rgba(79,176,106,0.25); border-radius: 14px; padding: 38px 34px;
}
.ltj-contact__info-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 1.3rem !important; font-weight: 700; color: #000 !important;
  text-transform: none !important; letter-spacing: -0.01em; margin: 0 0 22px;
}
.ltj-contact__details { list-style: none; margin: 0; padding: 0; }
.ltj-contact__detail { padding: 15px 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
.ltj-contact__detail:last-child { border-bottom: none; padding-bottom: 0; }
.ltj-contact__detail-label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ltj-green-dark); margin-bottom: 6px;
}
.ltj-contact__detail-value {
  display: block; font-size: 15px; line-height: 1.55; color: #1a1a1a; text-decoration: none;
}
a.ltj-contact__detail-value { transition: color 0.2s ease; }
a.ltj-contact__detail-value:hover { color: var(--ltj-green-dark); }

/* Right: white form card */
.ltj-contact__form-wrap {
  background: #FFFFFF; border: 1px solid #ececec; border-radius: 14px; padding: 36px 32px;
}
.ltj-contact__field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .ltj-contact__field-row { grid-template-columns: 1fr; gap: 0; } }
.ltj-contact__field { margin-bottom: 18px; }
.ltj-contact__field label {
  display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  color: #000; margin-bottom: 7px;
}
.ltj-contact__field label span[aria-hidden] { color: var(--ltj-green); }
.ltj-contact__form-wrap input,
.ltj-contact__form-wrap textarea {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  width: 100%; border: 1.5px solid #e2e2e2 !important; border-radius: 8px !important;
  padding: 12px 14px !important; font-size: 14px !important; color: #1a1a1a !important;
  background: #FFFFFF !important; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.ltj-contact__form-wrap textarea { resize: vertical; min-height: 130px; }
.ltj-contact__form-wrap input:focus,
.ltj-contact__form-wrap textarea:focus {
  border-color: var(--ltj-green) !important;
  box-shadow: 0 0 0 3px rgba(79,176,106,0.15) !important;
  outline: none !important;
}

/* Submit — black, light-green on hover (Helvetica, full width) */
.ltj-contact .ltj-contact__submit.btn {
  width: 100%; margin-top: 6px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  background: #000000 !important; border: 1px solid #000000 !important; color: #FFFFFF !important;
  border-radius: 8px !important; padding: 15px !important;
  font-size: 13px !important; font-weight: 600 !important; letter-spacing: 0.1em !important;
  text-transform: uppercase;
}
.ltj-contact .ltj-contact__submit.btn:hover {
  background: var(--ltj-green) !important; border-color: var(--ltj-green) !important; color: #FFFFFF !important;
}

/* ============================================
   APPOINTMENTS — REDESIGN
   Helvetica; palette = white + black + light green. Scoped to .ltj-appointments,
   placed last so it overrides the original appointments rules above.
   ============================================ */
.ltj-appointments {
  background: #FFFFFF !important;
  padding: 64px 0 !important;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #1a1a1a;
}
.ltj-appointments__intro { max-width: 640px; }
.ltj-appointments__subheading {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; color: var(--ltj-green);
}
.ltj-appointments__heading {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 2.3rem !important; font-weight: 700; letter-spacing: -0.02em;
  color: #000 !important; text-transform: none !important;
}
.ltj-appointments__desc {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; color: #555; font-size: 15px; line-height: 1.65;
}

/* Step hint above the service cards */
.ltj-appointments__step-hint {
  text-align: center; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ltj-green-dark); margin: 0 0 18px;
}

/* Service cards */
.ltj-service-card {
  border: 2px solid #e6e6e6 !important; border-radius: 12px; background: #FFFFFF !important;
}
.ltj-service-card:hover,
.ltj-service-card.ltj-selected {
  border-color: var(--ltj-green) !important; background: var(--ltj-jade-light) !important;
  box-shadow: 0 10px 28px rgba(0,0,0,0.07) !important;
}
.ltj-service-card__name {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 700;
  font-size: 15px; letter-spacing: 0; text-transform: none; color: #000;
}
.ltj-service-card__desc { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; color: #555; }

/* Booking form card */
.ltj-appointments__form-wrap {
  border: 1px solid #ececec !important; border-radius: 14px; background: #FFFFFF !important; max-width: 680px;
}
.ltj-appointments__form-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 1.5rem !important; font-weight: 700; color: #000 !important; letter-spacing: -0.01em;
}
.ltj-appointments__form-subtitle { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; color: #555; }

/* Form fields */
.ltj-appointments .ltj-form-group label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0; text-transform: none; color: #000;
}
.ltj-appointments .ltj-form-group input,
.ltj-appointments .ltj-form-group select,
.ltj-appointments .ltj-form-group textarea {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important; color: #1a1a1a !important;
  border: 1.5px solid #e2e2e2 !important; border-radius: 8px !important;
}
.ltj-appointments .ltj-form-group input:focus,
.ltj-appointments .ltj-form-group select:focus,
.ltj-appointments .ltj-form-group textarea:focus {
  border-color: var(--ltj-green) !important; box-shadow: 0 0 0 3px rgba(79,176,106,0.15) !important; outline: none !important;
}

/* Submit button — black, light-green on hover (high specificity beats global .btn) */
.ltj-appointments .btn:not(.btn--secondary):not(.btn--link) {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important; border-radius: 8px !important;
  background: #000000 !important; border: 1px solid #000000 !important; color: #FFFFFF !important;
}
.ltj-appointments .btn:not(.btn--secondary):not(.btn--link):hover {
  background: var(--ltj-green) !important; border-color: var(--ltj-green) !important; color: #FFFFFF !important;
}

/* Success message */
.ltj-appointments .ltj-form-success h3 { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important; color: #000 !important; }
.ltj-appointments .ltj-form-success p { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; color: #555; }
.ltj-appointments .ltj-form-success-icon { color: var(--ltj-green); }

/* Store info strip */
.ltj-appointments__info {
  text-align: center; margin-top: 40px; padding: 20px 28px;
  background: var(--ltj-jade-light); border: 1px solid rgba(79,176,106,0.25); border-radius: 12px;
}
.ltj-appointments__info p {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 26px; margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px; color: #1a1a1a;
}
.ltj-appointments__info strong { color: #000; }
.ltj-appointments__info a { color: #1a1a1a; text-decoration: none; transition: color 0.2s ease; }
.ltj-appointments__info a:hover { color: var(--ltj-green-dark); }

/* ============================================
   APPOINTMENTS — MULTI-STEP CALENDLY-STYLE BOOKING
   Jade (--ltj-green) accents, white cards, ink text, Helvetica (matches the
   service cards above). Revealed after a service is picked.
   ============================================ */
.ltj-apt-booking {
  max-width: 860px !important;
  margin: 0 auto;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.ltj-apt__step-label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ltj-green-dark); margin: 0 0 18px; text-align: center;
}

/* Step panels with a gentle fade */
.ltj-apt-step { display: none; }
.ltj-apt-step.ltj-active { display: block; animation: ltj-fade-in 0.3s ease; }

/* Layout: calendar | time slots (stacks on mobile) */
.ltj-apt-cal-wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: start; }
@media (max-width: 749px) { .ltj-apt-cal-wrap { grid-template-columns: 1fr; gap: 22px; } }

/* Calendar */
.ltj-apt-cal__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.ltj-apt-cal__month { font-size: 16px; font-weight: 700; color: var(--ltj-ink); }
.ltj-apt-cal__nav {
  width: 34px; height: 34px; border: 1.5px solid #e2e2e2; background: #fff; border-radius: 50%;
  font-size: 20px; line-height: 1; color: var(--ltj-ink); cursor: pointer; transition: var(--ltj-transition);
}
.ltj-apt-cal__nav:hover { border-color: var(--ltj-green); color: var(--ltj-green-dark); }
.ltj-apt-cal__weekdays,
.ltj-apt-cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.ltj-apt-cal__weekdays { margin-bottom: 6px; }
.ltj-apt-cal__weekdays span {
  text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: #999;
}
.ltj-apt-cal__cell {
  aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
  border: none; background: transparent; border-radius: 10px; cursor: pointer;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px; font-weight: 500;
  color: var(--ltj-ink); position: relative; transition: background 0.15s ease, color 0.15s ease;
}
.ltj-apt-cal__cell--empty { background: transparent; cursor: default; }
.ltj-apt-cal__cell--disabled { color: #cfcfcf; cursor: not-allowed; }
.ltj-apt-cal__cell--avail { color: var(--ltj-green-dark); font-weight: 600; }
.ltj-apt-cal__cell--avail:hover { background: var(--ltj-jade-light); }
.ltj-apt-cal__cell--today::after {
  content: ''; position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--ltj-green);
}
.ltj-apt-cal__cell--selected,
.ltj-apt-cal__cell--selected:hover {
  background: var(--ltj-green) !important; color: #fff !important; font-weight: 700;
}
.ltj-apt-cal__cell--selected.ltj-apt-cal__cell--today::after { background: #fff; }
.ltj-apt-cal__legend { font-size: 11px; color: #999; margin: 14px 0 0; display: flex; align-items: center; gap: 6px; }
.ltj-apt-cal__legend-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--ltj-green); display: inline-block; }

/* Time slots */
.ltj-apt-slots__title { font-size: 14px; font-weight: 700; color: var(--ltj-ink); margin: 0 0 14px; }
.ltj-apt-slots__list { display: flex; flex-direction: column; gap: 8px; max-height: 320px; overflow-y: auto; }
.ltj-apt-slot {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--ltj-green); border-radius: 8px;
  background: #fff; color: var(--ltj-green-dark); cursor: pointer; font-weight: 600; font-size: 14px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; transition: var(--ltj-transition);
}
.ltj-apt-slot:hover { background: var(--ltj-green); color: #fff; }
.ltj-apt-slot--selected,
.ltj-apt-slot--selected:hover { background: var(--ltj-green); color: #fff; }

/* Pill buttons (Next / Submit) */
.ltj-apt-step__nav { display: flex; justify-content: flex-end; margin-top: 24px; }
.ltj-apt-pill {
  border: none; background: var(--ltj-green); color: #fff; cursor: pointer;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 0.04em; padding: 13px 30px; border-radius: 999px; transition: var(--ltj-transition);
}
.ltj-apt-pill:hover { background: var(--ltj-green-dark); }
.ltj-apt-pill:disabled { background: #d9d9d9; cursor: not-allowed; }
.ltj-apt-pill--full { width: 100%; margin-top: 8px; padding: 15px; }

/* Confirmation strip (step 3) */
.ltj-apt-confirmstrip {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  background: var(--ltj-jade-light); border: 1px solid rgba(79,176,106,0.25); border-radius: 10px;
  padding: 14px 18px; margin-bottom: 24px;
}
.ltj-apt-confirmstrip__text { font-size: 14px; font-weight: 600; color: var(--ltj-ink); }
.ltj-apt-back {
  border: none; background: none; cursor: pointer; color: var(--ltj-green-dark);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 13px; font-weight: 600; padding: 0;
}
.ltj-apt-back:hover { text-decoration: underline; }

/* Appointment-type — selectable cards with a clear, persistent selected state */
.ltj-apt-radio-label {
  display: block; font-size: 12px; font-weight: 600; color: #000; margin-bottom: 8px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.ltj-apt-types { display: flex; flex-direction: column; gap: 10px; }
.ltj-apt-type {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  border: 1.5px solid #e2e2e2; border-radius: 10px; cursor: pointer; transition: var(--ltj-transition);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.ltj-apt-type:hover { border-color: var(--ltj-green); }
/* hide the native radio; we draw our own dot */
.ltj-apt-type input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.ltj-apt-type__dot {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid #ccc; background: #fff; transition: var(--ltj-transition);
}
.ltj-apt-type__text { display: flex; flex-direction: column; line-height: 1.3; }
.ltj-apt-type__text strong { font-size: 14px; font-weight: 600; color: var(--ltj-ink); }
.ltj-apt-type__text small { font-size: 12px; color: #888; margin-top: 2px; }
/* selected — modern :has() and a .is-selected JS fallback */
.ltj-apt-type:has(input:checked),
.ltj-apt-type.is-selected { border-color: var(--ltj-green); background: var(--ltj-jade-light); }
.ltj-apt-type:has(input:checked) .ltj-apt-type__dot,
.ltj-apt-type.is-selected .ltj-apt-type__dot {
  border-color: var(--ltj-green); background: var(--ltj-green); box-shadow: inset 0 0 0 4px #fff;
}

.ltj-apt-finehint { text-align: center; font-size: 12px; color: #aaa; margin-top: 10px; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }

/* Success state */
.ltj-apt-success { text-align: center; padding: 48px 24px; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }
.ltj-apt-success__icon {
  display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px;
  border-radius: 50%; background: var(--ltj-green); color: #fff; font-size: 28px; margin-bottom: 18px;
}
.ltj-apt-success h3 { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important; font-size: 1.5rem !important; font-weight: 700; color: #000 !important; margin: 0 0 12px; }
.ltj-apt-success p { color: #555; font-size: 15px; line-height: 1.65; max-width: 440px; margin: 0 auto; }
.ltj-apt-success strong { color: var(--ltj-ink); }

/* Mobile: trim the booking card padding so the calendar has room */
@media (max-width: 749px) {
  .ltj-apt-booking { padding: 26px 16px !important; }
  .ltj-apt-cal__cell { border-radius: 8px; font-size: 13px; }
  .ltj-apt-cal__weekdays,
  .ltj-apt-cal__grid { gap: 4px; }
}
