
: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;
  left: 50%;
  top: 50.5%;
  transform: translate(-50%, -50%);
  width: min(92vw, 620px);
  text-align: center;
  z-index: 5;
  pointer-events: none;
  padding: 10px 20px;
}

#loader #text-block::before {
  content: "";
  position: absolute;
  inset: 10% 2%;
  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 {
  text-align: center;
  opacity: 0;
  animation: jfcTextSoftFade 1.25s cubic-bezier(.22,.62,.28,1) forwards;
  transform-origin: center;
  will-change: opacity, transform;
}

@keyframes jfcTextSoftFade {
  0% { opacity: 0; transform: scale(.985); }
  45% { opacity: .32; transform: scale(.99); }
  100% { opacity: 1; transform: scale(1); }
}

#loader #logo-text .brand {
  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%; }
.jfc-product-main-image img { display: block; width: 100%; height: 100%; min-height: 500px; max-height: 700px; object-fit: contain; }
.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; }

/* 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-left .jfc-head-tool:nth-child(2) { display: none; }
  .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: 46% 46% 2% 2% / 13% 13% 2% 2%; }
  .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's Floral Creations 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's Floral Creations 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's Floral Creations 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;
}


/* v2.3.5: optical centring for the scripted loader wordmark on small screens. */
@media (max-width: 640px) {
  #loader #text-block {
    left: 47.5%;
  }
}


/* v2.3.7: keep the scripted brand optically left, but centre the ornament,
   Handcrafted line and loading dots against the wreath on small screens. */
@media (max-width: 640px) {
  #loader #ornament,
  #loader #logo-text .tagline,
  #loader .dots {
    position: relative;
    left: 10px;
  }
}
