/* FlowersStore — Product Detail page */

/* ── Page wrapper ─────────────────────────────────────────── */
.flr-pd {
  background: var(--theme-bg, #fbf6ee);
  padding-top: 155px;
  padding-bottom: clamp(60px, 8vw, 100px);
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.flr-pd__crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--theme-font-family);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme-text-muted, #726a62);
  padding-top: 0;
  padding-bottom: clamp(24px, 3.5vw, 40px);
}

.flr-pd__crumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}

.flr-pd__crumb a:hover {
  color: var(--theme-primary, #6f4f3a);
  text-decoration: underline;
}

.flr-pd__crumb span[aria-hidden] {
  color: var(--theme-border, rgba(74, 58, 48, 0.3));
}

/* ── Main layout: Gallery + Info ──────────────────────────── */
.flr-pd__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

@media (max-width: 860px) {
  .flr-pd__layout {
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 40px);
  }
}

/* ── Gallery ──────────────────────────────────────────────── */
.flr-pd__gallery {
  position: sticky;
  top: calc(var(--theme-header-height, 76px) + var(--theme-stripe-height, 40px) + 20px);
}

.flr-pd__gallery-main {
  width: 100%;
  border-radius: var(--theme-radius-lg, 14px);
  overflow: hidden;
  background: var(--theme-blush, #f7e9e4);
  aspect-ratio: 4 / 5;
}

.flr-pd__gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}

.flr-pd__gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.flr-pd__gallery-thumbs::-webkit-scrollbar { display: none; }

.flr-pd__thumb {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: none;
  padding: 0;
  transition: border-color 0.2s;
}

.flr-pd__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flr-pd__thumb[aria-selected="true"],
.flr-pd__thumb:hover {
  border-color: var(--theme-primary, #6f4f3a);
}

@media (max-width: 860px) {
  .flr-pd__gallery {
    position: static;
  }
}

/* ── Buy box ──────────────────────────────────────────────── */
.flr-pd__info {
  padding-top: 4px;
}

.flr-pd__eyebrow {
  font-family: var(--theme-font-family);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--theme-mocha-deep, #8a6450);
  margin-bottom: 0.6rem;
}

.flr-pd__title {
  font-family: var(--theme-font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--theme-text, #2a2320);
  margin-bottom: 1rem;
}

/* ── Price ────────────────────────────────────────────────── */
.flr-pd__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.flr-pd__price {
  font-family: var(--theme-font-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--theme-primary, #6f4f3a);
}

.flr-pd__compare-price {
  font-family: var(--theme-font-family);
  font-size: 1rem;
  font-weight: 400;
  color: var(--theme-text-muted, #726a62);
}

.flr-pd__compare-price:empty {
  display: none;
}

/* ── Description (inline below price) ────────────────────── */
.flr-pd__desc {
  font-family: var(--theme-font-family);
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--theme-text-muted, #726a62);
  margin-bottom: 1.5rem;
}

/* Beat RTE inline styles on nested span/p/etc so theme text styling wins */
.flr-pd__desc,
.flr-pd__desc *:not(strong):not(b):not(a) {
  font-family: var(--theme-font-family) !important;
  font-size: 0.96rem !important;
  line-height: 1.75 !important;
  color: var(--theme-text-muted, #726a62) !important;
}

.flr-pd__desc p {
  margin: 0 0 0.65em;
}

.flr-pd__desc p:last-child {
  margin-bottom: 0;
}

.flr-pd__desc a {
  color: var(--theme-primary, #6f4f3a) !important;
  text-decoration: underline;
}

.flr-pd__desc strong,
.flr-pd__desc b {
  font-weight: 600;
  color: var(--theme-text, #2a2320) !important;
}

/* ── Divider ──────────────────────────────────────────────── */
.flr-pd__divider {
  border: none;
  border-top: 1px solid var(--theme-border, rgba(74, 58, 48, 0.14));
  margin: 1.5rem 0;
}

/* ── Variant attributes ───────────────────────────────────── */
.flr-pd__attribute {
  margin-bottom: 1.25rem;
}

/* OPTIONS / non-color choices stay visible as pills (filtered by colour via JS) */
.flr-pd__attribute:not(.flr-pd__attribute--color) {
  display: block !important;
  visibility: visible !important;
}

.flr-pd__attribute:not(.flr-pd__attribute--color) .flr-pd__attr-pills {
  display: flex !important;
  visibility: visible !important;
}

.flr-pd__attr-hint {
  margin: -4px 0 10px;
  font-family: var(--theme-font-family, 'Jost', sans-serif);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--theme-text-muted, #726a62);
}

.flr-pd__attr-pills .t1-pd-attr-pill[hidden],
.flr-pd__attr-pills .t1-pd-attr-pill.is-color-unavailable {
  display: none !important;
}

.flr-pd__attr-label {
  display: block;
  font-family: var(--theme-font-family, 'Jost', sans-serif);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--theme-coffee, #6f4f3a);
  margin: 0 0 12px;
}

.flr-pd__attr-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

/* Option cards — name + price, selected blush fill (match design) */
.flr-pd__attr-pills .t1-pd-attr-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 140px;
  height: 78px;
  min-width: 140px;
  max-width: 140px;
  font-family: var(--theme-font-family, 'Jost', sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0 12px;
  border-radius: 4px;
  border: 1px solid rgba(74, 58, 48, 0.16);
  background: transparent;
  color: var(--theme-text, #2a2320);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
  line-height: 1.25;
  text-align: center;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.flr-pd__pill-name {
  display: block;
  font-family: var(--theme-font-family, 'Jost', sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--theme-text, #2a2320);
  line-height: 1.25;
}

.flr-pd__pill-price {
  display: block;
  font-family: var(--theme-font-family, 'Jost', sans-serif);
  font-size: 0.8rem;
  font-weight: 400;
  color: #8a827a;
  margin-top: 4px;
  line-height: 1.2;
}

.flr-pd__attr-pills .t1-pd-attr-pill:hover:not(:disabled) {
  border-color: var(--theme-coffee, #6f4f3a);
}

.flr-pd__attr-pills .t1-pd-attr-pill--active,
.flr-pd__attr-pills .t1-pd-attr-pill[aria-selected="true"] {
  border-color: var(--theme-coffee, #6f4f3a);
  border-width: 1.5px;
  background: #f7e9e4;
  color: var(--theme-text, #2a2320);
}

.flr-pd__attr-pills .t1-pd-attr-pill--active .flr-pd__pill-name,
.flr-pd__attr-pills .t1-pd-attr-pill[aria-selected="true"] .flr-pd__pill-name {
  color: var(--theme-text, #2a2320);
}

.flr-pd__attr-pills .t1-pd-attr-pill--active .flr-pd__pill-price,
.flr-pd__attr-pills .t1-pd-attr-pill[aria-selected="true"] .flr-pd__pill-price {
  color: var(--theme-mocha-deep, #8a6450);
}

.flr-pd__attr-pills .t1-pd-attr-pill:disabled,
.flr-pd__attr-pills .t1-pd-attr-pill.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.flr-pd__attr-select[hidden] {
  display: none !important;
}

/* ── Custom order trigger ─────────────────────────────────── */
.flr-pd__custom-wrap {
  margin-bottom: 1.25rem;
}

.flr-pd__custom-heading {
  font-family: var(--theme-font-family, 'Jost', sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--theme-primary, #6f4f3a);
  margin-bottom: 10px;
}

.flr-pd__custom-pill {
  border-style: dashed !important;
  border-color: var(--theme-primary, #6f4f3a) !important;
  color: var(--theme-primary, #6f4f3a) !important;
}

.flr-pd__custom-pill .flr-pd__pill-price {
  color: var(--theme-primary, #6f4f3a);
  opacity: 0.7;
}

.flr-pd__custom-pill:hover {
  background: var(--theme-blush, #f7e9e4) !important;
}

/* ── Custom order modal ────────────────────────────────────── */
.flr-co-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 20, 15, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  padding: 1rem;
  backdrop-filter: blur(2px);
}

.flr-co-overlay[hidden] {
  display: none !important;
}

.flr-co-modal {
  background: var(--theme-bg, #fbf6ee);
  border-radius: var(--theme-radius-lg, 10px);
  padding: clamp(28px, 4vw, 40px);
  width: 100%;
  max-width: 480px;
  max-height: 90dvh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(30, 20, 15, 0.22);
}

.flr-co-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--theme-text-muted, #726a62);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.18s, color 0.18s;
}

.flr-co-close:hover {
  background: var(--theme-surface, #f5f0e8);
  color: var(--theme-text, #2a2320);
}

.flr-co-title {
  font-family: var(--theme-font-display, 'Playfair Display', serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--theme-text, #2a2320);
  letter-spacing: -0.01em;
  margin: 0 0 1.5rem;
  padding-right: 2rem;
}

.flr-co-body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 1.25rem;
}

.flr-co-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.flr-co-label {
  font-family: var(--theme-font-family, 'Jost', sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--theme-primary, #6f4f3a);
}

.flr-co-input,
.flr-co-textarea {
  font-family: var(--theme-font-family, 'Jost', sans-serif);
  font-size: 0.97rem;
  color: var(--theme-text, #2a2320);
  background: #fff;
  border: 1.5px solid var(--theme-border, rgba(74, 58, 48, 0.18));
  border-radius: 4px;
  padding: 0.65em 0.9em;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.18s;
  outline: none;
}

.flr-co-input:focus,
.flr-co-textarea:focus {
  border-color: var(--theme-primary, #6f4f3a);
}

.flr-co-textarea {
  resize: vertical;
  min-height: 90px;
}

.flr-co-price-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--theme-border, rgba(74, 58, 48, 0.18));
  border-radius: 4px;
  transition: border-color 0.18s;
}

.flr-co-price-wrap:focus-within {
  border-color: var(--theme-primary, #6f4f3a);
}

.flr-co-currency {
  padding: 0 0 0 0.9em;
  font-family: var(--theme-font-family, 'Jost', sans-serif);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--theme-text-muted, #726a62);
  flex-shrink: 0;
}

.flr-co-price-wrap .flr-co-input {
  border: none;
  background: none;
  padding-left: 0.4em;
  flex: 1;
}

.flr-co-price-wrap .flr-co-input:focus,
.flr-co-price-wrap .flr-co-input:invalid,
.flr-co-price-wrap .flr-co-input:user-invalid,
.flr-co-price-wrap .flr-co-input.is-invalid {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.flr-co-price-wrap.is-invalid,
.flr-co-price-wrap.is-invalid:focus-within {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.14);
}

.flr-co-textarea.is-invalid {
  border-color: #c0392b;
}

.flr-co-field-error {
  font-family: var(--theme-font-family, 'Jost', sans-serif);
  font-size: 0.82rem;
  font-weight: 500;
  color: #c0392b;
  margin: 2px 0 0;
  line-height: 1.35;
}

.flr-co-field-error[hidden] {
  display: none;
}

.flr-co-qty-row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.flr-co-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--theme-border, rgba(74, 58, 48, 0.18));
  border-radius: 999px;
  overflow: hidden;
}

.flr-co-qty-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 1.15rem;
  color: var(--theme-primary, #6f4f3a);
  cursor: pointer;
  transition: background 0.18s;
  line-height: 1;
}

.flr-co-qty-btn:hover {
  background: var(--theme-blush, #f7e9e4);
}

.flr-co-qty-val {
  min-width: 36px;
  text-align: center;
  font-family: var(--theme-font-family, 'Jost', sans-serif);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--theme-text, #2a2320);
  user-select: none;
}

.flr-co-error {
  font-family: var(--theme-font-family, 'Jost', sans-serif);
  font-size: 0.88rem;
  color: #c0392b;
  margin: 0 0 0.75rem;
}

.flr-co-error[hidden] { display: none; }

.flr-co-atb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1em 2em;
  background: var(--theme-primary, #6f4f3a);
  color: #fff;
  font-family: var(--theme-font-family, 'Jost', sans-serif);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.22s, transform 0.18s;
}

.flr-co-atb:hover {
  background: var(--theme-espresso, #4a3a30);
  transform: translateY(-2px);
}

.flr-co-atb:active {
  transform: translateY(0);
}

.flr-co-atb:disabled {
  cursor: wait;
  opacity: 0.9;
}

.flr-co-atb.is-added {
  background: var(--theme-espresso, #4a3a30);
  cursor: default;
  transform: none;
}

.flr-co-atb.is-loading {
  opacity: 0.85;
}

/* ── Add-on groups ────────────────────────────────────────── */
.flr-pd__addon-groups {
  margin-bottom: 1.25rem;
  display: block !important;
  visibility: visible !important;
}

/* Never use [hidden] to kill addons — COLOUR select must not wipe this block */
.flr-pd__addon-groups[hidden] {
  display: block !important;
  visibility: visible !important;
}

.flr-pd__addon-groups.is-empty:not(:has([data-addon-group])) {
  display: none !important;
}

.flr-pd__addon-group {
  margin-bottom: 1.5rem;
}

.flr-pd__addon-group:last-child {
  margin-bottom: 0;
}

.flr-pd__addon-group-hd {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.flr-pd__addon-group-name {
  font-family: var(--theme-font-family);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--theme-primary, #6f4f3a);
}

.flr-pd__addon-required {
  display: inline-flex;
  align-items: center;
  font-family: var(--theme-font-family);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--theme-primary, #6f4f3a);
  background: var(--theme-blush, #f7e9e4);
  border: 1px solid var(--theme-primary, #6f4f3a);
  border-radius: 4px;
  padding: 2px 6px;
  line-height: 1.4;
}

.flr-pd__addon-meta {
  font-family: var(--theme-font-family);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--theme-text-muted, #726a62);
  margin-left: auto;
}

/* ── Addon items list ─────────────────────────────────────── */
.flr-pd__addon-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flr-pd__addon-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border: 1.5px solid var(--theme-border, rgba(74, 58, 48, 0.18));
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  user-select: none;
}

.flr-pd__addon-item:hover {
  border-color: var(--theme-primary, #6f4f3a);
}

.flr-pd__addon-item:has(input:checked) {
      border-color: var(--theme-primary, #6f4f3a);
    background: var(--theme-blush, #f7e9e4);
}

.flr-pd__addon-item input[type="checkbox"],
.flr-pd__addon-item input[type="radio"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  accent-color: var(--theme-primary, #6f4f3a);
  cursor: pointer;
  margin: 0;
}

.flr-pd__addon-item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
  gap: 8px;
}

.flr-pd__addon-item-name {
  font-family: var(--theme-font-family);
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--theme-text, #2a2320);
  line-height: 1.3;
}

.flr-pd__addon-price {
  font-family: var(--theme-font-family);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--theme-mocha-deep, #8a6450);
  white-space: nowrap;
  flex-shrink: 0;
}

.flr-pd__addon-free {
  font-family: var(--theme-font-family);
  font-size: 0.82rem;
  font-weight: 400;
  font-style: italic;
  color: var(--theme-text-muted, #726a62);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Addon item active / disabled states ──────────────────── */
.flr-pd__addon-item--active {
  border-color: var(--theme-primary, #6f4f3a);
  background: var(--theme-blush, #f7e9e4);
}

.flr-pd__addon-item--disabled {
  opacity: 0.45;
  pointer-events: none;
}

/* ── Checkbox + qty stepper item ─────────────────────────── */
.flr-pd__addon-item--stepper {
  cursor: default;
}


.flr-pd__addon-qty-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.flr-pd__addon-qty-wrap[hidden] { display: none; }

.flr-pd__addon-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--theme-border, rgba(74, 58, 48, 0.18));
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}

.flr-pd__addon-step-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-family: var(--theme-font-family);
  color: var(--theme-text, #2a2320);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
}

.flr-pd__addon-step-btn:hover:not(:disabled) {
  background: var(--theme-blush, #f7e9e4);
  color: var(--theme-primary, #6f4f3a);
}

.flr-pd__addon-step-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.flr-pd__addon-step-qty {
  min-width: 28px;
  text-align: center;
  font-family: var(--theme-font-family);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--theme-text, #2a2320);
  user-select: none;
}

/* ── Required validation error ────────────────────────────── */
.sf-inline-error {
  display: block;
  font-family: var(--theme-font-family);
  font-size: 0.8rem;
  font-weight: 600;
  color: #c0392b !important;
  margin: 0.45rem 0 0;
  padding: 0;
  line-height: 1.35;
}

.sf-inline-error[hidden] {
  display: none !important;
}

[data-product-action-error].sf-inline-error {
  margin-top: 0.65rem;
}

.flr-pd__addon-error {
  font-family: var(--theme-font-family);
  font-size: 0.78rem;
  color: #c0392b;
  margin: 6px 0 4px;
  padding: 0;
}

.flr-pd__addon-group.is-invalid .flr-pd__addon-group-hd,
.flr-pd__addon-group--error .flr-pd__addon-group-hd {
  color: #c0392b;
}

.flr-pd__addon-group.is-invalid .flr-pd__addon-group-name,
.flr-pd__addon-group--error .flr-pd__addon-group-name {
  color: #c0392b;
}

[data-product-attribute].is-invalid .flr-pd__attr-label,
.flr-pd__attribute.is-invalid .flr-pd__attr-label {
  color: #c0392b;
}

[data-product-attribute].is-invalid .flr-pd__color-trigger,
.flr-pd__color-trigger.is-invalid,
[data-color-select].is-invalid .flr-pd__color-trigger {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 1px rgba(192, 57, 43, 0.35);
}

[data-product-attribute].is-invalid .flr-pd__attr-pills {
  box-shadow: 0 0 0 1.5px rgba(192, 57, 43, 0.45);
  border-radius: 8px;
}

.flr-pd__attribute--balloon {
  margin-bottom: 1.1rem;
}

.flr-pd__balloon-colour-input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 54px;
  padding: 0.7rem 1rem;
  background: var(--theme-bg, #fbf6ee);
  border: 1.5px solid var(--theme-border, rgba(74, 58, 48, 0.22));
  border-radius: 10px;
  font-family: var(--theme-font-family);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--theme-text, #2a2320);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.flr-pd__balloon-colour-input::placeholder {
  color: var(--theme-text-muted, #726a62);
  opacity: 0.85;
}

.flr-pd__balloon-colour-input:focus {
  border-color: var(--theme-primary, #6f4f3a);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--theme-primary, #6f4f3a) 28%, transparent);
}

.flr-pd__balloon-colour-input.is-invalid,
[data-balloon-colour-wrap].is-invalid .flr-pd__balloon-colour-input,
[data-product-attribute].is-invalid .flr-pd__balloon-colour-input {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 1px rgba(192, 57, 43, 0.35);
}

/* ══════════════════════════════════════════════════════════
   COLOR & FEATHER — shared custom-select foundation
   ══════════════════════════════════════════════════════════ */

/* ── Shared trigger ───────────────────────────────────────── */
.flr-pd__color-field,
.flr-pd__feather-field {
  position: relative;
  max-width: 100%;
}

.flr-pd__color-trigger,
.flr-pd__feather-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 54px;
  padding: 0.7rem 1rem 0.7rem 1rem;
  background: var(--theme-bg, #fbf6ee);
  border: 1.5px solid var(--theme-border, rgba(74, 58, 48, 0.22));
  border-radius: 10px;
  font-family: var(--theme-font-family);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--theme-text, #2a2320);
  cursor: pointer;
  text-align: left;
  box-sizing: border-box;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.18s ease;
  box-shadow: 0 1px 3px rgba(42, 35, 32, 0.06);
}

.flr-pd__color-trigger:hover,
.flr-pd__feather-trigger:hover {
  border-color: rgba(111, 79, 58, 0.55);
  background: #fff;
  box-shadow: 0 2px 8px rgba(42, 35, 32, 0.09);
}

.flr-pd__color-trigger[aria-expanded="true"],
.flr-pd__feather-trigger[aria-expanded="true"],
.flr-pd__color-trigger:focus-visible,
.flr-pd__feather-trigger:focus-visible {
  outline: none;
  border-color: var(--theme-primary, #6f4f3a);
  background: #fff;
  box-shadow:
    0 0 0 3px rgba(111, 79, 58, 0.13),
    0 2px 10px rgba(42, 35, 32, 0.1);
}

/* ── Swatch dot ───────────────────────────────────────────── */
.flr-pd__color-swatch,
.flr-pd__feather-swatch {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  flex-shrink: 0;
  border: 1.5px solid rgba(74, 58, 48, 0.2);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.5),
    0 1px 3px rgba(42, 35, 32, 0.14);
  background: #e8e0d8;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.flr-pd__color-trigger:hover .flr-pd__color-swatch,
.flr-pd__feather-trigger:hover .flr-pd__feather-swatch {
  transform: scale(1.1);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.5),
    0 2px 6px rgba(42, 35, 32, 0.2);
}

.flr-pd__color-swatch--light,
.flr-pd__feather-swatch--light {
  border-color: rgba(74, 58, 48, 0.3);
}

/* ── Value text ───────────────────────────────────────────── */
.flr-pd__color-value,
.flr-pd__feather-value {
  flex: 1;
  min-width: 0;
  line-height: 1.25;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--theme-text, #2a2320);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Chevron icon ─────────────────────────────────────────── */
.flr-pd__color-chevron,
.flr-pd__feather-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--theme-text-muted, #726a62);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.18s ease;
  opacity: 0.75;
}

.flr-pd__color-trigger:hover .flr-pd__color-chevron,
.flr-pd__feather-trigger:hover .flr-pd__feather-chevron {
  color: var(--theme-primary, #6f4f3a);
  opacity: 1;
}

.flr-pd__color-trigger[aria-expanded="true"] .flr-pd__color-chevron,
.flr-pd__feather-trigger[aria-expanded="true"] .flr-pd__feather-chevron {
  transform: rotate(180deg);
  color: var(--theme-primary, #6f4f3a);
  opacity: 1;
}

/* ── Dropdown menu ────────────────────────────────────────── */
.flr-pd__color-menu,
.flr-pd__feather-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 50;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  background: #fff;
  border: 1.5px solid rgba(74, 58, 48, 0.16);
  border-radius: 12px;
  box-shadow:
    0 4px 6px rgba(42, 35, 32, 0.04),
    0 12px 28px rgba(42, 35, 32, 0.12),
    0 24px 48px rgba(42, 35, 32, 0.08);
  max-height: 300px;
  overflow-y: auto;
  /* custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: rgba(111, 79, 58, 0.3) transparent;
}

.flr-pd__color-menu::-webkit-scrollbar,
.flr-pd__feather-menu::-webkit-scrollbar {
  width: 4px;
}

.flr-pd__color-menu::-webkit-scrollbar-track,
.flr-pd__feather-menu::-webkit-scrollbar-track {
  background: transparent;
  margin: 4px 0;
}

.flr-pd__color-menu::-webkit-scrollbar-thumb,
.flr-pd__feather-menu::-webkit-scrollbar-thumb {
  background: rgba(111, 79, 58, 0.28);
  border-radius: 999px;
}

.flr-pd__color-menu::-webkit-scrollbar-thumb:hover,
.flr-pd__feather-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(111, 79, 58, 0.5);
}

.flr-pd__color-menu[hidden],
.flr-pd__feather-menu[hidden] {
  display: none !important;
}

/* ── Dropdown options ─────────────────────────────────────── */
.flr-pd__color-option,
.flr-pd__feather-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--theme-font-family);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--theme-text, #2a2320);
  transition: background 0.15s ease;
  position: relative;
}

.flr-pd__color-option:hover,
.flr-pd__feather-option:hover,
.flr-pd__color-option:focus-visible,
.flr-pd__feather-option:focus-visible {
  background: rgba(111, 79, 58, 0.07);
  outline: none;
}

.flr-pd__color-option.is-selected,
.flr-pd__feather-option.is-selected {
  background: rgba(111, 79, 58, 0.1);
  font-weight: 600;
  color: var(--theme-primary, #6f4f3a);
}

/* Selected checkmark tick on right */
.flr-pd__color-option.is-selected::after,
.flr-pd__feather-option.is-selected::after {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  margin-left: auto;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236f4f3a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* Divider between options (subtle) */
.flr-pd__color-option + .flr-pd__color-option,
.flr-pd__feather-option + .flr-pd__feather-option {
  border-top: 1px solid rgba(74, 58, 48, 0.06);
}

/* ── Option text + price ──────────────────────────────────── */
.flr-pd__color-option-name,
.flr-pd__feather-option-name {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flr-pd__color-option-price,
.flr-pd__feather-option-price {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--theme-text-muted, #726a62);
  letter-spacing: 0.01em;
}

/* ── Hidden native selects ────────────────────────────────── */
.flr-pd__color-native,
.flr-pd__feather-native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

/* ── Feather label ────────────────────────────────────────── */
.flr-pd__feather {
  margin-bottom: 1.25rem;
}

.flr-pd__feather-label {
  display: block;
  font-family: var(--theme-font-family);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--theme-primary, #6f4f3a);
  margin-bottom: 8px;
}

/* ── Gift card message ────────────────────────────────────── */
.flr-pd__gift-msg {
  margin-bottom: 1.25rem;
}

.flr-pd__gift-label {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--theme-font-family);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--theme-primary, #6f4f3a);
  margin-bottom: 8px;
}

.flr-pd__gift-optional {
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--theme-text-muted, #726a62);
}

.flr-pd__gift-colors {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
  margin-bottom: 0.65rem;
}

.flr-pd__gift-colors-label {
  font-family: var(--theme-font-family);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme-text-muted, #726a62);
  margin-right: 0.15rem;
}

.flr-pd__gift-color {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  user-select: none;
  font-family: var(--theme-font-family);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--theme-text-muted, #726a62);
  padding: 0.22rem 0.55rem 0.22rem 0.28rem;
  border: 1.5px solid rgba(74, 58, 48, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  transition: border-color 0.18s, background 0.18s, color 0.18s, box-shadow 0.18s;
}

.flr-pd__gift-color input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}

.flr-pd__gift-color-swatch {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  border: 1.5px solid rgba(74, 58, 48, 0.18);
  box-shadow: none;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  flex-shrink: 0;
}

.flr-pd__gift-color-swatch--black {
  background: #111111;
}

.flr-pd__gift-color-swatch--golden,
.flr-pd__gift-color-swatch--gold {
  background: linear-gradient(145deg, #e8c76a 0%, #c19a4b 48%, #a67c2d 100%);
}

.flr-pd__gift-color:hover {
  border-color: rgba(74, 58, 48, 0.32);
  color: var(--theme-text, #2a2320);
}

.flr-pd__gift-color:hover .flr-pd__gift-color-swatch {
  transform: scale(1.05);
}

/* Active / selected — clear chip + ring */
.flr-pd__gift-color.is-selected,
.flr-pd__gift-color:has(input:checked) {
  border-color: var(--theme-primary, #6f4f3a);
  background: color-mix(in srgb, var(--theme-primary, #6f4f3a) 10%, #fff);
  color: var(--theme-primary, #6f4f3a);
  font-weight: 700;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--theme-primary, #6f4f3a) 28%, transparent);
}

.flr-pd__gift-color.is-selected .flr-pd__gift-color-swatch,
.flr-pd__gift-color:has(input:checked) .flr-pd__gift-color-swatch,
.flr-pd__gift-color input:checked + .flr-pd__gift-color-swatch {
  border-color: var(--theme-primary, #6f4f3a);
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px var(--theme-primary, #6f4f3a);
  transform: scale(1.05);
}

.flr-pd__gift-color.is-selected .flr-pd__gift-color-name,
.flr-pd__gift-color:has(input:checked) .flr-pd__gift-color-name {
  color: var(--theme-primary, #6f4f3a);
}

.flr-pd__gift-color:has(input:focus-visible),
.flr-pd__gift-color:has(input:focus-visible) {
  outline: 2px solid var(--theme-primary, #6f4f3a);
  outline-offset: 2px;
}

.flr-pd__gift-color-name {
  letter-spacing: 0.02em;
  line-height: 1;
}

.flr-pd__gift-textarea {
  width: 100%;
  min-height: 92px;
  padding: 0.9em 1em;
  font-family: var(--theme-font-family);
  font-size: 0.92rem;
  line-height: 1.6;
  color: #111111;
  caret-color: #111111;
  background: var(--theme-bg, #fbf6ee);
  border: 1.5px solid var(--theme-border, rgba(74, 58, 48, 0.2));
  border-radius: 4px;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s, color 0.15s, caret-color 0.15s;
  box-sizing: border-box;
}

.flr-pd__gift-textarea.is-color-black {
  color: #111111 !important;
  caret-color: #111111 !important;
}

.flr-pd__gift-textarea.is-color-golden,
.flr-pd__gift-textarea.is-color-gold {
  color: #c19a4b !important;
  caret-color: #c19a4b !important;
}

.flr-pd__gift-textarea::placeholder {
  color: var(--theme-text-muted, #726a62);
  opacity: 0.75;
}

.flr-pd__gift-textarea.is-color-golden::placeholder,
.flr-pd__gift-textarea.is-color-gold::placeholder {
  color: color-mix(in srgb, #c19a4b 55%, #726a62);
}

.flr-pd__gift-textarea:focus {
  border-color: var(--theme-primary, #6f4f3a);
}

/* ── Delivery date ───────────────────────────────────────── */
.flr-pd__delivery-date {
  margin-bottom: 1.25rem;
}

.flr-pd__date-input {
  width: 100%;
  padding: 0.75em 1em;
  font-family: var(--theme-font-family);
  font-size: 0.92rem;
  color: var(--theme-text, #2a2320);
  background: var(--theme-bg, #fbf6ee);
  border: 1.5px solid var(--theme-border, rgba(74, 58, 48, 0.2));
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.flr-pd__date-input:focus {
  border-color: var(--theme-primary, #6f4f3a);
}

.flr-pd__date-hint {
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--theme-text-muted, #726a62);
}

/* ── Quantity + ATB row ───────────────────────────────────── */
.flr-pd__actions-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 1.5rem;
}

/* Quantity stepper */
.flr-pd__qty-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--theme-border, rgba(74, 58, 48, 0.2));
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
}

.flr-pd__qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 100%;
  min-height: 48px;
  background: none;
  border: none;
  font-family: var(--theme-font-family);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--theme-text, #2a2320);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}

.flr-pd__qty-btn:hover {
  background: var(--theme-blush, #f7e9e4);
  color: var(--theme-primary, #6f4f3a);
}

.flr-pd__qty-input {
  width: 40px;
  text-align: center;
  font-family: var(--theme-font-family);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--theme-text, #2a2320);
  background: none;
  border: none;
  -moz-appearance: textfield;
  appearance: textfield;
  outline: none;
  padding: 0;
}

.flr-pd__qty-input::-webkit-outer-spin-button,
.flr-pd__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Add to basket button */
.flr-pd__atb {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  font-family: var(--theme-font-family);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--theme-surface, #fff9f2);
  background: var(--theme-primary, #6f4f3a);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s;
}

.flr-pd__atb:hover {
  background: var(--theme-espresso, #4a3a30);
}

.flr-pd__atb:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.flr-pd__atb-sep {
  opacity: 0.7;
}

.flr-pd__atb-price {
  font-weight: 700;
}

@media (max-width: 480px) {
  .flr-pd__actions-row {
    flex-direction: column;
  }

  .flr-pd__qty-wrap {
    align-self: flex-start;
  }
}

/* ── Assurances ───────────────────────────────────────────── */
.flr-pd__assurances {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flr-pd__assurances li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--theme-font-family);
  font-size: 0.84rem;
  color: var(--theme-text-muted, #726a62);
}

.flr-pd__assurances li svg {
  flex-shrink: 0;
  color: var(--theme-primary, #6f4f3a);
}

/* ── Accordions — 60% width below layout ─────────────────── */
.flr-pd__accordions {
  border-top: 1px solid var(--theme-border, rgba(74, 58, 48, 0.14));
  margin-top: clamp(48px, 6vw, 72px);
  max-width: 60%;
}

@media (max-width: 860px) {
  .flr-pd__accordions {
    max-width: 100%;
  }
}

.flr-pd__accordion {
  border-bottom: 1px solid var(--theme-border, rgba(74, 58, 48, 0.14));
}

.flr-pd__acc-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--theme-font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--theme-text, #2a2320);
  text-align: left;
  transition: color 0.15s;
}

.flr-pd__acc-trigger:hover {
  color: var(--theme-primary, #6f4f3a);
}

.flr-pd__acc-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
}

.flr-pd__acc-icon::before,
.flr-pd__acc-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.flr-pd__acc-icon::before {
  width: 12px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.flr-pd__acc-icon::after {
  width: 1.5px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.flr-pd__acc-trigger[aria-expanded="true"] .flr-pd__acc-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.flr-pd__acc-panel[hidden] {
  display: none;
}

.flr-pd__acc-body {
  padding-bottom: 1.5rem;
  font-family: var(--theme-font-family);
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--theme-text-muted, #726a62);
}

/* Beat RTE inline styles on nested span/p/etc so theme text styling wins */
.flr-pd__acc-body,
.flr-pd__acc-body *:not(strong):not(b):not(a) {
  font-family: var(--theme-font-family) !important;
  font-size: 0.93rem !important;
  line-height: 1.75 !important;
  color: var(--theme-text-muted, #726a62) !important;
}

.flr-pd__acc-body p {
  margin: 0 0 0.75rem;
}

.flr-pd__acc-body p:last-child {
  margin-bottom: 0;
}

.flr-pd__acc-body a {
  color: var(--theme-primary, #6f4f3a) !important;
  text-decoration: underline;
}

.flr-pd__acc-body strong,
.flr-pd__acc-body b {
  font-weight: 600;
  color: var(--theme-text, #2a2320) !important;
}

/* Related products ("You May Also Like" / "Complete the gift") — removed */
[data-renderer="store-related-products"],
[data-controller="RelatedProducts"],
.flr-pd__related {
  display: none !important;
}

/* ── Related products (kept hidden; leftover theme styles) ── */
.flr-pd__related {
  margin-top: clamp(60px, 8vw, 100px);
  padding-top: clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--theme-border, rgba(74, 58, 48, 0.12));
}

.flr-pd__related-head {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.flr-pd__related-eyebrow {
  font-family: var(--theme-font-family);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--theme-mocha-deep, #8a6450);
  margin-bottom: 0.6rem;
}

.flr-pd__related-title {
  font-family: var(--theme-font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--theme-text, #2a2320);
  letter-spacing: -0.01em;
}

.flr-pd__related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
}

@media (max-width: 700px) {
  .flr-pd__related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .flr-pd__related-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Related product cards (duplicated from product-list.css) ─
   Each page loads its own CSS bundle so card rules must live here too. */
.flr-pl-item {
  cursor: pointer;
  min-width: 0;
}

.flr-pl-item__img-wrap {
  display: block;
  width: 100%;
  text-decoration: none;
}

.flr-pl-item__img-box {
  position: relative;
  width: 100%;
  padding-top: 100%;
  height: 0;
  overflow: hidden;
  border-radius: var(--theme-radius-lg, 10px);
  background: var(--theme-blush, #f7e9e4);
}

.flr-pl-item__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.flr-pl-item:hover .flr-pl-item__img {
  transform: scale(1.06);
}

.flr-pl-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.flr-pl-item__meta-left {
  flex: 1 1 0;
  min-width: 0;
}

.flr-pl-item__name {
  font-family: var(--theme-font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--theme-text, #2a2320);
  line-height: 1.2;
  margin: 0 0 0.15em;
}

.flr-pl-item__price {
  font-family: var(--theme-font-family);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--theme-primary, #6f4f3a);
  white-space: nowrap;
  flex-shrink: 0;
}

.flr-pl-item__from {
  font-weight: 400;
  font-size: 0.82rem;
  margin-right: 2px;
  color: var(--theme-text-muted, #726a62);
}