/* 
Theme Name: Floretin 2026
Theme URI: https://www.stefanoroversi.it/
Description: Floretin 2026 is a child theme of Hello Elementor.
Author: Stefano Roversi
Author URI: https://www.stefanoroversi.it/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* ==========================================================================
   FLORETIN — DESIGN SYSTEM CSS
   Versione: 2.5.0
   Fonte: Figma MCP (fileKey qYDLicmbBozQVzj3Z6DKbt, nodes 84:2651 + 90:3012)
   Ultimo aggiornamento: 24 aprile 2026
   Autore: Stefano Roversi — stefanoroversi.it

   STRUTTURA:
   1. Design Tokens (CSS variables) — su :root, disponibili globalmente
   2. Base & Reset
   3. Typography
   4. Utility classes
   5. Buttons
   6. Page sections (reusable)
   7. Page-specific: Ingredienti e Formulazione
   8. Page-specific: La Nostra Filosofia
   9. Page-specific: Pagine informative (policy, legal, FAQ)
  10. Responsive breakpoints

   NOTA: tutte le classi sono namespaced sotto .fl-page per non collidere
   con stili Elementor / tema WordPress.
   ========================================================================== */


/* ==========================================================================
   1. DESIGN TOKENS
   Spostati su :root per renderli disponibili globalmente, senza richiedere
   il wrapper .fl-page come elemento antenato nel DOM.
   ========================================================================== */

:root {
  /* === COLORS === */
  --fl-blue:            #4291CE;
  --fl-blue-2:          #7CB3E1;
  --fl-blue-3:          #B2D1ED;
  --fl-blue-4:          #E6F0F9;
  --fl-blue-5:          #F3F9FF;
  --fl-blue-overlay:    rgba(71, 145, 207, 0.2);

  --fl-dark:            #271915;
  --fl-dark-overlay:    rgba(40, 25, 21, 0.3);
  --fl-dark-subtle:     rgba(39, 25, 21, 0.1);

  --fl-white:           #FFFEFE;
  --fl-clear:           #F9FDFF;
  --fl-clear-hero:      #F1F9FF;
  --fl-cream:           #F5F1EB;
  --fl-trust-bg:        #FBFBFB;
  --fl-gray-1:          #F6F6F6;
  --fl-gray-2:          #D4D1D0;
  --fl-gray-3:          #C3C3C3;
  --fl-gray-4:          #716D6C;

  --fl-brown:           #503228;
  --fl-brown-subtle:    rgba(80, 50, 40, 0.5);

  /* === TYPOGRAPHY === */
  --fl-font-display:    'Newsreader', Georgia, 'Times New Roman', serif;
  --fl-font-body:       'Montserrat', system-ui, -apple-system, sans-serif;

  /* === LAYOUT === */
  --fl-container-max:   1440px;
  --fl-content-max:     1240px;
  --fl-section-px:      100px;

  /* === RADII === */
  --fl-radius-pill:     100px;
  --fl-radius-card:     12px;
  --fl-radius-image-l:  30px;
  --fl-radius-image-m:  12px;
  --fl-radius-image-s:  8px;
  --fl-radius-image-xs: 6px;

  /* === MOTION === */
  --fl-ease:            cubic-bezier(0.22, 0.61, 0.36, 1);
  --fl-transition:      0.3s var(--fl-ease);
  --fl-transition-slow: 0.5s var(--fl-ease);
}

/* Manteniamo .fl-page come wrapper di pagina — ora eredita i token da :root */
.fl-page {
  font-family: var(--fl-font-display);
  color: var(--fl-dark);
  background: var(--fl-white);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* ==========================================================================
   2. BASE & RESET
   ========================================================================== */

.fl-page,
.fl-page * {
  box-sizing: border-box;
}

.fl-page p,
.fl-page h1,
.fl-page h2,
.fl-page h3,
.fl-page h4,
.fl-page h5,
.fl-page h6 {
  margin: 0;
}

.fl-page a {
  color: inherit;
  text-decoration: none;
  transition: color var(--fl-transition);
}

.fl-page a:hover {
  color: var(--fl-blue);
}

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


/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

/* Desktop type scale — dal Figma "text styles desktop" (node 154:3965) */

.fl-h1 {
  font-family: var(--fl-font-display);
  font-size: 60px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--fl-dark);
}

.fl-h1-medium {
  font-family: var(--fl-font-display);
  font-size: 60px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--fl-dark);
}

.fl-h2 {
  font-family: var(--fl-font-display);
  font-size: 44px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--fl-dark);
}

.fl-h3 {
  font-family: var(--fl-font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--fl-dark);
}

.fl-h4 {
  font-family: var(--fl-font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--fl-dark);
}

.fl-h4-uppercase {
  font-family: var(--fl-font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--fl-dark);
}

.fl-h5 {
  font-family: var(--fl-font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--fl-dark);
}

.fl-h6 {
  font-family: var(--fl-font-display);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--fl-dark);
}

.fl-h6-regular {
  font-family: var(--fl-font-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--fl-dark);
}

.fl-body {
  font-family: var(--fl-font-display);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--fl-dark);
}

.fl-body-light {
  font-family: var(--fl-font-display);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--fl-dark);
}

.fl-body-underline {
  font-family: var(--fl-font-display);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: underline;
  color: var(--fl-dark);
}

/* Montserrat UI styles */
.fl-body-small {
  font-family: var(--fl-font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--fl-dark);
}

.fl-body-medium {
  font-family: var(--fl-font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--fl-dark);
}


/* ==========================================================================
   4. UTILITY CLASSES
   ========================================================================== */

.fl-accent {
  font-style: italic;
  color: var(--fl-blue);
}

.fl-hr {
  border: none;
  border-top: 1px solid var(--fl-gray-2);
  margin: 0;
  width: 100%;
}

.fl-hr-brown {
  border: none;
  border-top: 1px solid var(--fl-brown-subtle);
  margin: 0;
  width: 100%;
}

.fl-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.fl-center-text {
  text-align: center;
}


/* ==========================================================================
   5. BUTTONS
   ========================================================================== */

.fl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 24px;
  font-family: var(--fl-font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  border: none;
  border-radius: var(--fl-radius-pill);
  cursor: pointer;
  transition: all var(--fl-transition);
  text-decoration: none;
  white-space: nowrap;
}

/* Primary: blu su bianco (uso principale homepage) */
.fl-btn-primary {
  background: var(--fl-blue);
  color: var(--fl-clear-hero);
}

.fl-btn-primary:hover {
  background: var(--fl-dark);
  color: var(--fl-clear);
}

/* White: su sfondi scuri/immagini (hero, absolute section) */
.fl-btn-white {
  padding: 8px 24px;
  background: var(--fl-white);
  color: var(--fl-dark);
}

.fl-btn-white:hover {
  background: var(--fl-clear);
  color: var(--fl-dark);
}

/* Clear: su sezioni dark (molecular) */
.fl-btn-clear {
  background: var(--fl-clear);
  color: var(--fl-dark);
}

.fl-btn-clear:hover {
  background: var(--fl-white);
}

/* Tertiary: inline link underlined */
.fl-btn-tertiary {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--fl-dark);
  font-family: var(--fl-font-display);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: underline;
  cursor: pointer;
  display: inline-block;
}

.fl-btn-tertiary:hover {
  color: var(--fl-blue);
}

/* Footer link with arrow */
.fl-btn-footer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
  background: transparent;
  border: none;
  color: var(--fl-clear);
  font-family: var(--fl-font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--fl-transition);
}

.fl-btn-footer:hover {
  transform: translateX(4px);
}

/* Button full width helper */
.fl-btn-block {
  width: 100%;
}


/* ==========================================================================
   6. PAGE SECTIONS (reusable)
   ========================================================================== */

/* Container base — edge-to-edge full width */
.fl-section {
  width: 100%;
  padding-left: var(--fl-section-px);
  padding-right: var(--fl-section-px);
}

/* Inner content — max width centrato */
.fl-container {
  max-width: var(--fl-content-max);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Hero section — 800px tall, immagine con overlay */
.fl-hero {
  position: relative;
  height: 600px;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--fl-white);
  overflow: hidden;
  padding: 80px var(--fl-section-px);
}

.fl-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.fl-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--fl-dark-overlay);
}

.fl-hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.fl-hero-title {
  font-family: var(--fl-font-display);
  font-size: 60px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
  color: var(--fl-white);
  margin-bottom: 24px;
}

.fl-hero-lede {
  font-family: var(--fl-font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--fl-white);
  max-width: 560px;
  margin: 0 auto 32px auto;
}

/* Section title + eyebrow block centrato (pattern ricorrente) */
.fl-section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.fl-section-header .fl-eyebrow-hero {
  font-family: var(--fl-font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--fl-dark);
}

/* Section spacing */
.fl-section-spacing-sm {
  padding-top: 60px;
  padding-bottom: 60px;
}

.fl-section-spacing-md {
  padding-top: 80px;
  padding-bottom: 80px;
}

.fl-section-spacing-lg {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Two column layout — About/Story style */
.fl-twocol {
  display: flex;
  align-items: stretch;
  background: var(--fl-white);
  border-radius: var(--fl-radius-image-s);
  overflow: hidden;
}

.fl-twocol-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 120px 100px 180px;
  gap: 32px;
}

.fl-twocol-image {
  flex: 0 0 50%;
  min-height: 560px;
  background-size: cover;
  background-position: center;
}

/* Grid 2 columns (generic) */
.fl-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

/* Grid 3 columns */
.fl-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Dark section (su foto + overlay, contenuto centrato) */
.fl-section-dark {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--fl-white);
  padding: 60px var(--fl-section-px);
}

.fl-section-dark-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.fl-section-dark-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--fl-dark-overlay);
}

.fl-section-dark-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}

.fl-section-dark .fl-h2,
.fl-section-dark .fl-h1 {
  color: var(--fl-white);
}

/* Final CTA strip (sobria, blu pieno, centrata) */
.fl-final-cta {
  background: var(--fl-blue);
  color: var(--fl-clear);
  padding: 100px var(--fl-section-px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.fl-final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fl-final-cta .fl-h2 {
  color: var(--fl-clear);
  margin-bottom: 16px;
  text-align: center;
}

.fl-final-cta p {
  color: var(--fl-clear);
  font-family: var(--fl-font-display);
  font-size: 16px;
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto 32px auto;
  text-align: center;
}

/* Button specifico per final-cta: testo blu visibile su bg bianco */
.fl-final-cta .fl-btn-white {
  color: var(--fl-blue);
  background: var(--fl-white);
  font-weight: 500;
}

.fl-final-cta .fl-btn-white:hover {
  background: var(--fl-dark);
  color: var(--fl-white);
}

/* Quote section (soft, su bg chiaro, completamente centrata) */
.fl-quote {
  background: var(--fl-blue-5);
  padding: 100px var(--fl-section-px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.fl-quote-inner {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.fl-quote-text {
  font-family: var(--fl-font-display);
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--fl-blue);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.fl-quote-caption {
  font-family: var(--fl-font-display);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--fl-gray-4);
  margin-top: 20px;
  text-align: center;
}


/* ==========================================================================
   7. PAGE-SPECIFIC: INGREDIENTI E FORMULAZIONE
   ========================================================================== */

/* INCI card — lista componenti prodotto */
.fl-inci-card {
  background: var(--fl-white);
  border: 1px solid var(--fl-gray-2);
  border-radius: var(--fl-radius-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fl-inci-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--fl-gray-2);
}

.fl-inci-card-title {
  font-family: var(--fl-font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--fl-dark);
}

.fl-inci-card-meta {
  font-family: var(--fl-font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--fl-gray-4);
  letter-spacing: 0;
  text-transform: uppercase;
}

.fl-inci-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fl-inci-list li {
  font-family: var(--fl-font-display);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--fl-dark);
  padding: 8px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  border-bottom: 1px solid var(--fl-brown-subtle);
}

.fl-inci-list li:last-child {
  border-bottom: none;
}

.fl-inci-name {
  font-weight: 500;
  color: var(--fl-dark);
}

.fl-inci-note {
  font-family: var(--fl-font-body);
  font-size: 12px;
  color: var(--fl-gray-4);
  text-align: right;
  white-space: nowrap;
}

/* Principi attivi section */
.fl-actives {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.fl-active-card {
  background: var(--fl-white);
  border: 1px solid var(--fl-gray-2);
  border-radius: var(--fl-radius-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fl-active-card-title {
  font-family: var(--fl-font-display);
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
  color: var(--fl-dark);
}

.fl-active-card-subtitle {
  font-family: var(--fl-font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--fl-blue);
  letter-spacing: 0;
}

.fl-active-card-body {
  font-family: var(--fl-font-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--fl-dark);
}

/* ==========================================================================
   IDENTITY CARD — Layout 2 colonne: mockup visivo + tabella dati
   ========================================================================== */

.fl-identity-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--fl-white);
  border: 1px solid var(--fl-gray-2);
  border-radius: var(--fl-radius-card);
  overflow: hidden;
  box-shadow: 0 32px 80px -40px rgba(39, 25, 21, 0.15);
}

/* Mockup visivo "documento di trasparenza" — sfondo scuro */
.fl-identity-visual {
  background: var(--fl-dark);
  color: var(--fl-white);
  padding: 60px 56px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
}

.fl-identity-visual::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.fl-identity-visual-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.fl-identity-visual-logo {
  font-family: var(--fl-font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 5px;
  color: var(--fl-clear);
  text-transform: uppercase;
}

.fl-identity-visual-meta {
  text-align: right;
  font-family: var(--fl-font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.fl-identity-visual-center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px 0;
}

.fl-identity-visual-title {
  font-family: var(--fl-font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--fl-clear);
  margin-bottom: 16px;
}

.fl-identity-visual-product {
  font-family: var(--fl-font-display);
  font-size: 48px;
  line-height: 1;
  font-weight: 400;
  color: var(--fl-white);
  margin-bottom: 12px;
  letter-spacing: 0;
}

.fl-identity-visual-subtitle {
  font-family: var(--fl-font-display);
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
}

.fl-identity-visual-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  font-family: var(--fl-font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.fl-identity-visual-bottom span {
  display: block;
  color: var(--fl-white);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 4px;
  font-family: var(--fl-font-display);
  font-style: italic;
}

/* Tabella dati lato destro */
.fl-identity-data {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
}

.fl-identity-data-title {
  font-family: var(--fl-font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--fl-dark);
  margin-bottom: 28px;
}

.fl-data-table {
  width: 100%;
  border-collapse: collapse;
}

.fl-data-table tr {
  border-bottom: 1px solid var(--fl-gray-2);
}

.fl-data-table tr:last-child {
  border-bottom: none;
}

.fl-data-table td {
  padding: 16px 0;
  font-size: 13px;
  vertical-align: top;
}

.fl-data-table td:first-child {
  font-family: var(--fl-font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fl-gray-4);
  width: 40%;
  padding-top: 20px;
}

.fl-data-table td:last-child {
  font-family: var(--fl-font-display);
  font-size: 14px;
  font-weight: 400;
  color: var(--fl-dark);
}

.fl-data-table .fl-percentage {
  color: var(--fl-blue);
  font-weight: 500;
  font-style: italic;
}

.fl-identity-cta {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  align-items: center;
}

/* ==========================================================================
   COMPLIANCE — Layout 4 colonne di card
   ========================================================================== */

.fl-compliance {
  padding: 100px var(--fl-section-px);
  background: var(--fl-white);
  text-align: center;
}

.fl-compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.fl-compliance-item {
  text-align: left;
  padding: 36px 28px;
  background: var(--fl-white);
  border: 1px solid var(--fl-gray-2);
  border-radius: var(--fl-radius-card);
  transition: border-color var(--fl-transition), transform var(--fl-transition);
}

.fl-compliance-item:hover {
  border-color: var(--fl-blue);
  transform: translateY(-3px);
}

.fl-compliance-code {
  font-family: var(--fl-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--fl-blue);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.fl-compliance-name {
  font-family: var(--fl-font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--fl-dark);
  margin-bottom: 14px;
}

.fl-compliance-desc {
  font-family: var(--fl-font-display);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--fl-gray-4);
}

/* ==========================================================================
   EXCLUSION — Layout 2 colonne: testo sinistra + griglia 2×3 destra
   ========================================================================== */

.fl-exclusion-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.fl-exclusion-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fl-footnote-card {
  background: var(--fl-blue-5);
  padding: 24px 28px;
  border-left: 2px solid var(--fl-brown);
  border-radius: var(--fl-radius-image-xs);
  font-family: var(--fl-font-display);
  font-size: 13px;
  line-height: 1.6;
  color: var(--fl-gray-4);
  margin-top: 12px;
}

.fl-footnote-card strong {
  display: block;
  color: var(--fl-dark);
  font-weight: 500;
  margin-bottom: 6px;
}

.fl-exclusion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--fl-gray-2);
  border-left: 1px solid var(--fl-gray-2);
  border-radius: var(--fl-radius-card);
  overflow: hidden;
}

.fl-exclusion-item {
  padding: 28px 24px;
  border-bottom: 1px solid var(--fl-gray-2);
  border-right: 1px solid var(--fl-gray-2);
  background: var(--fl-white);
  transition: background var(--fl-transition);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fl-exclusion-item:hover {
  background: var(--fl-blue-5);
}

.fl-exclusion-mark {
  font-family: var(--fl-font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--fl-blue);
  line-height: 1;
}

.fl-exclusion-label {
  font-family: var(--fl-font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--fl-dark);
}

.fl-exclusion-note {
  font-family: var(--fl-font-display);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--fl-gray-4);
}


/* ==========================================================================
   8. PAGE-SPECIFIC: LA NOSTRA FILOSOFIA
   ========================================================================== */

/* Full-bleed override: remove if the Elementor template is already full-width */
.fl-philosophy-page {
  --fl-content-max: 1050px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow-x: clip;
}

.fl-philosophy-hero {
  min-height: 600px;
  height: 600px;
}

.fl-page .fl-philosophy-hero {
  min-height: 600px !important;
}

.fl-philosophy-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 73% 44%, rgba(178, 209, 237, 0.16) 0%, rgba(178, 209, 237, 0) 18%),
    linear-gradient(90deg, rgba(39, 25, 21, 0.66) 0%, rgba(39, 25, 21, 0.38) 42%, rgba(39, 25, 21, 0.18) 100%),
    linear-gradient(110deg, #201613 0%, #655953 58%, #938881 100%);
  background-size: auto;
  background-position: 0 0;
}

.fl-philosophy-hero-bg::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 420px;
  right: 9%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(249, 253, 255, 0.3) 0%, rgba(249, 253, 255, 0.08) 100%);
  border: 1px solid rgba(249, 253, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(249, 253, 255, 0.2);
  filter: blur(0.5px);
  opacity: 0.55;
}

.fl-philosophy-hero .fl-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.fl-philosophy-intro-copy,
.fl-philosophy-section-note {
  color: var(--fl-gray-4);
}

.fl-philosophy-intro .fl-section-header {
  margin-bottom: 0;
}

.fl-philosophy-intro.fl-section-spacing-lg {
  padding-bottom: 60px;
}

.fl-philosophy-intro-copy {
  max-width: 760px;
}

.fl-philosophy-principles {
  background: var(--fl-trust-bg);
}

.fl-philosophy-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.fl-philosophy-principle-card {
  min-height: 100%;
}

.fl-philosophy-principle-card .fl-active-card-title {
  font-style: normal;
}

.fl-philosophy-principle-card-wide {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 560px;
  justify-self: center;
}

.fl-philosophy-negative {
  background: var(--fl-white);
}

.fl-philosophy-negative .fl-exclusion-wrapper {
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.fl-philosophy-negative .fl-exclusion-text {
  align-items: center;
  text-align: center;
  gap: 16px;
}

.fl-philosophy-negative .fl-exclusion-grid {
  grid-template-columns: 1fr;
  gap: 0;
  border: 0;
  border-top: 1px solid var(--fl-gray-2);
  border-bottom: 1px solid var(--fl-gray-2);
  border-radius: 0;
  overflow: visible;
}

.fl-philosophy-negative .fl-exclusion-item {
  padding: 24px 0;
  border: 0;
  background: transparent;
  transition: none;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 20px;
}

.fl-philosophy-negative .fl-exclusion-item + .fl-exclusion-item {
  border-top: 1px solid var(--fl-gray-2);
}

.fl-philosophy-negative .fl-exclusion-item:hover {
  background: transparent;
}

.fl-philosophy-negative .fl-exclusion-label {
  font-weight: 400;
}

.fl-philosophy-closing {
  background: var(--fl-white);
}

.fl-philosophy-closing-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fl-philosophy-closing .fl-body-medium {
  color: var(--fl-gray-4);
}

.fl-philosophy-cta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  align-items: center;
  width: 100%;
}

.fl-philosophy-cta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.88);
}

.fl-philosophy-cta .fl-btn-tertiary {
  color: var(--fl-clear);
}

.fl-philosophy-cta .fl-btn-tertiary:hover {
  color: var(--fl-blue-3);
}


/* ==========================================================================
   9. PAGE-SPECIFIC: PAGINE INFORMATIVE
   Policy, legal, FAQ, spedizioni, termini e condizioni, privacy, ecc.
   Namespace: .fl-info-page  →  .fl-info-*
   ========================================================================== */

/* ── Wrapper pagina ── */
/* Larghezza e padding delle pagine informative gestiti
   dalla sezione Elementor (content width 860px, boxed).
   Nessun wrapper CSS necessario. */

/* ── Intestazione pagina ── */
.fl-info-header {
  text-align: center;
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--fl-blue-4);
  margin-bottom: 64px;
}

.fl-info-eyebrow {
  font-family: var(--fl-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fl-blue);
  margin: 0 0 20px;
}

.fl-info-title {
  font-family: var(--fl-font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  color: var(--fl-dark);
  margin: 0 0 24px;
}

.fl-info-lead {
  font-family: var(--fl-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--fl-dark);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.82;
}

/* ── Sezioni ── */
.fl-info-section {
  margin-bottom: 56px;
}

.fl-info-section-label {
  font-family: var(--fl-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fl-blue);
  margin: 0 0 8px;
}

.fl-info-h2 {
  font-family: var(--fl-font-body);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--fl-dark);
  margin: 0 0 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--fl-blue-4);
}

.fl-info-h3 {
  font-family: var(--fl-font-body);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--fl-dark);
  margin: 32px 0 10px;
}

.fl-info-h3:first-of-type {
  margin-top: 0;
}

.fl-info-p {
  font-family: var(--fl-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--fl-dark);
  margin: 0 0 16px;
  opacity: 0.88;
}

/* ── Griglia card (es. zone di consegna, piani, opzioni) ── */
.fl-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0 0;
}

.fl-info-card {
  background: var(--fl-blue-5);
  border: 1px solid var(--fl-blue-4);
  border-radius: var(--fl-radius-card);
  padding: 24px 20px;
}

.fl-info-card-icon {
  width: 36px;
  height: 36px;
  background: var(--fl-blue-4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.fl-info-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--fl-blue);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fl-info-card-label {
  font-family: var(--fl-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fl-blue);
  margin: 0 0 6px;
}

.fl-info-card-title {
  font-family: var(--fl-font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--fl-dark);
  margin: 0 0 8px;
  line-height: 1.3;
}

.fl-info-card-body {
  font-family: var(--fl-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--fl-dark);
  margin: 0;
  opacity: 0.78;
}

/* Variante card in evidenza (sfondo blu pieno) */
.fl-info-card.fl-info-card--highlight {
  background: var(--fl-blue);
  border-color: var(--fl-blue);
}

.fl-info-card.fl-info-card--highlight .fl-info-card-icon {
  background: rgba(255, 255, 255, 0.18);
}

.fl-info-card.fl-info-card--highlight .fl-info-card-icon svg {
  stroke: var(--fl-clear);
}

.fl-info-card.fl-info-card--highlight .fl-info-card-label {
  color: rgba(249, 253, 255, 0.72);
}

.fl-info-card.fl-info-card--highlight .fl-info-card-title {
  color: var(--fl-clear);
}

.fl-info-card.fl-info-card--highlight .fl-info-card-body {
  color: var(--fl-clear);
  opacity: 0.82;
}

/* ── Alert / nota importante ── */
.fl-info-alert {
  background: var(--fl-cream);
  border-left: 3px solid var(--fl-brown);
  border-radius: 0 var(--fl-radius-card) var(--fl-radius-card) 0;
  padding: 20px 24px;
  margin: 20px 0 0;
}

.fl-info-alert p {
  font-family: var(--fl-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--fl-dark);
  margin: 0;
  opacity: 0.88;
}

.fl-info-alert strong {
  font-weight: 500;
  opacity: 1;
}

/* ── Step numerati (procedura, passaggi, istruzioni) ── */
.fl-info-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0 0;
}

.fl-info-step {
  padding: 24px 20px 20px;
  background: var(--fl-white);
  border: 1px solid var(--fl-blue-4);
  border-radius: var(--fl-radius-card);
}

.fl-info-step-num {
  font-family: var(--fl-font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fl-blue);
  margin: 0 0 10px;
}

.fl-info-step-title {
  font-family: var(--fl-font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--fl-dark);
  margin: 0 0 8px;
  line-height: 1.3;
}

.fl-info-step-body {
  font-family: var(--fl-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--fl-dark);
  margin: 0;
  opacity: 0.78;
}

.fl-info-step-body a {
  color: var(--fl-blue);
  text-decoration: none;
}

.fl-info-step-body a:hover {
  text-decoration: underline;
}

/* ── Blocco dati (aziendali, legali, riferimenti) ── */
.fl-info-data-block {
  background: var(--fl-blue-5);
  border: 1px solid var(--fl-blue-4);
  border-radius: var(--fl-radius-card);
  padding: 40px;
  margin-top: 64px;
}

.fl-info-data-eyebrow {
  font-family: var(--fl-font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fl-blue);
  margin: 0 0 12px;
}

.fl-info-data-name {
  font-family: var(--fl-font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--fl-dark);
  margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--fl-blue-4);
}

.fl-info-data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.fl-info-data-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fl-info-data-label {
  font-family: var(--fl-font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fl-gray-4);
  margin: 0;
}

.fl-info-data-value {
  font-family: var(--fl-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--fl-dark);
  margin: 0;
}

.fl-info-data-value a {
  color: var(--fl-blue);
  text-decoration: none;
}

.fl-info-data-value a:hover {
  text-decoration: underline;
}

.fl-info-data-meta {
  font-family: var(--fl-font-body);
  font-size: 11px;
  color: var(--fl-gray-4);
}


/* ==========================================================================
  10. RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1024px) {
  :root {
    --fl-section-px: 60px;
  }

  .fl-hero-title {
    font-size: 44px;
  }

  .fl-h1 { font-size: 44px; }
  .fl-h2 { font-size: 32px; }
  .fl-h3 { font-size: 22px; }

  .fl-twocol {
    flex-direction: column;
  }

  .fl-twocol-content {
    padding: 60px 40px;
  }

  .fl-twocol-image {
    flex: 0 0 auto;
    width: 100%;
    min-height: 400px;
  }

  .fl-grid-2,
  .fl-grid-3,
  .fl-actives {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fl-identity-wrapper,
  .fl-exclusion-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fl-philosophy-page {
    --fl-content-max: 1050px;
  }

  .fl-philosophy-principles-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fl-philosophy-principle-card-wide {
    grid-column: auto;
    width: 100%;
    max-width: none;
  }

  .fl-compliance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  :root {
    --fl-section-px: 20px;
  }

  /* Mobile typography from Figma "text styles mobile" (node 154:4207) */
  .fl-hero-title {
    font-size: 36px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.3;
  }

  .fl-h1 { font-size: 40px; font-weight: 500; line-height: 1.3; }
  .fl-h2 { font-size: 28px; font-weight: 500; line-height: 1.2; }
  .fl-h3 { font-size: 24px; font-weight: 400; line-height: 1.4; }
  .fl-h4 { font-size: 20px; font-weight: 500; line-height: 1.3; }
  .fl-h5 { font-size: 14px; font-weight: 500; line-height: 1.4; }
  .fl-h6 { font-size: 14px; font-weight: 400; line-height: 1.4; }

  .fl-body { font-size: 12px; line-height: 1.4; }
  .fl-body-small { font-size: 12px; }

  .fl-btn {
    width: 100%;
    font-size: 16px;
  }

  .fl-twocol-content {
    padding: 40px 20px;
  }

  .fl-inci-card,
  .fl-active-card {
    padding: 24px;
  }

  .fl-identity-visual,
  .fl-identity-data {
    padding: 40px 24px;
  }

  .fl-identity-visual-product {
    font-size: 36px;
  }

  .fl-compliance-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fl-exclusion-grid {
    grid-template-columns: 1fr;
  }

  .fl-exclusion-item {
    padding: 20px;
  }

  .fl-final-cta,
  .fl-quote,
  .fl-compliance {
    padding: 60px 20px;
  }

  .fl-quote-text {
    font-size: 22px;
  }

  .fl-philosophy-hero-bg::before {
    width: 180px;
    height: 320px;
    right: 4%;
  }

  .fl-philosophy-intro-copy {
    font-size: 16px;
  }

  .fl-section-spacing-lg { padding-top: 60px; padding-bottom: 60px; }
  .fl-section-spacing-md { padding-top: 48px; padding-bottom: 48px; }
  .fl-section-spacing-sm { padding-top: 40px; padding-bottom: 40px; }

  /* Pagine informative — mobile */
  .fl-info-header    { padding: 48px 0 40px; }
  .fl-info-data-block { padding: 28px 20px; }
  .fl-info-cards,
  .fl-info-steps,
  .fl-info-data-grid { grid-template-columns: 1fr; }
}

/* Product card media — tablet: ratio 1:1 to match square source images */
@media (min-width: 768px) and (max-width: 1024px) {
	.fl-product-media {
		aspect-ratio: 1 / 1;
		min-height: 0 !important;
	}
}

/* End of file */