/* Letras Corpóreas Customizer frontend styles */

.lcc-configurator {
    margin: 25px 0;
    padding: 20px;
    border-radius: 12px;
    background: #434142 !important;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.lcc-configurator .lcc-row {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lcc-configurator label {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 4px;
    display: block;
    color: inherit;
}

.lcc-configurator input[type="text"],
.lcc-configurator input[type="number"],
.lcc-configurator textarea,
.lcc-configurator select {
    width: 100%;
    padding: 8px 10px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #b8bbc6;
    color: #111111;
    font-size: 16px;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

/* Texto: al cargar no ocupa tantas líneas, pero crece automáticamente al escribir */
.lcc-configurator #lcc_text{
    min-height: 44px;
    height: 44px;
    line-height: 1.3;
    resize: none;
    overflow: hidden;
}

.lcc-configurator input[type="text"]:focus,
.lcc-configurator input[type="number"]:focus,
.lcc-configurator textarea:focus,
.lcc-configurator select:focus {
    border-color: #f9c900;
    box-shadow: 0 0 0 1px rgba(249,201,0,0.5);
    background: #ffffff;
}

.lcc-mode-switch {
    justify-content: flex-start;
    gap: 20px;
}

.lcc-mode-switch label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 18px;
}

.lcc-mode-switch input[type="radio"] {
    accent-color: #f9c900;
}

.lcc-dimensions > div {
    flex: 1 1 120px;
}

.lcc-extras span {
    width: 100%;
    font-weight: 400;
    margin-bottom: 4px;
}

.lcc-extras label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 15px;
    font-size: 18px;
    cursor: pointer;
}

.lcc-extras input[type="checkbox"] {
    accent-color: #f9c900;
}

.lcc-base-options input[type="radio"] {
    accent-color: #f9c900;
}

/* Sujeción: radios con el mismo amarillo del resto */
.lcc-installation-options input[type="radio"] {
    accent-color: #f9c900;
}

/* Base: campo de color para metacrilato color */
.lcc-base-color-input{
    width: 160px;
    max-width: 220px;
    padding: 6px 8px;
    font-size: 18px;
    line-height: 1.2;
    border-radius: 8px;
    border: 1px solid #b8bbc6;
    background: #ffffff;
    color: #111111;
}

.lcc-base-color-input::placeholder{
    color: rgba(17,17,17,0.55);
}

/* Validación: color de base obligatorio */
.lcc-input-error{
    border-color: #d63638 !important;
    outline: none;
}

.lcc-field-error{
    display: inline-block;
    margin-left: 8px;
    font-size: 12px;
    color: #ff6b6b;
    line-height: 1.2;
}





.lcc-mode-file input[type="file"] {
    color: #f5f5f5;
    font-size: 13px;
}

.lcc-file-status {
    margin-top: 6px;
    font-size: 12px;
    color: #b0ffb0;
}

.lcc-hint {
    font-size: 12px;
    color: #aaaaee;
    opacity: 0.85;
}

.lcc-preview-wrapper {
    margin-top: 20px;
}

.lcc-preview-wrapper h4 {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
}

.lcc-preview {
    border-radius: 16px;
    background: radial-gradient(circle at top, #222244 0, #05050a 55%, #000000 100%);
    padding: 25px 15px;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.lcc-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(249,201,0,0.35);
    box-shadow:
        0 0 18px rgba(249,201,0,0.35),
        0 0 40px rgba(0, 255, 255, 0.2);
    opacity: 0.4;
    pointer-events: none;
}

.lcc-preview-inner {
    position: relative;
    padding: 10px 20px;
}

#lcc-preview-text {
    font-size: 32px;
    text-align: center;
    letter-spacing: 0.08em;
    color: #f9c900;
    text-shadow:
        0 0 6px rgba(249,201,0,0.9),
        0 0 20px rgba(249,201,0,0.9),
        0 0 40px rgba(249,201,0,0.9),
        0 0 80px rgba(249,201,0,0.7);
    white-space: pre-line;
}

.lcc-price-wrapper {
    margin-top: 18px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 14px;
}

#lcc-price-amount {
    font-size: 20px;
    font-weight: 700;
    color: #f9c900;
    text-shadow:
        0 0 4px rgba(0, 255, 204, 0.8),
        0 0 14px rgba(0, 255, 204, 0.5);
}

@media (min-width: 768px) {
    .lcc-configurator {
        padding: 25px;
        display: grid;
        grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
        gap: 24px;
    }

    .lcc-preview-wrapper,
    .lcc-price-wrapper {
        grid-column: 2 / 3;
    }

    .lcc-mode-switch,
    .lcc-mode-text,
    .lcc-mode-file,
    .lcc-dimensions,
    .lcc-extras,
    .lcc-row {
        grid-column: 1 / 2;
    }
}

@media (max-width: 767px) {
    .lcc-configurator {
        display: block;
    }

    #lcc-preview-text {
        font-size: 24px;
    }
}


/* Premium hint for large sizes */
.lcc-size-hint{
  width:100%;
  margin:6px 0 12px;
  padding:10px 12px;
  border-radius:10px;
  background:rgba(249,201,0,0.12);
  border:1px solid rgba(249,201,0,0.35);
  color:#f6e8a2;
  font-size:13px;
  line-height:1.35;
}

/* Ensure Woo notices readable on dark background */
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-info{
  border-radius:12px;
  padding:12px 14px;
  margin-bottom:14px;
}

.woocommerce-notices-wrapper .woocommerce-error{
  background:rgba(249,201,0,0.12);
  border:1px solid rgba(249,201,0,0.35);
  color:#f6e8a2;
}


/* Preview at the top for better UX */
.lcc-preview-top { margin-top: 8px; }
.lcc-preview-header { display:flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.lcc-price-inline { margin: 0; }

/* On wider screens keep preview visible */
@media (min-width: 900px){
  .lcc-preview-top { position: sticky; top: 90px; z-index: 5; }
}


/* ===== NFC 0.1.15 UI tidy ===== */
.lcc-mode-switch{display:flex;gap:14px;flex-wrap:wrap;margin:0 0 10px 0!important;}
.lcc-grid{display:grid;grid-template-columns:1fr;gap:14px;}
.lcc-formcol .lcc-row{margin:0 0 10px 0!important;}
.lcc-formcol label{display:block;margin:0 0 6px 0!important;}
.lcc-field-hint{font-size:12px;opacity:.7;margin-top:4px;}
.lcc-preview-title{color:#111!important;margin:0;}
.lcc-preview-header{display:flex;justify-content:space-between;align-items:baseline;gap:10px;margin:0 0 8px 0;}
.lcc-preview-wrapper{padding:10px;border-radius:10px;background:rgba(255,255,255,0.6);}
@media (min-width: 900px){
  .lcc-grid{grid-template-columns:1fr 420px;align-items:start;}
  .lcc-previewcol .lcc-preview-wrapper{position:sticky;top:90px;}
}
.lcc-formcol .lcc-dimensions{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
.lcc-price-only-text{opacity:.95;}
.lcc-size-hint{margin:8px 0 0 0!important;padding:10px;border-radius:10px;background:rgba(255,255,255,.06);}

/* Quote cart: hide any Woo prices/totals when quote exists */
body.lcc-quote-cart .product-price,
body.lcc-quote-cart .product-subtotal,
body.lcc-quote-cart .cart_totals,
body.lcc-quote-cart .woocommerce-cart-form__cart-item td.product-price,
body.lcc-quote-cart .woocommerce-cart-form__cart-item td.product-subtotal{display:none!important;}


/* Collision-proofing: avoid theme column layouts affecting the configurator */
.lcc-configurator, .lcc-configurator * { box-sizing: border-box; }
.lcc-configurator { width: 100% !important; max-width: 100% !important; }
.lcc-configurator .lcc-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  column-count: initial !important;
  column-gap: initial !important;
}
@media (min-width: 900px){
  .lcc-configurator .lcc-grid { grid-template-columns: 1fr 420px !important; }
}
.lcc-configurator .lcc-formcol,
.lcc-configurator .lcc-previewcol { width: 100% !important; min-width: 0 !important; }


/* ===== NFC 0.1.17: hard layout override to prevent theme columns ===== */
#lcc-configurator{width:100%!important;max-width:100%!important;}
#lcc-configurator, #lcc-configurator *{box-sizing:border-box;}
#lcc-configurator .lcc-rb-wrap{
  display:block!important;
  width:100%!important;
  columns:initial!important;
  column-count:initial!important;
  column-gap:initial!important;
}
#lcc-configurator .lcc-rb-form,
#lcc-configurator .lcc-rb-preview{
  width:100%!important;
  float:none!important;
  clear:none!important;
  min-width:0!important;
}
@media (min-width: 900px){
  #lcc-configurator .lcc-rb-wrap{
    display:flex!important;
    gap:16px!important;
    align-items:flex-start!important;
  }
  #lcc-configurator .lcc-rb-form{flex:1 1 auto!important;}
  #lcc-configurator .lcc-rb-preview{flex:0 0 420px!important;}
}

/* Ensure the form column never becomes "middle squeezed" */
#lcc-configurator .lcc-rb-form{max-width:none!important;}
#lcc-configurator .lcc-row{margin:0 0 10px 0!important;}
#lcc-configurator .lcc-preview-wrapper{width:100%!important;}


/* ===== NFC 0.1.18: break out of theme multi-column layouts ===== */
#lcc-configurator{
  -webkit-column-span: all !important;
  column-span: all !important;
  break-inside: avoid-column !important;
  page-break-inside: avoid !important;
  display:block !important;
  clear:both !important;
}

/* CTA presupuesto (debajo de Extras) */
.lcc-file-cta-row{ margin-top: 6px; }
.lcc-file-cta-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.22);
  background: transparent;
}
.lcc-file-cta-text{
  font-size:13px;
  line-height:1.35;
  color: rgba(255,255,255,0.9);
}
.lcc-file-cta-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.35);
  background: transparent;
  color:#fff;
  text-decoration:none;
  white-space:nowrap;
  font-size:14px;
}
.lcc-file-cta-button:hover{ border-color: rgba(255,255,255,0.6); }
.lcc-file-cta-card.is-alert{ border-color: rgba(255,255,255,0.55); }
@media (max-width: 520px){
  .lcc-file-cta-card{ flex-direction:column; align-items:stretch; }
  .lcc-file-cta-button{ width:100%; }
}


/* RB Highlight: make 'presupuesto' CTA stand out (still premium, not shouty) */
.lcc-file-cta-card{
  border-color: rgba(255, 215, 0, 0.22);
  background: rgba(255, 215, 0, 0.04);
}
.lcc-file-cta-button{
  border-width: 2px;
  border-color: rgba(255, 215, 0, 0.75);
  color: rgba(255, 255, 255, 0.98);
  background: rgba(255, 215, 0, 0.08);
}
.lcc-file-cta-button:hover{
  border-color: rgba(255, 215, 0, 0.95);
  background: rgba(255, 215, 0, 0.14);
}


/* === Rotulbrand CTA hierarchy (v0.3.1) === */
.lcc-configurator-form .lcc-primary-cta{
  background:#d6b004 !important;
  border:1px solid #d6b004 !important;
  color:#111 !important;
  font-weight:800 !important;
  padding:10px 14px !important;
  border-radius:12px !important;
  width:auto !important;
  display:inline-block !important;
}
.lcc-configurator-form .lcc-primary-cta:hover{
  background:#111 !important;
  border-color:#111 !important;
  color:#fff !important;
}
@media (max-width: 768px){
  .lcc-configurator-form .lcc-primary-cta{
    width:100% !important;
    display:block !important;
    text-align:center !important;
  }
}

/* Secondary CTA (presupuesto) - discreto pero legible */
.lcc-file-cta-row{ margin-top:14px; }
.lcc-file-cta-card{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,212,0,0.35);
  background: rgba(0,0,0,0.25);
}
.lcc-file-cta-text{ font-size:13px; line-height:1.3; color:#fff; }
.lcc-file-cta-text strong{ display:block; margin-bottom:2px; }
.lcc-file-cta-text span{ display:block; opacity:.85; }
.lcc-file-cta-button{
  background:transparent !important;
  border:1px solid #d6b004 !important;
  color:#d6b004 !important;
  font-weight:700 !important;
  padding:12px 16px !important;
  border-radius:12px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:44px !important;
  text-decoration:none !important;
  cursor:pointer !important;
  padding:10px 12px !important;
  border-radius:12px !important;
  text-decoration:none !important;
  white-space:nowrap;
}
.lcc-file-cta-button:hover{ background:#d6b004 !important; color:#111 !important; }

@media (max-width: 768px){
  .lcc-file-cta-card{ flex-direction:column; align-items:stretch; }
  .lcc-file-cta-button{ width:100% !important; text-align:center; }
}


/* === ROTULBRAND: Primary CTA (Continuar y añadir al carrito) === */
#lcc-configurator .lcc-primary-cta{
  background:#ffffff;
  border:1px solid #111111;
  color:#111111;
  font-weight:800;
  padding:10px 14px;
  border-radius:12px;
  width:auto;
  display:inline-block;
}
#lcc-configurator .lcc-primary-cta:hover{
  background:#111;
  border-color:#111;
  color:#fff;
}
@media (max-width: 768px){
  #lcc-configurator .lcc-primary-cta{
    width:100%;
    display:block;
    text-align:center;
  }
}



/* === ROTULBRAND: Inline CTA (solo dentro del aviso 140cm) === */
#lcc-configurator .lcc-limit-note{
  margin-top:10px;
}


/* ==========================================================
   LETRAS CORPÓREAS: PREVIEW SIN EFECTO NEÓN
   (El color del acabado lo define el selector y se aplica al texto)
   ========================================================== */
#lcc-configurator .lcc-preview{
  background:#ffffff !important;
  border:1px solid rgba(17,17,17,0.15) !important;
  box-shadow:none !important;
}

#lcc-configurator .lcc-preview::before{
  display:none !important;
}

#lcc-configurator #lcc-preview-text{
  text-shadow:none !important;
  letter-spacing:0.02em;
}

#lcc-configurator #lcc-price-amount{
  color:#111111 !important;
  text-shadow:none !important;
}
#lcc-configurator .lcc-limit-note-text{
  display:block;
  font-size:13px;
  line-height:1.25;
  margin-bottom:6px;
  opacity:.9;
}
#lcc-configurator .lcc-limit-note a,
#lcc-configurator .lcc-file-cta-inline{
  display:inline-block;
  padding:8px 10px;
  border:1px solid #111;
  border-radius:10px;
  background:#fff;
  color:#111;
  text-decoration:none;
  font-weight:700;
  font-size:13px;
}
#lcc-configurator .lcc-limit-note a:hover,
#lcc-configurator .lcc-file-cta-inline:hover{
  background:#111;
  color:#fff;
}
@media (max-width: 768px){
  #lcc-configurator .lcc-limit-note a,
  #lcc-configurator .lcc-file-cta-inline{
    width:100%;
    text-align:center;
  }
}



/* ROTULBRAND: CTA presupuesto (hover) con borde blanco para que se vea sobre fondo negro */
#lcc-configurator .lcc-limit-note a:hover,
#lcc-configurator .lcc-file-cta-inline:hover{
  border-color:#fff;
}

/* =============================
   LCC: White UI (base blanca, texto negro)
   ============================= */

.lcc-configurator{
  /* Fondo general del personalizador */
  background:#434142 !important;
  color:#fff !important;
  border:1px solid rgba(0,0,0,0.10);
  box-shadow:0 14px 34px rgba(0,0,0,0.10) !important;
}

.lcc-configurator label{
  color:#fff !important;
  font-weight:400 !important;
}

.lcc-configurator .lcc-preview-title,
.lcc-configurator .lcc-price-wrapper{
  color:#111 !important;
}

.lcc-configurator input[type="text"],
.lcc-configurator input[type="number"],
.lcc-configurator textarea,
.lcc-configurator select{
  background:#fff !important;
  color:#111 !important;
  color:#111 !important;
  border:1px solid rgba(0,0,0,0.18) !important;
  font-size:16px !important;
}

.lcc-configurator input[type="text"]:focus,
.lcc-configurator input[type="number"]:focus,
.lcc-configurator textarea:focus,
.lcc-configurator select:focus{
  background:#fff !important;
}

.lcc-hint,
.lcc-field-hint{
  color:rgba(0,0,0,0.65) !important;
}

.lcc-preview-wrapper{
  background:#fff !important;
  border:1px solid rgba(0,0,0,0.10);
  color:#111 !important;
}

.lcc-preview{
  background: radial-gradient(circle at top, #ffffff 0, #fbfbfb 55%, #f5f5f5 100%) !important;
}

.lcc-preview::before{
  border:1px solid rgba(0,0,0,0.10) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10) !important;
  opacity:1 !important;
}

#lcc-preview-text{
  /* El color del acabado lo define el selector (y se aplica por JS en inline).
     Importante: NO usar !important en color para que el cambio se vea. */
  color:#111;
  text-shadow:none !important;
}

#lcc-price-amount{
  color:#111 !important;
  text-shadow:none !important;
}

/* Campo color base */
.lcc-base-color-input{
  background:#fff !important;
  color:#111 !important;
  border:1px solid rgba(0,0,0,0.18) !important;
}
.lcc-base-color-input::placeholder{
  color:rgba(0,0,0,0.45) !important;
}

/* Notices sobre fondo blanco */
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-info{
  background:#fff;
  color:#111;
  border:1px solid rgba(0,0,0,0.12);
}

/* ===== ROTULBRAND tweaks: smaller selectable options + visible hints (v0.1.10) ===== */
/* Keep section titles ("Base", "Sujeción", "Extras") at 18px, but make the selectable values smaller. */
#lcc-configurator select{
  font-size:15px !important;
}

#lcc-configurator .lcc-extras label{
  font-size:15px !important;
}

/* Base: the small "color" input should match the selectable text size */
#lcc-configurator .lcc-base-color-input{
  font-size:15px !important;
}

/* Dimension hints (Ej.: 60, Ej.: 30) must be visible on dark background */
#lcc-configurator .lcc-field-hint{
  color:#fff !important;
  opacity:0.85 !important;
}


/* Render configurador a ancho completo en ficha de producto */
.lcc-product-configurator-section{
    clear: both;
    width: 100%;
    /*
      Más aire entre el configurador y el contenido de debajo (descripción/FAQ/lo que venga)
      para un look más editorial.
    */
    /*
      Usamos padding-bottom (además de margen) para que el espacio se respete incluso en
      plantillas que colapsan márgenes o reordenan bloques con flex.
    */
    margin: 28px 0 0 0;
    padding-bottom: 70px;
}

/* Extra: un separador invisible que crea aire incluso si la siguiente sección aplica márgenes negativos */
.lcc-product-configurator-section::after{
  content:"";
  display:block;
  height: 0;
}

/* ===== LCC: Info modal (Sujeción) ===== */
#lcc-configurator .lcc-section-title{
  display:flex;
  align-items:center;
  gap:10px;
}

#lcc-configurator .lcc-info-btn{
  font-size:11px;
  line-height:1;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.38);
  background:transparent;
  color:rgba(255,255,255,0.92);
  letter-spacing:0.08em;
  text-transform:uppercase;
  cursor:pointer;
}

#lcc-configurator .lcc-info-btn:hover{
  background:rgba(255,255,255,0.10);
  color:#fff;
}

body.lcc-modal-open{
  overflow:hidden;
}

#lcc-configurator .lcc-modal{
  position:fixed;
  inset:0;
  z-index:999999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
}

#lcc-configurator .lcc-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.62);
}

#lcc-configurator .lcc-modal-card{
  position:relative;
  z-index:1;
  width:min(600px, 94vw);
  max-height:86vh;
  overflow:auto;
  background:#f8f7f5;
  color:#111;
  border-radius:20px;
  border:1px solid rgba(0,0,0,0.08);
  padding:22px 22px 18px;
  box-shadow:0 22px 60px rgba(0,0,0,0.35);
}

#lcc-configurator .lcc-modal-card h3{
  margin:0 0 10px;
  font-size:18px;
  font-weight:500;
  letter-spacing:0.02em;
}

#lcc-configurator .lcc-modal-close{
  position:absolute;
  top:12px;
  right:12px;
  width:32px;
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.12);
  background:rgba(255,255,255,0.75);
  color:#111;
  font-size:18px;
  cursor:pointer;
}

#lcc-configurator .lcc-modal-body p,
#lcc-configurator .lcc-modal-body li{
  color:#222;
  font-size:14.5px;
  line-height:1.55;
}

#lcc-configurator .lcc-modal-list{
  list-style:none;
  margin:14px 0 0;
  padding:0;
}

#lcc-configurator .lcc-modal-list li{
  position:relative;
  padding-left:18px;
  margin:10px 0;
}

#lcc-configurator .lcc-modal-list li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  opacity:0.35;
}

#lcc-configurator .lcc-modal-note{
  margin-top:14px;
  padding:12px 14px;
  background:rgba(0,0,0,0.04);
  border:1px solid rgba(0,0,0,0.06);
  border-radius:14px;
  color:#222;
  font-size:13.5px;
}


/* ==========================================================
   LCC: CTA principal (Continuar y añadir al carrito)
   Forzamos estilos para evitar que el tema o reglas previas con
   !important (amarillo) sobreescriban el botón.
   ========================================================== */

#lcc-configurator .lcc-configurator-form .lcc-primary-cta,
#lcc-configurator .lcc-primary-cta,
.lcc-configurator .lcc-primary-cta{
  background:#ffffff !important;
  background-color:#ffffff !important;
  background-image:none !important;
  border:1px solid #111111 !important;
  color:#111111 !important;
  font-weight:800 !important;
  padding:12px 16px !important;
  border-radius:12px !important;
  box-shadow:none !important;
}

#lcc-configurator .lcc-configurator-form .lcc-primary-cta:hover,
#lcc-configurator .lcc-primary-cta:hover,
.lcc-configurator .lcc-primary-cta:hover{
  background:#111111 !important;
  background-color:#111111 !important;
  border-color:#111111 !important;
  color:#ffffff !important;
}


/* ==========================================================
   LCC: CTA principal (Continuar y añadir al carrito)
   FIX v0.1.32
   El botón se imprime FUERA del div #lcc-configurator (va después del template),
   por eso necesitamos apuntar al form .lcc-configurator-form.
   ========================================================== */

form.lcc-configurator-form .lcc-primary-cta{
  background:#ffffff !important;
  background-color:#ffffff !important;
  background-image:none !important;
  border:2px solid #111111 !important;
  color:#111111 !important;
  font-weight:700 !important;
  padding:12px 16px !important;
  border-radius:12px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:44px !important;
  text-decoration:none !important;
  cursor:pointer !important;
  box-shadow:none !important;
}

form.lcc-configurator-form .lcc-primary-cta:hover{
  background:#111111 !important;
  background-color:#111111 !important;
  border-color:#111111 !important;
  color:#ffffff !important;
}

@media (max-width: 768px){
  form.lcc-configurator-form .lcc-primary-cta{ width:100% !important; }
}
