/** Shopify CDN: Minification failed

Line 36:25 Unexpected "{"
Line 36:34 Expected ":"
Line 36:41 Unexpected "{"
Line 68:30 Unexpected "{"
Line 68:39 Expected ":"
Line 68:46 Unexpected "{"
Line 134:32 Unexpected "{"
Line 134:41 Expected ":"
Line 134:48 Unexpected "{"

**/
/* --- VARIABLES DE COLOR Y FUENTES --- */
  :root {
    --color-text-main: #333333;
    --color-text-muted: #777777;
    --color-accent: #c4a77d; /* Tono dorado/arena elegante para los enlaces */
    --color-bg-header: #fcfbf9; /* Tono hueso/crema muy sutil para la cabecera */
    
    /* Tipografías: Ajusta a las que ya uses en el tema de Casa Le Baron */
    --font-heading: 'Georgia', serif; 
    --font-body: 'Montserrat', sans-serif;
  }
  .content-for-layout {
      background-color: #E2E0D4;

  }

  .shopify-policy__container {
    max-width: 1200px !important;
    background-color: #E2E0D4;
    padding: 50px 0;
    width: 90%;
  }
  .privacy-page-wrapper-{{ section.id }} {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.8;
  }

  /* --- CABECERA DE LA PÁGINA --- 
  .shopify-policy__title {
    background-color: var(--color-bg-header);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
  }*/

  .shopify-policy__title h1 {
    font-family: "Built-Titling", serif !important;
    font-size: 50px;
    font-weight: 700;
    margin: 0;
    color: #111;
    letter-spacing: 1px;
  }

  .shopify-policy__title p {
    color: var(--color-text-muted);
    margin-top: 15px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  /* --- CONTENEDOR PRINCIPAL DE LECTURA --- */
  .privacy-content-container-{{ section.id }} {
    max-width: 800px; /* Ancho ideal para que el ojo no se canse leyendo */
    margin: 0 auto;
    padding: 60px 20px;
  }

  /* --- ESTILOS DEL TEXTO ENRIQUECIDO (RTE) --- */
  .shopify-policy__body {
    font-size: 18px;
    line-height: 150% !important;
    color: #444;
  }

  .shopify-policy__body h2, 
  .shopify-policy__body h3, 
  .shopify-policy__body h4 {
    font-family: "AppleGaramond", sans-serif;
    font-weight: 700;
    color: #111;
    margin-top: 50px;
    margin-bottom: 20px;
  }

  .shopify-policy__body h2 {
    font-size: 28px;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
  }

  .shopify-policy__body h3 {
    font-size: 22px;
  }

  .shopify-policy__body p {
    font-family: "AppleGaramond", sans-serif;
    margin-bottom: 20px;
  }

  .shopify-policy__body a {
    font-family: "AppleGaramond", sans-serif;
    color: #323221;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
  }

  .shopify-policy__body a:hover {
    color: #111;
  }

  .shopify-policy__body ul, 
  .shopify-policy__body ol {
    margin-bottom: 25px;
    padding-left: 20px;
  }

  .shopify-policy__body li {
    font-family: "AppleGaramond", sans-serif;
    margin-bottom: 12px;
  }

  /* --- RESPONSIVO MÓVIL --- */
  @media screen and (max-width: 768px) {
    .shopify-policy__title h1 {
      font-size: 32px;
    }
    .privacy-content-container-{{ section.id }} {
      padding: 40px 20px;
    }
    .shopify-policy__body h2 {
      font-size: 24px;
      margin-top: 40px;
    }
  }