
:root {
  --jfc-ink: #2f342d;
  --jfc-muted: #746f69;
  --jfc-cream: #fffaf6;
  --jfc-cream-deep: #f7eee7;
  --jfc-paper: #fffdfb;
  --jfc-blush: #ead0d8;
  --jfc-rose: #7a4152;
  --jfc-rose-soft: #b97587;
  --jfc-sage: #6f875d;
  --jfc-sage-soft: #dfe7d8;
  --jfc-gold: #b08d5f;
  --jfc-line: #eadfd7;
  --jfc-shadow: 0 24px 70px rgba(83, 58, 64, .09);
  --jfc-shadow-soft: 0 12px 38px rgba(70, 54, 57, .07);
  --jfc-radius: 24px;
  --jfc-radius-sm: 16px;
  --jfc-shell: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.jfc-site {
  margin: 0;
  color: var(--jfc-ink);
  background: var(--jfc-paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.jfc-loader-active {
  overflow: hidden;
}

a {
  color: var(--jfc-rose);
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease, transform .2s ease;
}

a:hover {
  color: #5c2e3b;
}

img {
  max-width: 100%;
}

.jfc-shell,
.jfc-site .container {
  width: min(calc(100% - 40px), var(--jfc-shell));
  max-width: var(--jfc-shell);
  margin-left: auto;
  margin-right: auto;
}

.jfc-main {
  min-height: 55vh;
}

.jfc-main > .container:not(.jfc-shell),
.jfc-main .container {
  padding-left: 0;
  padding-right: 0;
}

.jfc-site h1,
.jfc-site h2,
.jfc-site h3,
.jfc-site h4,
.jfc-site h5,
.jfc-site h6 {
  color: var(--jfc-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -.02em;
}

.jfc-site h1 {
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  line-height: .98;
}

.jfc-site h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.04;
}

.jfc-site h3 {
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.jfc-site .breadcrumb {
  margin: 28px 0 28px;
  padding: 0;
  background: none;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.jfc-site .breadcrumb-item + .breadcrumb-item::before {
  color: #c0afa7;
}

.jfc-site .breadcrumb a {
  color: #8a807a;
}

.jfc-site .btn,
.jfc-btn {
  min-height: 46px;
  border-radius: 999px;
  padding: 11px 21px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 600;
  font-size: .86rem;
  letter-spacing: .02em;
  transition: all .22s ease;
}

.jfc-site .btn-primary,
.jfc-btn-primary {
  background: var(--jfc-rose);
  border-color: var(--jfc-rose);
  color: #fff;
}

.jfc-site .btn-primary:hover,
.jfc-btn-primary:hover {
  background: #633341;
  border-color: #633341;
  color: #fff;
  transform: translateY(-1px);
}

.jfc-site .btn-light,
.jfc-btn-soft {
  background: var(--jfc-cream);
  border-color: var(--jfc-line);
  color: var(--jfc-ink);
}

.jfc-site .btn-light:hover,
.jfc-btn-soft:hover {
  background: #fff;
  border-color: #d8c4b9;
  color: var(--jfc-rose);
}

.jfc-site .btn-danger {
  border-radius: 999px;
}

.jfc-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--jfc-rose);
  font-weight: 600;
}

.jfc-text-link i {
  font-size: .8em;
  transition: transform .2s ease;
}

.jfc-text-link:hover i {
  transform: translateX(4px);
}

.jfc-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--jfc-sage);
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
}

.jfc-site .form-control,
.jfc-site .form-select {
  border: 1px solid #dfd5cf;
  border-radius: 14px;
  background-color: #fff;
  min-height: 48px;
  color: var(--jfc-ink);
  box-shadow: none;
}

.jfc-site textarea.form-control {
  min-height: 130px;
}

.jfc-site .form-control:focus,
.jfc-site .form-select:focus {
  border-color: #c992a2;
  box-shadow: 0 0 0 .2rem rgba(185, 117, 135, .12);
}

.jfc-site .form-label,
.jfc-site .col-form-label {
  font-size: .8rem;
  font-weight: 700;
  color: #655e59;
  letter-spacing: .03em;
}

.jfc-site .card,
.jfc-site .accordion-item {
  border-color: var(--jfc-line);
  border-radius: var(--jfc-radius-sm);
  overflow: hidden;
  box-shadow: none;
}

.jfc-site .alert {
  border: 0;
  border-radius: 16px;
  box-shadow: var(--jfc-shadow-soft);
}

.jfc-alert-stack {
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 1200;
  width: min(420px, calc(100vw - 40px));
}

/* --- top bar / header --- */

.jfc-topbar {
  background: #394535;
  color: #f6f1ec;
  font-size: .72rem;
}

.jfc-topbar-inner {
  min-height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.jfc-topbar-message {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
}

.jfc-topbar-floret {
  color: #d7b2bd;
  padding: 0 7px;
}

.jfc-topbar-tools {
  display: flex;
  align-items: center;
  gap: 16px;
}

.jfc-topbar-link,
.jfc-topbar-choice,
.jfc-topbar-choice a {
  color: #f8f4ef;
}

.jfc-topbar-choice .dropdown > a,
.jfc-topbar-choice .dropdown > button,
.jfc-topbar-choice .dropdown-toggle {
  color: #f8f4ef !important;
  background: transparent !important;
  border: 0 !important;
  font-size: .72rem !important;
  padding: 0 !important;
}

.jfc-topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.jfc-header {
  position: relative;
  z-index: 50;
  background: rgba(255, 253, 251, .96);
  border-bottom: 1px solid rgba(234, 223, 215, .9);
  backdrop-filter: blur(16px);
}

.jfc-header-main {
  min-height: 112px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 30px;
}

.jfc-header-search {
  max-width: 290px;
}

.jfc-search-form {
  height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #cfc3bc;
}

.jfc-search-input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--jfc-ink);
  font-size: .88rem;
  padding: 8px 4px;
}

.jfc-search-input::placeholder {
  color: #9b918b;
}

.jfc-search-button {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--jfc-rose);
}

.jfc-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--jfc-rose);
}

.jfc-brand:hover {
  color: var(--jfc-rose);
}

.jfc-brand-mark {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
}

.jfc-brand-mark svg {
  width: 100%;
  height: 100%;
}

.jfc-brand-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.jfc-brand-name {
  font-family: "Alex Brush", "Cormorant Garamond", cursive;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: .9;
  white-space: nowrap;
}

.jfc-brand-tag {
  margin-top: 7px;
  color: var(--jfc-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: .65rem;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .23em;
}

.jfc-header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.jfc-icon-link,
.jfc-icon-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: transparent;
  color: var(--jfc-ink);
  font-size: 1rem;
}

.jfc-icon-button {
  appearance: none;
}

.jfc-icon-link:hover,
.jfc-icon-button:hover {
  background: var(--jfc-cream);
  border-color: var(--jfc-line);
  color: var(--jfc-rose);
}

.jfc-cart-button {
  min-height: 42px;
  border: 1px solid var(--jfc-line);
  background: var(--jfc-cream);
  border-radius: 999px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--jfc-ink);
}

.jfc-cart-button:hover {
  border-color: #ceb8ad;
  color: var(--jfc-rose);
}

.jfc-cart-text {
  max-width: 138px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .77rem;
  font-weight: 600;
}

.jfc-dropdown,
.jfc-mini-cart,
.jfc-mega-menu {
  border: 1px solid var(--jfc-line);
  border-radius: 16px;
  box-shadow: var(--jfc-shadow);
  background: #fff;
  padding: 10px;
}

.jfc-dropdown .dropdown-item {
  border-radius: 10px;
  font-size: .85rem;
}

.jfc-nav-shell {
  border-top: 1px solid #f1e9e4;
}

.jfc-nav {
  width: 100%;
}

.jfc-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 38px);
}

.jfc-nav-item {
  position: relative;
}

.jfc-nav-link {
  display: block;
  padding: 15px 0;
  color: #4c4d47;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.jfc-nav-link:hover,
.jfc-nav-link.show {
  color: var(--jfc-rose);
}

.jfc-mega-menu {
  min-width: 320px;
  padding: 22px;
}

.jfc-mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 18px;
}

.jfc-mega-link {
  padding: 8px 10px;
  color: #655f5a;
  border-radius: 10px;
}

.jfc-mega-link:hover {
  background: var(--jfc-cream);
}

.jfc-mega-all {
  border-top: 1px solid var(--jfc-line);
  margin-top: 14px;
  padding-top: 14px;
}

.jfc-mobile-menu-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--jfc-line);
  background: #fff;
  border-radius: 50%;
  color: var(--jfc-ink);
}

.jfc-mobile-panel {
  padding-top: 18px;
  padding-bottom: 24px;
  border-top: 1px solid var(--jfc-line);
}

.jfc-mobile-panel .jfc-nav-list {
  display: block;
  margin-top: 12px;
}

.jfc-mobile-panel .jfc-nav-link {
  padding: 12px 0;
  border-bottom: 1px solid #eee5df;
}

/* --- mini cart --- */

.jfc-mini-cart {
  width: min(420px, calc(100vw - 28px));
  padding: 18px;
}

.jfc-mini-cart-items {
  max-height: 360px;
  overflow: auto;
}

.jfc-mini-cart-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 30px;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid #eee6e1;
}

.jfc-mini-cart-image {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: var(--jfc-cream);
}

.jfc-mini-cart-image img {
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.jfc-mini-cart-name {
  color: var(--jfc-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.1;
}

.jfc-mini-cart-meta,
.jfc-mini-cart-copy small {
  color: #81766f;
  font-size: .75rem;
}

.jfc-mini-remove {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #f7eded;
  color: #9a5767;
}

.jfc-mini-totals {
  padding: 14px 0 8px;
}

.jfc-mini-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 4px 0;
  font-size: .82rem;
}

.jfc-mini-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 12px;
}

.jfc-empty-mini {
  padding: 28px 12px;
  text-align: center;
  color: #81766f;
}

.jfc-empty-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--jfc-sage-soft);
  color: var(--jfc-sage);
  margin-bottom: 10px;
}

/* --- homepage --- */

.jfc-home {
  overflow: hidden;
}

.jfc-hero {
  position: relative;
  background:
    radial-gradient(circle at 82% 40%, rgba(230, 208, 216, .48), transparent 24%),
    linear-gradient(135deg, #fffdfb 0%, #faf0ea 58%, #f4e7e0 100%);
  border-bottom: 1px solid var(--jfc-line);
}

.jfc-hero::before,
.jfc-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.jfc-hero::before {
  width: 420px;
  height: 420px;
  left: -210px;
  top: 120px;
  background: rgba(218, 227, 207, .42);
}

.jfc-hero::after {
  width: 250px;
  height: 250px;
  right: -90px;
  bottom: -100px;
  background: rgba(226, 194, 204, .22);
}

.jfc-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(430px, 1.06fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  padding-top: 62px;
  padding-bottom: 62px;
}

.jfc-hero-copy {
  max-width: 610px;
}

.jfc-hero-copy h1 {
  max-width: 600px;
  margin: 0 0 25px;
  color: #33382f;
}

.jfc-hero-copy p {
  max-width: 550px;
  margin-bottom: 28px;
  color: #716b65;
  font-size: 1rem;
}

.jfc-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.jfc-hero-art {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jfc-hero-wreath {
  width: min(480px, 92%);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 28px 38px rgba(88, 68, 72, .1));
}

.jfc-hero-wreath svg {
  width: 100%;
  height: auto;
  display: block;
}

.jfc-hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(122, 65, 82, .12);
}

.jfc-orbit-one {
  width: 470px;
  height: 470px;
}

.jfc-orbit-two {
  width: 540px;
  height: 540px;
  border-style: dashed;
  opacity: .65;
}

.jfc-hero-logo {
  position: absolute;
  z-index: 4;
  text-align: center;
  color: var(--jfc-rose);
  pointer-events: none;
  text-shadow: 0 0 18px #fffaf6, 0 0 30px #fffaf6;
}

.jfc-hero-logo span {
  display: block;
  font-family: "Alex Brush", "Cormorant Garamond", cursive;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: .7;
}

.jfc-hero-logo small {
  display: block;
  margin-top: 18px;
  color: var(--jfc-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .22em;
}

.jfc-values {
  position: relative;
  z-index: 5;
  background: #fff;
  border-bottom: 1px solid var(--jfc-line);
}

.jfc-values-grid {
  min-height: 118px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.jfc-values-grid > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  padding: 24px 34px;
  border-right: 1px solid var(--jfc-line);
}

.jfc-values-grid > div:last-child {
  border-right: 0;
}

.jfc-value-icon {
  grid-row: 1 / 3;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--jfc-sage-soft);
  color: var(--jfc-sage);
  font-size: .62rem;
  font-weight: 800;
  margin-top: 4px;
}

.jfc-values strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.1;
}

.jfc-values small {
  color: #857b75;
  font-size: .76rem;
}

.jfc-home-shop {
  padding-top: 94px;
  padding-bottom: 80px;
}

.jfc-section-intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 46px;
}

.jfc-section-intro h2 {
  margin: 0 0 10px;
}

.jfc-section-intro p {
  color: #80766f;
  margin: 0;
}

.jfc-story-band {
  background: #f3eee7;
  padding: 86px 0;
}

.jfc-story-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 24px;
}

.jfc-story-card {
  border-radius: 32px;
  padding: clamp(34px, 6vw, 72px);
  min-height: 350px;
  overflow: hidden;
  position: relative;
}

.jfc-story-card-large {
  background:
    radial-gradient(circle at 88% 25%, rgba(226, 190, 201, .34), transparent 24%),
    #fffaf6;
}

.jfc-story-card-large h2 {
  max-width: 600px;
  margin: 0 0 20px;
}

.jfc-story-card-large p {
  max-width: 650px;
  color: #756d67;
}

.jfc-story-quote {
  background: #44513e;
  color: #fffaf6;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jfc-story-quote p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  line-height: 1.15;
}

.jfc-quote-mark {
  font-family: Georgia, serif;
  color: #d9b3bf;
  font-size: 5rem;
  line-height: .5;
  margin-bottom: 20px;
}

.jfc-script-signoff {
  font-family: "Alex Brush", cursive;
  font-size: 1.9rem;
  color: #ead3da;
}

.jfc-home-bottom {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* --- product modules / cards --- */

.jfc-product-module {
  margin: 0 0 76px;
}

.jfc-module-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--jfc-line);
}

.jfc-module-heading h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.jfc-module-kicker {
  color: var(--jfc-sage);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.jfc-product-grid,
#product-list {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 20px;
}

.jfc-product-grid > *,
#product-list > * {
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.product-thumb.jfc-product-card {
  height: 100%;
  border: 0;
  background: transparent;
  overflow: visible;
}

.jfc-product-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1 / 1.12;
  background: #f5eee8;
}

.jfc-product-media > a {
  display: block;
  width: 100%;
  height: 100%;
}

.jfc-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}

.jfc-product-card:hover .jfc-product-media img {
  transform: scale(1.035);
}

.jfc-product-actions {
  position: absolute;
  inset: auto 12px 12px;
  display: flex;
  gap: 7px;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(8px);
  transition: all .25s ease;
}

.jfc-product-card:hover .jfc-product-actions {
  opacity: 1;
  transform: translateY(0);
}

.jfc-product-action {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 253, 251, .94);
  color: var(--jfc-ink);
  box-shadow: 0 8px 24px rgba(60, 40, 45, .12);
}

.jfc-product-action-primary {
  width: auto;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--jfc-rose);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
}

.jfc-product-body {
  padding: 16px 4px 6px;
}

.jfc-product-body h4 {
  margin: 0 0 5px;
  font-size: 1.25rem;
  line-height: 1.12;
}

.jfc-product-body h4 a {
  color: var(--jfc-ink);
}

.jfc-product-description {
  display: none;
}

.jfc-product-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: var(--jfc-rose);
  font-weight: 700;
  font-size: .92rem;
}

.jfc-product-price .price-old {
  color: #a49a94;
  font-weight: 500;
  text-decoration: line-through;
  font-size: .8rem;
}

.jfc-product-tax {
  color: #a59b95;
  display: block;
  font-size: .68rem;
}

.jfc-product-rating {
  margin-top: 8px;
  color: #bd9561;
  font-size: .66rem;
}

.jfc-product-rating .fa-stack {
  width: 1.2em;
}

/* --- banners --- */

.jfc-banner {
  margin: 0 0 72px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--jfc-cream);
}

.jfc-banner .carousel-item img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.jfc-banner .carousel-control-prev,
.jfc-banner .carousel-control-next {
  width: 54px;
  height: 54px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 18px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: var(--jfc-ink);
  opacity: 1;
}

/* --- category / search listings --- */

.jfc-page {
  padding-bottom: 90px;
}

.jfc-category-hero {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, #f9eee8, #eef1e9);
  margin-bottom: 34px;
}

.jfc-category-hero-inner {
  min-height: 290px;
  padding: clamp(34px, 6vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .55fr);
  gap: 30px;
  align-items: center;
}

.jfc-category-hero.no-image .jfc-category-hero-inner {
  grid-template-columns: 1fr;
}

.jfc-category-copy h1 {
  margin: 0 0 16px;
  max-width: 700px;
}

.jfc-category-copy .jfc-category-description {
  max-width: 700px;
  color: #726b65;
}

.jfc-category-image {
  height: 250px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--jfc-shadow);
}

.jfc-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jfc-refine {
  margin: 0 0 34px;
}

.jfc-refine-title {
  margin-bottom: 12px;
  color: #786e67;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .17em;
}

.jfc-refine-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.jfc-refine-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid var(--jfc-line);
  background: #fff;
  color: #5f5c57;
  font-size: .78rem;
}

.jfc-refine-chip:hover {
  border-color: #d2b6bf;
  background: #fff8f7;
}

.jfc-listing-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 26px;
  padding: 14px 0;
  border-top: 1px solid var(--jfc-line);
  border-bottom: 1px solid var(--jfc-line);
}

.jfc-toolbar-left,
.jfc-toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.jfc-listing-toolbar .form-select {
  min-height: 42px;
  width: auto;
  font-size: .78rem;
  padding-top: 6px;
  padding-bottom: 6px;
}

.jfc-view-button,
.jfc-compare-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--jfc-line);
  border-radius: 50%;
  background: #fff;
  color: #69635f;
}

.jfc-pagination-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 44px;
  color: #857b74;
  font-size: .78rem;
}

.jfc-site .pagination {
  gap: 5px;
}

.jfc-site .page-link {
  border: 1px solid var(--jfc-line);
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--jfc-ink);
  background: #fff;
}

.jfc-site .page-item.active .page-link {
  background: var(--jfc-rose);
  border-color: var(--jfc-rose);
}

.jfc-search-panel {
  padding: 28px;
  border-radius: 24px;
  background: var(--jfc-cream);
  border: 1px solid var(--jfc-line);
  margin-bottom: 34px;
}

/* --- product detail --- */

.jfc-product-page {
  padding-bottom: 96px;
}

.jfc-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: start;
  margin-bottom: 70px;
}

.jfc-gallery {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 14px;
}

.jfc-gallery-main {
  border-radius: 30px;
  overflow: hidden;
  background: #f4ede8;
  min-height: 520px;
}

.jfc-gallery-main img {
  width: 100%;
  height: 100%;
  max-height: 720px;
  object-fit: cover;
}

.jfc-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jfc-gallery-thumb {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--jfc-line);
  background: #fff;
}

.jfc-gallery-thumb img {
  width: 82px;
  height: 82px;
  object-fit: cover;
}

.jfc-product-panel {
  position: sticky;
  top: 24px;
  padding: 8px 0 0;
}

.jfc-product-panel h1 {
  margin: 0 0 13px;
  font-size: clamp(2.7rem, 4.4vw, 4.5rem);
}

.jfc-product-meta {
  color: #847a74;
  font-size: .77rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 18px;
}

.jfc-product-meta span::before {
  content: "·";
  margin-right: 8px;
  color: #c0a9b0;
}

.jfc-product-meta span:first-child::before {
  display: none;
}

.jfc-product-review-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: .75rem;
}

.jfc-product-review-row .rating {
  color: #bd9561;
}

.jfc-product-price-detail {
  margin: 10px 0 26px;
  color: var(--jfc-rose);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.15rem;
  font-weight: 600;
}

.jfc-product-price-detail .price-old {
  font-family: Inter, sans-serif;
  color: #9f958f;
  font-size: .9rem;
  text-decoration: line-through;
  margin-right: 8px;
}

.jfc-product-panel .jfc-soft-divider {
  height: 1px;
  background: var(--jfc-line);
  margin: 24px 0;
}

.jfc-option-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  margin-bottom: 15px;
}

.jfc-product-panel .form-check {
  padding: 10px 12px 10px 34px;
  border-radius: 12px;
}

.jfc-buy-row {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 10px;
  margin-top: 22px;
}

.jfc-qty-wrap {
  position: relative;
}

.jfc-qty-wrap label {
  position: absolute;
  left: 12px;
  top: 6px;
  z-index: 2;
  color: #8e837c;
  font-size: .57rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.jfc-qty-wrap input {
  height: 58px;
  padding-top: 20px;
  text-align: center;
}

#button-cart.jfc-buy-button {
  min-height: 58px;
  border-radius: 16px;
  font-size: .9rem;
}

.jfc-product-secondary-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.jfc-product-secondary-actions button {
  min-height: 44px;
  border: 1px solid var(--jfc-line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 15px;
  color: #665f5b;
}

.jfc-product-details {
  background: #fff;
}

.jfc-product-details .nav-tabs {
  border-bottom: 1px solid var(--jfc-line);
  gap: 28px;
}

.jfc-product-details .nav-tabs .nav-link {
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 16px 0;
  color: #7c746e;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.jfc-product-details .nav-tabs .nav-link.active {
  color: var(--jfc-rose);
  border-bottom-color: var(--jfc-rose);
  background: transparent;
}

.jfc-product-details .tab-content {
  padding: 32px 0;
  max-width: 900px;
}

/* --- cart / checkout --- */

.jfc-cart-page,
.jfc-checkout-page,
.jfc-account-page,
.jfc-information-page {
  padding-bottom: 92px;
}

.jfc-cart-header,
.jfc-page-heading {
  margin: 18px 0 32px;
}

.jfc-cart-item-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 150px 120px;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--jfc-line);
}

.jfc-cart-item-image {
  border-radius: 18px;
  overflow: hidden;
  background: var(--jfc-cream);
}

.jfc-cart-item-image img {
  width: 120px;
  height: 130px;
  object-fit: cover;
}

.jfc-cart-item-name {
  color: var(--jfc-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
}

.jfc-cart-item-meta {
  color: #837a74;
  font-size: .75rem;
}

.jfc-cart-item-price {
  text-align: right;
  color: var(--jfc-rose);
  font-weight: 700;
}

.jfc-cart-totals {
  width: min(460px, 100%);
  margin-left: auto;
  padding: 24px 0;
}

.jfc-cart-total-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
  color: #68615d;
}

.jfc-cart-total-row:last-child {
  border-top: 1px solid var(--jfc-line);
  margin-top: 7px;
  padding-top: 15px;
  color: var(--jfc-ink);
  font-size: 1.1rem;
}

.jfc-cart-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.jfc-checkout-intro {
  max-width: 660px;
  margin-bottom: 30px;
  color: #766e68;
}

.jfc-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  gap: 28px;
  align-items: start;
}

.jfc-checkout-column > div,
#checkout-register,
#checkout-payment-address,
#checkout-shipping-address,
#checkout-shipping-method,
#checkout-payment-method,
#checkout-confirm {
  margin-bottom: 18px;
}

.jfc-checkout-page .card,
.jfc-checkout-page fieldset,
.jfc-checkout-page .accordion-item {
  background: #fff;
  border: 1px solid var(--jfc-line);
  border-radius: 20px;
  padding: 22px;
}

.jfc-checkout-page legend,
.jfc-checkout-page .card-header {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  background: transparent;
  border: 0;
  padding: 0 0 12px;
}

.jfc-checkout-side {
  position: sticky;
  top: 24px;
}

/* --- account / information --- */

.jfc-login-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.jfc-login-card {
  min-height: 410px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 28px;
  border: 1px solid var(--jfc-line);
  background: #fff;
}

.jfc-login-card.jfc-login-new {
  background: linear-gradient(145deg, #f9eee8, #eef1e9);
}

.jfc-login-card h2 {
  margin: 0 0 16px;
}

.jfc-login-card p {
  color: #756d67;
}

.jfc-information-card {
  border-radius: 28px;
  border: 1px solid var(--jfc-line);
  background: #fff;
  padding: clamp(28px, 5vw, 58px);
  box-shadow: var(--jfc-shadow-soft);
}

.jfc-contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: 28px;
}

.jfc-contact-details {
  border-radius: 28px;
  padding: 36px;
  background: #43503d;
  color: #fff;
}

.jfc-contact-details h2,
.jfc-contact-details h3 {
  color: #fff;
}

.jfc-contact-details a {
  color: #f4d9e1;
}

.jfc-contact-form {
  border-radius: 28px;
  padding: 36px;
  background: #fff;
  border: 1px solid var(--jfc-line);
}

/* --- side columns / extension modules --- */

#column-left,
#column-right {
  max-width: 300px;
}

#column-left .list-group,
#column-right .list-group {
  border-radius: 18px;
  overflow: hidden;
}

#column-left .list-group-item,
#column-right .list-group-item {
  border-color: var(--jfc-line);
  color: #625d58;
}

#column-left .list-group-item.active,
#column-right .list-group-item.active {
  background: var(--jfc-sage);
  border-color: var(--jfc-sage);
  color: #fff;
}

.jfc-site .table {
  --bs-table-bg: transparent;
  --bs-table-border-color: var(--jfc-line);
  color: #5b5753;
}

.jfc-site .accordion-button:not(.collapsed) {
  background: #fbf5f1;
  color: var(--jfc-rose);
  box-shadow: none;
}

/* --- footer --- */

.jfc-footer {
  position: relative;
  background: #354032;
  color: #e8e5df;
  padding: 76px 0 0;
  overflow: hidden;
}

.jfc-footer::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -170px;
  top: -170px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 0 0 50px rgba(255,255,255,.018), 0 0 0 100px rgba(255,255,255,.014);
}

.jfc-footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 58px;
}

.jfc-footer h5 {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 18px;
}

.jfc-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jfc-footer li {
  margin-bottom: 8px;
}

.jfc-footer a {
  color: #d8d7d1;
  font-size: .82rem;
}

.jfc-footer a:hover {
  color: #f2ced8;
}

.jfc-footer-script {
  color: #f2ced8;
  font-family: "Alex Brush", cursive;
  font-size: 2.7rem;
  line-height: 1;
  margin-bottom: 14px;
}

.jfc-footer-brand p {
  max-width: 390px;
  color: #c7c8c2;
  font-size: .86rem;
}

.jfc-footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
}

.jfc-footer-bottom {
  position: relative;
  z-index: 2;
  min-height: 66px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #aeb2aa;
  font-size: .72rem;
}

.jfc-footer-bottom p {
  margin: 0;
}

.jfc-footer-note {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  letter-spacing: .05em;
}

/* --- Julia home loader: approved winner, scoped to homepage overlay --- */

#loader.jfc-home-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 45%, #fffaf6 0%, #faf1ea 55%, #f4e5db 100%);
  transition: opacity 1s ease, visibility 1s ease;
}

#loader.jfc-home-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#loader #wreath-wrap {
  position: relative;
  width: min(62vw, 340px);
  height: min(62vw, 340px);
  opacity: 0;
  animation: jfcWreathFadeIn .8s ease-out forwards;
}

@keyframes jfcWreathFadeIn {
  from { opacity: 0; transform: scale(.94); }
  to { opacity: 1; transform: scale(1); }
}

#loader #text-block {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
  pointer-events: none;
  padding: 0;
  box-sizing: border-box;
}

#loader #text-block::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(92vw, 620px);
  height: 150px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(255,250,246,.94) 0%,
    rgba(255,250,246,.76) 40%,
    rgba(255,250,246,.30) 66%,
    rgba(255,250,246,0) 100%
  );
  filter: blur(12px);
  z-index: 0;
  pointer-events: none;
}

#loader #text-block > * {
  position: relative;
  z-index: 1;
}

#loader .leaf-cluster {
  transform-origin: center;
  transform-box: fill-box;
  opacity: 0;
  animation: jfcLeafGrow .6s cubic-bezier(.3,1.4,.5,1) forwards;
}

@keyframes jfcLeafGrow {
  from { opacity: 0; transform: scale(.25); }
  to { opacity: 1; transform: scale(1); }
}

#loader .bud {
  transform-origin: center;
  transform-box: fill-box;
  opacity: 0;
  animation: jfcBudPop .45s ease-out forwards;
}

@keyframes jfcBudPop {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}

#loader .petal-layer {
  transform-origin: center;
  transform-box: fill-box;
  opacity: 0;
  animation: jfcPetalUnfurl .75s cubic-bezier(.22,1,.36,1) forwards;
}

@keyframes jfcPetalUnfurl {
  0% { opacity: 0; transform: scale(.2) rotate(-18deg); }
  55% { opacity: 1; }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

#loader .blossom {
  transform-origin: center;
  transform-box: fill-box;
  opacity: 0;
  animation: jfcBlossomPop .6s cubic-bezier(.3,1.5,.5,1) forwards;
}

@keyframes jfcBlossomPop {
  0% { opacity: 0; transform: scale(.1); }
  70% { opacity: 1; transform: scale(1.12); }
  100% { opacity: 1; transform: scale(1); }
}

#loader #ornament {
  margin: 0 auto 10px;
  display: block;
  opacity: 0;
  animation: jfcTextSoftFade 1.15s cubic-bezier(.22,.62,.28,1) forwards;
  transform-origin: center;
}

#loader #logo-text {
  width: 100%;
  text-align: center;
  opacity: 0;
  transform-origin: center;
  will-change: opacity, transform;
}

/* v2.3.8: never render the loader wordmark in a fallback font.
   jfc-loader.js adds this class only after Alex Brush and Cormorant Garamond
   are confirmed ready by the browser Font Loading API. */
#loader.jfc-fonts-ready #logo-text {
  animation: jfcTextSoftFade 1.25s cubic-bezier(.22,.62,.28,1) forwards;
}

@keyframes jfcTextSoftFade {
  0% { opacity: 0; transform: scale(.985); }
  45% { opacity: .32; transform: scale(.99); }
  100% { opacity: 1; transform: scale(1); }
}

#loader #logo-text .brand {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: "Alex Brush", "Cormorant Garamond", cursive;
  font-size: clamp(40px, 7.2vw, 62px);
  line-height: .98;
  color: #7a4152;
  white-space: nowrap;
  text-shadow:
    0 0 10px rgba(255,250,246,.95),
    0 0 18px rgba(255,250,246,.82),
    0 1px 0 rgba(255,255,255,.55);
}

#loader #logo-text .tagline {
  margin-top: 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b08d5f;
  text-shadow: 0 0 8px rgba(255,250,246,.92);
}

#loader .dots {
  margin: 14px auto 0;
  display: flex;
  gap: 6px;
  justify-content: center;
  opacity: 0;
  animation: jfcTextSoftFade 1s cubic-bezier(.22,.62,.28,1) forwards;
  transform-origin: center;
}

#loader .dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #cf98a8;
  animation: jfcDotPulse 1.2s ease-in-out infinite;
}

#loader .dots span:nth-child(2) { animation-delay: .15s; }
#loader .dots span:nth-child(3) { animation-delay: .3s; }

@keyframes jfcDotPulse {
  0%, 80%, 100% { opacity: .25; transform: scale(.8); }
  40% { opacity: 1; transform: scale(1.15); }
}


/* --- compact/side modules --- */

.jfc-product-stack {
  display: grid;
  gap: 14px;
}

.jfc-product-module-vertical .jfc-module-heading {
  margin-bottom: 14px;
}

.jfc-product-module-vertical .jfc-product-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
}

.jfc-product-module-vertical .jfc-product-media {
  aspect-ratio: 1;
  border-radius: 16px;
}

.jfc-product-module-vertical .jfc-product-actions {
  display: none;
}

.jfc-product-module-vertical .jfc-product-body {
  padding: 4px 0;
}

.jfc-product-module-vertical .jfc-product-body h4 {
  font-size: 1.05rem;
}

.jfc-category-module {
  border: 1px solid var(--jfc-line);
  border-radius: 18px;
  background: #fff;
  padding: 10px;
}

.jfc-category-module-link {
  display: block;
  padding: 10px 12px;
  border-radius: 11px;
  color: #655f5a;
  font-size: .82rem;
}

.jfc-category-module-link:hover {
  background: var(--jfc-cream);
}

.jfc-category-module-link.active {
  background: var(--jfc-sage);
  color: #fff;
}

.jfc-category-module-children {
  padding: 4px 0 4px 14px;
}

.jfc-html-module {
  margin: 0 0 68px;
}

.jfc-rich-copy {
  color: #655f5a;
}

.jfc-rich-copy img {
  border-radius: 20px;
}

.jfc-account-page .jfc-information-card ul li {
  padding: 7px 0;
  border-bottom: 1px solid #f0e8e3;
}

.jfc-account-page .jfc-information-card ul li:last-child {
  border-bottom: 0;
}

.jfc-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(62, 46, 50, .08);
}

/* --- responsive --- */

@media (max-width: 1199px) {
  .jfc-header-main {
    grid-template-columns: 1fr auto 1fr;
  }

  .jfc-brand-mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .jfc-product-grid,
  #product-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .jfc-footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .jfc-footer-grid > :last-child {
    grid-column: 2 / 3;
  }
}

@media (max-width: 991px) {
  .jfc-topbar-tools {
    display: none;
  }

  .jfc-topbar-inner {
    justify-content: center;
  }

  .jfc-header-main {
    min-height: 92px;
    grid-template-columns: 50px 1fr auto;
    gap: 12px;
  }

  .jfc-nav-shell {
    display: none;
  }

  .jfc-brand {
    justify-self: center;
  }

  .jfc-brand-mark {
    display: none;
  }

  .jfc-brand-name {
    font-size: clamp(1.8rem, 5vw, 2.35rem);
  }

  .jfc-brand-tag {
    font-size: .54rem;
  }

  .jfc-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 64px;
    text-align: center;
  }

  .jfc-hero-copy {
    margin: 0 auto;
  }

  .jfc-hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .jfc-hero-actions {
    justify-content: center;
  }

  .jfc-hero-art {
    min-height: 440px;
  }

  .jfc-values-grid {
    grid-template-columns: 1fr;
  }

  .jfc-values-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--jfc-line);
  }

  .jfc-values-grid > div:last-child {
    border-bottom: 0;
  }

  .jfc-story-grid,
  .jfc-product-layout,
  .jfc-checkout-grid,
  .jfc-contact-grid {
    grid-template-columns: 1fr;
  }

  .jfc-product-panel,
  .jfc-checkout-side {
    position: static;
  }

  .jfc-product-grid,
  #product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jfc-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jfc-footer-brand {
    grid-column: 1 / -1;
  }

  .jfc-footer-grid > :last-child {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  .jfc-shell,
  .jfc-site .container {
    width: min(calc(100% - 28px), var(--jfc-shell));
  }

  .jfc-topbar-message {
    font-size: .62rem;
    letter-spacing: .1em;
    text-align: center;
  }

  .jfc-header-main {
    min-height: 84px;
  }

  .jfc-header-actions {
    gap: 2px;
  }

  .jfc-cart-button {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  .jfc-brand-name {
    font-size: clamp(1.52rem, 7vw, 2.1rem);
  }

  .jfc-brand-tag {
    display: none;
  }

  .jfc-hero-grid {
    padding-top: 48px;
    padding-bottom: 46px;
  }

  .jfc-hero-art {
    min-height: 330px;
  }

  .jfc-hero-wreath {
    width: min(360px, 100%);
  }

  .jfc-orbit-one {
    width: 330px;
    height: 330px;
  }

  .jfc-orbit-two {
    width: 380px;
    height: 380px;
  }

  .jfc-hero-logo span {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .jfc-home-shop {
    padding-top: 70px;
  }

  .jfc-story-band {
    padding: 58px 0;
  }

  .jfc-product-grid,
  #product-list {
    gap: 20px 12px;
  }

  .jfc-product-actions {
    opacity: 1;
    transform: none;
  }

  .jfc-product-action-primary {
    width: 42px;
    padding: 0;
    overflow: hidden;
    font-size: 0;
  }

  .jfc-product-action-primary i {
    font-size: .85rem;
  }

  .jfc-category-hero-inner {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .jfc-category-image {
    height: 220px;
  }

  .jfc-listing-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .jfc-toolbar-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .jfc-listing-toolbar .form-select {
    width: 100%;
  }

  .jfc-gallery {
    grid-template-columns: 1fr;
  }

  .jfc-gallery-thumbs {
    order: 2;
    flex-direction: row;
    overflow-x: auto;
  }

  .jfc-gallery-main {
    min-height: 380px;
  }

  .jfc-buy-row {
    grid-template-columns: 94px 1fr;
  }

  .jfc-cart-item-row {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
  }

  .jfc-cart-item-image img {
    width: 88px;
    height: 100px;
  }

  .jfc-cart-item-controls,
  .jfc-cart-item-price {
    grid-column: 2;
    text-align: left;
  }

  .jfc-cart-actions {
    flex-direction: column-reverse;
  }

  .jfc-cart-actions .jfc-btn,
  .jfc-cart-actions .btn {
    width: 100%;
  }

  .jfc-login-grid {
    grid-template-columns: 1fr;
  }

  .jfc-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 26px;
  }

  .jfc-footer-brand {
    grid-column: 1 / -1;
  }

  .jfc-footer-bottom {
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  #loader #logo-text .brand {
    font-size: clamp(35px, 10.5vw, 52px);
  }
}

@media (max-width: 520px) {
  .jfc-product-grid,
  #product-list {
    grid-template-columns: 1fr 1fr;
  }

  .jfc-product-body h4 {
    font-size: 1.06rem;
  }

  .jfc-product-media {
    border-radius: 18px;
  }

  .jfc-story-card {
    padding: 30px;
  }

  .jfc-footer-grid {
    grid-template-columns: 1fr;
  }

  .jfc-footer-brand {
    grid-column: auto;
  }

  #loader #logo-text .tagline {
    font-size: 11px;
    letter-spacing: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .jfc-product-card img,
  .jfc-text-link i {
    transition: none !important;
  }
}

/* ========================================================================== */
/* JULIA'S FLORAL CREATIONS — V2 BESPOKE EDITORIAL THEME                     */
/* ========================================================================== */

body.jfc-site.jfc-v2 {
  --jfc-paper: #fffdfb;
  --jfc-cream: #fcf5ef;
  --jfc-cream-soft: #fff9f5;
  --jfc-blush: #efd8df;
  --jfc-blush-deep: #d89cad;
  --jfc-rose: #7a4152;
  --jfc-rose-dark: #57303b;
  --jfc-sage: #718760;
  --jfc-sage-soft: #e7ecdf;
  --jfc-gold: #b99666;
  --jfc-ink: #2f342d;
  --jfc-muted: #756f69;
  --jfc-line: rgba(110, 91, 82, .16);
  background: var(--jfc-paper);
  color: var(--jfc-ink);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

body.jfc-site.jfc-v2::selection {
  background: #ead0d8;
  color: #4f2e37;
}

.jfc-v2 .jfc-shell,
.jfc-v2 .container {
  width: min(calc(100% - 48px), 1320px);
  max-width: 1320px;
}

.jfc-v2 h1,
.jfc-v2 h2,
.jfc-v2 h3,
.jfc-v2 h4,
.jfc-v2 h5 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
}

.jfc-v2 .jfc-eyebrow {
  margin: 0 0 14px;
  color: var(--jfc-sage);
  font-family: "Manrope", sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.jfc-script-small {
  display: block;
  color: var(--jfc-rose);
  font-family: "Alex Brush", cursive;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1;
}

.jfc-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--jfc-rose-dark);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.jfc-arrow-link i { transition: transform .25s ease; }
.jfc-arrow-link:hover i { transform: translateX(5px); }

.jfc-pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid var(--jfc-rose);
  border-radius: 999px;
  background: var(--jfc-rose);
  color: #fff;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.jfc-pill-button:hover {
  background: var(--jfc-rose-dark);
  border-color: var(--jfc-rose-dark);
  color: #fff;
  transform: translateY(-1px);
}

.jfc-pill-button-light {
  background: transparent;
  border-color: rgba(255,255,255,.6);
  color: #fff;
}

/* Header / brand lockup ---------------------------------------------------- */

.jfc-atelier-header {
  position: relative;
  z-index: 100;
  background: #fcf5ef;
  border-bottom: 1px solid rgba(102, 83, 75, .11);
}

.jfc-petal-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 31px;
  border-bottom: 1px solid rgba(122, 65, 82, .09);
  color: #a27782;
  font-family: "Cormorant Garamond", serif;
  font-size: .75rem;
  font-style: italic;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.jfc-petal-note-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c8a878);
}

.jfc-petal-note-line:last-child {
  background: linear-gradient(90deg, #c8a878, transparent);
}

.jfc-atelier-head {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 390px) 1fr;
  align-items: center;
  min-height: 184px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.jfc-main-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  justify-self: center;
}

.jfc-main-logo img {
  display: block;
  width: min(100%, 360px);
  max-height: 168px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.jfc-head-tools {
  display: flex;
  align-items: center;
  gap: 18px;
}

.jfc-head-tools-left { justify-content: flex-start; }
.jfc-head-tools-right { justify-content: flex-end; }

.jfc-head-tool,
.jfc-cart-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 38px;
  min-height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #4f4c47;
  font-family: "Manrope", sans-serif;
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.jfc-head-tool:hover,
.jfc-cart-button:hover { color: var(--jfc-rose); }

.jfc-head-tool i,
.jfc-cart-button > i { font-size: 1rem; }

.jfc-menu-lines {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
}

.jfc-menu-lines i {
  display: block;
  height: 1px;
  background: currentColor;
}

.jfc-menu-lines i:last-child { width: 13px; }

.jfc-cart-text {
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jfc-cart-slot .dropdown-menu {
  margin-top: 14px !important;
}

.jfc-dropdown,
.jfc-mini-cart {
  border: 1px solid rgba(98, 77, 70, .14);
  border-radius: 4px;
  background: #fffdfb;
  box-shadow: 0 24px 65px rgba(75, 54, 59, .12);
}

.jfc-nav-garden {
  border-top: 1px solid rgba(99, 82, 73, .10);
  background: rgba(255,255,255,.34);
}

.jfc-desktop-menu { position: relative; }

.jfc-desktop-menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jfc-desktop-menu-item { position: static; }

.jfc-desktop-menu-link {
  position: relative;
  display: block;
  padding: 17px 5px 16px;
  color: #514b47;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.04rem;
  font-weight: 500;
  letter-spacing: .03em;
}

.jfc-desktop-menu-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 0;
  height: 1px;
  background: var(--jfc-rose);
  transform: translateX(-50%);
  transition: width .25s ease;
}

.jfc-desktop-menu-item:hover .jfc-desktop-menu-link::after { width: 24px; }

.jfc-nav-floret {
  color: #c8aa7a;
  font-size: .46rem;
  list-style: none;
}

.jfc-mega-panel {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 70px;
  width: min(900px, calc(100vw - 60px));
  padding: 42px 52px;
  border: 1px solid rgba(113, 90, 81, .13);
  background: #fffdfb;
  box-shadow: 0 30px 70px rgba(82, 62, 66, .12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  overflow: hidden;
}

.jfc-desktop-menu-item:hover .jfc-mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.jfc-mega-botanical {
  position: absolute;
  right: -30px;
  bottom: -38px;
  width: 270px;
  height: 155px;
  background: url('../image/botanical-sprig.svg') center/contain no-repeat;
  opacity: .2;
  transform: rotate(-5deg);
  pointer-events: none;
}

.jfc-mega-intro { position: relative; z-index: 1; }
.jfc-mega-intro h3 { margin: 0 0 10px; font-size: 2.5rem; line-height: 1; }
.jfc-mega-intro p { max-width: 270px; margin: 0 0 20px; color: var(--jfc-muted); font-size: .86rem; }

.jfc-mega-links {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 0 28px;
}

.jfc-mega-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 46px;
  border-bottom: 1px solid var(--jfc-line);
  color: #4b4844;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
}

.jfc-mega-links a i { font-size: .65rem; opacity: .35; }
.jfc-mega-links a:hover { color: var(--jfc-rose); padding-left: 4px; }

/* Menu drawer / search sheet --------------------------------------------- */

.jfc-menu-drawer,
.jfc-filter-drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
}

.jfc-menu-drawer.is-open,
.jfc-filter-drawer.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.jfc-menu-drawer-backdrop,
.jfc-filter-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 37, 35, .28);
  backdrop-filter: blur(4px);
}

.jfc-menu-drawer-panel,
.jfc-filter-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(520px, 92vw);
  height: 100%;
  padding: 32px 42px 40px;
  background: #fcf5ef;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.22,.72,.24,1);
}

.jfc-menu-drawer.is-open .jfc-menu-drawer-panel,
.jfc-filter-drawer.is-open .jfc-filter-panel { transform: translateX(0); }

.jfc-sheet-close {
  appearance: none;
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(99, 79, 72, .16);
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  color: #57504b;
  cursor: pointer;
  z-index: 10;
}

.jfc-drawer-logo { max-width: 270px; margin: 8px auto 8px; }
.jfc-drawer-logo img { mix-blend-mode: multiply; }
.jfc-drawer-heading { margin: 18px 0 28px; text-align: center; }
.jfc-drawer-heading h2 { margin: 0; font-size: 2.4rem; }

.jfc-drawer-category {
  border-top: 1px solid rgba(97, 80, 72, .14);
}

.jfc-drawer-category:last-child { border-bottom: 1px solid rgba(97, 80, 72, .14); }
.jfc-drawer-category summary { list-style: none; }
.jfc-drawer-category summary::-webkit-details-marker { display: none; }
.jfc-drawer-category summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  cursor: pointer;
}
.jfc-drawer-category summary > a { color: var(--jfc-ink); font-family: "Cormorant Garamond", serif; font-size: 1.35rem; }
.jfc-drawer-plus { font-size: 1.3rem; font-weight: 300; transition: transform .2s ease; }
.jfc-drawer-category[open] .jfc-drawer-plus { transform: rotate(45deg); }
.jfc-drawer-children { display: grid; gap: 10px; padding: 0 0 20px 18px; }
.jfc-drawer-children a { color: #6e6863; font-size: .82rem; }
.jfc-drawer-all { margin-top: 5px; color: var(--jfc-rose) !important; font-weight: 600; }
.jfc-drawer-signoff { margin-top: 34px; text-align: center; color: #a07b85; font-family: "Cormorant Garamond", serif; font-style: italic; letter-spacing: .12em; }

.jfc-search-sheet {
  position: fixed;
  inset: 0;
  z-index: 1250;
  display: grid;
  place-items: center;
  padding: 40px;
  background: rgba(252,245,239,.97);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.01);
  transition: opacity .28s ease, visibility .28s, transform .28s ease;
}

.jfc-search-sheet.is-open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.jfc-search-sheet::before,
.jfc-search-sheet::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 190px;
  background: url('../image/botanical-sprig.svg') center/contain no-repeat;
  opacity: .18;
}
.jfc-search-sheet::before { left: -45px; bottom: -25px; }
.jfc-search-sheet::after { right: -55px; top: -30px; transform: rotate(180deg); }
.jfc-search-sheet-inner { position: relative; z-index: 1; width: min(760px, 100%); text-align: center; }
.jfc-search-sheet-inner h2 { margin: 0 0 34px; font-size: clamp(2.5rem, 5vw, 4.8rem); }

.jfc-search-sheet #search,
.jfc-search-sheet .input-group {
  width: 100%;
}

.jfc-search-sheet #search .form-control {
  height: 68px;
  padding: 0 24px;
  border: 0;
  border-bottom: 1px solid #cdbfb7;
  border-radius: 0;
  background: transparent;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
}

.jfc-search-sheet #search .btn {
  width: 68px;
  height: 68px;
  border: 0;
  border-bottom: 1px solid #cdbfb7;
  border-radius: 0;
  background: transparent;
  color: var(--jfc-rose);
}

/* Breadcrumbs ------------------------------------------------------------- */

.jfc-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 25px 0 20px;
  color: #a29a94;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.jfc-breadcrumbs a { color: #8b837d; }
.jfc-breadcrumbs a:last-of-type { color: #5f5954; }

/* Home ------------------------------------------------------------------- */

.jfc-editorial-hero {
  position: relative;
  min-height: 700px;
  background: linear-gradient(180deg, #fcf5ef 0%, #fffaf6 100%);
  overflow: hidden;
}

.jfc-editorial-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  align-items: center;
  gap: 70px;
  min-height: 700px;
  padding-top: 58px;
  padding-bottom: 68px;
}

.jfc-hero-number {
  position: absolute;
  left: 0;
  top: 72px;
  color: rgba(122,65,82,.22);
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  letter-spacing: .18em;
}

.jfc-hero-copy-v2 { position: relative; z-index: 2; padding-left: 72px; }
.jfc-hero-copy-v2 h1 { margin: 0 0 28px; max-width: 720px; font-size: clamp(4.1rem, 7.2vw, 7.7rem); font-weight: 400; line-height: .82; letter-spacing: -.045em; }
.jfc-hero-copy-v2 h1 em { color: var(--jfc-rose); font-weight: 400; }
.jfc-hero-copy-v2 p { max-width: 545px; margin: 0; color: #6f6862; font-size: .98rem; line-height: 1.85; }
.jfc-hero-actions-v2 { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; margin-top: 32px; }

.jfc-hero-brand-card {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.jfc-hero-brand-card::before {
  content: "";
  position: absolute;
  inset: 5% 9% 10%;
  border: 1px solid rgba(122,65,82,.16);
  border-radius: 48% 48% 9% 9% / 25% 25% 7% 7%;
}

.jfc-hero-brand-card img {
  position: relative;
  z-index: 2;
  width: min(540px, 100%);
  mix-blend-mode: multiply;
}

.jfc-hero-brand-halo {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231,217,223,.72), rgba(255,255,255,0) 68%);
}

.jfc-hero-card-caption {
  position: absolute;
  right: 5%;
  bottom: 5%;
  color: #a9856e;
  font-family: "Cormorant Garamond", serif;
  font-size: .72rem;
  font-style: italic;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.jfc-hero-side-note {
  position: absolute;
  right: -16px;
  bottom: 95px;
  display: flex;
  gap: 20px;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
  color: rgba(80,72,68,.5);
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.jfc-hero-sprig {
  position: absolute;
  width: 360px;
  height: 210px;
  background: url('../image/botanical-sprig.svg') center/contain no-repeat;
  opacity: .19;
}
.jfc-hero-sprig-left { left: -90px; bottom: -25px; }
.jfc-hero-sprig-right { right: -100px; top: 10px; transform: rotate(184deg); }

.jfc-manifesto-strip { padding: 92px 0; background: #fff; }
.jfc-manifesto-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 48px; align-items: end; }
.jfc-manifesto-heading h2 { margin: 4px 0 0; font-size: 3.4rem; line-height: .95; }
.jfc-manifesto-item { min-height: 150px; padding: 26px 0 0; border-top: 1px solid var(--jfc-line); }
.jfc-manifesto-item > span { color: #bd9e79; font-family: "Cormorant Garamond", serif; font-size: .78rem; }
.jfc-manifesto-item p { max-width: 210px; margin: 28px 0 0; color: #6c6661; font-family: "Cormorant Garamond", serif; font-size: 1.25rem; line-height: 1.3; }

.jfc-home-collection { padding: 110px 0 100px; background: #fffaf7; }
.jfc-section-heading-v2 { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 60px; margin-bottom: 52px; }
.jfc-section-heading-v2 h2 { margin: 0; font-size: 4.2rem; font-weight: 400; }
.jfc-section-heading-v2 > p { max-width: 420px; margin: 0 0 8px; color: #726b65; line-height: 1.8; }
.jfc-home-content > * + * { margin-top: 70px; }

.jfc-signature-panel { position: relative; padding: 0 0 110px; background: #fffaf7; }
.jfc-signature-grid { position: relative; min-height: 510px; display: grid; grid-template-columns: .82fr 1.18fr; overflow: hidden; background: var(--jfc-rose); color: #fff; }
.jfc-signature-flower { min-height: 510px; background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,0)), url('../image/botanical-sprig.svg') 55% 56%/78% auto no-repeat; filter: saturate(.75) brightness(1.45); opacity: .65; }
.jfc-signature-copy { align-self: center; padding: 70px 80px 70px 20px; }
.jfc-signature-copy .jfc-eyebrow { color: #e8c6cf; }
.jfc-signature-copy h2 { margin: 0 0 24px; color: #fff; font-size: clamp(3rem, 5vw, 5.2rem); line-height: .94; }
.jfc-signature-copy h2 em { color: #efced7; font-weight: 400; }
.jfc-signature-copy p { max-width: 600px; color: rgba(255,255,255,.76); }

/* Collection/category ----------------------------------------------------- */

.jfc-collection-page { background: #fffdfb; }
.jfc-collection-hero { position: relative; padding: 28px 0 85px; background: linear-gradient(180deg, #fffdfb, #fff8f4); overflow: hidden; }
.jfc-collection-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: center; min-height: 390px; }
.jfc-collection-title { padding-left: 7%; }
.jfc-collection-title h1 { max-width: 760px; margin: 0 0 20px; font-size: clamp(4.2rem, 7vw, 7.5rem); font-weight: 400; line-height: .86; letter-spacing: -.04em; }
.jfc-collection-description { max-width: 620px; color: #706964; font-size: .95rem; line-height: 1.8; }
.jfc-collection-description p:last-child { margin-bottom: 0; }

.jfc-collection-image-wrap { position: relative; display: flex; justify-content: center; padding: 20px 40px 10px; }
.jfc-collection-image-frame { width: min(360px, 100%); aspect-ratio: .82; padding: 14px; border: 1px solid rgba(122,65,82,.14); border-radius: 50% 50% 8% 8% / 26% 26% 5% 5%; background: rgba(255,255,255,.56); }
.jfc-collection-image-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.jfc-image-caption { position: absolute; right: 4%; bottom: 8%; color: #a48372; font-family: "Cormorant Garamond", serif; font-size: .75rem; font-style: italic; letter-spacing: .15em; text-transform: uppercase; transform: rotate(-90deg); transform-origin: right bottom; }

.jfc-collection-quote { position: relative; display: grid; place-items: center; min-height: 330px; }
.jfc-collection-ring { width: 220px; height: 220px; border: 1px solid rgba(122,65,82,.16); border-radius: 50%; }
.jfc-collection-quote .jfc-script-small { position: absolute; z-index: 1; width: 340px; text-align: center; }

.jfc-collection-sprig { position: absolute; width: 350px; height: 200px; background: url('../image/botanical-sprig.svg') center/contain no-repeat; opacity: .16; }
.jfc-collection-sprig-left { left: -100px; bottom: -30px; }
.jfc-collection-sprig-right { right: -105px; top: 5px; transform: rotate(178deg); }

.jfc-subcollection-band { display: grid; grid-template-columns: 165px 1fr; border-top: 1px solid var(--jfc-line); border-bottom: 1px solid var(--jfc-line); margin: 54px 0 75px; }
.jfc-subcollection-label { padding: 25px 24px 25px 0; border-right: 1px solid var(--jfc-line); color: #9a918b; font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; }
.jfc-subcollection-list { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); }
.jfc-subcollection-link { display: flex; align-items: center; gap: 12px; min-height: 68px; padding: 12px 25px; border-right: 1px solid var(--jfc-line); color: #4f4b47; font-family: "Cormorant Garamond", serif; font-size: 1.18rem; }
.jfc-subcollection-link:nth-child(3n) { border-right: 0; }
.jfc-subcollection-link i { margin-left: auto; font-size: .68rem; opacity: .28; }
.jfc-subcollection-dot { width: 7px; height: 7px; border: 1px solid #ba8c99; border-radius: 50%; }
.jfc-subcollection-link:hover { background: #fff8f4; color: var(--jfc-rose); }

.jfc-collection-products { padding-bottom: 80px; }
.jfc-collection-toolbar { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 42px; padding-bottom: 16px; border-bottom: 1px solid var(--jfc-line); }
.jfc-toolbar-cluster { display: flex; align-items: center; gap: 18px; }
.jfc-refine-button,
.jfc-quiet-action { appearance: none; display: inline-flex; align-items: center; gap: 9px; border: 0; background: transparent; color: #615b56; font-size: .7rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; cursor: pointer; }
.jfc-refine-button:hover,.jfc-quiet-action:hover { color: var(--jfc-rose); }

.jfc-minimal-select { display: flex; align-items: center; gap: 10px; margin: 0; }
.jfc-minimal-select > span { color: #9b928c; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.jfc-minimal-select select { appearance: none; min-width: 130px; padding: 7px 24px 7px 2px; border: 0; border-bottom: 1px solid #cfc2bb; border-radius: 0; background: linear-gradient(45deg, transparent 50%, #7b716b 50%) calc(100% - 8px) 50%/4px 4px no-repeat, linear-gradient(135deg, #7b716b 50%, transparent 50%) calc(100% - 4px) 50%/4px 4px no-repeat; color: #514b47; font-family: "Cormorant Garamond", serif; font-size: 1rem; }

.jfc-editorial-product-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 64px 28px; align-items: start; }
.jfc-editorial-product-item { grid-column: span 4; }
.jfc-editorial-product-item-0 { grid-column: span 7; }
.jfc-editorial-product-item-1 { grid-column: span 5; padding-top: 80px; }
.jfc-editorial-product-item-2 { grid-column: span 4; }
.jfc-editorial-product-item-3 { grid-column: span 4; padding-top: 46px; }
.jfc-editorial-product-item-4 { grid-column: span 4; }
.jfc-editorial-product-item-5 { grid-column: span 5; margin-left: 14%; }

/* Product tile ------------------------------------------------------------ */

.jfc-product-tile { position: relative; }
.jfc-product-tile-media { position: relative; overflow: hidden; background: #f4eee9; }
.jfc-product-image-link { display: block; aspect-ratio: 1 / 1.08; overflow: hidden; }
.jfc-editorial-product-item-0 .jfc-product-image-link { aspect-ratio: 1.28 / 1; }
.jfc-editorial-product-item-1 .jfc-product-image-link { aspect-ratio: .9 / 1.12; }
.jfc-product-image-link img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.jfc-product-tile:hover .jfc-product-image-link img { transform: scale(1.035); }

.jfc-product-hover-actions { position: absolute; inset: 0; pointer-events: none; }
.jfc-round-action { pointer-events: auto; position: absolute; top: 16px; right: 16px; display: grid; place-items: center; width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(255,253,251,.88); color: var(--jfc-rose); opacity: 0; transform: translateY(-5px); transition: .25s ease; }
.jfc-compare-action { top: 62px; }
.jfc-product-tile:hover .jfc-round-action { opacity: 1; transform: translateY(0); }
.jfc-quick-add { pointer-events: auto; position: absolute; left: 18px; right: 18px; bottom: 18px; display: flex; align-items: center; justify-content: space-between; min-height: 46px; padding: 0 18px; border: 0; background: rgba(255,253,251,.93); color: #403a36; font-size: .68rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; opacity: 0; transform: translateY(8px); transition: .28s ease; }
.jfc-product-tile:hover .jfc-quick-add { opacity: 1; transform: translateY(0); }

.jfc-product-tile-copy { padding: 17px 2px 0; }
.jfc-product-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.jfc-product-title-row h3 { flex: 1; margin: 0; font-size: 1.55rem; line-height: 1.08; }
.jfc-product-title-row h3 a { color: #393633; }
.jfc-product-price-v2 { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 5px 8px; white-space: nowrap; color: var(--jfc-rose); font-family: "Cormorant Garamond", serif; font-size: 1.22rem; }
.jfc-product-price-v2 .price-old { color: #aaa19b; font-size: .9rem; text-decoration: line-through; }
.jfc-product-tile-description { max-width: 92%; margin: 10px 0 0; color: #817972; font-size: .76rem; line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.jfc-product-meta-row { display: flex; align-items: center; justify-content: space-between; margin-top: 13px; padding-top: 10px; border-top: 1px solid var(--jfc-line); }
.jfc-product-floret { color: #c9aa79; font-size: .55rem; }
.jfc-product-rating-v2 { display: flex; gap: 2px; color: #bd9666; font-size: .62rem; }
.jfc-product-view-link { color: #766e68; font-size: .62rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.jfc-product-tax { display: block; margin-top: 5px; color: #aaa19b; font-size: .65rem; }

.jfc-pagination-v2 { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 72px; padding-top: 22px; border-top: 1px solid var(--jfc-line); }
.jfc-pagination-v2 .pagination { margin: 0; gap: 4px; }
.jfc-pagination-v2 .page-link { border: 0; background: transparent; color: #6b635e; }
.jfc-pagination-v2 .active > .page-link { background: var(--jfc-rose); border-radius: 50%; color: #fff; }
.jfc-results-copy { color: #99908a; font-size: .68rem; letter-spacing: .06em; }

.jfc-filter-heading { padding: 30px 35px 25px 0; }
.jfc-filter-heading h2 { margin: 0; font-size: 2.8rem; }
.jfc-filter-content .card,
.jfc-filter-content .list-group-item { border-radius: 0; background: transparent; }
.jfc-filter-content .card { border: 0; border-top: 1px solid var(--jfc-line); }
.jfc-filter-content .card-header { padding-left: 0; background: transparent; border: 0; }

.jfc-empty-state { margin: 90px auto; max-width: 560px; padding: 70px 30px; text-align: center; border-top: 1px solid var(--jfc-line); border-bottom: 1px solid var(--jfc-line); }
.jfc-empty-state p { color: #746d67; }
.jfc-after-content { margin: 50px 0; }

/* Product detail ---------------------------------------------------------- */

.jfc-product-page-v2 { background: #fffdfb; padding-bottom: 100px; }
.jfc-product-stage-v2 { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(390px, .72fr); gap: 80px; align-items: start; padding: 22px 0 95px; }
.jfc-product-gallery-v2 { position: relative; min-width: 0; }
.jfc-product-gallery-sprig { position: absolute; z-index: 2; left: -70px; top: 56%; width: 220px; height: 130px; background: url('../image/botanical-sprig.svg') center/contain no-repeat; opacity: .18; transform: rotate(-12deg); pointer-events: none; }
.jfc-product-main-image { position: relative; width: 100%; min-height: 560px; padding: 30px; background: #f7f0eb; overflow: hidden; border-radius: 48% 48% 2% 2% / 18% 18% 2% 2%; }
.jfc-product-main-image > a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}
.jfc-product-main-image img { display: block; width: 100%; height: 100%; min-height: 500px; max-height: 700px; object-fit: contain; border-radius: inherit; overflow: hidden; }
.jfc-product-image-note { position: absolute; left: 24px; bottom: 24px; padding: 6px 10px; background: rgba(255,253,251,.86); color: #9a7f6b; font-family: "Cormorant Garamond", serif; font-size: .7rem; font-style: italic; letter-spacing: .14em; text-transform: uppercase; }
.jfc-product-thumbs-v2 { display: flex; gap: 12px; margin-top: 16px; overflow-x: auto; padding-bottom: 4px; }
.jfc-product-thumbs-v2 a { flex: 0 0 82px; width: 82px; aspect-ratio: 1; padding: 5px; border: 1px solid rgba(111,92,84,.15); background: #fff; }
.jfc-product-thumbs-v2 img { width: 100%; height: 100%; object-fit: cover; }

.jfc-product-purchase-v2 { position: relative; }
.jfc-product-purchase-inner { position: sticky; top: 26px; padding: 55px 48px 46px; border: 1px solid rgba(109,88,81,.13); background: #fff9f5; }
.jfc-product-purchase-inner::before { content: ""; position: absolute; top: -30px; right: -22px; width: 150px; height: 90px; background: url('../image/botanical-sprig.svg') center/contain no-repeat; opacity: .13; transform: rotate(178deg); pointer-events: none; }
.jfc-product-purchase-inner h1 { margin: 0 0 16px; font-size: clamp(3.2rem, 5vw, 5.25rem); font-weight: 400; line-height: .88; letter-spacing: -.04em; }
.jfc-product-review-v2 { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; color: #8f867f; font-size: .68rem; }
.jfc-product-review-v2 a { color: #746b65; }
.jfc-stars { display: flex; gap: 2px; color: #bf9967; font-size: .64rem; }
.jfc-product-price-detail-v2 { display: flex; align-items: baseline; gap: 12px; margin: 22px 0 3px; color: var(--jfc-rose); font-family: "Cormorant Garamond", serif; }
.jfc-product-price-detail-v2 .price-new { font-size: 2rem; }
.jfc-product-price-detail-v2 .price-old { color: #a79e98; text-decoration: line-through; }
.jfc-product-fineprint { display: flex; flex-wrap: wrap; gap: 10px 15px; color: #9a918b; font-size: .68rem; }
.jfc-discount-list { margin: 10px 0 0; padding: 0; list-style: none; color: #7d756f; font-size: .72rem; }
.jfc-product-identity { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 11px 24px; margin-top: 25px; }
.jfc-product-identity span { color: #5f5954; font-size: .76rem; }
.jfc-product-identity small { display: block; margin-bottom: 2px; color: #aaa09a; font-size: .56rem; letter-spacing: .12em; text-transform: uppercase; }
.jfc-product-identity a { color: inherit; }
.jfc-purchase-divider { display: flex; align-items: center; gap: 10px; margin: 26px 0; color: #c4a477; }
.jfc-purchase-divider::before,.jfc-purchase-divider::after { content: ""; flex: 1; height: 1px; background: var(--jfc-line); }
.jfc-purchase-divider span { font-size: .5rem; }

.jfc-product-purchase-inner .jfc-option-title { margin: 0 0 15px; color: #8c827c; font-size: .65rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.jfc-product-purchase-inner .form-label { color: #5d5752; font-family: "Cormorant Garamond", serif; font-size: 1rem; font-weight: 500; }
.jfc-product-purchase-inner .form-control,
.jfc-product-purchase-inner .form-select { min-height: 48px; border: 0; border-bottom: 1px solid #d2c5be; border-radius: 0; background: transparent; padding-left: 0; padding-right: 0; }
.jfc-product-purchase-inner .form-check { margin-bottom: 8px; }
.jfc-product-purchase-inner .form-check-input:checked { background-color: var(--jfc-rose); border-color: var(--jfc-rose); }
.jfc-product-purchase-inner .jfc-soft-divider { height: 1px; margin: 24px 0; background: var(--jfc-line); }
.jfc-product-purchase-inner .jfc-buy-row { display: grid; grid-template-columns: 96px 1fr; gap: 12px; margin-top: 25px; }
.jfc-product-purchase-inner .jfc-qty-wrap label { display: block; margin-bottom: 4px; color: #978e88; font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; }
.jfc-product-purchase-inner .jfc-qty-wrap .form-control { text-align: center; border: 1px solid #d5c8c1; padding: 0 8px; }
.jfc-product-purchase-inner .jfc-buy-button { width: 100%; min-height: 58px; border-radius: 0; background: var(--jfc-rose); border-color: var(--jfc-rose); letter-spacing: .08em; text-transform: uppercase; }
.jfc-product-purchase-inner .jfc-product-secondary-actions { display: flex; gap: 18px; margin-top: 15px; }
.jfc-product-purchase-inner .jfc-product-secondary-actions button { border: 0; background: transparent; color: #756c67; font-size: .7rem; }

.jfc-product-story-v2 { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; padding: 90px 0 40px; border-top: 1px solid var(--jfc-line); }
.jfc-product-story-intro h2 { margin: 7px 0 0; font-size: 3.4rem; line-height: .95; }
.jfc-product-accordions { border-top: 1px solid var(--jfc-line); }
.jfc-product-accordion { border-bottom: 1px solid var(--jfc-line); }
.jfc-product-accordion summary { display: flex; align-items: center; justify-content: space-between; min-height: 68px; list-style: none; cursor: pointer; color: #4c4844; font-family: "Cormorant Garamond", serif; font-size: 1.28rem; }
.jfc-product-accordion summary::-webkit-details-marker { display: none; }
.jfc-product-accordion summary i { font-family: "Manrope", sans-serif; font-size: 1rem; font-style: normal; font-weight: 300; transition: transform .2s ease; }
.jfc-product-accordion[open] summary i { transform: rotate(45deg); }
.jfc-product-accordion-content { padding: 0 8px 28px 0; color: #706963; font-size: .88rem; line-height: 1.85; }
.jfc-spec-group + .jfc-spec-group { margin-top: 24px; }
.jfc-spec-group h3 { margin: 0 0 10px; font-size: 1.35rem; }
.jfc-spec-row { display: grid; grid-template-columns: .8fr 1.2fr; gap: 20px; padding: 9px 0; border-bottom: 1px solid rgba(111,90,82,.09); }
.jfc-spec-row span { color: #948b85; }
.jfc-spec-row strong { color: #59534e; font-weight: 500; }
.jfc-tags { margin-top: 25px; }

/* Search / special -------------------------------------------------------- */

.jfc-search-page-v2,
.jfc-special-page-v2 { padding-bottom: 95px; }
.jfc-search-hero-v2,
.jfc-simple-hero-v2 { position: relative; margin: 18px 0 70px; padding: 72px 9%; background: #fff7f3; overflow: hidden; text-align: center; }
.jfc-search-hero-v2 h1,
.jfc-simple-hero-v2 h1 { margin: 0; font-size: clamp(4rem, 7vw, 7rem); font-weight: 400; line-height: .9; }
.jfc-search-hero-v2 > p,
.jfc-simple-hero-v2 > p { max-width: 560px; margin: 18px auto 0; color: #7b736d; }
.jfc-search-hero-sprig,.jfc-simple-hero-flower { position: absolute; left: -45px; bottom: -25px; width: 270px; height: 160px; background: url('../image/botanical-sprig.svg') center/contain no-repeat; opacity: .17; }
.jfc-search-form-v2 { position: relative; z-index: 1; width: min(850px, 100%); margin: 45px auto 0; text-align: left; }
.jfc-search-keyword-field { position: relative; }
.jfc-search-keyword-field label { display: block; margin-bottom: 7px; color: #9f948d; font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; }
.jfc-search-keyword-field input { width: 100%; height: 70px; padding: 0 70px 0 0; border: 0; border-bottom: 1px solid #c9bab2; background: transparent; color: #4d4844; font-family: "Cormorant Garamond", serif; font-size: 2rem; outline: none; }
.jfc-search-submit-v2 { position: absolute; right: 0; bottom: 8px; width: 52px; height: 52px; border: 1px solid var(--jfc-rose); border-radius: 50%; background: var(--jfc-rose); color: #fff; }
.jfc-search-options-v2 { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 28px; margin-top: 22px; }
.jfc-check-line { display: inline-flex; align-items: center; gap: 8px; color: #726a64; font-size: .72rem; }
.jfc-check-line input { accent-color: var(--jfc-rose); }

/* Footer ----------------------------------------------------------------- */

.jfc-footer-v2 { position: relative; padding: 72px 0 28px; background: #f8eee8; overflow: hidden; }
.jfc-footer-logo-wrap { display: flex; justify-content: center; }
.jfc-footer-logo { width: min(430px, 72vw); mix-blend-mode: multiply; }
.jfc-footer-rule { display: flex; align-items: center; gap: 12px; width: min(620px, 80%); margin: 22px auto 52px; color: #c4a273; }
.jfc-footer-rule::before,.jfc-footer-rule::after { content: ""; flex: 1; height: 1px; background: rgba(133,105,93,.18); }
.jfc-footer-rule span { font-size: .55rem; }
.jfc-footer-columns { display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); gap: 70px; padding: 0 0 58px; }
.jfc-footer-note p { max-width: 330px; margin: 4px 0 22px; color: #746b65; font-family: "Cormorant Garamond", serif; font-size: 1.22rem; line-height: 1.45; }
.jfc-footer-column h5 { margin: 0 0 17px; color: #766d67; font-family: "Manrope", sans-serif; font-size: .64rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.jfc-footer-column ul { margin: 0; padding: 0; list-style: none; }
.jfc-footer-column li + li { margin-top: 9px; }
.jfc-footer-column a { color: #5f5955; font-family: "Cormorant Garamond", serif; font-size: 1rem; }
.jfc-footer-bottom-v2 { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(114,91,81,.15); color: #a29891; font-size: .64rem; }
.jfc-footer-script { color: var(--jfc-rose); font-family: "Alex Brush", cursive; font-size: 1.45rem; }
.jfc-footer-sprig { position: absolute; width: 320px; height: 190px; background: url('../image/botanical-sprig.svg') center/contain no-repeat; opacity: .12; }
.jfc-footer-sprig-left { left: -80px; bottom: 5px; }
.jfc-footer-sprig-right { right: -80px; top: 30px; transform: rotate(180deg); }

/* Existing modules made editorial instead of boxed Bootstrap modules ------ */

.jfc-v2 .jfc-module,
.jfc-v2 .jfc-module-section { margin: 0; }
.jfc-v2 .jfc-module-heading,
.jfc-v2 .jfc-module-header { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 36px; }
.jfc-v2 .jfc-module-heading h2,
.jfc-v2 .jfc-module-header h3 { margin: 0; font-size: 3.3rem; font-weight: 400; }
.jfc-v2 .jfc-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 38px 24px; }
.jfc-v2 .jfc-product-grid > div { min-width: 0; }


/* v2.3.10: the slide-out menu trigger is mobile/tablet only.
   Desktop keeps the full navigation; the Menu trigger appears only at the
   same breakpoint where .jfc-desktop-menu is hidden. */
[data-jfc-menu-open] {
  display: none;
}

@media (max-width: 900px) {
  [data-jfc-menu-open] {
    display: inline-flex;
  }
}


/* v2.3.11: keep Search visible on very small screens.
   Menu and Search remain available while text labels can stay compact. */
@media (max-width: 640px) {
  .jfc-head-tools-left .jfc-head-tool {
    display: inline-flex;
  }
}

/* Responsive -------------------------------------------------------------- */

@media (max-width: 1100px) {
  .jfc-atelier-head { grid-template-columns: 1fr minmax(240px, 320px) 1fr; min-height: 162px; }
  .jfc-main-logo img { max-height: 145px; }
  .jfc-desktop-menu-list { gap: 11px; }
  .jfc-nav-floret { display: none; }
  .jfc-editorial-hero-inner { grid-template-columns: 1fr .8fr; gap: 30px; }
  .jfc-hero-copy-v2 { padding-left: 25px; }
  .jfc-manifesto-grid { grid-template-columns: repeat(3,1fr); }
  .jfc-manifesto-heading { grid-column: 1/-1; }
  .jfc-footer-columns { grid-template-columns: 1.4fr repeat(2,1fr); }
  .jfc-footer-column:last-child { grid-column: 2; }
  .jfc-product-stage-v2 { gap: 42px; grid-template-columns: minmax(0,1fr) minmax(360px,.8fr); }
  .jfc-product-purchase-inner { padding: 42px 34px; }
}

@media (max-width: 900px) {
  .jfc-v2 .jfc-shell,.jfc-v2 .container { width: min(calc(100% - 34px),1320px); }
  .jfc-atelier-head { grid-template-columns: 1fr 210px 1fr; min-height: 132px; }
  .jfc-main-logo img { max-height: 116px; }
  .jfc-tool-label { display: none; }
  .jfc-head-tools { gap: 9px; }
  .jfc-desktop-menu { display: none; }
  .jfc-nav-garden { border-top: 0; }
  .jfc-editorial-hero,.jfc-editorial-hero-inner { min-height: auto; }
  .jfc-editorial-hero-inner { grid-template-columns: 1fr; padding-top: 75px; padding-bottom: 75px; }
  .jfc-hero-copy-v2 { padding-left: 0; text-align: center; }
  .jfc-hero-copy-v2 p { margin-left: auto; margin-right: auto; }
  .jfc-hero-actions-v2 { justify-content: center; }
  .jfc-hero-brand-card { min-height: 420px; }
  .jfc-hero-number,.jfc-hero-side-note { display: none; }
  .jfc-section-heading-v2 { grid-template-columns: 1fr; gap: 18px; }
  .jfc-collection-hero-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .jfc-collection-title { padding-left: 0; }
  .jfc-collection-description { margin-left: auto; margin-right: auto; }
  .jfc-collection-image-wrap { max-width: 430px; margin: 0 auto; }
  .jfc-subcollection-band { grid-template-columns: 1fr; }
  .jfc-subcollection-label { border-right: 0; border-bottom: 1px solid var(--jfc-line); }
  .jfc-editorial-product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 50px 22px; }
  .jfc-editorial-product-item,.jfc-editorial-product-item-0,.jfc-editorial-product-item-1,.jfc-editorial-product-item-2,.jfc-editorial-product-item-3,.jfc-editorial-product-item-4,.jfc-editorial-product-item-5 { grid-column: span 1; padding-top: 0; margin-left: 0; }
  .jfc-editorial-product-item:nth-child(even) { padding-top: 45px; }
  .jfc-product-stage-v2 { grid-template-columns: 1fr; }
  .jfc-product-purchase-inner { position: relative; top: auto; }
  .jfc-product-story-v2 { grid-template-columns: 1fr; gap: 35px; }
  .jfc-footer-columns { grid-template-columns: repeat(2,1fr); gap: 45px; }
  .jfc-footer-note { grid-column: 1/-1; }
  .jfc-footer-column:last-child { grid-column: auto; }
  .jfc-signature-grid { grid-template-columns: .6fr 1.4fr; }
  .jfc-signature-copy { padding-right: 45px; }
}

@media (max-width: 640px) {
  .jfc-petal-note { font-size: .62rem; letter-spacing: .12em; }
  .jfc-petal-note-line { width: 20px; }
  .jfc-atelier-head { grid-template-columns: 62px 1fr 78px; min-height: 112px; gap: 4px; }
  .jfc-main-logo img { width: 225px; max-height: 100px; }
  
  .jfc-head-tools-right .jfc-account-wrap { display: none; }
  .jfc-head-tools { gap: 4px; }
  .jfc-cart-button { min-width: 32px; }
  .jfc-menu-drawer-panel,.jfc-filter-panel { padding: 28px 24px 34px; }
  .jfc-search-sheet { padding: 25px; }
  .jfc-editorial-hero-inner { padding-top: 58px; }
  .jfc-hero-copy-v2 h1 { font-size: clamp(3.7rem, 17vw, 5.6rem); }
  .jfc-hero-brand-card { min-height: 320px; }
  .jfc-hero-brand-card::before { inset: 2% 5% 10%; }
  .jfc-hero-card-caption { display: none; }
  .jfc-manifesto-strip { padding: 65px 0; }
  .jfc-manifesto-grid { grid-template-columns: 1fr; gap: 22px; }
  .jfc-manifesto-heading { grid-column: auto; }
  .jfc-manifesto-item { min-height: auto; }
  .jfc-manifesto-item p { margin-top: 14px; }
  .jfc-home-collection { padding: 75px 0; }
  .jfc-section-heading-v2 h2 { font-size: 3.2rem; }
  .jfc-signature-grid { grid-template-columns: 1fr; min-height: 0; }
  .jfc-signature-flower { min-height: 220px; }
  .jfc-signature-copy { padding: 45px 28px 55px; }
  .jfc-collection-hero { padding-bottom: 55px; }
  .jfc-collection-title h1 { font-size: clamp(3.6rem, 17vw, 5.4rem); }
  .jfc-subcollection-list { grid-template-columns: 1fr; }
  .jfc-subcollection-link { border-right: 0; border-bottom: 1px solid var(--jfc-line); }
  .jfc-collection-toolbar { align-items: flex-start; flex-direction: column; }
  .jfc-toolbar-selects { width: 100%; justify-content: space-between; }
  .jfc-minimal-select { flex: 1; flex-direction: column; align-items: flex-start; }
  .jfc-minimal-select select { width: 100%; min-width: 0; }
  .jfc-editorial-product-grid { grid-template-columns: 1fr; gap: 48px; }
  .jfc-editorial-product-item:nth-child(even) { padding-top: 0; }
  .jfc-product-image-link,.jfc-editorial-product-item-0 .jfc-product-image-link,.jfc-editorial-product-item-1 .jfc-product-image-link { aspect-ratio: 1 / 1.08; }
  .jfc-round-action,.jfc-quick-add { opacity: 1; transform: none; }
  .jfc-compare-action { display: none; }
  .jfc-product-stage-v2 { gap: 30px; padding-bottom: 65px; }
  .jfc-product-main-image { min-height: 380px; padding: 14px; border-radius: 46% 46% 2% 2% / 13% 13% 2% 2%; }
  .jfc-product-main-image img { min-height: 340px; border-radius: inherit; }
  .jfc-product-purchase-inner { padding: 38px 22px 34px; }
  .jfc-product-purchase-inner h1 { font-size: 3.6rem; }
  .jfc-product-identity { grid-template-columns: 1fr 1fr; }
  .jfc-product-purchase-inner .jfc-buy-row { grid-template-columns: 82px 1fr; }
  .jfc-product-story-v2 { padding-top: 65px; }
  .jfc-product-story-intro h2 { font-size: 2.8rem; }
  .jfc-search-hero-v2,.jfc-simple-hero-v2 { padding: 55px 22px; }
  .jfc-search-options-v2 { align-items: flex-start; flex-direction: column; }
  .jfc-footer-columns { grid-template-columns: 1fr 1fr; gap: 35px 22px; }
  .jfc-footer-note { grid-column: 1/-1; }
  .jfc-footer-bottom-v2 { flex-direction: column; text-align: center; }
  .jfc-pagination-v2 { flex-direction: column; align-items: flex-start; }
}

body.jfc-panel-open { overflow: hidden; }


/* ==========================================================================
   Julia Atelier v2.1 — responsive catalogue grid
   Clean 1 / 2 / 3 / 4 column progression with smaller, consistent imagery.
   ========================================================================== */

.jfc-v2 .jfc-collection-page .jfc-shell {
  width: min(calc(100% - 56px), 1520px);
  max-width: 1520px;
}

.jfc-v2 .jfc-editorial-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 54px 28px;
  align-items: start;
}

.jfc-v2 .jfc-editorial-product-item,
.jfc-v2 .jfc-editorial-product-item-0,
.jfc-v2 .jfc-editorial-product-item-1,
.jfc-v2 .jfc-editorial-product-item-2,
.jfc-v2 .jfc-editorial-product-item-3,
.jfc-v2 .jfc-editorial-product-item-4,
.jfc-v2 .jfc-editorial-product-item-5 {
  grid-column: auto;
  padding-top: 0;
  margin-left: 0;
  min-width: 0;
}

.jfc-v2 .jfc-product-image-link,
.jfc-v2 .jfc-editorial-product-item-0 .jfc-product-image-link,
.jfc-v2 .jfc-editorial-product-item-1 .jfc-product-image-link {
  aspect-ratio: 1 / 1;
}

@media (max-width: 1199px) {
  .jfc-v2 .jfc-editorial-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  .jfc-v2 .jfc-collection-page .jfc-shell {
    width: min(calc(100% - 34px), 1520px);
  }

  .jfc-v2 .jfc-editorial-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px 20px;
  }
}

@media (max-width: 599px) {
  .jfc-v2 .jfc-editorial-product-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

/* ==========================================================================
   Julia Atelier v2.2 — compact inner-page heroes + mobile cards
   Home editorial hero intentionally remains tall.
   ========================================================================== */

/* Inner collection/category headers: keep the floral feel without using
   half the viewport before the products begin. */
.jfc-v2 .jfc-collection-hero {
  padding: 16px 0 38px;
}

.jfc-v2 .jfc-collection-hero-grid {
  min-height: 250px;
  gap: 48px;
}

.jfc-v2 .jfc-collection-title h1 {
  margin-bottom: 14px;
  font-size: clamp(3.35rem, 5.2vw, 5.7rem);
  line-height: .9;
}

.jfc-v2 .jfc-collection-image-wrap {
  padding-top: 8px;
  padding-bottom: 4px;
}

.jfc-v2 .jfc-collection-image-frame {
  width: min(250px, 100%);
}

.jfc-v2 .jfc-collection-quote {
  min-height: 230px;
}

.jfc-v2 .jfc-collection-ring {
  width: 165px;
  height: 165px;
}

.jfc-v2 .jfc-collection-quote .jfc-script-small {
  width: 280px;
}

.jfc-v2 .jfc-subcollection-band {
  margin-top: 34px;
  margin-bottom: 54px;
}

/* Search, specials, account/information and other simple inner-page heroes. */
.jfc-v2 .jfc-search-hero-v2,
.jfc-v2 .jfc-simple-hero-v2 {
  margin: 12px 0 46px;
  padding: 40px 7%;
}

.jfc-v2 .jfc-search-hero-v2 h1,
.jfc-v2 .jfc-simple-hero-v2 h1 {
  font-size: clamp(3.2rem, 5.2vw, 5.4rem);
  line-height: .94;
}

/* The home page hero deliberately retains its full editorial height. */
.jfc-v2 .jfc-editorial-hero,
.jfc-v2 .jfc-editorial-hero-inner {
  /* intentionally unchanged */
}

/* One product per row on phones, including home-page product modules. */
@media (max-width: 599px) {
  .jfc-v2 .jfc-product-grid,
  .jfc-v2 .jfc-editorial-product-grid,
  .jfc-v2 #product-list {
    grid-template-columns: 1fr !important;
  }

  .jfc-v2 .jfc-product-grid {
    gap: 42px;
  }

  .jfc-v2 .jfc-collection-hero {
    padding: 8px 0 28px;
  }

  .jfc-v2 .jfc-collection-hero-grid {
    min-height: 0;
    gap: 18px;
  }

  .jfc-v2 .jfc-collection-title h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .jfc-v2 .jfc-collection-image-frame {
    width: min(220px, 72vw);
  }

  .jfc-v2 .jfc-search-hero-v2,
  .jfc-v2 .jfc-simple-hero-v2 {
    margin-bottom: 34px;
    padding: 30px 20px;
  }
}


/* ==========================================================================
   Julia Atelier v2.3 — cleaner collection art + botanical home hero
   ========================================================================== */

/* Category artwork: the photograph itself now follows the same arch as the
   frame instead of sitting as a smaller rectangle inside it. */
.jfc-v2 .jfc-collection-image-frame {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 49% 49% 9% 9% / 27% 27% 6% 6%;
  background: #f7eee9;
  box-shadow: 0 20px 48px rgba(88, 65, 67, .08);
}

.jfc-v2 .jfc-collection-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(122, 65, 82, .15);
  border-radius: inherit;
  pointer-events: none;
}

.jfc-v2 .jfc-collection-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transform: scale(1.003);
}

/* Decorative vertical captions were adding visual noise to the compact
   collection headers. Keep them gone even if an older cached Twig appears. */
.jfc-v2 .jfc-image-caption,
.jfc-v2 .jfc-hero-card-caption,
.jfc-v2 .jfc-hero-side-note {
  display: none !important;
}

/* Home hero: use the handcrafted portrait artwork on the right side of the hero. */
.jfc-v2 .jfc-hero-botanical-card {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.jfc-v2 .jfc-hero-botanical-card::before {
  content: "";
  position: absolute;
  width: min(430px, 86%);
  aspect-ratio: .86;
  border: 1px solid rgba(122, 65, 82, .14);
  border-radius: 49% 49% 11% 11% / 27% 27% 8% 8%;
  transform: translate(16px, 14px) rotate(1.5deg);
}

.jfc-v2 .jfc-hero-botanical-arch {
  position: relative;
  width: min(430px, 88%);
  aspect-ratio: .86;
  overflow: hidden;
  border-radius: 49% 49% 11% 11% / 27% 27% 8% 8%;
  background: linear-gradient(145deg, #fffaf7 0%, #f8ece8 48%, #f7f2ea 100%);
  box-shadow: 0 28px 70px rgba(91, 66, 71, .10);
}

.jfc-v2 .jfc-hero-botanical-arch::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
}

.jfc-v2 .jfc-hero-portrait-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  opacity: 1;
}

@media (max-width: 991px) {
  .jfc-v2 .jfc-hero-botanical-card { min-height: 390px; }
  .jfc-v2 .jfc-hero-botanical-card::before,
  .jfc-v2 .jfc-hero-botanical-arch { width: min(370px, 80vw); }
}

@media (max-width: 599px) {
  .jfc-v2 .jfc-hero-botanical-card { min-height: 320px; }
  .jfc-v2 .jfc-hero-botanical-card::before,
  .jfc-v2 .jfc-hero-botanical-arch { width: min(300px, 82vw); }
}


/* v2.3.2: keep overlay close controls above search/drawer decorative layers. */
.jfc-search-sheet > .jfc-sheet-close,
.jfc-menu-drawer .jfc-sheet-close,
.jfc-filter-drawer .jfc-sheet-close {
  z-index: 99999999999999 !important;
  pointer-events: auto;
}




/* ==============================
   Julia Atelier v3.0.0
   Editorial hero + bespoke account styling
   ============================== */
.jatelier-site .jfc-petal-note span { letter-spacing: 0.22em; }
.jatelier-home { overflow: clip; }
.jatelier-editorial-hero {
  position: relative;
  padding: clamp(3rem, 5vw, 5.5rem) 0 clamp(3rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 20% 20%, rgba(233, 220, 218, 0.58), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(233, 215, 224, 0.52), transparent 25%),
    linear-gradient(180deg, #f8f2ef 0%, #f6f0ec 100%);
}
.jatelier-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4.75rem);
}
.jatelier-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 40rem;
}
.jatelier-hero-copy h1 {
  margin: 1rem 0 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(4.2rem, 7.8vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #293127;
}
.jatelier-hero-copy h1 em {
  display: inline-block;
  font-style: italic;
  color: #8b4f67;
}
.jatelier-hero-copy p {
  max-width: 36rem;
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.85;
  color: #615d59;
}
.jatelier-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem 1.5rem;
  align-items: center;
  margin-top: 2rem;
}
.jatelier-hero-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.8rem;
}
.jatelier-hero-pillars span {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(170, 142, 139, 0.18);
  color: #665951;
  font-size: .86rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.jatelier-hero-showcase {
  position: relative;
  z-index: 1;
}
.jatelier-bloomstage {
  position: relative;
  min-height: clamp(480px, 63vw, 710px);
  max-width: 620px;
  margin-inline: auto;
  border-radius: 42% 42% 8% 8% / 18% 18% 8% 8%;
  background: linear-gradient(180deg, rgba(255,255,255,0.48), rgba(255,255,255,0.18));
  border: 1px solid rgba(219, 206, 201, 0.8);
  box-shadow: 0 30px 70px rgba(96, 79, 69, 0.09), inset 0 1px 0 rgba(255,255,255,0.65);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.jatelier-hero-glow {
  position: absolute;
  inset: 10% 8% 8%;
  border-radius: 44% 44% 7% 7% / 20% 20% 7% 7%;
  background: radial-gradient(circle at 50% 38%, rgba(247, 233, 239, 0.85), rgba(255,255,255,0.22) 58%, transparent 70%);
  pointer-events: none;
}
.jatelier-hero-vines, .jatelier-hero-petals {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.jatelier-hero-vines { z-index: 4; overflow: visible; }
.jatelier-vine-trail {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  opacity: .82;
  filter: drop-shadow(0 6px 8px rgba(61, 77, 53, 0.1));
  animation: jatelierDrawTrail 4.2s ease forwards;
}
.jatelier-leaf-cluster,
.jatelier-bud,
.jatelier-bloom-layer,
.jatelier-sprig-bloom {
  opacity: 0;
  transform-origin: center;
}
.jatelier-leaf-cluster { animation: jatelierRevealGrow 1.5s ease forwards; }
.jatelier-bud { animation: jatelierRevealGrow .85s ease forwards; }
.jatelier-bloom-layer,
.jatelier-sprig-bloom { animation: jatelierBloomReveal 1.25s ease forwards; }
.jatelier-hero-portrait-frame {
  position: absolute;
  inset: 17% 14% 9%;
  z-index: 3;
  display: grid;
  place-items: end center;
  overflow: hidden;
  border-radius: 34% 34% 4% 4% / 18% 18% 4% 4%;
}
.jatelier-hero-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 20px 40px rgba(88, 72, 62, 0.18));
}
.jatelier-floating-caption {
  position: absolute;
  left: 11%;
  top: 19%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: .15rem;
  color: #a78a57;
  text-shadow: 0 1px 0 rgba(255,255,255,0.7);
}
.jatelier-caption-script {
  font-family: "Alex Brush", cursive;
  font-size: clamp(2rem, 2.3vw, 2.65rem);
  line-height: 1;
}
.jatelier-caption-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: #a66580;
  letter-spacing: .06em;
}
.jatelier-signature-note {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  transform: translateX(-50%);
  z-index: 5;
  width: min(86%, 28rem);
  text-align: center;
  font-size: .84rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8d8a84;
}
.jatelier-petal {
  position: absolute;
  width: 18px;
  height: 26px;
  border-radius: 65% 65% 65% 65% / 78% 78% 40% 40%;
  background: linear-gradient(180deg, rgba(247, 219, 228, .95), rgba(226, 190, 207, .75));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45), 0 7px 12px rgba(150, 118, 136, .12);
  opacity: 0;
  filter: blur(.15px);
  animation: jatelierPetalFloat linear infinite;
}
.jatelier-petal:nth-child(3n) { background: linear-gradient(180deg, rgba(245, 233, 242, .95), rgba(210, 199, 229, .78)); }
.jatelier-petal:nth-child(4n) { background: linear-gradient(180deg, rgba(252, 241, 229, .95), rgba(236, 217, 188, .76)); }
.jatelier-hero-petal-cloud {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  opacity: .12;
  filter: blur(1px);
  background: radial-gradient(circle, rgba(204, 174, 184, .52), transparent 60%);
}
.jatelier-hero-petal-cloud-left { left: -2rem; bottom: 2rem; }
.jatelier-hero-petal-cloud-right { right: -2rem; top: 4rem; }

.jatelier-account-page {
  padding-top: 2.25rem;
  padding-bottom: 4rem;
}
.jatelier-breadcrumbs {
  margin-bottom: 1.3rem;
  background: transparent;
}
.jatelier-page-hero,
.jatelier-account-page .jfc-page-heading {
  margin-bottom: 1.8rem;
  padding: 1.35rem 1.5rem 1.1rem;
  border: 1px solid rgba(199, 184, 176, .35);
  background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(251,247,244,.82));
  border-radius: 24px;
  box-shadow: 0 14px 28px rgba(110, 91, 79, 0.05);
}
.jatelier-page-hero h1,
.jatelier-account-page .jfc-page-heading h1 { margin: .35rem 0 0; font-size: clamp(2rem, 4vw, 3rem); color: #2e322b; }
.jatelier-account-content,
.jatelier-account-page #content {
  padding: clamp(1.25rem, 2vw, 2rem);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(250,246,243,.92));
  border: 1px solid rgba(198, 185, 178, .36);
  box-shadow: 0 25px 45px rgba(95, 78, 66, 0.06);
}
.jatelier-fieldset,
.jatelier-account-page fieldset {
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.25rem .4rem;
  border-radius: 20px;
  border: 1px solid rgba(205, 192, 186, .5);
  background: rgba(255,255,255,.58);
}
.jatelier-account-page legend {
  float: none;
  width: auto;
  margin: 0 0 1rem;
  padding: 0 .35rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  color: #844a62;
}
.jatelier-account-page .table-responsive,
.jatelier-account-page .table,
.jatelier-account-page .list-group,
.jatelier-account-page .card,
.jatelier-account-page .alert {
  border-radius: 18px;
  overflow: hidden;
}
.jatelier-account-page .table {
  background: #fff;
  border-color: rgba(206, 192, 186, .55);
}
.jatelier-account-page .table > :not(caption) > * > * { padding: .95rem 1rem; }
.jatelier-account-page .table thead th {
  font-size: .84rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7b6e66;
  background: #fbf7f4;
  border-bottom-width: 1px;
}
.jatelier-account-page .form-control,
.jatelier-account-page .form-select {
  min-height: 52px;
  border-radius: 16px;
  border-color: rgba(190, 171, 160, .55);
  background: rgba(255,255,255,.95);
  box-shadow: none;
}
.jatelier-account-page textarea.form-control { min-height: 140px; }
.jatelier-account-page .btn,
.jatelier-account-page .jfc-btn,
.jatelier-account-page .btn-primary,
.jatelier-account-page .btn-light,
.jatelier-account-page .btn-danger {
  border-radius: 999px;
  padding: .82rem 1.35rem;
  border-width: 1px;
}
.jatelier-account-page .btn-primary {
  background: #8c4e67;
  border-color: #8c4e67;
}
.jatelier-account-page .btn-light {
  background: #fff;
  border-color: rgba(191, 173, 165, .6);
  color: #544b46;
}
.jatelier-account-page .btn-danger {
  background: #b96b75;
  border-color: #b96b75;
}
.jatelier-account-page .row.mb-3.required label::after {
  content: " *";
  color: #b96b75;
}
.jatelier-account-page .pagination { gap: .4rem; }
.jatelier-account-page .pagination .page-link {
  border-radius: 999px;
  border-color: rgba(191, 173, 165, .5);
  color: #584c46;
}
.jatelier-account-page .list-unstyled li + li { margin-top: .55rem; }
.jatelier-footer .jfc-footer-bottom-v2 span:first-child { color: #6e6660; }

@keyframes jatelierDrawTrail {
  0% { stroke-dashoffset: 1400; opacity: 0; }
  8% { opacity: .85; }
  100% { stroke-dashoffset: 0; opacity: .85; }
}
@keyframes jatelierRevealGrow {
  0% { opacity: 0; transform: scale(.25); }
  65% { opacity: 1; transform: scale(1.06); }
  100% { opacity: .96; transform: scale(1); }
}
@keyframes jatelierBloomReveal {
  0% { opacity: 0; transform: scale(.15) rotate(-8deg); }
  75% { opacity: 1; transform: scale(1.04) rotate(2deg); }
  100% { opacity: .98; transform: scale(1) rotate(0deg); }
}
@keyframes jatelierPetalFloat {
  0% { opacity: 0; transform: translate3d(0,0,0) rotate(0deg) scale(.72); }
  12% { opacity: .8; }
  100% { opacity: 0; transform: translate3d(-80px, 470px, 0) rotate(210deg) scale(1.05); }
}
@media (max-width: 1199px) {
  .jatelier-hero-grid { grid-template-columns: 1fr; }
  .jatelier-hero-copy { max-width: 48rem; }
  .jatelier-hero-showcase { width: min(100%, 640px); margin-inline: auto; }
}
@media (max-width: 767px) {
  .jatelier-editorial-hero { padding-top: 2.25rem; }
  .jatelier-hero-copy h1 { font-size: clamp(3.1rem, 13vw, 4.8rem); }
  .jatelier-hero-copy p { font-size: 1rem; }
  .jatelier-bloomstage { min-height: 520px; }
  .jatelier-floating-caption { left: 10.5%; top: 17.5%; }
  .jatelier-caption-script { font-size: 1.95rem; }
  .jatelier-caption-sub { font-size: .92rem; }
  .jatelier-signature-note { font-size: .72rem; bottom: .85rem; letter-spacing: .12em; }
  .jatelier-account-page { padding-top: 1.4rem; }
  .jatelier-account-content, .jatelier-account-page #content { padding: 1rem; }
  .jatelier-fieldset, .jatelier-account-page fieldset { padding: 1rem .9rem .2rem; }
}


/* ================================================================
   Julia Atelier 3.1 — Bespoke commerce, account & microinteractions
   ================================================================ */
:root {
  --ja-ink: #2d332c;
  --ja-wine: #8a4c65;
  --ja-wine-dark: #713d53;
  --ja-blush: #ead6dd;
  --ja-sage: #819775;
  --ja-cream: #f8f2ee;
  --ja-paper: #fffdfa;
  --ja-gold: #c4a06a;
  --ja-line: rgba(128, 105, 96, .16);
  --ja-shadow: 0 24px 65px rgba(91, 72, 62, .09);
}

/* Entrance motion */
.jatelier-reveal-item { opacity: 0; transform: translateY(20px); transition: opacity .75s ease var(--jatelier-delay,0ms), transform .75s cubic-bezier(.2,.7,.2,1) var(--jatelier-delay,0ms); }
.jatelier-reveal-item.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .jatelier-reveal-item { opacity:1; transform:none; transition:none; } }

/* Category polish */
.jatelier-collection-hero { isolation:isolate; overflow:hidden; }
.jatelier-collection-hero::after { content:""; position:absolute; inset:auto -5vw -10vw auto; width:28vw; aspect-ratio:1; border-radius:50%; border:1px solid rgba(139,79,103,.08); box-shadow:0 0 0 32px rgba(139,79,103,.025),0 0 0 64px rgba(139,79,103,.018); z-index:-1; }
.jatelier-product-grid .jfc-editorial-product-item { position:relative; }
.jatelier-product-grid .jfc-editorial-product-item::after { content:""; position:absolute; left:10%; right:10%; bottom:-6px; height:18px; background:radial-gradient(ellipse,rgba(92,72,60,.12),transparent 65%); opacity:0; transition:.35s ease; pointer-events:none; }
.jatelier-product-grid .jfc-editorial-product-item:hover::after { opacity:.65; transform:translateY(4px); }

/* Product page becomes a gallery/purchase editorial spread */
.jatelier-product-stage { position:relative; align-items:start; }
.jatelier-product-stage::before { content:""; position:absolute; width:220px; height:220px; right:36%; top:-42px; border-radius:50%; background:radial-gradient(circle,rgba(233,211,221,.35),transparent 68%); pointer-events:none; }
.jatelier-product-purchase { position:sticky; top:1.25rem; }
.jatelier-product-stage .jfc-product-main-image { transform:perspective(1400px) rotateX(var(--jatelier-tilt-x,0deg)) rotateY(var(--jatelier-tilt-y,0deg)); transition:transform .25s ease; box-shadow:0 36px 75px rgba(78,65,57,.10); }
.jatelier-product-halo { position:absolute; inset:-7% -8%; z-index:0; pointer-events:none; }
.jatelier-product-halo i { position:absolute; border-radius:50%; border:1px solid rgba(161,116,132,.12); }
.jatelier-product-halo i:nth-child(1){width:72%;aspect-ratio:1;left:-7%;top:3%;}
.jatelier-product-halo i:nth-child(2){width:48%;aspect-ratio:1;right:-4%;bottom:9%;border-color:rgba(128,151,117,.12);}
.jatelier-product-halo i:nth-child(3){width:18px;height:30px;right:6%;top:5%;border:0;background:linear-gradient(#f0cad6,#dbaabd);transform:rotate(28deg);border-radius:65% 65% 55% 55%;opacity:.48;}
.jatelier-product-story { border-top:1px solid var(--ja-line); margin-top:clamp(3rem,6vw,6rem); padding-top:clamp(2rem,4vw,4rem); }

/* Shared commerce hero */
.jatelier-commerce-hero { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(260px,.85fr); align-items:end; gap:2rem; padding:clamp(2rem,5vw,4.5rem) 0 2rem; border-bottom:1px solid var(--ja-line); }
.jatelier-commerce-hero h1 { margin:.35rem 0 0; font-family:"Cormorant Garamond",serif; font-size:clamp(3.3rem,7vw,6.4rem); line-height:.9; font-weight:500; color:var(--ja-ink); }
.jatelier-commerce-hero h1 em { color:var(--ja-wine); font-weight:500; }
.jatelier-commerce-hero > p { max-width:32rem; margin:0; color:#6d655f; line-height:1.8; }

/* Cart */
.jatelier-cart-page { background:linear-gradient(180deg,#faf6f3 0,#fff 48%); min-height:70vh; padding-bottom:5rem; }
.jatelier-cart-layout { display:grid; grid-template-columns:minmax(0,1fr) 300px; gap:clamp(1.5rem,4vw,3.5rem); align-items:start; padding-top:2.3rem; }
.jatelier-cart-main { min-width:0; }
.jatelier-cart-assurance { position:sticky; top:1.4rem; padding:1.7rem; border-radius:30px; background:linear-gradient(160deg,#f4e9e5,#f7f2eb); border:1px solid rgba(165,134,124,.15); box-shadow:var(--ja-shadow); }
.jatelier-cart-assurance h2 { margin:.35rem 0 1rem; font-family:"Cormorant Garamond",serif; font-size:2rem; color:var(--ja-ink); }
.jatelier-cart-assurance ul { list-style:none; padding:0; margin:0; display:grid; gap:.85rem; }
.jatelier-cart-assurance li { display:flex; align-items:center; gap:.8rem; color:#625c57; font-size:.92rem; }
.jatelier-cart-assurance li i { width:34px;height:34px;display:grid;place-items:center;border-radius:50%;background:rgba(255,255,255,.72);color:var(--ja-wine); }
.jatelier-cart-list-heading { padding:0 0 1.2rem; border-bottom:1px solid var(--ja-line); }
.jatelier-cart-item { border-radius:28px; background:rgba(255,255,255,.9); border:1px solid var(--ja-line); margin-bottom:1rem; padding:1.15rem; box-shadow:0 14px 34px rgba(97,76,66,.045); transition:transform .28s ease,box-shadow .28s ease; }
.jatelier-cart-item:hover { transform:translateY(-2px); box-shadow:0 20px 42px rgba(97,76,66,.075); }
.jatelier-cart-item .jfc-cart-item-image { border-radius:22px; overflow:hidden; background:#f7f0eb; }
.jatelier-cart-totals { margin-top:1.35rem; padding:1.4rem 1.5rem; border-radius:26px; background:#f8f2ee; border:1px solid var(--ja-line); }
.jatelier-cart-actions { padding-top:1.3rem; }

/* Checkout */
.jatelier-checkout-page { min-height:75vh; padding-bottom:5rem; background:linear-gradient(180deg,#faf6f3,#fff 34%); }
.jatelier-checkout-progress { display:flex; align-items:center; justify-content:center; gap:1rem; margin:1.4rem 0 2.1rem; color:#7a7069; font-family:"Manrope",sans-serif; font-size:.78rem; letter-spacing:.08em; text-transform:uppercase; }
.jatelier-checkout-progress span { display:flex;align-items:center;gap:.45rem;white-space:nowrap; }
.jatelier-checkout-progress b { color:var(--ja-wine); font-weight:600; }
.jatelier-checkout-progress i { display:block; width:min(10vw,90px); height:1px; background:linear-gradient(90deg,rgba(138,76,101,.35),rgba(129,151,117,.24)); }
.jatelier-checkout-content { display:grid; grid-template-columns:minmax(0,1.1fr) minmax(330px,.75fr); gap:2rem; align-items:start; }
.jatelier-checkout-primary { display:grid; gap:1.1rem; }
.jatelier-checkout-summary { position:sticky; top:1.2rem; display:grid; gap:1rem; }
.jatelier-checkout-step { padding:1.4rem; border-radius:28px; background:rgba(255,255,255,.92); border:1px solid var(--ja-line); box-shadow:0 15px 40px rgba(91,72,62,.05); }
.jatelier-checkout-step h2,.jatelier-checkout-step legend { font-family:"Cormorant Garamond",serif; color:var(--ja-ink); }
.jatelier-checkout-form { margin:0; }
.jatelier-checkout-fieldset { border:0!important; padding:0!important; background:transparent!important; margin:0!important; }
.jatelier-step-floret { color:var(--ja-gold); font-size:.65em; }
.jatelier-checkout-page .form-control,.jatelier-checkout-page .form-select { min-height:50px; border-radius:15px; border-color:rgba(177,157,148,.42); background:#fffdfa; box-shadow:none; }
.jatelier-checkout-page .btn { border-radius:999px; padding:.78rem 1.25rem; }
.jatelier-checkout-page .btn-primary { background:var(--ja-wine);border-color:var(--ja-wine); }
.jatelier-modal-content { border:1px solid var(--ja-line); border-radius:28px; overflow:hidden; box-shadow:0 36px 90px rgba(80,61,56,.18); }
.jatelier-confirm-card { padding:1.45rem; border-radius:30px; background:linear-gradient(160deg,#f7efeb,#fbf8f3); border:1px solid rgba(173,149,139,.18); box-shadow:var(--ja-shadow); }
.jatelier-confirm-heading h2 { font-family:"Cormorant Garamond",serif; font-size:2.1rem; margin:.25rem 0 1.1rem; }
.jatelier-confirm-products { display:grid; gap:.7rem; }
.jatelier-confirm-product { display:flex; justify-content:space-between; gap:1rem; padding:.85rem 0; border-bottom:1px solid rgba(150,128,117,.13); }
.jatelier-confirm-product > div { display:flex; flex-direction:column; gap:.15rem; }
.jatelier-confirm-product a { color:var(--ja-ink); font-family:"Cormorant Garamond",serif; font-size:1.18rem; }
.jatelier-confirm-product small { color:#827970; }
.jatelier-confirm-qty { color:var(--ja-wine); font-size:.8rem; }
.jatelier-confirm-totals { display:grid; gap:.45rem; padding:1rem 0; }
.jatelier-confirm-totals > div { display:flex; justify-content:space-between; gap:1rem; }
.jatelier-payment-action { padding-top:.7rem; }

/* Account portal */
.jatelier-account-portal { display:grid; grid-template-columns:minmax(0,1fr); }
.jatelier-account-content { overflow:hidden; }
.jatelier-account-welcome { position:relative; display:flex; justify-content:space-between; align-items:center; gap:2rem; padding:clamp(1.5rem,3vw,2.4rem); border-radius:30px; background:radial-gradient(circle at 90% 15%,rgba(232,204,215,.55),transparent 26%),linear-gradient(145deg,#f7efeb,#f6f2eb); border:1px solid var(--ja-line); overflow:hidden; }
.jatelier-account-welcome h1 { margin:.25rem 0 .35rem; font-family:"Cormorant Garamond",serif; font-size:clamp(2.7rem,5vw,4.4rem); color:var(--ja-ink); }
.jatelier-account-welcome p { margin:0; color:#6d645e; }
.jatelier-account-monogram { flex:0 0 auto; width:100px;height:100px;border-radius:50%;display:grid;place-items:center;font-family:"Alex Brush",cursive;font-size:4.7rem;color:var(--ja-wine);border:1px solid rgba(138,76,101,.14);box-shadow:0 0 0 16px rgba(255,255,255,.24); }
.jatelier-account-tile-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; margin-top:1.25rem; }
.jatelier-account-tile { min-height:138px; display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:1rem; padding:1.2rem; border-radius:24px; background:#fff; border:1px solid var(--ja-line); color:var(--ja-ink); box-shadow:0 12px 32px rgba(93,75,65,.045); transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease; }
.jatelier-account-tile:hover { transform:translateY(-4px); box-shadow:0 20px 42px rgba(93,75,65,.08); border-color:rgba(138,76,101,.25); color:var(--ja-ink); }
.jatelier-account-tile > i { width:44px;height:44px;display:grid;place-items:center;border-radius:50%;background:#f4e7eb;color:var(--ja-wine); }
.jatelier-account-tile span { display:flex;flex-direction:column;gap:.12rem; }
.jatelier-account-tile b { font-family:"Cormorant Garamond",serif;font-size:1.18rem;font-weight:600; }
.jatelier-account-tile small { color:#867d76; }
.jatelier-account-tile em { font-style:normal;color:var(--ja-gold); }
.jatelier-account-secondary { margin-top:1.3rem; padding:1.3rem 1.5rem; border-radius:24px; background:#f9f5f1; border:1px solid var(--ja-line); }
.jatelier-account-links { display:flex;flex-wrap:wrap;gap:.6rem .8rem;margin-top:.8rem; }
.jatelier-account-links a { padding:.55rem .8rem;border-radius:999px;background:#fff;color:#655c56;border:1px solid rgba(163,143,134,.18); }

/* Login */
.jatelier-login-shell { display:grid; grid-template-columns:minmax(0,.9fr) minmax(340px,.7fr); min-height:620px; border-radius:34px; overflow:hidden; border:1px solid var(--ja-line); box-shadow:var(--ja-shadow); background:#fff; }
.jatelier-login-story { position:relative; display:flex;flex-direction:column;justify-content:center;padding:clamp(2rem,5vw,4.5rem);background:radial-gradient(circle at 20% 80%,rgba(202,216,195,.58),transparent 31%),radial-gradient(circle at 80% 20%,rgba(232,206,216,.62),transparent 28%),linear-gradient(145deg,#f5ece9,#f6f1ea);overflow:hidden; }
.jatelier-login-story h1 { max-width:9ch;margin:.55rem 0 1rem;font-family:"Cormorant Garamond",serif;font-size:clamp(3rem,6vw,5.7rem);line-height:.9;color:var(--ja-ink); }
.jatelier-login-story p { max-width:30rem;color:#6c625c;line-height:1.75; }
.jatelier-login-panel { display:flex;flex-direction:column;justify-content:center;padding:clamp(2rem,4vw,3.3rem); }
.jatelier-login-panel h2 { margin:.35rem 0 1.3rem;font-family:"Cormorant Garamond",serif;font-size:2.4rem;color:var(--ja-ink); }
.jatelier-login-panel .form-control { min-height:54px;border-radius:16px;border-color:rgba(177,157,148,.42); }
.jatelier-new-account { margin-top:1.3rem;padding-top:1.1rem;border-top:1px solid var(--ja-line);display:flex;justify-content:space-between;gap:1rem;color:#766c65; }
.jatelier-new-account a { color:var(--ja-wine); }
.jatelier-login-bloom { position:absolute;right:8%;bottom:8%;width:120px;height:120px;opacity:.32; }
.jatelier-login-bloom i { position:absolute;left:50%;top:50%;width:42px;height:68px;transform-origin:50% 100%;border-radius:70% 70% 52% 52%;background:linear-gradient(#ecc6d2,#d89bb0); }
.jatelier-login-bloom i:nth-child(1){transform:translate(-50%,-100%) rotate(0deg)}
.jatelier-login-bloom i:nth-child(2){transform:translate(-50%,-100%) rotate(90deg)}
.jatelier-login-bloom i:nth-child(3){transform:translate(-50%,-100%) rotate(180deg)}
.jatelier-login-bloom i:nth-child(4){transform:translate(-50%,-100%) rotate(270deg)}
.jatelier-login-bloom span { position:absolute;left:50%;top:50%;width:25px;height:25px;transform:translate(-50%,-50%);border-radius:50%;background:#b77b8f; }

/* Account lists/cards */
.jatelier-page-hero { position:relative;overflow:hidden; }
.jatelier-page-hero-mark { position:absolute;right:1.5rem;top:50%;transform:translateY(-50%);font-size:2.2rem;color:rgba(196,160,106,.48); }
.jatelier-address-grid,.jatelier-order-grid,.jatelier-wishlist-grid { display:grid;gap:1rem; }
.jatelier-address-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
.jatelier-address-card { display:grid;grid-template-columns:auto 1fr auto;gap:1rem;align-items:center;padding:1.2rem;border-radius:22px;background:#fff;border:1px solid var(--ja-line); }
.jatelier-address-icon { width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:#f2e7eb;color:var(--ja-wine); }
.jatelier-address-copy { color:#5f5752;line-height:1.55; }
.jatelier-default-badge { display:inline-block;margin-top:.5rem;padding:.25rem .55rem;border-radius:999px;background:#edf2e9;color:#64765d;font-size:.72rem;text-transform:uppercase;letter-spacing:.08em; }
.jatelier-address-actions { display:flex;gap:.5rem; }
.jatelier-address-actions a { width:36px;height:36px;border-radius:50%;display:grid;place-items:center;background:#faf5f2;color:var(--ja-wine); }
.jatelier-order-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
.jatelier-order-card { padding:1.3rem;border-radius:24px;background:#fff;border:1px solid var(--ja-line);box-shadow:0 12px 30px rgba(93,75,65,.04); }
.jatelier-order-head { display:flex;justify-content:space-between;gap:1rem;padding-bottom:.85rem;border-bottom:1px solid var(--ja-line); }
.jatelier-order-head span { font-family:"Cormorant Garamond",serif;font-size:1.35rem;color:var(--ja-ink); }
.jatelier-order-head b { font-size:.78rem;padding:.35rem .65rem;border-radius:999px;background:#edf2e9;color:#65745f; }
.jatelier-order-meta { display:grid;grid-template-columns:repeat(3,1fr);gap:.75rem;padding:1rem 0; }
.jatelier-order-meta span { display:flex;flex-direction:column;color:#5c5550; }
.jatelier-order-meta small { color:#958981;text-transform:uppercase;letter-spacing:.07em;font-size:.68rem; }
.jatelier-pagination-row { display:flex;justify-content:space-between;gap:1rem;align-items:center;margin-top:1.2rem; }
.jatelier-wishlist-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
.jatelier-wishlist-card { display:flex;flex-direction:column;border-radius:26px;background:#fff;border:1px solid var(--ja-line);overflow:hidden;box-shadow:0 14px 35px rgba(93,75,65,.04); }
.jatelier-wishlist-image { aspect-ratio:1;overflow:hidden;background:#f5efea; }
.jatelier-wishlist-image img { width:100%;height:100%;object-fit:cover;transition:transform .55s ease; }
.jatelier-wishlist-card:hover .jatelier-wishlist-image img { transform:scale(1.035); }
.jatelier-wishlist-copy { padding:1rem 1rem .5rem;display:flex;flex-direction:column;gap:.22rem; }
.jatelier-wishlist-copy h3 { margin:0;font-family:"Cormorant Garamond",serif;font-size:1.45rem;color:var(--ja-ink); }
.jatelier-wishlist-copy span,.jatelier-wishlist-copy small { color:#8b817a;font-size:.78rem; }
.jatelier-wishlist-price { margin-top:.45rem;color:var(--ja-wine);font-size:1.05rem; }
.jatelier-wishlist-actions { margin-top:auto;padding:.7rem 1rem 1rem;display:grid;grid-template-columns:1fr 1fr;gap:.5rem; }
.jatelier-empty-state { padding:2.5rem;text-align:center;border-radius:26px;background:#f8f3ef;border:1px dashed rgba(151,126,116,.24);color:#756b64; }
.jatelier-form-actions { margin-top:1rem;text-align:right; }
.jatelier-data-table { border-radius:18px;overflow:hidden;background:#fff; }

@media (max-width: 1100px) {
  .jatelier-cart-layout { grid-template-columns:1fr; }
  .jatelier-cart-assurance { position:static; }
  .jatelier-checkout-content { grid-template-columns:1fr; }
  .jatelier-checkout-summary { position:static; }
  .jatelier-account-tile-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .jatelier-wishlist-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 767px) {
  .jatelier-commerce-hero { grid-template-columns:1fr; padding-top:1.5rem; }
  .jatelier-commerce-hero h1 { font-size:clamp(3rem,14vw,4.8rem); }
  .jatelier-checkout-progress { justify-content:flex-start;overflow:auto;padding-bottom:.4rem; }
  .jatelier-checkout-progress i { width:34px;flex:0 0 34px; }
  .jatelier-account-tile-grid,.jatelier-order-grid,.jatelier-address-grid,.jatelier-wishlist-grid { grid-template-columns:1fr; }
  .jatelier-login-shell { grid-template-columns:1fr;min-height:0; }
  .jatelier-login-story { min-height:360px; }
  .jatelier-account-welcome { align-items:flex-start; }
  .jatelier-account-monogram { width:72px;height:72px;font-size:3.4rem; }
  .jatelier-order-meta { grid-template-columns:1fr 1fr; }
  .jatelier-cart-item { padding:.9rem; }
}

/* ================================================================
   Julia Atelier 3.2 — petal-led motion, bespoke checkout/account polish
   ================================================================ */

/* Faster loader */
#loader.jfc-home-loader { transition: opacity .55s ease, visibility .55s ease; }
#loader #wreath-wrap { animation-duration: .45s; }
#loader .leaf-cluster { animation-duration: .42s; }
#loader .bud { animation-duration: .32s; }
#loader .petal-layer { animation-duration: .5s; }
#loader .blossom { animation-duration: .42s; }
#loader #ornament { animation-duration: .55s; }
#loader.jfc-fonts-ready #logo-text { animation-duration: .62s; }
#loader .dots { animation-duration: .52s; }
#loader .dots span { animation-duration: .7s; }

/* Generic floating petal field */
.jatelier-petal-field,
.jatelier-hero-petals {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.jatelier-falling-petal {
  position: absolute;
  top: -12%;
  width: var(--petal-size, 18px);
  height: calc(var(--petal-size, 18px) * 1.38);
  border-radius: 68% 68% 58% 58% / 82% 82% 42% 42%;
  opacity: 0;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(var(--petal-scale, 1));
  filter: blur(var(--petal-blur, 0px));
  background: linear-gradient(180deg, rgba(250, 232, 239, .98), rgba(223, 189, 205, .86));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5), 0 10px 20px rgba(134, 97, 113, .12);
  animation: jatelierPetalDrift var(--petal-duration, 14s) linear var(--petal-delay, 0s) infinite;
}
.jatelier-falling-petal:nth-child(3n) { background: linear-gradient(180deg, rgba(251, 241, 228, .98), rgba(232, 212, 182, .85)); }
.jatelier-falling-petal:nth-child(4n) { background: linear-gradient(180deg, rgba(244, 234, 244, .98), rgba(212, 199, 228, .85)); }
@keyframes jatelierPetalDrift {
  0%   { opacity: 0; transform: translate3d(0,-8%,0) rotate(0deg) scale(var(--petal-scale,1)); }
  8%   { opacity: var(--petal-opacity, .45); }
  22%  { transform: translate3d(calc(var(--petal-sway, 12px) * .45), 22vh,0) rotate(var(--petal-spin-a, 14deg)) scale(var(--petal-scale,1)); }
  48%  { transform: translate3d(calc(var(--petal-drift, 20px) * .4), 47vh,0) rotate(calc(var(--petal-spin-a, 14deg) * -0.7)) scale(var(--petal-scale,1)); }
  72%  { transform: translate3d(var(--petal-drift, 20px), 73vh,0) rotate(var(--petal-spin-b, 28deg)) scale(var(--petal-scale,1)); }
  100% { opacity: 0; transform: translate3d(calc(var(--petal-drift, 20px) + var(--petal-sway, 12px)), 108vh,0) rotate(calc(var(--petal-spin-b, 28deg) * -1)) scale(var(--petal-scale,1)); }
}
@media (prefers-reduced-motion: reduce) {
  .jatelier-falling-petal { display: none; }
}

/* Home hero refresh */
.jatelier-editorial-hero {
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3.2rem, 5.6vw, 6.25rem) 0 clamp(3rem, 5vw, 5.5rem);
  background:
    radial-gradient(circle at 20% 20%, rgba(236, 224, 222, .58), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(233, 220, 228, .48), transparent 24%),
    linear-gradient(180deg, #f9f4f0 0%, #fffaf6 100%);
}
.jatelier-petal-field-hero { z-index: 1; opacity: .95; }
.jatelier-hero-grid { position: relative; z-index: 2; }
.jatelier-hero-copy { max-width: 42rem; }
.jatelier-hero-copy h1 { font-size: clamp(4.5rem, 8.4vw, 8.6rem); }
.jatelier-hero-copy p { max-width: 35rem; color: #645c57; }
.jatelier-hero-showcase { z-index: 2; }
.jatelier-bloomstage {
  min-height: clamp(500px, 65vw, 735px);
  max-width: 630px;
  border-radius: 42% 42% 8% 8% / 19% 19% 8% 8%;
  background: linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.18));
  backdrop-filter: blur(8px);
  border: 1px solid rgba(219, 206, 201, .85);
  box-shadow: 0 40px 90px rgba(91, 71, 61, .10), inset 0 1px 0 rgba(255,255,255,.72);
}
.jatelier-bloomstage::before {
  content: "";
  position: absolute;
  inset: 3.5% 4.5% 4.2%;
  border-radius: 44% 44% 7% 7% / 21% 21% 7% 7%;
  border: 1px solid rgba(188, 165, 176, .24);
  pointer-events: none;
}
.jatelier-hero-orbit {
  position: absolute;
  inset: 11% 9% 8%;
  border-radius: 46% 46% 8% 8% / 19% 19% 8% 8%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
  background: radial-gradient(circle at 50% 32%, rgba(248, 235, 240, .72), rgba(255,255,255,0) 54%);
  z-index: 1;
}
.jatelier-hero-glow { inset: 9% 8% 8%; }
.jatelier-hero-portrait-frame { inset: 16% 12% 8%; z-index: 3; }
.jatelier-hero-portrait-frame img { object-fit: contain; filter: drop-shadow(0 26px 44px rgba(88,72,62,.17)); }
.jatelier-floating-caption { z-index: 4; }
.jatelier-signature-note,
.jatelier-hero-pillars,
.jatelier-hero-vines,
.jatelier-hero-petal-cloud { display: none !important; }

/* Homepage modules / featured cards */
.jfc-product-module {
  position: relative;
}
.jfc-module-heading {
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}
.jfc-module-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(140px, 28vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(139,79,103,.28), rgba(139,79,103,0));
}
.jfc-product-tile {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(253,248,244,.96));
  border: 1px solid rgba(166, 136, 124, .14);
  padding: 14px 14px 18px;
  box-shadow: 0 18px 45px rgba(97,76,66,.05);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}
.jfc-product-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(97,76,66,.09);
  border-color: rgba(139,79,103,.22);
}
.jfc-product-tile::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.52);
  pointer-events: none;
}
.jfc-product-tile-media { border-radius: 22px; }
.jfc-product-image-link,
.jfc-product-tile-media,
.jfc-product-image-link img { border-radius: 22px; }
.jfc-product-tile-copy { padding: 18px 6px 4px; }
.jfc-quick-add { border-radius: 999px; }
.jfc-round-action { backdrop-filter: blur(10px); }
.jfc-product-title-row h3 { font-size: 1.7rem; }
.jfc-product-view-link { letter-spacing: .14em; }
.jfc-home-content > * + * { margin-top: 4.5rem; }

/* Julia touch section */
.jfc-signature-panel {
  position: relative;
  padding: 0 0 7rem;
  background: linear-gradient(180deg, #fffaf7 0%, #fff 100%);
  overflow: hidden;
}
.jfc-signature-grid {
  position: relative;
  z-index: 2;
  min-height: 520px;
  border-radius: 38px;
  grid-template-columns: .9fr 1.1fr;
  background: linear-gradient(135deg, #8b4f67 0%, #7b4560 42%, #6d4158 100%);
  box-shadow: 0 28px 70px rgba(88,63,73,.18);
}
.jfc-signature-flower {
  min-height: 520px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.16), rgba(255,255,255,0) 60%),
    url('../image/botanical-sprig.svg') 56% 54%/72% auto no-repeat;
  opacity: .88;
}
.jfc-signature-copy { padding: 78px 84px 78px 20px; }
.jfc-signature-copy p { max-width: 35rem; }
.jfc-pill-button-light { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.22); }
.jatelier-petal-field-section { opacity: .78; }

/* Category hero refresh */
.jatelier-collection-hero::after,
.jfc-collection-sprig,
.jfc-collection-ring { display: none !important; }
.jatelier-collection-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdfa 0%, #fff8f4 100%);
}
.jatelier-petal-field-category { z-index: 0; opacity: .82; }
.jfc-collection-hero-grid { position: relative; z-index: 1; }
.jfc-collection-image-wrap { padding: 10px 0 0; }
.jfc-collection-image-frame {
  width: min(340px, 100%);
  padding: 14px;
  border-radius: 42% 42% 8% 8% / 22% 22% 6% 6%;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.32));
  box-shadow: 0 24px 60px rgba(90,72,61,.08);
}
.jfc-collection-image-frame img { border-radius: inherit; }
.jfc-collection-title { position: relative; }

/* Product purchase petals */
.jatelier-product-purchase {
  position: sticky;
  top: 1.25rem;
  overflow: hidden;
}
.jatelier-petal-field-purchase { opacity: .72; z-index: 0; }
.jatelier-product-purchase .jfc-product-purchase-inner { position: relative; z-index: 1; }
.jatelier-product-purchase::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,0));
  pointer-events: none;
}

/* Cart */
.jatelier-cart-page { padding-bottom: 4rem; }
.jatelier-cart-hero h1 { font-size: clamp(2.85rem, 5vw, 4.8rem); }
.jatelier-cart-layout-wide { grid-template-columns: minmax(0, 1fr); gap: 0; }
.jatelier-cart-assurance { display: none; }
.jatelier-cart-main { padding-top: 2rem; }

/* Checkout polish */
.jatelier-checkout-page {
  background: linear-gradient(180deg, #faf6f3 0%, #fff 50%);
  padding-bottom: 4.5rem;
}
.jatelier-checkout-progress {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  margin: 1.75rem 0 2.25rem;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--ja-line);
  box-shadow: 0 14px 35px rgba(97,76,66,.04);
}
.jatelier-checkout-progress span { display:flex; align-items:center; gap:.8rem; color:#5f5852; justify-content:center; font-size:.92rem; }
.jatelier-checkout-progress span b { display:grid; place-items:center; width:2rem; height:2rem; border-radius:50%; background:#8b4f67; color:#fff; font-size:.85rem; }
.jatelier-checkout-progress i { display:block; width:44px; height:1px; background:rgba(139,79,103,.18); }
.jatelier-checkout-layout { padding-top: .5rem; }
.jatelier-checkout-content { display:grid; grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr); gap:1.5rem 1.75rem; }
.jatelier-checkout-primary,
.jatelier-checkout-summary { display:grid; gap:1.25rem; align-content:start; }
.jatelier-checkout-step {
  position: relative;
  padding: 1.35rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(250,246,243,.96));
  border: 1px solid rgba(188, 165, 156, .18);
  box-shadow: 0 20px 48px rgba(97,76,66,.05);
  overflow: hidden;
}
.jatelier-checkout-step::before {
  content: attr(data-step);
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: .9rem;
  border-radius: 50%;
  background: rgba(139,79,103,.12);
  color: #8b4f67;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
}
.jatelier-checkout-step::after {
  content: attr(data-step-label);
  position: absolute;
  top: 1.55rem;
  left: 4.7rem;
  color: #8b817a;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.jatelier-checkout-step .jatelier-checkout-form > p:first-child,
.jatelier-checkout-step > p:first-child { margin-top: 1rem; color:#6b645f; }
.jatelier-checkout-step fieldset,
.jatelier-checkout-step .jatelier-confirm-card {
  border: 0;
  padding: 1rem 0 0;
  margin: 0;
  background: transparent;
}
.jatelier-checkout-step legend,
.jatelier-checkout-step .jatelier-confirm-heading h2 {
  margin: .5rem 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--ja-ink);
}
.jatelier-checkout-step .input-group-text { border-radius: 18px 0 0 18px; border-color: rgba(190,171,160,.55); background:#fff; }
.jatelier-checkout-step .form-control,
.jatelier-checkout-step .form-select,
.jatelier-checkout-step textarea,
.jatelier-checkout-step .btn {
  border-radius: 18px;
}
.jatelier-checkout-step .btn-primary { background:#8b4f67; border-color:#8b4f67; }
.jatelier-confirm-card { background: transparent; }
.jatelier-confirm-products { display:grid; gap:.85rem; margin-top:1rem; }
.jatelier-confirm-product { border-radius:18px; background:#fff; padding:1rem 1rem; border:1px solid rgba(188,165,156,.16); }
.jatelier-confirm-totals { margin-top: 1rem; border-top:1px solid var(--ja-line); padding-top:1rem; }

/* Account pages */
.jatelier-page-hero,
.jatelier-account-page .jfc-page-heading {
  margin-bottom: 1.3rem;
  padding: .25rem 0 .15rem;
  border: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.jatelier-page-hero .jfc-eyebrow,
.jatelier-account-page .jfc-page-heading .jfc-eyebrow { color:#8a7e77; }
.jatelier-page-hero h1,
.jatelier-account-page .jfc-page-heading h1 { margin-top: .2rem; }
.jatelier-account-page .jatelier-account-portal,
.jatelier-account-page .row { align-items: start; }
.jatelier-account-page .list-group { border-radius: 0; overflow: visible; }
.jatelier-account-nav {
  position: sticky;
  top: 1.2rem;
  padding: 1.35rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(249,245,241,.98));
  border: 1px solid rgba(188,165,156,.18);
  box-shadow: 0 18px 46px rgba(97,76,66,.05);
}
.jatelier-account-nav h3 {
  margin: .3rem 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--ja-ink);
}
.jatelier-account-nav-links { display: grid; gap: .45rem; }
.jatelier-account-nav-link {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .85rem 1rem;
  border-radius: 18px;
  color: #534943;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(188,165,156,.12);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.jatelier-account-nav-link:hover {
  transform: translateX(4px);
  background: #fff;
  color: var(--ja-wine);
  box-shadow: 0 10px 28px rgba(97,76,66,.06);
}
.jatelier-account-nav-link i { width: 18px; text-align: center; color: #8b4f67; }
.jatelier-account-content,
.jatelier-account-page #content {
  border-radius: 30px;
}
.jatelier-account-secondary { margin-top: 1.3rem; }
.jatelier-wishlist-card { border-radius: 30px; }
.jatelier-wishlist-image { aspect-ratio: .92; }
.jatelier-wishlist-image img { object-fit: cover; }

@media (max-width: 1199px) {
  .jatelier-checkout-content { grid-template-columns: 1fr; }
}
@media (max-width: 991px) {
  .jatelier-checkout-progress { grid-template-columns: 1fr; border-radius: 26px; }
  .jatelier-checkout-progress i { display:none; }
  .jfc-signature-grid { grid-template-columns: 1fr; }
  .jfc-signature-flower { min-height: 250px; }
  .jfc-signature-copy { padding: 42px 28px 52px; }
  .jatelier-account-nav { position: static; margin-bottom: 1rem; }
}
@media (max-width: 767px) {
  .jatelier-hero-copy h1 { font-size: clamp(3.4rem, 13vw, 5.2rem); }
  .jatelier-bloomstage { min-height: 520px; }
  .jatelier-floating-caption { left: 10%; top: 17%; }
  .jatelier-cart-hero h1 { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .jatelier-checkout-step::after { position: static; display: block; margin-top: -.2rem; margin-bottom: .6rem; }
}

/* ======================================================================
   Julia Atelier 3.3 — hero simplification, petal motion, cart/checkout polish
   ====================================================================== */

/* Home hero: back to text-left / image-right, with petals over the full stage */
.jatelier-editorial-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdfa 0%, #fff7f2 100%);
}
.jatelier-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
}
.jatelier-hero-copy { max-width: 42rem; }
.jatelier-hero-copy p { max-width: 35rem; }
.jatelier-hero-showcase {
  justify-self: end;
  width: min(100%, 520px);
}
.jatelier-hero-portrait-shell {
  position: relative;
  padding: 24px;
  border-radius: 44% 44% 10% 10% / 22% 22% 8% 8%;
  background: linear-gradient(180deg, rgba(255,255,255,.6), rgba(255,255,255,.18));
  box-shadow: 0 26px 65px rgba(92,71,60,.08);
  backdrop-filter: blur(5px);
}
.jatelier-hero-portrait-shell::before,
.jatelier-hero-portrait-shell::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.44);
  pointer-events: none;
}
.jatelier-hero-portrait-shell::after {
  inset: auto auto 8% -4%;
  width: 34%;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(188,207,178,.24), rgba(188,207,178,0) 72%);
}
.jatelier-hero-portrait-frame {
  overflow: hidden;
  border-radius: 40% 40% 8% 8% / 18% 18% 6% 6%;
  background: #f7f0eb;
}
.jatelier-hero-portrait-frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* Product cards on homepage/featured modules reveal like category cards */
.jfc-product-module .jfc-product-grid > .jfc-editorial-product-item,
.jfc-product-module .jfc-product-stack > .jfc-editorial-product-item {
  min-width: 0;
}

/* Allow the made slowly heading to reveal in the same rhythm */
.jfc-manifesto-heading,
.jfc-signature-copy,
.jfc-signature-flower,
.jatelier-hero-copy,
.jatelier-hero-showcase { will-change: transform, opacity; }

/* Petal motion: more side-to-side drift and varied rotation */
.jatelier-petal-field,
.jatelier-hero-petals {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.jatelier-falling-petal {
  top: -14%;
  transform: translate3d(0, 0, 0) rotate(var(--petal-start-rot, 0deg)) scale(var(--petal-scale, 1));
  animation: jatelierPetalDrift var(--petal-duration, 14s) linear var(--petal-delay, 0s) infinite;
}
@keyframes jatelierPetalDrift {
  0% {
    opacity: 0;
    transform: translate3d(0, -10%, 0) rotate(var(--petal-start-rot, 0deg)) scale(var(--petal-scale,1));
  }
  7% { opacity: var(--petal-opacity, .42); }
  18% {
    transform: translate3d(calc(var(--petal-wiggle-a, 10px) * .65), 18vh, 0) rotate(calc(var(--petal-start-rot, 0deg) + var(--petal-spin-a, 12deg))) scale(var(--petal-scale,1));
  }
  34% {
    transform: translate3d(calc(var(--petal-sway, 14px) * -.35), 35vh, 0) rotate(calc(var(--petal-start-rot, 0deg) - (var(--petal-spin-a, 12deg) * .6))) scale(var(--petal-scale,1));
  }
  52% {
    transform: translate3d(calc(var(--petal-drift, 24px) * .35), 53vh, 0) rotate(calc(var(--petal-start-rot, 0deg) + var(--petal-spin-b, 24deg))) scale(var(--petal-scale,1));
  }
  70% {
    transform: translate3d(calc(var(--petal-wiggle-b, 14px) * -.55), 72vh, 0) rotate(calc(var(--petal-start-rot, 0deg) - (var(--petal-spin-b, 24deg) * .7))) scale(var(--petal-scale,1));
  }
  86% {
    opacity: calc(var(--petal-opacity, .42) * .85);
    transform: translate3d(calc(var(--petal-drift, 24px) + (var(--petal-sway, 14px) * .55)), 90vh, 0) rotate(calc(var(--petal-start-rot, 0deg) + (var(--petal-spin-a, 12deg) * .5))) scale(var(--petal-scale,1));
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(var(--petal-drift, 24px) + var(--petal-sway, 14px)), 108vh, 0) rotate(calc(var(--petal-start-rot, 0deg) - var(--petal-spin-b, 24deg))) scale(var(--petal-scale,1));
  }
}

/* Category heroes: remove ring/semi-circle, keep only petals */
.jatelier-collection-hero::after,
.jfc-collection-hero::before,
.jfc-collection-hero::after,
.jfc-collection-hero-grid::before,
.jfc-collection-hero-grid::after { display: none !important; content: none !important; }
.jatelier-collection-hero,
.jfc-collection-hero { position: relative; overflow: hidden; }
.jatelier-petal-field-category { inset: 0; z-index: 0; opacity: .9; }
.jfc-collection-hero-grid { position: relative; z-index: 1; }

/* Product page: keep the petals inside the purchase panel and remove stray static petal */
.jatelier-product-halo i:nth-child(3) { display: none !important; }
.jatelier-product-purchase {
  position: sticky;
  top: 1.25rem;
  overflow: hidden;
}
.jatelier-product-purchase .jfc-product-purchase-inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.jatelier-product-purchase .jatelier-petal-field-purchase {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .74;
}
.jatelier-product-purchase .jfc-product-purchase-inner > * {
  position: relative;
  z-index: 1;
}

/* Account dashboard: no duplicate side menu on the main account landing page */
.jatelier-account-dashboard .jatelier-account-portal {
  display: grid;
  grid-template-columns: 1fr;
}
.jatelier-account-dashboard .jatelier-account-portal > .jatelier-account-content {
  max-width: none;
}

/* Remove double-box feel from inner account page heroes */
.jatelier-page-hero {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0 0 1rem;
}
.jatelier-account-page .jatelier-page-hero-mark { display: none; }

/* Keep account wrappers polished, but don't apply the broad box styling to anything except the intended content pane */
.jatelier-account-page #content:not(.jatelier-account-content) {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

/* Cart: one hero only, smaller heading, clearer tools */
.jatelier-cart-hero h1 {
  font-size: clamp(2rem, 4.8vw, 3.3rem) !important;
  line-height: .98;
}
.jatelier-cart-main .accordion h2,
.jatelier-cart-main .accordion-button {
  font-size: 1rem;
  letter-spacing: .02em;
}
.jatelier-cart-main .accordion-body,
.jatelier-cart-main .accordion-body p,
.jatelier-cart-main .accordion-body label,
.jatelier-cart-main .accordion-body .form-control,
.jatelier-cart-main .accordion-body .form-select,
.jatelier-cart-main .accordion-body .btn {
  font-size: .96rem;
}
.jatelier-cart-main .accordion-body p.text-muted,
.jatelier-cart-main .accordion-body .text-muted { color: #6c625c !important; }

/* Checkout: single flowing column with clear sequencing */
.jatelier-checkout-progress {
  justify-content: flex-start;
  padding: 1rem 1.2rem;
}
.jatelier-checkout-progress span {
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6b625c;
}
.jatelier-checkout-layout { padding-top: .5rem; }
.jatelier-checkout-content { display: block; }
.jatelier-checkout-flow {
  counter-reset: checkout-step;
  display: grid;
  gap: 1.25rem;
}
.jatelier-checkout-step {
  position: relative;
  padding-top: 1.55rem;
}
.jatelier-checkout-step::before {
  counter-increment: checkout-step;
  content: counter(checkout-step, decimal-leading-zero);
}
.jatelier-checkout-step::after {
  content: attr(data-step-label);
}

/* Feature cards / category cards a touch more cohesive */
.jfc-product-module .jfc-product-grid,
.jfc-product-module .jfc-product-stack {
  gap: clamp(1.15rem, 2vw, 1.8rem);
}
.jfc-product-module .jfc-product-tile {
  height: 100%;
}

/* Loader: slightly snappier exit */
#loader.jfc-home-loader { transition: opacity .38s ease, visibility .38s ease; }

@media (max-width: 991px) {
  .jatelier-hero-grid { grid-template-columns: 1fr; }
  .jatelier-hero-showcase { justify-self: center; width: min(100%, 440px); }
  .jatelier-checkout-progress {
    gap: .6rem;
    flex-wrap: wrap;
  }
  .jatelier-checkout-progress i { display: none; }
}


/* ======================================================================
   Julia Atelier 3.4 — iOS loader optimisation + natural petal flutter
   ====================================================================== */

/* Proven iPhone / iPad loader optimisation from the approved earlier build.
   The final wreath keeps full density; roughly half the elements are already
   visible while the remainder animate, reducing WebKit repaint pressure. */
#loader.jfc-ios-loader #wreath-wrap,
#loader.jfc-ios-loader #wreath-svg,
#loader.jfc-ios-loader #text-block {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

#loader.jfc-ios-loader #wreath-wrap,
#loader.jfc-ios-loader #wreath-svg {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

#loader.jfc-ios-loader #text-block {
  -webkit-transform: none !important;
  transform: none !important;
}

#loader.jfc-ios-loader #text-block::before {
  filter: none;
  -webkit-filter: none;
  background: radial-gradient(
    ellipse at center,
    rgba(255,250,246,.96) 0%,
    rgba(255,250,246,.82) 46%,
    rgba(255,250,246,.36) 68%,
    rgba(255,250,246,0) 100%
  );
}

#loader.jfc-ios-loader #logo-text .brand,
#loader.jfc-ios-loader #logo-text .tagline {
  text-shadow: 0 1px 0 rgba(255,255,255,.72);
}

#loader.jfc-ios-loader .leaf-cluster,
#loader.jfc-ios-loader .bud,
#loader.jfc-ios-loader .petal-layer,
#loader.jfc-ios-loader .blossom {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

#loader.jfc-ios-loader #ornament,
#loader.jfc-ios-loader #logo-text .tagline,
#loader.jfc-ios-loader .dots {
  left: 0 !important;
}

#loader.jfc-ios-loader .jfc-ios-preloaded,
#loader.jfc-ios-loader .jfc-ios-preloaded .leaf-cluster,
#loader.jfc-ios-loader .jfc-ios-preloaded .bud,
#loader.jfc-ios-loader .jfc-ios-preloaded .petal-layer,
#loader.jfc-ios-loader .jfc-ios-preloaded .blossom {
  opacity: 1 !important;
  -webkit-animation: none !important;
  animation: none !important;
}

#loader.jfc-ios-loader .jfc-ios-preloaded .leaf-cluster,
#loader.jfc-ios-loader .jfc-ios-preloaded .bud,
#loader.jfc-ios-loader .jfc-ios-preloaded .petal-layer,
#loader.jfc-ios-loader .jfc-ios-preloaded .blossom,
#loader.jfc-ios-loader .leaf-cluster.jfc-ios-preloaded {
  -webkit-transform: scale(1) !important;
  transform: scale(1) !important;
}

#loader.jfc-ios-loader .leaf-cluster.jfc-ios-preloaded {
  opacity: 1 !important;
  -webkit-animation: none !important;
  animation: none !important;
}


@media (max-width: 640px) {
  #loader.jfc-ios-loader #wreath-wrap {
    width: min(72vw, 320px);
    height: min(72vw, 320px);
  }
}

/* Falling petals: keep the existing horizontal drift, but pivot each petal
   slowly around its bottom-centre so the top rocks from side to side as it
   descends, like a real petal fluttering rather than simply sliding. */
.jatelier-falling-petal {
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  will-change: transform, opacity;
}

@keyframes jatelierPetalDrift {
  0% {
    opacity: 0;
    transform: translate3d(0, -10%, 0)
      rotate(calc(var(--petal-start-rot, 0deg) + var(--petal-flutter-a, 7deg)))
      scale(var(--petal-scale,1));
  }
  7% { opacity: var(--petal-opacity, .42); }
  18% {
    transform: translate3d(calc(var(--petal-wiggle-a, 10px) * .65), 18vh, 0)
      rotate(calc(var(--petal-start-rot, 0deg) + var(--petal-flutter-b, -6deg)))
      scale(var(--petal-scale,1));
  }
  34% {
    transform: translate3d(calc(var(--petal-sway, 14px) * -.35), 35vh, 0)
      rotate(calc(var(--petal-start-rot, 0deg) + var(--petal-flutter-a, 7deg)))
      scale(var(--petal-scale,1));
  }
  52% {
    transform: translate3d(calc(var(--petal-drift, 24px) * .35), 53vh, 0)
      rotate(calc(var(--petal-start-rot, 0deg) + var(--petal-flutter-b, -6deg)))
      scale(var(--petal-scale,1));
  }
  70% {
    transform: translate3d(calc(var(--petal-wiggle-b, 14px) * -.55), 72vh, 0)
      rotate(calc(var(--petal-start-rot, 0deg) + var(--petal-flutter-a, 7deg)))
      scale(var(--petal-scale,1));
  }
  86% {
    opacity: calc(var(--petal-opacity, .42) * .85);
    transform: translate3d(calc(var(--petal-drift, 24px) + (var(--petal-sway, 14px) * .55)), 90vh, 0)
      rotate(calc(var(--petal-start-rot, 0deg) + var(--petal-flutter-b, -6deg)))
      scale(var(--petal-scale,1));
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(var(--petal-drift, 24px) + var(--petal-sway, 14px)), 108vh, 0)
      rotate(calc(var(--petal-start-rot, 0deg) + var(--petal-flutter-a, 7deg)))
      scale(var(--petal-scale,1));
  }
}


/* ======================================================================
   Julia Atelier 3.4.2 — luxury botanical details, no falling petals
   ====================================================================== */

/* Falling-petal system removed entirely. Decorative foliage is intentionally
   static and very low contrast for a calmer, premium editorial finish. */
.jatelier-petal-field,
.jatelier-hero-petals,
.jatelier-falling-petal,
.jatelier-petal-video-media {
  display: none !important;
}

/* Home hero — subtle opposing botanical corners. */
.jatelier-editorial-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.jatelier-editorial-hero::before,
.jatelier-editorial-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  background: url('../image/botanical-sprig.svg') center / contain no-repeat;
  pointer-events: none;
}
.jatelier-editorial-hero::before {
  top: -28px;
  right: -38px;
  width: clamp(180px, 18vw, 300px);
  height: clamp(108px, 11vw, 178px);
  opacity: .105;
  transform: rotate(178deg);
}
.jatelier-editorial-hero::after {
  left: -62px;
  bottom: -44px;
  width: clamp(210px, 20vw, 340px);
  height: clamp(125px, 12vw, 205px);
  opacity: .075;
  transform: rotate(-8deg);
}
.jatelier-editorial-hero .jatelier-hero-grid {
  position: relative;
  z-index: 1;
}

/* Category header — same visual language, deliberately restrained. */
.jatelier-collection-hero,
.jfc-collection-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.jatelier-collection-hero::before,
.jatelier-collection-hero::after {
  content: "" !important;
  display: block !important;
  position: absolute;
  z-index: 0;
  background: url('../image/botanical-sprig.svg') center / contain no-repeat;
  pointer-events: none;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.jatelier-collection-hero::before {
  top: -34px;
  right: -30px;
  width: clamp(170px, 17vw, 280px);
  height: clamp(102px, 10.5vw, 168px);
  opacity: .11;
  transform: rotate(178deg);
}
.jatelier-collection-hero::after {
  left: -72px;
  bottom: -52px;
  width: clamp(220px, 21vw, 350px);
  height: clamp(132px, 12.5vw, 210px);
  opacity: .07;
  transform: rotate(-7deg);
}
.jatelier-collection-hero .jfc-collection-hero-grid {
  position: relative;
  z-index: 1;
}

/* Product purchase card — retain the exact approved sprig treatment. */
.jfc-product-purchase-inner {
  position: relative;
  overflow: hidden;
}
.jfc-product-purchase-inner::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -22px;
  width: 150px;
  height: 90px;
  background: url('../image/botanical-sprig.svg') center / contain no-repeat;
  opacity: .13;
  transform: rotate(178deg);
  pointer-events: none;
}
.jfc-product-purchase-inner > * {
  position: relative;
  z-index: 1;
}

/* Julia Touch already carries the botanical artwork; keep it static and soft. */
.jfc-signature-panel .jfc-signature-flower {
  opacity: .72;
  filter: saturate(.7) brightness(1.42);
}

@media (max-width: 767px) {
  .jatelier-editorial-hero::before {
    right: -72px;
    opacity: .085;
  }
  .jatelier-editorial-hero::after {
    left: -95px;
    opacity: .055;
  }
  .jatelier-collection-hero::before {
    right: -70px;
    opacity: .085;
  }
  .jatelier-collection-hero::after {
    left: -96px;
    opacity: .05;
  }
}


/* ======================================================================
   Julia Atelier 3.4.3 — pre-paint scroll reveals + hero portrait sizing
   ====================================================================== */

/* The motion marker is added inline before the stylesheet is parsed. This
   prevents cards painting visibly, disappearing at DOM ready, then revealing. */
html.jatelier-motion-js .jatelier-reveal-zone,
html.jatelier-motion-js .jfc-editorial-product-item,
html.jatelier-motion-js .jatelier-account-tile,
html.jatelier-motion-js .jatelier-order-card,
html.jatelier-motion-js .jatelier-address-card,
html.jatelier-motion-js .jatelier-wishlist-card,
html.jatelier-motion-js .jfc-product-story-v2 > *,
html.jatelier-motion-js .jfc-manifesto-item,
html.jatelier-motion-js .jfc-manifesto-heading,
html.jatelier-motion-js .jfc-section-heading-v2,
html.jatelier-motion-js .jatelier-commerce-hero,
html.jatelier-motion-js .jatelier-checkout-step,
html.jatelier-motion-js .jfc-signature-grid,
html.jatelier-motion-js .jfc-signature-copy,
html.jatelier-motion-js .jfc-signature-flower,
html.jatelier-motion-js .jfc-module-heading,
html.jatelier-motion-js .jatelier-account-nav,
html.jatelier-motion-js .jatelier-page-hero,
html.jatelier-motion-js .jatelier-account-secondary,
html.jatelier-motion-js .jfc-subcollection-band,
html.jatelier-motion-js .jfc-collection-title,
html.jatelier-motion-js .jatelier-hero-copy,
html.jatelier-motion-js .jatelier-hero-showcase {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
}

html.jatelier-motion-js .jatelier-reveal-item {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity .75s ease var(--jatelier-delay, 0ms),
    transform .75s cubic-bezier(.2,.7,.2,1) var(--jatelier-delay, 0ms);
  will-change: opacity, transform;
}
html.jatelier-motion-js .jatelier-reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* The current home markup no longer uses the old absolutely-positioned
   bloomstage portrait. Explicitly return this frame to normal document flow
   so the full square artwork determines its own display area. */
.jatelier-hero-showcase {
  width: min(100%, 620px);
}
.jatelier-hero-portrait-shell {
  position: relative;
  width: 100%;
  padding: 18px;
}
.jatelier-hero-portrait-frame {
  position: relative !important;
  inset: auto !important;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 34% 34% 7% 7% / 17% 17% 6% 6%;
}
.jatelier-hero-portrait-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 991px) {
  .jatelier-hero-showcase { width: min(100%, 520px); }
}

@media (prefers-reduced-motion: reduce) {
  html.jatelier-motion-js .jatelier-reveal-zone,
  html.jatelier-motion-js .jfc-editorial-product-item,
  html.jatelier-motion-js .jatelier-account-tile,
  html.jatelier-motion-js .jatelier-order-card,
  html.jatelier-motion-js .jatelier-address-card,
  html.jatelier-motion-js .jatelier-wishlist-card,
  html.jatelier-motion-js .jfc-product-story-v2 > *,
  html.jatelier-motion-js .jfc-manifesto-item,
  html.jatelier-motion-js .jfc-manifesto-heading,
  html.jatelier-motion-js .jfc-section-heading-v2,
  html.jatelier-motion-js .jatelier-commerce-hero,
  html.jatelier-motion-js .jatelier-checkout-step,
  html.jatelier-motion-js .jfc-signature-grid,
  html.jatelier-motion-js .jfc-signature-copy,
  html.jatelier-motion-js .jfc-signature-flower,
  html.jatelier-motion-js .jfc-module-heading,
  html.jatelier-motion-js .jatelier-account-nav,
  html.jatelier-motion-js .jatelier-page-hero,
  html.jatelier-motion-js .jatelier-account-secondary,
  html.jatelier-motion-js .jfc-subcollection-band,
  html.jatelier-motion-js .jfc-collection-title,
  html.jatelier-motion-js .jatelier-hero-copy,
  html.jatelier-motion-js .jatelier-hero-showcase,
  html.jatelier-motion-js .jatelier-reveal-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ======================================================================
   Julia Atelier 3.4.5 — iOS Safari hero portrait clipping fix
   ====================================================================== */
/* iOS Safari can fail to clip a composited image to a percentage radius
   when the parent uses overflow:hidden. Apply the same radius directly to
   the image and force WebKit to honour the parent's clipping mask. */
.jatelier-hero-portrait-frame {
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  isolation: isolate;
}
.jatelier-hero-portrait-frame img {
  border-radius: inherit;
  -webkit-border-radius: inherit;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}


/* ======================================================================
   Julia Atelier 3.4.6 — compact sticky header
   ====================================================================== */
.jfc-atelier-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  isolation: isolate;
  transition: box-shadow .26s ease, background-color .26s ease, border-color .26s ease;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.jfc-petal-note {
  height: 31px;
  min-height: 31px;
  overflow: hidden;
  transition: height .26s ease, min-height .26s ease, opacity .18s ease, border-color .26s ease;
}
.jfc-atelier-head {
  transition: min-height .28s cubic-bezier(.2,.7,.2,1), padding .28s ease;
}
.jfc-main-logo img {
  transition: width .28s cubic-bezier(.2,.7,.2,1), max-height .28s cubic-bezier(.2,.7,.2,1), transform .28s ease;
}
.jfc-nav-garden {
  transition: background-color .26s ease, border-color .26s ease, box-shadow .26s ease;
}
.jfc-desktop-menu-list {
  transition: min-height .28s cubic-bezier(.2,.7,.2,1);
}
.jfc-desktop-menu-link {
  transition: color .2s ease, padding .28s ease, font-size .28s ease;
}

.jfc-atelier-header.is-scrolled {
  background: rgba(252,245,239,.965);
  border-bottom-color: rgba(102,83,75,.16);
  box-shadow: 0 10px 32px rgba(67,48,54,.10);
  -webkit-backdrop-filter: saturate(125%) blur(14px);
  backdrop-filter: saturate(125%) blur(14px);
}
.jfc-atelier-header.is-scrolled .jfc-petal-note {
  height: 0;
  min-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
}
.jfc-atelier-header.is-scrolled .jfc-atelier-head {
  min-height: 68px;
  padding-top: 3px;
  padding-bottom: 3px;
}
.jfc-atelier-header.is-scrolled .jfc-main-logo img {
  width: min(100%, 190px);
  max-height: 62px;
}
.jfc-atelier-header.is-scrolled .jfc-head-tools {
  gap: 13px;
}
.jfc-atelier-header.is-scrolled .jfc-head-tool,
.jfc-atelier-header.is-scrolled .jfc-cart-button {
  min-height: 34px;
}
.jfc-atelier-header.is-scrolled .jfc-desktop-menu-list {
  min-height: 39px;
}
.jfc-atelier-header.is-scrolled .jfc-desktop-menu-link {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: .96rem;
}
.jfc-atelier-header.is-scrolled .jfc-desktop-menu-link::after {
  bottom: 5px;
}
.jfc-atelier-header.is-scrolled .jfc-nav-garden {
  background: rgba(255,255,255,.22);
}

@media (max-width: 1100px) {
  .jfc-atelier-header.is-scrolled .jfc-atelier-head {
    min-height: 66px;
  }
  .jfc-atelier-header.is-scrolled .jfc-main-logo img {
    width: min(100%, 180px);
    max-height: 59px;
  }
}

@media (max-width: 900px) {
  .jfc-atelier-header.is-scrolled .jfc-atelier-head {
    min-height: 72px;
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .jfc-atelier-header.is-scrolled .jfc-main-logo img {
    width: min(100%, 168px);
    max-height: 64px;
  }
  .jfc-atelier-header.is-scrolled .jfc-head-tools {
    gap: 6px;
  }
}

@media (max-width: 640px) {
  .jfc-atelier-header.is-scrolled .jfc-atelier-head {
    grid-template-columns: 62px 1fr 78px;
    min-height: 68px;
  }
  .jfc-atelier-header.is-scrolled .jfc-main-logo img {
    width: min(100%, 154px);
    max-height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jfc-atelier-header,
  .jfc-petal-note,
  .jfc-atelier-head,
  .jfc-main-logo img,
  .jfc-nav-garden,
  .jfc-desktop-menu-list,
  .jfc-desktop-menu-link {
    transition: none !important;
  }
}


/* ======================================================================
   Julia Atelier 3.4.7 — stable desktop compact header + loader wordmark
   ====================================================================== */
/* Keep the desktop compact state on the desktop navigation system. The
   drawer trigger remains tablet/mobile-only even while the header is small. */
@media (min-width: 901px) {
  .jfc-atelier-header [data-jfc-menu-open] {
    display: none !important;
  }
  .jfc-atelier-header .jfc-desktop-menu {
    display: block !important;
  }
}



/* ======================================================================
   Julia Atelier 3.4.8 — viewport-safe side menu drawer
   ====================================================================== */
.jfc-menu-drawer {
  width: 100vw;
  height: 100vh;
}
@supports (height: 100dvh) {
  .jfc-menu-drawer { height: 100dvh; }
  .jfc-menu-drawer-panel { height: 100dvh; }
}


/* ======================================================================
   Julia Atelier 3.4.9 — responsive sticky-header stability + loader alignment
   ====================================================================== */
/* When the viewport crosses the desktop/mobile breakpoint, apply the new
   header geometry immediately. This prevents Chrome's responsive resize from
   animating between two different layout systems and appearing to flicker. */
.jfc-atelier-header.jfc-header-mode-switch,
.jfc-atelier-header.jfc-header-mode-switch .jfc-petal-note,
.jfc-atelier-header.jfc-header-mode-switch .jfc-atelier-head,
.jfc-atelier-header.jfc-header-mode-switch .jfc-main-logo img,
.jfc-atelier-header.jfc-header-mode-switch .jfc-nav-garden,
.jfc-atelier-header.jfc-header-mode-switch .jfc-desktop-menu-list,
.jfc-atelier-header.jfc-header-mode-switch .jfc-desktop-menu-link {
  transition: none !important;
}




/* ======================================================================
   Julia Atelier 3.4.12 — one loader alignment system on every browser
   ====================================================================== */
/* The loader text is centred by layout, not by platform-specific pixel nudges.
   All four elements share the same 100%-wide centre line on desktop, mobile
   and iOS: ornament, scripted wordmark, Handcrafted and dots. */
#loader #text-block,
#loader.jfc-ios-loader #text-block {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  transform: none !important;
  -webkit-transform: none !important;
  text-align: center !important;
}
#loader #logo-text,
#loader #logo-text .brand {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  left: auto !important;
  right: auto !important;
  transform-origin: center center;
  text-align: center !important;
}
#loader #ornament,
#loader #logo-text .tagline,
#loader .dots {
  left: auto !important;
  right: auto !important;
}


/* ======================================================================
   Julia Atelier 3.4.13 — true-centre header + viewport search overlay
   ====================================================================== */

/* The brand sits on the actual viewport centre line. Equal outer grid tracks
   prevent the larger account/cart tool cluster from pulling it off-centre. */
.jfc-atelier-head,
.jfc-atelier-header.is-scrolled .jfc-atelier-head {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
}
.jfc-main-logo {
  grid-column: 2;
  justify-self: center !important;
  margin: 0 !important;
  transform: none !important;
}
.jfc-head-tools-left {
  grid-column: 1;
  justify-self: start;
  min-width: 0;
}
.jfc-head-tools-right {
  grid-column: 3;
  justify-self: end;
  min-width: 0;
}

/* Search is one true viewport overlay everywhere, never a child-sized sheet
   inside the compact sticky header. */
.jfc-search-sheet {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 5000 !important;
  display: grid;
  place-items: center;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
@supports (height: 100dvh) {
  .jfc-search-sheet { height: 100dvh !important; }
}
.jfc-search-sheet-inner {
  width: min(760px, calc(100% - 48px));
  margin: auto;
}
.jfc-search-sheet .jfc-search-form {
  width: 100%;
  height: 64px;
}
.jfc-search-sheet .jfc-search-input {
  min-width: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  padding: 10px 8px;
}
.jfc-search-sheet .jfc-search-button {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  font-size: 1rem;
}

/* The drawer's Search action is the first functional item beneath the logo. */
.jfc-drawer-search {
  appearance: none;
  display: none;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 54px;
  margin: 16px 0 26px;
  padding: 0 4px;
  border: 0;
  border-top: 1px solid rgba(97,80,72,.14);
  border-bottom: 1px solid rgba(97,80,72,.14);
  background: transparent;
  color: var(--jfc-ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  text-align: left;
  cursor: pointer;
}
.jfc-drawer-search > i:first-child {
  color: var(--jfc-rose);
  font-size: .9rem;
}
.jfc-drawer-search > span { flex: 1; }
.jfc-drawer-search > i:last-child {
  color: #a48d82;
  font-size: .75rem;
}

@media (max-width: 900px) {
  /* Search is deliberately removed from the sticky mobile/tablet header. */
  .jfc-head-tools-left > [data-jfc-search-open] {
    display: none !important;
  }
  .jfc-drawer-search {
    display: flex;
  }
  .jfc-drawer-heading {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .jfc-atelier-head,
  .jfc-atelier-header.is-scrolled .jfc-atelier-head {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  }
  .jfc-search-sheet {
    padding: 24px 20px !important;
  }
  .jfc-search-sheet-inner {
    width: min(100%, 560px);
  }
  .jfc-search-sheet-inner h2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
    line-height: .96;
    margin-bottom: 26px;
  }
}

/* ======================================================================
  Julia Atelier 3.5 — progressive one-page checkout
  ====================================================================== */

.jatelier-checkout-page {
  min-height: 78vh;
  padding-bottom: 3rem;
  background:
    radial-gradient(circle at 88% 14%, rgba(231, 205, 214, .34), transparent 22rem),
    linear-gradient(180deg, #faf6f3 0%, #fff 42%);
}

.jatelier-checkout-hero {
  display: block;
  padding: .45rem 0 .2rem;
  border-bottom: 0;
}

.jatelier-checkout-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1;
}

.jatelier-checkout-progress {
  display: flex;
  grid-template-columns: none;
  justify-content: center;
  gap: .65rem;
  max-width: 850px;
  margin: .8rem auto 2.35rem;
  padding: .8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(172, 149, 139, .18);
  box-shadow: 0 14px 38px rgba(97, 76, 66, .045);
}

.jatelier-checkout-progress span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-width: 0;
  color: #968b84;
  font-family: "Manrope", sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  transition: color .25s ease;
}

.jatelier-checkout-progress span b {
  display: grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 1.8rem;
  border-radius: 50%;
  background: #eee6e1;
  color: #8e817a;
  font-size: .72rem;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}

.jatelier-checkout-progress span.is-current {
  color: var(--ja-ink);
}

.jatelier-checkout-progress span.is-current b {
  background: var(--ja-wine);
  color: #fff;
  box-shadow: 0 0 0 5px rgba(139, 79, 103, .1);
}

.jatelier-checkout-progress span.is-complete {
  color: #607157;
}

.jatelier-checkout-progress span.is-complete b {
  background: #dfe9da;
  color: #56684d;
}

.jatelier-checkout-progress i {
  width: clamp(22px, 4vw, 58px);
  height: 1px;
  flex: 0 1 58px;
  background: rgba(139, 79, 103, .16);
}

.jatelier-checkout-layout {
  padding-top: .8rem;
}

.jatelier-checkout-content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .78fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
}

.jatelier-checkout-primary {
  display: grid;
  gap: .75rem;
  min-width: 0;
}

.jatelier-checkout-full {
  grid-column: 1 / -1;
}

.jatelier-checkout-full:empty {
  display: none;
}

.jatelier-checkout-summary {
  position: sticky;
  top: var(--jfc-sticky-header-offset, 124px);
  align-self: start;
  display: block;
  min-width: 0;
}

.jatelier-checkout-summary-sticky {
  position: static;
  display: grid;
  gap: .6rem;
}

.jatelier-checkout-step {
  counter-increment: none;
  position: relative;
  overflow: hidden;
  padding: 1.1rem clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(177, 153, 144, .2);
  border-radius: 20px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 48px rgba(97, 76, 66, .055);
  transition: opacity .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.jatelier-checkout-step::before {
  counter-increment: none;
  content: attr(data-step) !important;
  position: absolute;
  top: 1.3rem;
  left: clamp(1.2rem, 3vw, 2rem);
  display: none;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  margin: 0;
  border-radius: 50%;
  background: rgba(139, 79, 103, .12);
  color: var(--ja-wine);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
}

.jatelier-checkout-step::after {
  content: attr(data-step-label) !important;
  display: none;
  position: absolute;
  top: 1.87rem;
  left: clamp(4.25rem, 6vw, 5.15rem);
  color: #82766f;
  font-family: "Manrope", sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.jatelier-checkout-step.is-complete {
  border-color: rgba(110, 137, 98, .23);
}

.jatelier-checkout-step.is-complete::before {
  content: "✓" !important;
  background: #e5eee0;
  color: #5a704f;
}

.jatelier-checkout-step.is-locked {
  border-color: rgba(174, 160, 153, .15);
  background: linear-gradient(180deg, rgba(249, 247, 245, .9), rgba(244, 241, 238, .9));
  box-shadow: none;
  opacity: .62;
}

.jatelier-checkout-step.is-locked .jatelier-method-panel,
.jatelier-checkout-step.is-locked .jatelier-checkout-notes,
.jatelier-checkout-step.is-locked .jatelier-checkout-agree {
  pointer-events: none;
  user-select: none;
}

.jatelier-checkout-step legend,
.jatelier-checkout-step h2 {
  margin: 0 0 .35rem;
  color: var(--ja-ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 500;
}

.jatelier-step-intro,
.jatelier-ready-row p,
.jatelier-step-lock p,
.jatelier-register-intro p,
.jatelier-account-gate p {
  margin: 0;
  color: #746a64;
  line-height: 1.45;
}

.jatelier-step-lock,
.jatelier-ready-row {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.jatelier-lock-icon,
.jatelier-ready-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 2.25rem;
  border-radius: 50%;
  background: #ebe6e2;
  color: #8c8078;
}

.jatelier-ready-icon {
  background: #e4eddf;
  color: #5e7454;
}

.jatelier-account-gate {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(139, 79, 103, .16);
  border-radius: 18px;
  background: linear-gradient(135deg, #f8eef1, #fbf7f3);
}

.jatelier-account-gate h2,
.jatelier-register-intro h2 {
  margin: .2rem 0 .35rem;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
}

.jatelier-account-gate-action {
  color: transparent;
  font-size: 0;
}

.jatelier-account-gate-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 44px;
  padding: .68rem 1.35rem;
  border: 1px solid var(--ja-wine);
  border-radius: 999px;
  background: var(--ja-wine);
  box-shadow: 0 10px 24px rgba(139, 79, 103, .2);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 0;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.jatelier-account-gate-action a::before {
  content: "Sign in";
  color: #fff;
  font-size: .86rem;
  letter-spacing: .02em;
}

.jatelier-account-gate-action a strong {
  display: none;
}

.jatelier-account-gate-action a:hover {
  background: #733d53;
  box-shadow: 0 13px 30px rgba(115, 61, 83, .28);
  color: #fff;
  transform: translateY(-1px);
}

.jatelier-account-gate-action a:focus-visible {
  outline: 3px solid rgba(139, 79, 103, .24);
  outline-offset: 3px;
}

.jatelier-register-intro {
  margin: 0 0 .75rem;
}

.jatelier-checkout-page .jatelier-checkout-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.jatelier-checkout-page .jatelier-checkout-fieldset > legend {
  float: none;
  width: auto;
}

.jatelier-method-status {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: .55rem 0 .5rem;
  color: #766b65;
  font-size: .84rem;
}

.jatelier-method-status-icon {
  display: grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  flex: 0 0 1.65rem;
  border-radius: 50%;
  background: #f2e8eb;
  color: var(--ja-wine);
}

.jatelier-method-options {
  display: grid;
  gap: .5rem;
}

.jatelier-method-choice {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: .85rem;
  min-height: 60px;
  padding: .7rem .85rem;
  border: 1px solid rgba(177, 157, 148, .33);
  border-radius: 14px;
  background: #fffdfa;
  color: var(--ja-ink);
  cursor: pointer;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease, background .22s ease;
}

.jatelier-method-choice:hover {
  transform: translateY(-1px);
  border-color: rgba(139, 79, 103, .36);
  box-shadow: 0 12px 28px rgba(97, 76, 66, .055);
}

.jatelier-method-choice.is-selected {
  border-color: var(--ja-wine);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(139, 79, 103, .08);
}

.jatelier-method-choice > input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.jatelier-method-radio {
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #a9988f;
  border-radius: 50%;
}

.jatelier-method-choice.is-selected .jatelier-method-radio {
  border: 5px solid var(--ja-wine);
}

.jatelier-method-choice-copy {
  display: flex;
  flex-direction: column;
  gap: .12rem;
  min-width: 0;
}

.jatelier-method-choice-copy strong {
  font-size: .96rem;
  font-weight: 600;
}

.jatelier-method-group,
.jatelier-method-detail {
  color: #82766f;
  font-size: .74rem;
  line-height: 1.45;
}

.jatelier-method-group {
  color: var(--ja-wine);
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.jatelier-method-price {
  color: var(--ja-ink);
  font-size: .92rem;
  white-space: nowrap;
}

.jatelier-method-locked,
.jatelier-method-empty {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-height: 54px;
  padding: .75rem;
  border: 1px dashed rgba(169, 148, 139, .3);
  border-radius: 14px;
  background: rgba(250, 247, 244, .72);
  color: #8c8079;
  font-size: .86rem;
}

.jatelier-method-lock-icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, .85);
  color: #8b4f67;
}

.jatelier-method-error {
  display: none;
  margin-top: .7rem;
  padding: .75rem .9rem;
  border-radius: 14px;
  background: #fff0f0;
  color: #9d3333;
  font-size: .82rem;
}

.jatelier-method-error.is-visible {
  display: block;
}

.jatelier-method-panel.is-saving {
  cursor: wait;
}

.jatelier-method-panel.is-saving .jatelier-method-options {
  pointer-events: none;
  opacity: .68;
}

.jatelier-checkout-notes {
  margin-top: .75rem;
}

.jatelier-checkout-notes label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.jatelier-checkout-notes label span {
  color: #9b9089;
  font-size: .78rem;
  font-weight: 400;
}

.jatelier-checkout-agree {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-top: .65rem;
  padding: .75rem;
  border: 1px solid rgba(177, 157, 148, .25);
  border-radius: 14px;
  background: #faf7f4;
  color: #645b55;
  cursor: pointer;
}

.jatelier-checkout-agree .form-check-input {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 1.1rem;
  margin: .15rem 0 0;
}

.jatelier-checkout-agree a {
  color: var(--ja-wine);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.jatelier-confirm-card {
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(173, 149, 139, .2);
  border-radius: 22px;
  background: linear-gradient(155deg, #f8efeb 0%, #fbf8f3 58%, #fff 100%);
  box-shadow: 0 24px 60px rgba(88, 67, 58, .09);
}

.jatelier-confirm-heading h2 {
  margin: 0 0 .45rem;
  color: var(--ja-ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.jatelier-confirm-products {
  display: grid;
  gap: 0;
  margin: 0;
}

.jatelier-confirm-product {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .6rem 0;
  border: 0;
  border-bottom: 1px solid rgba(150, 128, 117, .13);
  border-radius: 0;
  background: transparent;
}

.jatelier-confirm-product > div {
  display: flex;
  flex-direction: column;
  gap: .14rem;
  min-width: 0;
}

.jatelier-confirm-product a {
  color: var(--ja-ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.14rem;
  line-height: 1.25;
}

.jatelier-confirm-product > strong {
  color: var(--ja-ink);
  font-size: .9rem;
  white-space: nowrap;
}

.jatelier-confirm-product small {
  color: #827970;
  font-size: .72rem;
}

.jatelier-confirm-qty {
  color: var(--ja-wine);
  font-size: .72rem;
  font-weight: 600;
}

.jatelier-confirm-totals {
  display: grid;
  gap: .3rem;
  margin: 0;
  padding: .7rem 0 .2rem;
  border: 0;
}

.jatelier-confirm-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #655c56;
}

.jatelier-confirm-totals > div:last-child {
  margin-top: .35rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(139, 79, 103, .16);
  color: var(--ja-ink);
  font-size: 1.08rem;
}

.jatelier-summary-divider {
  height: 1px;
  margin: .65rem 0;
  background: rgba(139, 79, 103, .14);
}

.jatelier-agreement-slot:empty {
  display: none;
}

.jatelier-agreement-slot .jatelier-checkout-agree {
  margin: 0 0 .65rem;
  font-size: .78rem;
  line-height: 1.4;
}

.jatelier-payment-action {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height .3s ease, opacity .2s ease;
}

#checkout-confirm.is-ready-to-pay .jatelier-payment-action {
  max-height: 3000px;
  opacity: 1;
  pointer-events: auto;
}

#checkout-confirm.is-ready-to-pay #jatelier-payment-gate {
  display: none;
}

.jatelier-payment-locked {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .7rem;
  border: 1px dashed rgba(151, 132, 123, .3);
  border-radius: 14px;
  background: rgba(239, 234, 230, .72);
  color: #857a73;
}

.jatelier-payment-locked > span {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 2.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, .8);
}

.jatelier-payment-locked div {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.jatelier-payment-locked strong {
  color: #6f655f;
  font-size: .88rem;
}

.jatelier-payment-locked small {
  font-size: .74rem;
  line-height: 1.45;
}

#checkout-confirm {
  transition: opacity .2s ease;
}

#checkout-confirm.is-updating {
  opacity: .55;
  pointer-events: none;
}

.jatelier-confirm-card #paypal_form,
.jatelier-confirm-card .paypal-button,
.jatelier-confirm-card .googlepay-button,
.jatelier-confirm-card .applepay-button,
.jatelier-confirm-card .paypal-card {
  width: 100%;
  max-width: none;
}

.jatelier-confirm-card #paypal_button {
  padding-top: .35rem !important;
}

/* OpenCart Free Checkout outputs a single text-end confirmation button.
   Match the full-width, square-edged PayPal payment surface without changing
   the payment extension's markup or confirmation behaviour. */
.jatelier-confirm-card #checkout-payment > .text-end {
  display: block;
  width: 100%;
}

.jatelier-confirm-card #checkout-payment > .text-end > #button-confirm {
  width: 100%;
  min-height: 52px;
  padding: .85rem 1rem;
  border: 1px solid var(--ja-wine);
  border-radius: 0 !important;
  background: var(--ja-wine);
  box-shadow: none;
  color: #fff;
  font-weight: 700;
}

.jatelier-confirm-card #checkout-payment > .text-end > #button-confirm:hover,
.jatelier-confirm-card #checkout-payment > .text-end > #button-confirm:focus {
  border-color: #733d53;
  background: #733d53;
  color: #fff;
}

.jatelier-checkout-assurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .45rem;
}

.jatelier-checkout-assurance span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  min-height: 54px;
  padding: .45rem .3rem;
  border: 1px solid rgba(173, 149, 139, .16);
  border-radius: 13px;
  background: rgba(255, 255, 255, .82);
  color: #766c65;
  font-size: .68rem;
  text-align: center;
}

.jatelier-checkout-assurance i {
  color: var(--ja-wine);
}

.jatelier-checkout-page .form-control,
.jatelier-checkout-page .form-select {
  min-height: 44px;
  border-color: rgba(177, 157, 148, .42);
  border-radius: 14px;
  background-color: #fffdfa;
  box-shadow: none;
}

.jatelier-checkout-page .mb-3 {
  margin-bottom: .65rem !important;
}

.jatelier-checkout-page .form-label {
  margin-bottom: .25rem;
  font-size: .84rem;
}

.jatelier-checkout-page .form-control:focus,
.jatelier-checkout-page .form-select:focus {
  border-color: rgba(139, 79, 103, .62);
  box-shadow: 0 0 0 .2rem rgba(139, 79, 103, .08);
}

.jatelier-checkout-page .btn-primary {
  border-color: var(--ja-wine);
  border-radius: 999px;
  background: var(--ja-wine);
}

@media (max-width: 1180px) {
  .jatelier-checkout-content {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .72fr);
    gap: 1.25rem;
  }
}

@media (max-width: 990px) {
  .jatelier-checkout-content {
    grid-template-columns: 1fr;
  }

  .jatelier-checkout-summary {
    position: static;
    grid-row: auto;
  }

  .jatelier-checkout-summary-sticky {
    position: static;
  }
}

@media (max-width: 700px) {
  .jatelier-checkout-progress {
    justify-content: flex-start;
    overflow-x: auto;
    border-radius: 20px;
    scrollbar-width: none;
  }

  .jatelier-checkout-progress::-webkit-scrollbar {
    display: none;
  }

  .jatelier-checkout-progress span {
    flex: 0 0 auto;
  }

  .jatelier-checkout-progress i {
    display: block;
    flex: 0 0 22px;
    width: 22px;
  }

  .jatelier-checkout-step {
    padding: 1rem;
    border-radius: 22px;
  }

  .jatelier-checkout-step::before {
    left: 1rem;
  }

  .jatelier-checkout-step::after {
    position: absolute;
    top: 1.87rem;
    left: 4rem;
    margin: 0;
  }

  .jatelier-account-gate {
    grid-template-columns: 1fr;
  }

  .jatelier-account-gate-action a {
    width: 100%;
  }

  .jatelier-method-choice {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .jatelier-method-choice > input {
    position: absolute;
  }

  .jatelier-method-radio {
    grid-column: 1;
  }

  .jatelier-method-choice-copy {
    grid-column: 2;
  }

  .jatelier-method-price {
    grid-column: 3;
  }

  .jatelier-checkout-assurance {
    grid-template-columns: 1fr;
  }

  .jatelier-checkout-assurance span {
    min-height: 0;
    flex-direction: row;
    justify-content: flex-start;
    padding: .75rem .9rem;
    text-align: left;
  }
}

/* Fixed cookie consent overlay. The core OpenCart stylesheet is not loaded by
   this theme, so the positioning must live with the theme itself. */
#cookie {
  position: fixed !important;
  z-index: 12000;
  right: auto !important;
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 50% !important;
  width: min(960px, calc(100% - 24px));
  height: auto !important;
  color: #5f5550;
  background: rgba(255, 252, 249, .98);
  border: 1px solid rgba(139, 79, 103, .2);
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(62, 43, 36, .2);
  opacity: 1;
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

#cookie .container {
  width: 100%;
  max-width: none;
  padding: .85rem 1rem;
}

#cookie .row {
  margin: 0 !important;
}

#cookie .col-12 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: .55rem;
  padding: 0 !important;
  color: #5f5550;
  font-size: .82rem;
}

#cookie p {
  flex: 1 1 520px;
  margin: 0;
  color: #5f5550;
  line-height: 1.45;
  text-align: left;
}

#cookie a {
  color: var(--ja-wine);
  text-decoration: underline;
  text-underline-offset: 2px;
}

#cookie .btn {
  min-height: 40px;
  margin: 0 !important;
  padding: .55rem 1rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
}

#cookie .bg-primary {
  border-color: var(--ja-wine) !important;
  background: var(--ja-wine) !important;
}

@media (max-width: 700px) {
  #cookie {
    bottom: max(8px, env(safe-area-inset-bottom));
    width: calc(100% - 16px);
    border-radius: 15px;
  }

  #cookie .container {
    padding: .75rem;
  }

  #cookie p {
    flex-basis: 100%;
    text-align: center;
  }

  #cookie .btn {
    flex: 1 1 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jatelier-method-choice {
    transition: none;
  }
}

/* Terms and information modal. Keep both the panel and its backdrop above the
   sticky storefront header and give long policy copy a visible scroll area. */
.modal-backdrop {
  z-index: 20040 !important;
}

#modal-information.jatelier-information-modal {
  z-index: 20050 !important;
  padding: 1rem !important;
}

#modal-information .modal-dialog {
  width: min(860px, calc(100vw - 2rem));
  max-width: 860px;
  margin: 1rem auto;
}

#modal-information .modal-content {
  max-height: calc(100vh - 2rem);
  max-height: calc(100dvh - 2rem);
  overflow: hidden;
  border: 1px solid rgba(139, 79, 103, .2);
  border-radius: 20px;
  background: #fffdfa;
  box-shadow: 0 30px 90px rgba(62, 43, 36, .28);
}

#modal-information .modal-header {
  flex: 0 0 auto;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(177, 157, 148, .25);
  background: #f8eef1;
}

#modal-information .modal-title {
  margin: 0;
  color: var(--ja-ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 600;
}

#modal-information .modal-body {
  min-height: 0;
  padding: 1.2rem;
  overflow-y: auto;
  color: #625952;
}
