:root {
  --fp-forest: #136f39;
  --fp-forest-deep: #0c4b2a;
  --fp-sage: #90b371;
  --fp-sage-dark: #5f875d;
  --fp-cream: #f5f0e6;
  --fp-cream-soft: #fffaf1;
  --fp-gold: #d5b15a;
  --fp-coral: #e6b08e;
  --fp-light-green: #bfd38f;
  --fp-wood: #c89a63;
  --fp-paper: var(--fp-cream);
  --fp-warm: #fbf6ec;
  --fp-mint: var(--fp-light-green);
  --fp-mint-dark: var(--fp-forest);
  --fp-sun: var(--fp-gold);
  --fp-leaf: var(--fp-sage-dark);
  --fp-ink: #1f3d2d;
  --fp-ink-soft: #685744;
  --fp-line: #e7dcc8;
  --fp-white: #ffffff;
  --fp-shadow: 0 18px 45px rgba(19, 111, 57, 0.14);
  --fp-shadow-strong: 0 24px 60px rgba(12, 75, 42, 0.2);
  --fp-radius: 18px;
  --fp-radius-soft: 28px;
  --fp-pill: 999px;
  --fp-container: 1240px;
  --fp-transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--fp-cream);
  color: var(--fp-ink);
  font-family: "Nunito Sans", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--fp-forest);
}

:focus-visible {
  outline: 3px solid var(--fp-gold);
  outline-offset: 3px;
}

.fp-container {
  width: min(100% - 32px, var(--fp-container));
  margin-inline: auto;
}

.fp-skip-link,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fp-skip-link:focus {
  z-index: 9999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 14px;
  clip: auto;
  background: var(--fp-ink);
  color: var(--fp-white);
  border-radius: var(--fp-radius);
}

.fp-topbar {
  background: var(--fp-forest);
  color: var(--fp-cream-soft);
  font-size: 13px;
}

.fp-topbar__inner {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 8px 0;
}

.fp-topbar__inner span {
  white-space: nowrap;
}

.fp-site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(245, 240, 230, 0.94);
  border-bottom: 1px solid rgba(231, 220, 200, 0.82);
  backdrop-filter: blur(14px);
}

.fp-site-header.is-scrolled {
  box-shadow: 0 12px 36px rgba(12, 75, 42, 0.08);
}

.fp-site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 84px;
}

.fp-brand {
  display: inline-flex;
  align-items: center;
  width: 88px;
}

.fp-brand img {
  max-height: 72px;
  object-fit: contain;
}

.fp-primary-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.fp-primary-nav__list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: var(--fp-pill);
  color: var(--fp-ink);
  font-size: 14px;
  font-weight: 800;
  transition: background var(--fp-transition), color var(--fp-transition);
}

.fp-primary-nav__list a:hover,
.fp-primary-nav__list .current-menu-item > a {
  background: rgba(144, 179, 113, 0.2);
  color: var(--fp-forest);
}

.fp-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fp-icon-link,
.fp-cart-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-pill);
  background: var(--fp-cream-soft);
  font-size: 14px;
  font-weight: 800;
  transition: transform var(--fp-transition), border-color var(--fp-transition), box-shadow var(--fp-transition);
}

.fp-mobile-nav-cart {
  display: none;
}

.fp-icon-link:hover,
.fp-cart-link:hover {
  transform: translateY(-1px);
  border-color: var(--fp-sage);
  box-shadow: 0 10px 28px rgba(19, 111, 57, 0.12);
}

.fp-cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 8px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--fp-coral);
  color: var(--fp-white);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.fp-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-pill);
  background: var(--fp-cream-soft);
}

.fp-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--fp-ink);
  transition: transform var(--fp-transition), opacity var(--fp-transition);
}

.fp-main {
  overflow: hidden;
}

.fp-hero {
  position: relative;
  min-height: 720px;
  color: var(--fp-white);
  background: var(--fp-forest-deep);
  isolation: isolate;
}

.fp-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.fp-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 45%;
}

.fp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(12, 75, 42, 0.9), rgba(19, 111, 57, 0.7) 44%, rgba(19, 111, 57, 0.12));
}

.fp-hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -74px;
  left: -12vw;
  z-index: 0;
  height: 150px;
  background: var(--fp-cream);
  border-radius: 50% 50% 0 0 / 82% 82% 0 0;
  pointer-events: none;
}

.fp-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 720px;
  max-width: 760px;
  padding: 96px 0;
}

.fp-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 14px;
  border-radius: var(--fp-pill);
  background: rgba(213, 177, 90, 0.16);
  color: var(--fp-forest);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fp-hero .fp-eyebrow {
  background: rgba(213, 177, 90, 0.82);
  color: var(--fp-forest-deep);
}

.fp-hero h1,
.fp-section-heading h2,
.fp-salons__content h2,
.fp-about-strip h2,
.fp-page-header h1 {
  margin: 0;
  font-family: "Fredoka", "Nunito Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.fp-hero h1 {
  max-width: 680px;
  font-size: 72px;
}

.fp-hero p:not(.fp-eyebrow) {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 250, 241, 0.94);
  font-size: 19px;
}

.fp-hero__actions,
.fp-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.fp-button,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--fp-pill);
  font-family: "Nunito Sans", "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: transform var(--fp-transition), background var(--fp-transition), border-color var(--fp-transition), box-shadow var(--fp-transition);
}

.fp-button--primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: linear-gradient(180deg, var(--fp-sage), var(--fp-forest));
  color: var(--fp-white);
  box-shadow:
    inset 0 0 0 1px rgba(255, 250, 241, 0.46),
    0 14px 30px rgba(19, 111, 57, 0.24);
}

.fp-button--primary:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, var(--fp-light-green), var(--fp-forest));
  color: var(--fp-white);
}

.fp-button--secondary {
  background: rgba(255, 250, 241, 0.14);
  color: var(--fp-white);
  border-color: rgba(255, 250, 241, 0.58);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 241, 0.08);
}

.fp-button--secondary:hover {
  transform: translateY(-2px);
  background: var(--fp-cream-soft);
  color: var(--fp-forest);
}

.fp-button--primary::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 10px;
  border-radius: 12px 12px 12px 3px;
  background: var(--fp-cream-soft);
  box-shadow: 0 0 0 5px rgba(255, 250, 241, 0.22);
  transform: rotate(-20deg);
}

.fp-trust-band {
  position: relative;
  z-index: 1;
  background: var(--fp-cream);
  border-bottom: 1px solid var(--fp-line);
}

.fp-trust-band__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  padding: 26px 0 18px;
}

.fp-trust-band__grid div {
  position: relative;
  min-height: 92px;
  padding: 22px 22px 22px 58px;
  border: 1px solid rgba(231, 220, 200, 0.88);
  border-radius: var(--fp-radius-soft);
  background: rgba(255, 250, 241, 0.74);
  box-shadow: 0 8px 24px rgba(19, 111, 57, 0.06);
}

.fp-trust-band__grid div::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 22px;
  width: 22px;
  height: 22px;
  border-radius: 14px 14px 14px 3px;
  background: var(--fp-light-green);
  box-shadow: 0 0 0 7px rgba(191, 211, 143, 0.22);
  transform: rotate(-22deg);
}

.fp-trust-band strong,
.fp-trust-band span {
  display: block;
}

.fp-trust-band strong {
  font-size: 14px;
  font-weight: 900;
  color: var(--fp-forest);
}

.fp-trust-band span {
  margin-top: 4px;
  color: var(--fp-ink-soft);
  font-size: 14px;
}

.fp-section {
  position: relative;
  padding: 84px 0;
}

.fp-section--categories {
  background:
    radial-gradient(circle at 8% 18%, rgba(230, 176, 142, 0.16) 0 4px, transparent 5px),
    radial-gradient(circle at 11% 24%, rgba(230, 176, 142, 0.16) 0 4px, transparent 5px),
    var(--fp-cream);
}

.fp-section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.fp-section-heading h2,
.fp-salons__content h2,
.fp-about-strip h2,
.fp-page-header h1 {
  font-size: 52px;
  color: var(--fp-forest);
}

.fp-section-heading p:not(.fp-eyebrow),
.fp-salons__content p,
.fp-about-strip p {
  color: var(--fp-ink-soft);
  font-size: 17px;
}

.fp-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fp-category-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius-soft);
  background: var(--fp-cream-soft);
  box-shadow: 0 10px 30px rgba(19, 111, 57, 0.08);
  transition: transform var(--fp-transition), box-shadow var(--fp-transition), border-color var(--fp-transition);
}

.fp-category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(144, 179, 113, 0.9);
  box-shadow: var(--fp-shadow);
}

.fp-category-card__image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--fp-warm);
  border-bottom: 1px dashed rgba(213, 177, 90, 0.45);
}

.fp-category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.fp-category-card:hover img {
  transform: scale(1.04);
}

.fp-category-card__body {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.fp-category-card__body strong {
  color: var(--fp-forest);
  font-size: 19px;
  font-weight: 900;
}

.fp-category-card__body span {
  color: var(--fp-ink-soft);
  font-size: 15px;
}

.fp-themes {
  overflow: hidden;
  background: var(--fp-forest);
  color: var(--fp-white);
}

.fp-themes::before,
.fp-themes::after {
  content: "";
  position: absolute;
  right: -12vw;
  left: -12vw;
  height: 96px;
  background: var(--fp-cream);
  pointer-events: none;
}

.fp-themes::before {
  top: -62px;
  border-radius: 0 0 50% 50% / 0 0 82% 82%;
}

.fp-themes::after {
  bottom: -62px;
  border-radius: 50% 50% 0 0 / 82% 82% 0 0;
}

.fp-themes__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 34px;
  align-items: start;
}

.fp-themes h2 {
  margin: 0;
  font-family: "Fredoka", "Nunito Sans", "Segoe UI", Arial, sans-serif;
  font-size: 50px;
  line-height: 1.04;
  letter-spacing: 0;
}

.fp-theme-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fp-theme-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px dashed rgba(213, 177, 90, 0.55);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.12);
  color: var(--fp-cream-soft);
  font-weight: 800;
  transition: background var(--fp-transition), color var(--fp-transition), transform var(--fp-transition);
}

.fp-theme-list a:hover {
  transform: translateY(-1px);
  background: var(--fp-gold);
  color: var(--fp-forest-deep);
}

.fp-featured-products {
  background: var(--fp-cream-soft);
}

.fp-empty-products,
.fp-shop__notice {
  padding: 22px;
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius-soft);
  background: var(--fp-cream);
}

.fp-salons {
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--fp-cream), var(--fp-warm)),
    var(--fp-cream);
}

.fp-salons__grid,
.fp-about-strip__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 54px;
  align-items: center;
}

.fp-salons__media,
.fp-about-strip img {
  overflow: hidden;
  border-radius: 42px 42px 84px 42px;
  box-shadow: var(--fp-shadow);
}

.fp-salons__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.fp-check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.fp-check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--fp-ink-soft);
}

.fp-check-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--fp-light-green);
  box-shadow: 0 0 0 4px rgba(191, 211, 143, 0.26);
}

.fp-buy-steps {
  background: var(--fp-cream);
}

.fp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: none;
}

.fp-steps li {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius-soft);
  background: var(--fp-cream-soft);
  box-shadow: 0 8px 24px rgba(19, 111, 57, 0.06);
}

.fp-steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--fp-gold);
  color: var(--fp-forest-deep);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.fp-steps strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
}

.fp-steps p {
  margin: 8px 0 0;
  color: var(--fp-ink-soft);
}

.fp-faq {
  background: var(--fp-cream-soft);
}

.fp-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.fp-faq-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius-soft);
  background: var(--fp-cream);
}

.fp-faq-card h3 {
  margin: 0;
  color: var(--fp-forest);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.fp-faq-card p {
  margin: 10px 0 0;
  color: var(--fp-ink-soft);
}

.fp-legal-note {
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid var(--fp-line);
  border-left: 5px solid var(--fp-coral);
  border-radius: var(--fp-radius-soft);
  background: var(--fp-warm);
}

.fp-legal-note strong {
  display: block;
  font-size: 17px;
  font-weight: 900;
}

.fp-legal-note p {
  max-width: 980px;
  margin: 8px 0 0;
  color: var(--fp-ink-soft);
}

.fp-about-strip {
  background:
    radial-gradient(circle at 92% 20%, rgba(191, 211, 143, 0.22) 0 70px, transparent 72px),
    var(--fp-cream-soft);
}

.fp-about-strip__grid {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
}

.fp-about-strip img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.fp-link-arrow {
  display: inline-flex;
  margin-top: 12px;
  color: var(--fp-forest);
  font-weight: 900;
}

.fp-link-arrow::after {
  content: "→";
  margin-left: 8px;
  transition: transform var(--fp-transition);
}

.fp-link-arrow:hover::after {
  transform: translateX(4px);
}

.fp-page {
  padding: 64px 0 92px;
}

.fp-page__wrap,
.fp-shop__wrap {
  max-width: 1120px;
}

.fp-page-content {
  padding: 42px;
  border: 1px solid rgba(231, 220, 200, 0.9);
  border-radius: var(--fp-radius-soft);
  background: var(--fp-cream-soft);
  box-shadow: 0 8px 32px rgba(19, 111, 57, 0.08);
}

.fp-entry-content {
  color: var(--fp-ink-soft);
}

.fp-entry-content a {
  color: var(--fp-forest);
  font-weight: 800;
}

.fp-entry-content > *:first-child {
  margin-top: 0;
}

.fp-entry-content > *:last-child {
  margin-bottom: 0;
}

.fp-entry-content h2,
.fp-entry-content h3 {
  color: var(--fp-forest);
  line-height: 1.12;
}

.fp-entry-content h2 {
  margin: 34px 0 14px;
  font-size: 32px;
}

.fp-entry-content h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.fp-page-lead {
  max-width: 820px;
  margin-bottom: 26px;
  color: var(--fp-ink-soft);
  font-size: 18px;
}

.fp-page-card-grid,
.fp-page-step-grid,
.fp-page-faq-grid {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.fp-page-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fp-page-step-grid,
.fp-page-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fp-page-card,
.fp-page-step,
.fp-page-faq,
.fp-page-note {
  padding: 22px;
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius-soft);
  background: var(--fp-cream);
}

.fp-page-card {
  min-height: 180px;
}

.fp-page-card img {
  width: 100%;
  margin: -22px -22px 18px;
  max-width: calc(100% + 44px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--fp-line);
}

.fp-page-card h2,
.fp-page-card h3,
.fp-page-step h2,
.fp-page-step h3,
.fp-page-faq h2,
.fp-page-faq h3 {
  margin-top: 0;
}

.fp-page-card p,
.fp-page-step p,
.fp-page-faq p,
.fp-page-note p {
  margin-bottom: 0;
}

.fp-page-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.fp-page-list li,
.fp-page-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--fp-line);
  border-radius: 999px;
  background: var(--fp-cream-soft);
  color: var(--fp-forest);
  font-weight: 800;
}

.fp-page-note {
  margin-top: 24px;
  border-left: 5px solid var(--fp-coral);
  background: var(--fp-warm);
}

.fp-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.fp-shop {
  padding: 44px 0 90px;
  background: var(--fp-cream);
}

.fp-shop__notice {
  display: grid;
  gap: 4px;
  margin-bottom: 24px;
}

.fp-shop__notice strong {
  color: var(--fp-forest);
}

.fp-shop__wrap,
.woocommerce {
  min-width: 0;
  max-width: 100%;
}

.fp-shop p,
.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  overflow-wrap: break-word;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product {
  float: none;
  width: auto !important;
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius-soft);
  background: var(--fp-cream-soft);
  box-shadow: 0 8px 26px rgba(19, 111, 57, 0.07);
  transition: transform var(--fp-transition), border-color var(--fp-transition), box-shadow var(--fp-transition);
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-3px);
  border-color: rgba(144, 179, 113, 0.88);
  box-shadow: var(--fp-shadow);
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0;
  border-bottom: 1px dashed rgba(213, 177, 90, 0.45);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
  margin-left: 14px;
  margin-right: 14px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 48px;
  color: var(--fp-forest);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.woocommerce ul.products li.product .price {
  color: var(--fp-forest);
  font-size: 16px;
  font-weight: 900;
}

.woocommerce ul.products li.product .button {
  width: calc(100% - 28px);
  margin-bottom: 14px;
}

.variations select.fp-enhanced-select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.fp-variation-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.fp-variation-button {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-pill);
  background: var(--fp-cream-soft);
  color: var(--fp-forest);
  font-weight: 900;
  cursor: pointer;
  transition: background var(--fp-transition), border-color var(--fp-transition), color var(--fp-transition);
}

.fp-variation-button.is-active,
.fp-variation-button:hover {
  border-color: var(--fp-forest);
  background: var(--fp-forest);
  color: var(--fp-white);
}

.woocommerce .woocommerce-products-header__title,
.woocommerce div.product .product_title,
.woocommerce-cart h1,
.woocommerce-checkout h1,
.woocommerce-account h1 {
  margin: 0 0 18px;
  color: var(--fp-forest);
  font-family: "Fredoka", "Nunito Sans", "Segoe UI", Arial, sans-serif;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: 0;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering,
.woocommerce div.product .summary,
.woocommerce table.shop_table,
.woocommerce form.checkout,
.woocommerce form.login,
.woocommerce form.register {
  color: var(--fp-ink-soft);
}

.woocommerce .woocommerce-ordering select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container .select2-selection--single {
  min-height: 46px;
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius);
  background: var(--fp-cream-soft);
  color: var(--fp-ink);
  font-family: "Nunito Sans", "Segoe UI", Arial, sans-serif;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus,
.woocommerce .woocommerce-ordering select:focus {
  border-color: var(--fp-sage);
  outline: 3px solid rgba(191, 211, 143, 0.34);
}

.woocommerce table.shop_table,
.woocommerce-checkout #payment,
.woocommerce .cart_totals,
.woocommerce .woocommerce-customer-details address,
.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product div.summary {
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius-soft);
  background: var(--fp-cream-soft);
  box-shadow: 0 8px 24px rgba(19, 111, 57, 0.06);
}

.woocommerce .cart_totals,
.woocommerce-checkout #payment,
.woocommerce .woocommerce-customer-details address,
.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product div.summary {
  padding: 22px;
}

.woocommerce table.shop_table {
  overflow: hidden;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  border-top-color: var(--fp-forest);
  border-radius: var(--fp-radius);
  background: var(--fp-cream-soft);
  color: var(--fp-ink-soft);
}

.fp-site-footer {
  background:
    linear-gradient(180deg, var(--fp-forest), var(--fp-forest-deep));
  color: var(--fp-cream);
}

.fp-site-footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(160px, 1fr));
  gap: 34px;
  padding: 54px 0 34px;
}

.fp-site-footer h2 {
  margin: 0 0 14px;
  color: var(--fp-white);
  font-size: 15px;
}

.fp-site-footer p {
  color: rgba(255, 250, 241, 0.76);
}

.fp-footer-logo {
  width: 88px;
  margin-bottom: 14px;
}

.fp-site-footer ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.fp-site-footer a {
  color: rgba(255, 250, 241, 0.78);
}

.fp-site-footer a:hover {
  color: var(--fp-gold);
}

.fp-footer-whatsapp {
  display: inline-flex;
  margin-top: 8px;
  font-weight: 900;
}

.fp-site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 250, 241, 0.14);
  color: rgba(255, 250, 241, 0.68);
  font-size: 13px;
}

@media (max-width: 1024px) {
  .fp-site-header__inner {
    grid-template-columns: auto auto minmax(0, 1fr) auto;
  }

  .fp-menu-toggle {
    display: inline-block;
  }

  .fp-primary-nav {
    grid-column: 1 / -1;
    position: fixed;
    top: 119px;
    right: 16px;
    left: 16px;
    display: none;
    max-height: calc(100vh - 140px);
    overflow: auto;
    border: 1px solid var(--fp-line);
    border-radius: var(--fp-radius-soft);
    background: var(--fp-cream-soft);
    box-shadow: var(--fp-shadow);
  }

  .fp-primary-nav.is-open {
    display: block;
  }

  .fp-primary-nav__list {
    display: grid;
    gap: 0;
    justify-content: stretch;
    padding: 8px;
  }

  .fp-primary-nav__list a {
    width: 100%;
    justify-content: flex-start;
  }

  .fp-mobile-nav-cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    margin: 4px 8px 8px;
    padding: 11px 14px;
    border: 1px dashed rgba(200, 154, 99, 0.5);
    border-radius: var(--fp-pill);
    background: rgba(200, 154, 99, 0.12);
    color: var(--fp-forest);
    font-weight: 900;
  }

  .fp-header-actions {
    grid-column: 4;
    grid-row: 1;
    justify-self: end;
  }

  .fp-hero,
  .fp-hero__content {
    min-height: 640px;
  }

  .fp-hero h1 {
    font-size: 62px;
  }

  .fp-trust-band__grid,
  .fp-steps,
  .fp-faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fp-category-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fp-themes__inner,
  .fp-salons__grid,
  .fp-about-strip__grid,
  .fp-page-card-grid,
  .fp-page-step-grid,
  .fp-page-faq-grid,
  .fp-site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .fp-container {
    width: min(100% - 24px, var(--fp-container));
  }

  .fp-topbar__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 14px;
    overflow: visible;
    padding: 7px 0;
    text-align: center;
  }

  .fp-topbar__inner span {
    white-space: normal;
    font-size: 12px;
  }

  .fp-topbar__inner span:nth-child(n+2) {
    display: none;
  }

  .fp-site-header__inner {
    gap: 10px;
    min-height: 74px;
  }

  .fp-brand {
    width: 70px;
  }

  .fp-brand img {
    max-height: 58px;
  }

  .fp-header-actions .fp-icon-link {
    display: none;
  }

  .fp-cart-link {
    display: none;
  }

  .fp-primary-nav {
    top: 107px;
  }

  .fp-hero,
  .fp-hero__content {
    min-height: 620px;
  }

  .fp-hero::before {
    background: linear-gradient(180deg, rgba(12, 75, 42, 0.94), rgba(19, 111, 57, 0.78) 48%, rgba(19, 111, 57, 0.4));
  }

  .fp-hero__media img {
    object-position: 56% 50%;
  }

  .fp-hero__content {
    justify-content: flex-end;
    padding: 74px 0 112px;
  }

  .fp-hero h1 {
    max-width: 100%;
    font-size: 40px;
    line-height: 1;
  }

  .fp-eyebrow {
    width: auto;
    max-width: min(100%, 330px);
    font-size: 11px;
    line-height: 1.25;
    white-space: normal;
  }

  .fp-hero p:not(.fp-eyebrow) {
    max-width: 100%;
    font-size: 16px;
  }

  .fp-button,
  .button,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button {
    width: 100%;
  }

  .fp-trust-band__grid,
  .fp-category-grid,
  .fp-steps,
  .fp-faq-grid,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .fp-trust-band__grid div {
    min-height: auto;
    padding: 18px 18px 18px 54px;
  }

  .fp-section {
    padding: 58px 0;
  }

  .fp-section-heading h2,
  .fp-salons__content h2,
  .fp-about-strip h2,
  .fp-themes h2,
  .fp-page-header h1 {
    font-size: 36px;
    line-height: 1;
  }

  .fp-page-content {
    padding: 24px;
  }

  .fp-shop__wrap,
  .woocommerce,
  .woocommerce-info,
  .woocommerce-message,
  .woocommerce-error {
    max-width: 100%;
  }

  .fp-shop__wrap {
    width: min(100% - 24px, var(--fp-container));
    margin-inline: auto;
  }

  .woocommerce,
  .woocommerce-info,
  .woocommerce-message,
  .woocommerce-error {
    width: 100%;
  }

  .woocommerce .woocommerce-products-header__title,
  .woocommerce div.product .product_title,
  .woocommerce-cart h1,
  .woocommerce-checkout h1,
  .woocommerce-account h1 {
    font-size: 34px;
  }

  .fp-site-footer__bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ============================================================
   PULIDO VISUAL — etapa presentación Fiore (2026-06-11)
   Acentos de marca, bloque de consulta, trust badges, tablet.
   ============================================================ */

/* --- Trust band: badges con recursos de marca y acentos --- */
.fp-trust-band__grid .fp-trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 22px 22px 22px;
  text-align: left;
}
.fp-trust-band__grid .fp-trust-item::before { display: none; } /* anula la viruta genérica */
.fp-trust-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
  font-size: 22px;
  line-height: 1;
  border-radius: 16px 16px 16px 6px;
  background: var(--fp-light-green);
  box-shadow: 0 6px 16px rgba(19, 111, 57, 0.12);
}
.fp-trust-item__icon--gold  { background: color-mix(in srgb, var(--fp-gold) 55%, var(--fp-cream-soft)); }
.fp-trust-item__icon--coral { background: color-mix(in srgb, var(--fp-coral) 60%, var(--fp-cream-soft)); }
.fp-trust-item__icon--wood  { background: color-mix(in srgb, var(--fp-wood) 50%, var(--fp-cream-soft)); }
.fp-trust-item__icon--leaf  { background: color-mix(in srgb, var(--fp-sage) 55%, var(--fp-cream-soft)); }

/* --- Bloque de consulta en ficha de producto --- */
.fp-consulta-box {
  margin: 8px 0 22px;
  padding: 22px 24px;
  border: 1px solid var(--fp-line);
  border-left: 5px solid var(--fp-gold);
  border-radius: var(--fp-radius);
  background: var(--fp-cream-soft);
}
.fp-consulta-box__label {
  margin: 0 0 4px;
  font-family: "Fredoka", "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--fp-forest);
}
.fp-consulta-box__text {
  margin: 0 0 16px;
  color: var(--fp-ink-soft);
  font-size: 15px;
}
.fp-consulta-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.fp-button--whatsapp {
  background: linear-gradient(180deg, #3ec56b, #1faa54);
}
.fp-button--whatsapp:hover {
  background: linear-gradient(180deg, #4ad97a, #169648);
}
.fp-button--ghost {
  background: transparent;
  color: var(--fp-forest);
  border-color: var(--fp-sage);
}
.fp-button--ghost:hover {
  transform: translateY(-2px);
  background: var(--fp-warm);
  color: var(--fp-forest-deep);
}

/* --- Loop: botón "Ver y consultar" en catálogo --- */
.woocommerce a.button.fp-loop-consultar,
.fp-loop-consultar {
  background: transparent;
  color: var(--fp-forest);
  border: 1.5px solid var(--fp-sage);
  box-shadow: none;
}
.woocommerce a.button.fp-loop-consultar:hover,
.fp-loop-consultar:hover {
  background: var(--fp-forest);
  color: var(--fp-cream-soft);
  border-color: var(--fp-forest);
}
/* Oculta el rastro de precio vacío en las cards del loop */
.woocommerce ul.products li.product .price:empty { display: none; }

/* --- Badges en cards de categoría --- */
.fp-category-card__image { position: relative; }
.fp-category-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: var(--fp-pill);
  background: var(--fp-forest);
  color: var(--fp-cream-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 14px rgba(12, 75, 42, 0.22);
}
.fp-category-card__badge--soon {
  background: color-mix(in srgb, var(--fp-gold) 80%, var(--fp-ink));
  color: var(--fp-ink);
}
.fp-category-card--soon { opacity: 0.92; }
.fp-category-card--soon .fp-category-card__body strong::after {
  content: " ·";
  color: var(--fp-gold);
}

/* --- CTA bajo destacados --- */
.fp-featured-cta {
  margin-top: 34px;
  text-align: center;
}

/* --- Precio variación oculto: que no quede hueco en la ficha --- */
.woocommerce div.product .woocommerce-variation-price:empty,
.woocommerce div.product p.price:empty { display: none; }

/* ============================================================
   RESPONSIVE — breakpoint tablet (641–1024) que faltaba
   ============================================================ */
@media (min-width: 641px) and (max-width: 1024px) {
  .fp-trust-band__grid { grid-template-columns: repeat(2, 1fr); }
  .fp-category-grid { grid-template-columns: repeat(2, 1fr); }
  .fp-section { padding: 64px 0; }
}

@media (max-width: 640px) {
  .fp-trust-band__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 18px 0 12px; }
  .fp-trust-item__icon { width: 38px; height: 38px; font-size: 19px; }
  .fp-trust-band strong { font-size: 13px; }
  .fp-trust-band span { font-size: 12.5px; }
  .fp-consulta-box { padding: 18px 18px; }
  .fp-consulta-box__actions { flex-direction: column; }
  .fp-consulta-box__actions .fp-button { width: 100%; }
  .fp-category-card__badge { font-size: 11px; padding: 4px 10px; }
}
