﻿/* â”€â”€ FLORE MAR â€” CSS GLOBAL â”€â”€ */

/* â”€â”€ NAV â”€â”€ */
.fm-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107,143,113,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3.5rem;
  gap: 2rem;
}

.fm-logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.fm-logo-link img { height: 64px; width: auto; object-fit: contain; mix-blend-mode: multiply; }
.fm-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--sage-dark);
}

.fm-nav ul {
  list-style: none;
  display: flex;
  gap: 2.8rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.fm-nav ul li a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  text-transform: uppercase;
  transition: color 0.3s;
}
.fm-nav ul li a:hover { color: var(--sage-dark); }
.fm-nav ul li a.fm-nav-cta {
  background: var(--sage-dark);
  color: white;
  padding: 0.55rem 1.6rem;
  border-radius: 100px;
  letter-spacing: 0.06em;
  transition: background 0.3s;
}
.fm-nav ul li a.fm-nav-cta:hover { background: var(--sage); color: white; }

/* carrito */
.fm-cart-icon {
  position: relative;
  color: var(--warm-gray);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s;
  flex-shrink: 0;
}
.fm-cart-icon:hover { color: var(--sage-dark); }
.fm-cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--sage-dark);
  color: white;
  font-size: 0.6rem;
  font-weight: 500;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* hamburger */
.fm-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.fm-nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--sage-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* WordPress custom-logo en nav */
.fm-nav .custom-logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.fm-nav .custom-logo {
  height: 64px !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* WordPress custom-logo en footer */
.fm-footer-brand .custom-logo-link { text-decoration: none; }
.fm-footer-brand .custom-logo { height: 48px; width: auto; filter: brightness(10); }

/* â”€â”€ FOOTER â”€â”€ */
.fm-footer {
  background: var(--charcoal);
  padding: 4rem 5rem 2rem;
}
.fm-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.fm-footer-brand .fm-logo-link img { filter: brightness(10); }
.fm-footer-brand .fm-logo-text { color: white; font-size: 1.6rem; display: block; margin-bottom: 1rem; }
.fm-footer-brand p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  font-weight: 300;
  max-width: 240px;
  margin-top: 1rem;
}
.fm-footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.2rem;
  font-family: 'Jost', sans-serif;
}
.fm-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.fm-footer-col ul li a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.3s;
}
.fm-footer-col ul li a:hover { color: rgba(255,255,255,0.7); }

.fm-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fm-footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.2); margin: 0; }
.fm-social-icons { display: flex; gap: 1.2rem; }
.fm-social-icons a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.fm-social-icons a:hover { color: rgba(255,255,255,0.7); }

/* â”€â”€ BOTONES GLOBALES â”€â”€ */
.fm-btn-primary {
  display: inline-block;
  background: var(--sage-dark);
  color: white;
  padding: 1rem 2.4rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
}
.fm-btn-primary:hover { background: var(--sage); transform: translateY(-2px); color: white; }

.fm-btn-ghost {
  color: var(--charcoal);
  font-size: 0.8rem;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
}
.fm-btn-ghost:hover { color: var(--sage-dark); }

/* â”€â”€ ANULAR ESTILOS DE STOREFRONT QUE INTERFIEREN â”€â”€ */
.site-header { display: none !important; }
.site-footer { display: none !important; }

/* â”€â”€ WooCommerce â€” colores del tema â”€â”€ */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--sage-dark);
  color: white;
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  transition: background 0.3s;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--sage);
  color: white;
}
.woocommerce a.button.alt,
.woocommerce button.button.alt {
  background: var(--sage-dark);
}

/* â”€â”€ HOMEPAGE â”€â”€ */

/* Tokens de tipografÃ­a compartidos */
.fm-section-tag {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blush-dark);
  margin-bottom: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.fm-section-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--blush-dark);
  flex-shrink: 0;
}
.fm-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.9rem;
  font-weight: 300;
  line-height: 1.15;
  margin: 0 0 1rem;
}
.fm-section-title em { font-style: italic; color: var(--sage-dark); }

/* â”€â”€ HERO â”€â”€ */
.fm-hero {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 94vh;
}
.fm-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 6rem;
  background: var(--warm-white);
}
.fm-hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blush-dark);
  margin-bottom: 1.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.fm-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--blush-dark);
}
.fm-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.4rem;
  font-weight: 300;
  line-height: 1.08;
  color: var(--charcoal);
  margin: 0 0 1.6rem;
}
.fm-hero-title em { font-style: italic; color: var(--sage-dark); }
.fm-hero-desc {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--warm-gray);
  max-width: 400px;
  margin: 0 0 2.8rem;
  font-weight: 300;
}
.fm-hero-btns { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.fm-hero-visual {
  background: #eef4ef;
  position: relative;
  overflow: hidden;
}
.fm-hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.fm-deco-circle { position: absolute; border-radius: 50%; }
.fm-deco-c1 { width: 380px; height: 380px; background: rgba(201,169,110,0.1);  top: -60px;  right: -80px; }
.fm-deco-c2 { width: 260px; height: 260px; background: rgba(107,143,113,0.12); bottom: 40px; left: 20px; }
.fm-deco-c3 { width: 150px; height: 150px; background: rgba(222,184,168,0.2);  top: 40%;    left: 5%; }
.fm-hero-product {
  position: relative;
  z-index: 2;
  height: 480px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 30px 50px rgba(61,94,66,0.18));
  animation: fm-floatY 4s ease-in-out infinite;
}
@keyframes fm-floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.fm-hero-badge {
  position: absolute;
  bottom: 60px;
  left: 0;
  background: white;
  border-radius: 16px;
  padding: 1rem 1.4rem;
  box-shadow: 0 8px 32px rgba(61,94,66,0.12);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 3;
}
.fm-hero-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.fm-hero-badge strong { font-size: 0.82rem; color: var(--charcoal); font-weight: 500; display: block; }
.fm-hero-badge p { font-size: 0.72rem; color: var(--warm-gray); line-height: 1.4; margin: 0; }

/* â”€â”€ TRUST BAR â”€â”€ */
.fm-trust-bar {
  background: var(--sage-dark);
  display: flex;
  justify-content: center;
  gap: 5rem;
  padding: 1.3rem 2rem;
  flex-wrap: wrap;
}
.fm-trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
}
.fm-trust-item span { opacity: 0.6; font-size: 0.8rem; }

/* â”€â”€ NOSOTROS â”€â”€ */
.fm-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.fm-about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 3.5rem;
  background: var(--blush-light);
}
.fm-about-img-wrap { border-radius: 18px; overflow: hidden; }
.fm-about-img-wrap:nth-child(1) { margin-top: 2.5rem; }
.fm-about-img-wrap:nth-child(4) { margin-top: -2.5rem; }
.fm-about-img-wrap img { width: 100% !important; max-width: 100% !important; height: 220px; object-fit: contain; display: block; transition: transform 0.5s; mix-blend-mode: multiply; }
.fm-about-img-wrap:hover img { transform: scale(1.04); }
.fm-img-ph { width: 100%; height: 220px; border-radius: 18px; }
.fm-about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5.5rem 5rem 4.5rem;
  background: var(--warm-white);
}
.fm-about-text p { font-size: 0.95rem; line-height: 1.9; color: var(--warm-gray); margin-bottom: 1.2rem; font-weight: 300; }
.fm-values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 1.5rem; }
.fm-value-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--charcoal);
  padding: 0.6rem 0;
  border-top: 1px solid var(--light-gray);
}
.fm-value-chip::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* â”€â”€ STRATEGY STRIP â”€â”€ */
.fm-strategy-strip {
  background: var(--blush-light);
  padding: 3rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.fm-strategy-copy h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  margin: 0 0 0.6rem;
}
.fm-strategy-copy h3 em { font-style: italic; color: var(--sage-dark); }
.fm-strategy-copy p { font-size: 0.88rem; color: var(--warm-gray); max-width: 400px; line-height: 1.7; font-weight: 300; margin: 0; }
.fm-strategy-nums { display: flex; gap: 2rem; flex-shrink: 0; }
.fm-strategy-num { text-align: center; }
.fm-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: var(--sage-dark); line-height: 1; }
.fm-lbl { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-gray); margin-top: 0.2rem; }

/* â”€â”€ PRODUCTOS â”€â”€ */
.fm-products { padding: 7rem 5rem; background: var(--cream); }
.fm-products-header { text-align: center; margin-bottom: 3.5rem; }
.fm-products-desc { font-size: 0.95rem; color: var(--warm-gray); max-width: 480px; margin: 0 auto 1rem; line-height: 1.8; font-weight: 300; }
.fm-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  max-width: 1200px;
  margin: 0 auto;
}
.fm-product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
}
.fm-product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(61,94,66,0.13); }
.fm-product-img-wrap {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.fm-product-img-wrap img { width: 100% !important; max-width: 100% !important; height: 180px; object-fit: contain; transition: transform 0.4s; display: block; mix-blend-mode: multiply; }
.fm-product-card:hover .fm-product-img-wrap img { transform: scale(1.06); }
.fm-product-img-ph { display: block; width: 60px; height: 60px; border-radius: 50%; background: rgba(107,143,113,0.15); }
/* paletas tarjetas */
.fm-bg-teal  { background: linear-gradient(135deg, #e0f5f5, #c5eaeb); }
.fm-bg-lav   { background: linear-gradient(135deg, #ece8f5, #ddd5ef); }
.fm-bg-blush { background: linear-gradient(135deg, #f5eaeb, #efd5d5); }
.fm-bg-cream { background: linear-gradient(135deg, #f5f0e8, #ede6d8); }
.fm-bg-green { background: linear-gradient(135deg, #e8f5e8, #d0ebd0); }
.fm-bg-gold  { background: linear-gradient(135deg, #f5f0e0, #ede0c0); }
.fm-bg-sky   { background: linear-gradient(135deg, #e0f0f8, #c5def0); }
.fm-bg-pink  { background: linear-gradient(135deg, #f8e0ec, #f0c5dc); }
.fm-product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--sage-dark);
  color: white;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
}
.fm-badge-natural { background: var(--gold); }
.fm-product-info { padding: 1.2rem 1.4rem 1.5rem; }
.fm-product-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; font-weight: 400; margin: 0 0 0.3rem; }
.fm-product-sub { font-size: 0.77rem; color: var(--warm-gray); margin: 0 0 1rem; line-height: 1.5; font-weight: 300; }
.fm-product-footer { display: flex; align-items: center; justify-content: space-between; }
.fm-product-price { font-size: 1rem; font-weight: 500; color: var(--sage-dark); }
.fm-product-btn {
  background: transparent;
  border: 1px solid var(--sage-dark);
  color: var(--sage-dark);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
}
.fm-product-btn:hover { background: var(--sage-dark); color: white; }
.fm-products-cta { text-align: center; margin-top: 3rem; }
.fm-empty-msg { text-align: center; color: var(--warm-gray); font-size: 0.95rem; padding: 2rem 0; }

/* â”€â”€ BLOG â”€â”€ */
.fm-blog { padding: 7rem 5rem; background: var(--warm-white); }
.fm-blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.fm-blog-link {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--sage-dark);
  padding-bottom: 2px;
  transition: opacity 0.3s;
  white-space: nowrap;
  margin-bottom: 0.4rem;
}
.fm-blog-link:hover { opacity: 0.6; }
.fm-blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.6rem;
  max-width: 1200px;
  margin: 0 auto;
}
.fm-blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.fm-blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(61,94,66,0.1); }
.fm-blog-img-link { display: block; }
.fm-blog-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  overflow: hidden;
}
.fm-blog-img.fm-blog-img-lg { height: 280px; }
.fm-blog-img img { width: 100%; height: 100%; object-fit: cover; }
.fm-blog-info { padding: 1.4rem; }
.fm-blog-cat { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blush-dark); margin-bottom: 0.6rem; font-weight: 500; }
.fm-blog-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; line-height: 1.35; margin: 0 0 0.5rem; }
.fm-blog-featured .fm-blog-info h3 { font-size: 1.6rem; }
.fm-blog-info h3 a { text-decoration: none; color: var(--charcoal); transition: color 0.3s; }
.fm-blog-info h3 a:hover { color: var(--sage-dark); }
.fm-blog-info p { font-size: 0.82rem; color: var(--warm-gray); line-height: 1.7; font-weight: 300; margin: 0; }
.fm-blog-meta { display: flex; align-items: center; gap: 0.8rem; margin-top: 1rem; font-size: 0.72rem; color: var(--warm-gray); }
.fm-blog-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--light-gray); }

/* â”€â”€ NEWSLETTER â”€â”€ */
.fm-newsletter {
  background: var(--sage-dark);
  padding: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}
.fm-newsletter-copy h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 300; color: white; margin: 0 0 0.8rem; }
.fm-newsletter-copy h2 em { font-style: italic; color: var(--blush); }
.fm-newsletter-copy p { font-size: 0.92rem; color: rgba(255,255,255,0.65); line-height: 1.8; font-weight: 300; margin: 0; }
.fm-nl-form { display: flex; flex-direction: column; gap: 1rem; }
.fm-nl-row { display: flex; }
.fm-nl-input {
  flex: 1;
  padding: 1rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 0.88rem;
  font-family: 'Jost', sans-serif;
  border-radius: 100px 0 0 100px;
  outline: none;
  transition: border-color 0.3s;
}
.fm-nl-input::placeholder { color: rgba(255,255,255,0.4); }
.fm-nl-input:focus { border-color: rgba(255,255,255,0.5); }
.fm-nl-submit {
  background: var(--blush-dark);
  color: white;
  border: none;
  padding: 1rem 1.8rem;
  border-radius: 0 100px 100px 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  transition: background 0.3s;
  white-space: nowrap;
}
.fm-nl-submit:hover { background: var(--blush); color: var(--charcoal); }
.fm-nl-note { font-size: 0.72rem; color: rgba(255,255,255,0.35); letter-spacing: 0.04em; margin: 0; }

/* â”€â”€ RESPONSIVE NAV â”€â”€ */
@media (max-width: 768px) {
  .fm-nav { padding: 1rem 1.5rem; position: relative; flex-wrap: wrap; }
  .fm-nav-toggle { display: flex; }

  .fm-nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250,247,242,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid rgba(107,143,113,0.15);
    padding: 0.5rem 0 1rem;
    z-index: 99;
  }
  .fm-nav ul.open { display: flex; }
  .fm-nav ul li a { display: block; padding: 0.8rem 1.5rem; font-size: 0.85rem; }
  .fm-nav ul li a.fm-nav-cta { margin: 0.5rem 1.5rem; display: inline-block; }
}

@media (max-width: 768px) {
  .fm-footer { padding: 3rem 1.5rem 2rem; }
  .fm-footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .fm-footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 480px) {
  .fm-footer-top { grid-template-columns: 1fr; }
}

/* â”€â”€ RESPONSIVE HOMEPAGE â”€â”€ */
@media (max-width: 1024px) {
  .fm-products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .fm-hero-title { font-size: 3.4rem; }
  .fm-products-grid { grid-template-columns: repeat(2, 1fr); }
  .fm-blog-grid { grid-template-columns: 1fr 1fr; }
  .fm-trust-bar { gap: 2rem; }
}

@media (max-width: 768px) {
  /* Hero */
  .fm-hero { grid-template-columns: 1fr; min-height: auto; }
  .fm-hero-text { padding: 3rem 1.5rem 2rem; order: 1; }
  .fm-hero-title { font-size: 2.8rem; }
  .fm-hero-desc { max-width: 100%; }
  .fm-hero-visual { min-height: 420px; order: 2; }
  .fm-hero-product { height: 200px; }
  .fm-hero-badge { left: 10px; bottom: 15px; }

  /* Trust bar */
  .fm-trust-bar { justify-content: flex-start; gap: 1rem; padding: 1.2rem 1.5rem; }

  /* Nosotros */
  .fm-about { grid-template-columns: 1fr; }
  .fm-about-gallery { padding: 2rem 1.5rem; }
  .fm-about-img-wrap:nth-child(1) { margin-top: 0; }
  .fm-about-img-wrap:nth-child(4) { margin-top: 0; }
  .fm-about-text { padding: 2.5rem 1.5rem; }

  /* Strategy strip */
  .fm-strategy-strip { flex-direction: column; padding: 2.5rem 1.5rem; text-align: center; }
  .fm-strategy-copy p { max-width: 100%; }
  .fm-strategy-nums { justify-content: center; }

  /* Productos */
  .fm-products { padding: 4rem 1.5rem; }

  /* Blog */
  .fm-blog { padding: 4rem 1.5rem; }
  .fm-blog-header { flex-direction: column; gap: 1rem; align-items: flex-start; margin-bottom: 2rem; }
  .fm-blog-grid { grid-template-columns: 1fr; }
  .fm-blog-featured .fm-blog-info h3 { font-size: 1.35rem; }

  /* Newsletter */
  .fm-newsletter { grid-template-columns: 1fr; padding: 3.5rem 1.5rem; gap: 2rem; }
}

@media (max-width: 480px) {
  .fm-hero-title { font-size: 2.2rem; }
  .fm-hero-btns { flex-direction: column; align-items: flex-start; }
  .fm-products-grid { grid-template-columns: 1fr; }
  .fm-section-title { font-size: 2.2rem; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CATÃLOGO â€” archive-product.php
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Encabezado de la tienda */
.fm-shop-header {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
  padding: 4rem 5rem 3.5rem;
  text-align: center;
  color: white;
}
.fm-shop-header p {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.7rem;
  font-family: 'Jost', sans-serif;
}
.fm-shop-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  font-style: italic;
  margin: 0 0 0.5rem;
  line-height: 1.1;
  color: white;
}
.fm-shop-header span {
  font-size: 0.82rem;
  opacity: 0.6;
  display: block;
  font-family: 'Jost', sans-serif;
}

/* Barra de filtros sticky */
.fm-filter-bar {
  background: white;
  border-bottom: 1px solid var(--light-gray);
  padding: 1.2rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  position: sticky;
  top: 100px;
  z-index: 90;
}
.fm-cat-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.fm-cat-btn {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  border: 1.5px solid var(--light-gray);
  border-radius: 100px;
  font-size: 0.78rem;
  font-family: 'Jost', sans-serif;
  background: transparent;
  color: var(--warm-gray);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.fm-cat-btn.active,
.fm-cat-btn:hover {
  background: rgba(107,143,113,0.1);
  border-color: var(--sage);
  color: var(--sage-dark);
}
.fm-filter-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.fm-count-label {
  font-size: 0.78rem;
  color: var(--warm-gray);
  white-space: nowrap;
  font-family: 'Jost', sans-serif;
}
.fm-sort-form { display: flex; }
.fm-sort-select {
  border: 1.5px solid var(--light-gray);
  border-radius: 8px;
  padding: 0.42rem 0.9rem;
  font-size: 0.78rem;
  font-family: 'Jost', sans-serif;
  color: var(--warm-gray);
  background: transparent;
  cursor: pointer;
}

/* Layout: sidebar + Ã¡rea de productos */
.fm-shop-layout {
  display: flex;
  padding: 0 5rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
}
.fm-sidebar {
  width: 210px;
  flex-shrink: 0;
  padding: 2rem 2.5rem 2rem 0;
  border-right: 1px solid var(--light-gray);
}
.fm-sidebar-heading {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin: 1.5rem 0 0.8rem;
  font-family: 'Jost', sans-serif;
}
.fm-sidebar-heading:first-child { margin-top: 0; }
.fm-price-range { padding: 0.2rem 0; }
.fm-price-form { display: flex; flex-direction: column; gap: 0.6rem; }
.fm-price-inputs { display: flex; gap: 0.5rem; }
.fm-price-input {
  width: 80px;
  border: 1.5px solid var(--light-gray);
  border-radius: 8px;
  padding: 0.38rem 0.6rem;
  font-size: 0.8rem;
  font-family: 'Jost', sans-serif;
  color: var(--charcoal);
  background: white;
  transition: border-color 0.2s;
}
.fm-price-input:focus { outline: none; border-color: var(--sage); }
.fm-sidebar-apply {
  width: 100%;
  background: var(--sage-dark);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 0.55rem;
  font-size: 0.76rem;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s;
}
.fm-sidebar-apply:hover { background: var(--sage); }
.fm-filter-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.fm-filter-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0;
  font-size: 0.82rem;
  color: var(--warm-gray);
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  transition: color 0.2s;
}
.fm-filter-list li:hover { color: var(--sage-dark); }
.fm-filter-check {
  width: 15px;
  height: 15px;
  border: 1.5px solid var(--light-gray);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  flex-shrink: 0;
  color: transparent;
  transition: all 0.2s;
}
.fm-filter-check.is-checked { background: var(--sage); border-color: var(--sage); color: white; }

/* Ãrea de productos */
.fm-products-area { flex: 1; padding: 2rem 0 0 2.5rem; min-width: 0; }
.fm-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.fm-catalog-pagination { margin-top: 3rem; display: flex; justify-content: center; }
.fm-catalog-pagination .woocommerce-pagination ul {
  display: flex; gap: 0.4rem; list-style: none; padding: 0; margin: 0;
}
.fm-catalog-pagination .woocommerce-pagination ul li a,
.fm-catalog-pagination .woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--light-gray);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--warm-gray);
  text-decoration: none;
  transition: all 0.2s;
  background: white;
  font-family: 'Jost', sans-serif;
}
.fm-catalog-pagination .woocommerce-pagination ul li .current {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: white;
}
.fm-catalog-pagination .woocommerce-pagination ul li a:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
}
.fm-no-products {
  padding: 5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.fm-no-products p { color: var(--warm-gray); font-size: 0.95rem; }

/* â”€â”€ Tarjetas del catÃ¡logo â”€â”€ */
.fm-catalog-card { border-radius: 16px; border: 1px solid var(--light-gray); }
.fm-card-img-link { display: block; text-decoration: none; }
.fm-card-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.fm-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s;
  mix-blend-mode: multiply;
  display: block;
}
.fm-catalog-card:hover .fm-card-img { transform: scale(1.05); }
.fm-card-img-ph {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(107,143,113,0.15);
}
.fm-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.65rem;
  padding: 0.22rem 0.7rem;
  border-radius: 100px;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-family: 'Jost', sans-serif;
}
.fm-badge-sale     { background: var(--blush); color: #7a3535; }
.fm-badge-featured { background: var(--gold);  color: white;   }
.fm-card-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--warm-gray);
  opacity: 0;
  transition: opacity 0.2s, color 0.2s;
  cursor: pointer;
  backdrop-filter: blur(4px);
}
.fm-catalog-card:hover .fm-card-wishlist { opacity: 1; }
.fm-card-wishlist:hover { color: var(--blush-dark); }
.fm-card-quick {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(61,94,66,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem;
  opacity: 0;
  transition: opacity 0.2s;
  backdrop-filter: blur(4px);
}
.fm-catalog-card:hover .fm-card-quick { opacity: 1; }
.fm-card-quick a,
.fm-card-quick button,
.fm-card-quick .button {
  color: white !important;
  font-size: 0.78rem;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.06em;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
.fm-card-quick a:hover,
.fm-card-quick button:hover,
.fm-card-quick .button:hover {
  color: rgba(255,255,255,0.75) !important;
  background: transparent !important;
  transform: none;
}
.fm-card-info { padding: 0.9rem 1rem 1.1rem; }
.fm-card-category {
  font-size: 0.68rem;
  color: var(--warm-gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  font-family: 'Jost', sans-serif;
}
.fm-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 0.4rem;
}
.fm-card-name a { color: var(--charcoal); text-decoration: none; transition: color 0.2s; }
.fm-card-name a:hover { color: var(--sage-dark); }
.fm-card-rating { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.4rem; }
.fm-card-stars { color: #d4956a; font-size: 0.7rem; letter-spacing: 1px; }
.fm-card-revcount { font-size: 0.7rem; color: var(--warm-gray); font-family: 'Jost', sans-serif; }
.fm-card-price-row { display: flex; align-items: center; gap: 0.5rem; }
.fm-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--sage-dark);
}
.fm-card-old { font-size: 0.78rem; color: var(--warm-gray); text-decoration: line-through; }
.fm-card-petals { font-size: 0.68rem; color: var(--sage); margin-top: 0.3rem; font-family: 'Jost', sans-serif; }

/* Responsive catÃ¡logo */
@media (max-width: 1024px) {
  .fm-sidebar { display: none; }
  .fm-products-area { padding-left: 0; }
  .fm-catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .fm-shop-layout { padding: 0 2rem 5rem; }
  .fm-filter-bar { padding: 1.2rem 2rem; }
  .fm-shop-header { padding: 3rem 2rem 2.5rem; }
}
@media (max-width: 768px) {
  .fm-catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .fm-filter-bar { position: static; padding: 1rem 1.5rem; }
  .fm-shop-header h1 { font-size: 2.2rem; }
  .fm-shop-layout { padding: 0 1.5rem 4rem; }
  .fm-cat-btn { font-size: 0.72rem; padding: 0.38rem 0.8rem; }
  .fm-count-label { display: none; }
}
@media (max-width: 480px) {
  .fm-catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .fm-shop-header { padding: 2.5rem 1.5rem 2rem; }
  .fm-filter-bar { position: static; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TICKER â€” beneficios de compra (single-product.php)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.fm-ticker-wrap {
  background: var(--sage-dark);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
}
.fm-ticker-track {
  display: flex;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  overflow: hidden;
}
.fm-ticker-inner {
  display: inline-flex;
  white-space: nowrap;
  animation: fm-ticker-scroll 28s linear infinite;
  will-change: transform;
}
.fm-ticker-wrap:hover .fm-ticker-inner {
  animation-play-state: paused;
}
.fm-ticker-content {
  display: inline-block;
  padding-right: 4rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  line-height: 36px;
}
@keyframes fm-ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PRODUCTO INDIVIDUAL â€” single-product.php
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Breadcrumb */
.fm-breadcrumb {
  padding: 0.8rem 5%;
  font-size: 0.78rem;
  color: var(--warm-gray);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  font-family: 'Jost', sans-serif;
}
.fm-breadcrumb a { color: var(--sage-dark); text-decoration: none; transition: opacity 0.2s; }
.fm-breadcrumb a:hover { opacity: 0.7; }
.fm-bc-sep { opacity: 0.4; }

/* Layout 2 columnas */
.fm-single-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 1.5rem 5% 4rem;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}

/* GalerÃ­a */
.fm-single-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: sticky;
  top: 120px;
  align-self: start;
}
.fm-gallery-main {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, #eef4ef 0%, #f4ede8 100%);
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.fm-gallery-img {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
  transition: transform 0.4s;
}
.fm-gallery-main:hover .fm-gallery-img { transform: scale(1.03); }
.fm-gallery-ph {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--sage-dark);
  opacity: 0.5;
  text-align: center;
  padding: 2rem;
}
.fm-gallery-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--blush-dark);
  color: white;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
}
.fm-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.fm-thumb {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, #eef4ef, #f4ede8);
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fm-thumb img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; display: block; }
.fm-thumb.active { border-color: var(--sage); }
.fm-thumb:hover { border-color: var(--sage-light); }

/* Info del producto */
.fm-single-info { padding-top: 0.5rem; }

.fm-prod-cat-pill {
  display: inline-block;
  background: rgba(107,143,113,0.12);
  color: var(--sage-dark);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  transition: background 0.2s;
}
.fm-prod-cat-pill:hover { background: rgba(107,143,113,0.2); }

.fm-prod-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.6rem;
  color: var(--charcoal);
}
.fm-prod-title em { font-style: italic; color: var(--sage-dark); }

.fm-prod-rating {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}
.fm-stars .star-rating { font-size: 0.9rem; }
.fm-rating-link {
  font-size: 0.82rem;
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: 'Jost', sans-serif;
}

/* Precio WooCommerce */
.fm-prod-price { margin-bottom: 1.2rem; }
.fm-prod-price .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--charcoal);
}
.fm-prod-price .price del { font-size: 1.2rem; color: var(--warm-gray); margin-right: 0.4rem; }
.fm-prod-price .price ins { text-decoration: none; color: var(--sage-dark); }

.fm-prod-short-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--warm-gray);
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--blush);
  padding-left: 1rem;
  font-weight: 300;
}

/* Formulario WooCommerce: cantidad + botÃ³n */
.fm-prod-form .quantity { display: flex; align-items: center; }
.fm-prod-form .quantity .qty {
  width: 52px;
  text-align: center;
  border: 1.5px solid var(--light-gray);
  border-radius: 100px;
  padding: 0.5rem;
  font-size: 0.95rem;
  font-family: 'Jost', sans-serif;
  margin-right: 0.6rem;
}
.fm-prod-form .single_add_to_cart_button {
  flex: 1;
  background: var(--sage-dark) !important;
  color: white !important;
  border-radius: 100px !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  padding: 0.85rem 1.8rem !important;
  transition: background 0.2s !important;
  text-transform: none !important;
}
.fm-prod-form .single_add_to_cart_button:hover { background: var(--sage) !important; }

/* Confianza */
.fm-prod-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--light-gray);
}
.fm-trust-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--warm-gray);
  font-family: 'Jost', sans-serif;
}
.fm-trust-row svg { color: var(--sage); flex-shrink: 0; }

/* â”€â”€ TABS â”€â”€ */
.fm-tabs-wrap {
  max-width: 1300px;
  margin: 2rem auto 4rem;
  padding: 0 5%;
}
.fm-tabs-nav {
  display: flex;
  border-bottom: 1.5px solid var(--light-gray);
  margin-bottom: 2rem;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.fm-tabs-nav::-webkit-scrollbar { display: none; }
.fm-tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.75rem 1.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
  cursor: pointer;
  margin-bottom: -1.5px;
  transition: all 0.2s;
  font-family: 'Jost', sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}
.fm-tab-btn.active { color: var(--sage-dark); border-bottom-color: var(--sage-dark); }
.fm-tab-btn:hover { color: var(--sage); }

.fm-tab-pane { display: none; }
.fm-tab-pane.active { display: block; }
.fm-tab-content { max-width: 820px; }
.fm-tab-content p { font-size: 0.92rem; line-height: 1.8; color: var(--warm-gray); margin-bottom: 1rem; font-weight: 300; }
.fm-tab-empty { color: var(--warm-gray); font-size: 0.92rem; font-style: italic; }
.fm-ingredients-note {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--warm-gray);
  font-style: italic;
  font-family: 'Jost', sans-serif;
}

/* â”€â”€ PRODUCTOS RELACIONADOS â”€â”€ */
.fm-related-wrap {
  max-width: 1300px;
  margin: 0 auto 5rem;
  padding: 0 5%;
}
.fm-related-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.8rem;
}
.fm-related-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
}
.fm-related-title em { font-style: italic; color: var(--sage-dark); }
.fm-related-link {
  font-size: 0.78rem;
  color: var(--sage-dark);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--sage-dark);
  padding-bottom: 1px;
  transition: opacity 0.2s;
  font-family: 'Jost', sans-serif;
}
.fm-related-link:hover { opacity: 0.65; }
.fm-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.fm-rel-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s;
  display: block;
}
.fm-rel-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(61,94,66,0.1); }
.fm-rel-img-wrap {
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, #eef4ef, #f4ede8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.fm-rel-img {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
}
.fm-rel-img-ph {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(107,143,113,0.15);
}
.fm-rel-info { padding: 0.8rem 1rem 1rem; }
.fm-rel-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.3rem;
  color: var(--charcoal);
  font-family: 'Cormorant Garamond', serif;
}
.fm-rel-price { display: block; font-size: 0.9rem; color: var(--sage-dark); font-weight: 500; }
.fm-rel-price .price { font-size: 0.9rem; color: var(--sage-dark); font-family: 'Jost', sans-serif; }

/* Mensaje de descuento en carrito (floremar-descuentos.php) */
.fm-vol-msg {
  padding: 0.8rem 1.2rem;
  background: rgba(107,143,113,0.08);
  border-radius: 10px;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-family: 'Jost', sans-serif;
}
.fm-vol-active {
  font-size: 0.84rem;
  color: var(--sage-dark);
  font-weight: 500;
}
.fm-vol-next {
  font-size: 0.8rem;
  color: var(--warm-gray);
}

/* â”€â”€ RESPONSIVE â€” PRODUCTO INDIVIDUAL â”€â”€ */
@media (max-width: 900px) {
  .fm-single-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .fm-single-gallery { position: static; }
  .fm-prod-title { font-size: 2rem; }
  .fm-related-grid { grid-template-columns: repeat(2, 1fr); }
  .fm-prod-trust { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .fm-single-wrap { padding: 1rem 5% 3rem; }
  .fm-prod-title { font-size: 1.7rem; }
  .fm-tabs-wrap { padding: 0 1.5rem; }
  .fm-related-wrap { padding: 0 1.5rem; }
  .fm-related-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .fm-gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .fm-ticker-content { font-size: 0.68rem; }
}


/* ── FULL-WIDTH OVERRIDE — Anula max-width de Storefront en .entry-content ──
   Storefront/style.css fija max-width: 41em (~657px) en .entry-content para
   todas las páginas. En carrito/checkout/producto esto comprime el layout.
   body.fm-full-width se agrega en functions.php en esas páginas. ── */
body.fm-full-width .entry-content,
body.fm-full-width .entry-content > .woocommerce {
    max-width: 100%;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

/* ── HERO PRODUCT BANNER ── */
.fm-hero-product-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 80px;
}
.fm-hero-product-tag {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(107,143,113,0.18);
  color: var(--sage-dark);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
}
.fm-hero-product-cta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 0.5rem 0.5rem 0.5rem 1.2rem;
  border: 1px solid rgba(107,143,113,0.14);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
}
.fm-hero-shop-btn {
  background: var(--sage-dark);
  color: #fff;
  padding: 0.45rem 1.2rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.25s;
}
.fm-hero-shop-btn:hover { background: var(--sage); }
@media (max-width: 768px) {
  .fm-hero-product-wrap { padding-bottom: 20px; }
  .fm-hero-product-cta  { font-size: 0.8rem; gap: 0.8rem; }
}
