/* 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;
}

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

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

/* ── 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;
}

.flr-pd__attr-label {
  display: block;
  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);
  margin-bottom: 10px;
}

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

/* JS creates .t1-pd-attr-pill elements — styled as option cards */
.flr-pd__attr-pills .t1-pd-attr-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--theme-font-family);
  font-size: 1rem;
  font-weight: 600;
  padding: 1.1em 1.8em;
  min-width: 130px;
  border-radius: 4px;
  border: 1.5px solid var(--theme-border, rgba(74, 58, 48, 0.18));
  background: var(--theme-bg, #fbf6ee);
  color: var(--theme-text, #2a2320);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  line-height: 1.35;
  text-align: left;
}

.flr-pd__pill-price {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--theme-text-muted, #726a62);
  margin-top: 5px;
}

.flr-pd__attr-pills .t1-pd-attr-pill:hover {
  border-color: var(--theme-primary, #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-primary, #6f4f3a);
  background: var(--theme-blush, #f7e9e4);
  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);
}

/* ── 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-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 {
  border: 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);
}

/* ── Add-on groups ────────────────────────────────────────── */
.flr-pd__addon-groups {
  margin-bottom: 1.25rem;
}

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

.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: var(--theme-bg, #fbf6ee);
  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 ────────────────────────────── */
.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--error .flr-pd__addon-group-hd {
  color: #c0392b;
}

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

/* ── 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-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: 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;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

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

.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: 52px;
  font-family: var(--theme-font-family);
  font-size: 0.8rem;
  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);
}

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

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

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

/* ── Related products ─────────────────────────────────────── */
.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);
}
