
:root {
  --primary: #273A50;
  --primary-dark: #1a2937;
  --secondary: #FF8300;
  --accent: #FFA700;
  --bg: #F9F5E3;
  --ink: #1a2330;
  --muted: #66728a;
  --border: rgba(39, 58, 80, 0.14);
  --success: #2a9d6e;
}

.rippa-page * { box-sizing: border-box; }
.rippa-page {
  background: var(--bg);
  font-family: "Roboto Slab", Georgia, serif;
  color: var(--ink);
  line-height: 1.55;
}
.rippa-page h1, .rippa-page h2, .rippa-page h3, .rippa-page h4 {
  font-family: 'Radio Canada', system-ui, sans-serif;
  color: var(--primary);
  line-height: 1.2;
}

.rippa-page .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.rippa-page .container--narrow { max-width: 880px; }

/* Breadcrumb */
.rippa-page .breadcrumb { font-size: 0.85rem; padding: 16px 0 8px; color: var(--muted); }
.rippa-page .breadcrumb a { color: var(--muted); text-decoration: none; }
.rippa-page .breadcrumb a:hover { color: var(--secondary); }

/* Buttons */
.rippa-page .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; font-weight: 600; text-decoration: none;
  transition: all 0.18s; font-family: inherit; cursor: pointer; border: 0;
  font-size: 1rem; line-height: 1;
}
.rippa-page .btn--primary { background: var(--secondary); color: #fff; }
.rippa-page .btn--primary:hover { background: var(--accent); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(255, 131, 0, 0.35); }
.rippa-page .btn--ghost { background: transparent; color: var(--primary); border: 2px solid var(--border); }
.rippa-page .btn--ghost:hover { background: rgba(39, 58, 80, 0.05); border-color: var(--primary); }
.rippa-page .btn--ghost-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.rippa-page .btn--ghost-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.rippa-page .btn--block { display: flex; width: 100%; }
.rippa-page .btn--lg { padding: 16px 36px; font-size: 1.05rem; }

/* HERO PRODUCT */
.rippa-page .hero-product {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; padding: 30px 0 60px; position: relative;
}
.rippa-page .hero-product .breadcrumb { color: rgba(255,255,255,0.7); }
.rippa-page .hero-product .breadcrumb a { color: rgba(255,255,255,0.7); }
.rippa-page .hero-product .breadcrumb a:hover { color: var(--accent); }
.rippa-page .hero-product__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 16px;
  align-items: start;
}
@media (max-width: 880px) {
  .rippa-page .hero-product__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* GALLERY */
.rippa-gallery { background: rgba(255,255,255,0.05); border-radius: 12px; padding: 12px; }
.rippa-gallery__main { background: #fff; border-radius: 8px; aspect-ratio: 4/3; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.rippa-gallery__main img { width: 100%; height: 100%; object-fit: contain; }
.rippa-gallery__thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; margin-top: 8px; }
.rippa-gallery__thumb { background: #fff; border-radius: 4px; aspect-ratio: 1; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color 0.15s; padding: 4px; }
.rippa-gallery__thumb.active { border-color: var(--secondary); }
.rippa-gallery__thumb img { width: 100%; height: 100%; object-fit: contain; }

/* HERO INFO */
.rippa-page .eyebrow { color: var(--accent); font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.rippa-page .hero-product h1 { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: 8px 0 12px; }
.rippa-page .hero-product__subtitle { font-size: 1.05rem; opacity: 0.92; margin-bottom: 20px; }

.rippa-spec-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  background: rgba(255,255,255,0.08); border-radius: 10px; padding: 14px; margin-bottom: 20px;
}
.rippa-spec-row__cell { text-align: center; }
.rippa-spec-row__cell strong { display: block; font-family: 'Radio Canada', sans-serif; color: var(--accent); font-size: 1.4rem; }
.rippa-spec-row__cell small { display: block; opacity: 0.8; font-size: 0.8rem; margin-top: 2px; }

.rippa-rating { display: flex; align-items: center; gap: 10px; margin: 16px 0 18px; font-size: 0.9rem; }
.rippa-rating__stars { color: var(--accent); font-size: 1.1rem; letter-spacing: 1px; }

.rippa-price { margin: 16px 0 24px; }
.rippa-price__amount { font-family: 'Radio Canada', sans-serif; font-size: 2rem; font-weight: 700; color: var(--accent); }
.rippa-price__ht { opacity: 0.8; font-size: 0.95rem; }
.rippa-price__note { font-size: 0.85rem; opacity: 0.7; margin-top: 4px; }

.rippa-cta-block { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }

.rippa-reassurance {
  list-style: none; padding: 16px; margin: 0;
  background: rgba(255,255,255,0.08); border-radius: 10px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  font-size: 0.9rem;
}
.rippa-reassurance li { display: flex; gap: 8px; align-items: center; }
.rippa-reassurance li::before { content: "✓"; color: var(--accent); font-weight: bold; font-size: 1.1rem; }

/* SECTIONS */
.rippa-page section { padding: 56px 0; }
.rippa-page section h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 0 0 12px; }
.rippa-page section .section-intro { color: var(--muted); margin: 0 0 28px; font-size: 1.05rem; }

/* PROSE */
.rippa-page .prose p { margin: 0 0 18px; }
.rippa-page .prose ul { margin: 12px 0 20px; padding-left: 20px; }
.rippa-page .prose li { margin: 6px 0; }

/* MINI-COMPARE table (variants comparison block on product pages) */
.rippa-page .rippa-compare-mini { overflow-x: auto; }
.rippa-page .rippa-compare-mini table { width: 100%; min-width: 580px; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.rippa-page .rippa-compare-mini th,
.rippa-page .rippa-compare-mini td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.93rem; }
.rippa-page .rippa-compare-mini thead th { background: var(--primary); color: #fff; font-family: 'Radio Canada', sans-serif; font-weight: 600; font-size: 1rem; }
.rippa-page .rippa-compare-mini tbody th { color: var(--muted) !important; font-weight: 500; width: 35%; background: var(--bg) !important; }
.rippa-page .rippa-compare-mini tbody td { color: var(--ink) !important; font-weight: 500; background: #fff !important; }
.rippa-page .rippa-compare-mini tbody tr:last-child th, .rippa-page .rippa-compare-mini tbody tr:last-child td { border-bottom: 0; }
.rippa-page .rippa-tag { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-left: 6px; vertical-align: middle; }
.rippa-page .rippa-tag--muted { background: rgba(255,255,255,0.18); color: rgba(255,255,255,0.85); }
.rippa-page .rippa-tag--accent { background: var(--accent); color: var(--primary); }

/* CONFIGURATOR (variant chooser on product pages) */
.rippa-page .rippa-configurator {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 18px 20px; margin: 20px 0; color: #fff;
}
.rippa-page .rippa-configurator__head {
  font-family: 'Radio Canada', sans-serif; font-weight: 600;
  font-size: 1rem; margin-bottom: 14px; color: var(--accent);
}
.rippa-page .rippa-config-group { margin-bottom: 14px; }
.rippa-page .rippa-config-group:last-child { margin-bottom: 0; }
.rippa-page .rippa-config-group__label {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.8px; opacity: 0.75; margin-bottom: 6px;
}
.rippa-page .rippa-config-group__options { display: flex; flex-direction: column; gap: 6px; }
.rippa-page .rippa-config-opt {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  background: rgba(255,255,255,0.04); cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  border: 1px solid transparent;
}
.rippa-page .rippa-config-opt:hover { background: rgba(255,255,255,0.08); }
.rippa-page .rippa-config-opt input[type="radio"] {
  margin-top: 3px; accent-color: var(--secondary); cursor: pointer; flex-shrink: 0;
}
.rippa-page .rippa-config-opt:has(input:checked) {
  background: rgba(255,131,0,0.12); border-color: var(--secondary);
}
.rippa-page .rippa-config-opt__main { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.rippa-page .rippa-config-opt__main strong {
  font-family: 'Radio Canada', sans-serif; font-weight: 600; font-size: 0.95rem;
  color: #fff;
}
.rippa-page .rippa-config-opt__main small {
  font-size: 0.8rem; opacity: 0.75; line-height: 1.35;
}

/* PACK INCLUS LIST */
.rippa-page .rippa-pack-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 10px; }
.rippa-page .rippa-pack-list li { padding: 12px 14px 12px 38px; background: var(--bg); border-radius: 8px; position: relative; font-size: 0.95rem; line-height: 1.45; }
.rippa-page .rippa-pack-list li::before { content: "✓"; position: absolute; left: 12px; top: 12px; color: var(--secondary); font-weight: 800; font-size: 1.1rem; }
.rippa-page .rippa-pack-list li strong { color: var(--primary); }

/* SPECS ACCORDION */
.rippa-specs { background: #fff; border-radius: 14px; border: 1px solid var(--border); overflow: hidden; }
.rippa-specs__section { border-bottom: 1px solid var(--border); }
.rippa-specs__section:last-child { border-bottom: 0; }
.rippa-specs__head { width: 100%; padding: 18px 24px; background: #fff; border: 0; cursor: pointer; text-align: left; font-family: 'Radio Canada', sans-serif; font-size: 1.1rem; color: var(--primary); font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
.rippa-specs__head:hover { background: var(--bg); }
.rippa-specs__head::after { content: "+"; font-size: 1.5rem; color: var(--secondary); font-weight: 400; transition: transform 0.2s; }
.rippa-specs__section[open] .rippa-specs__head::after { transform: rotate(45deg); }
.rippa-specs__body { padding: 0 24px 18px; }
.rippa-specs__table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
.rippa-specs__table tr { border-bottom: 1px solid var(--border); }
.rippa-specs__table tr:last-child { border-bottom: 0; }
.rippa-specs__table th, .rippa-specs__table td { padding: 10px 8px; text-align: left; vertical-align: top; }
.rippa-specs__table th { font-weight: 500; color: var(--muted); width: 55%; }
.rippa-specs__table td { color: var(--ink); font-weight: 600; }

/* FAQ */
.rippa-faq { background: #fff; border-radius: 14px; border: 1px solid var(--border); }
.rippa-faq__item { border-bottom: 1px solid var(--border); }
.rippa-faq__item:last-child { border-bottom: 0; }
.rippa-faq__q { width: 100%; padding: 20px 24px; background: #fff; border: 0; cursor: pointer; text-align: left; font-family: 'Radio Canada', sans-serif; font-size: 1.05rem; color: var(--primary); font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.rippa-faq__q:hover { background: var(--bg); }
.rippa-faq__q::after { content: "+"; font-size: 1.6rem; color: var(--secondary); flex-shrink: 0; transition: transform 0.2s; }
.rippa-faq__item[open] .rippa-faq__q::after { transform: rotate(45deg); }
.rippa-faq__a { padding: 0 24px 20px; color: var(--ink); }
.rippa-faq__a p { margin: 0; }

/* RELATED MODELS GRID */
.rippa-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.rippa-card {
  background: #fff; border-radius: 14px; overflow: hidden; border: 1px solid var(--border);
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex; flex-direction: column;
}
.rippa-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(39,58,80,0.12); }
.rippa-card__img { aspect-ratio: 4/3; background: var(--bg); display: flex; align-items: center; justify-content: center; }
.rippa-card__img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.rippa-card__body { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.rippa-card__model { color: var(--accent); font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; }
.rippa-card__title { margin: 4px 0 8px; font-size: 1.15rem; }
.rippa-card__specs { display: flex; gap: 12px; font-size: 0.85rem; color: var(--muted); margin-bottom: 14px; flex-wrap: wrap; }
.rippa-card__price { font-family: 'Radio Canada', sans-serif; font-weight: 700; color: var(--primary); font-size: 1.15rem; margin-bottom: 12px; }
.rippa-card__price small { font-weight: 400; color: var(--muted); font-size: 0.7rem; }
.rippa-card__cta { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }
.rippa-card__benefits { list-style: none; padding: 0; margin: 0 0 12px; display: flex; flex-direction: column; gap: 4px; font-size: 0.86rem; color: var(--ink); }
.rippa-card__benefits li { padding-left: 18px; position: relative; }
.rippa-card__benefits li::before { content: "✓"; position: absolute; left: 0; color: var(--secondary); font-weight: 700; }
.rippa-card__ideal { margin: 0 0 14px; padding: 10px 12px; background: var(--bg); border-left: 3px solid var(--accent); border-radius: 0 8px 8px 0; font-size: 0.85rem; line-height: 1.4; }
.rippa-card__ideal strong { color: var(--primary); display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }

/* INTERACTIVE FILTERS for compare table */
.rippa-page .rippa-filter-bar {
  background: #fff; border-radius: 14px; padding: 18px 20px; border: 1px solid var(--border); margin-bottom: 22px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 760px) { .rippa-page .rippa-filter-bar { grid-template-columns: 1fr; } }
.rippa-page .rippa-filter-group { display: flex; flex-direction: column; gap: 6px; }
.rippa-page .rippa-filter-group__label { font-size: 0.75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; }
.rippa-page .rippa-filter-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.rippa-page .rippa-filter-pill {
  padding: 7px 14px; border-radius: 999px; background: var(--bg); border: 1px solid transparent;
  font-size: 0.85rem; font-family: inherit; font-weight: 500; color: var(--ink);
  cursor: pointer; transition: all 0.15s;
}
.rippa-page .rippa-filter-pill:hover { background: rgba(255, 131, 0, 0.1); }
.rippa-page .rippa-filter-pill.is-active { background: var(--secondary); color: #fff; }
.rippa-page .rippa-filter-reset { background: transparent; border: 0; color: var(--secondary); font-size: 0.8rem; cursor: pointer; padding: 4px 0; font-family: inherit; text-decoration: underline; align-self: flex-start; }
.rippa-page .rippa-filter-reset:hover { color: var(--accent); }

.rippa-compare tr.is-hidden { display: none; }
.rippa-compare tr.is-recommended td { background-color: rgba(255, 167, 0, 0.08) !important; }
.rippa-compare .rippa-compare__empty {
  text-align: center; padding: 40px 20px; color: var(--muted);
}
.rippa-compare .btn-compact {
  display: inline-block; padding: 8px 14px; border-radius: 999px;
  background: var(--secondary); color: #fff !important; text-decoration: none;
  font-size: 0.85rem; font-weight: 600; white-space: nowrap;
  transition: all 0.15s; border: 0;
}
.rippa-compare .btn-compact:hover { background: var(--accent); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(255, 131, 0, 0.3); }

/* QUEL MODELE POUR MOI — wizard inline */
.rippa-page .rippa-wizard {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff;
  border-radius: 14px; padding: 24px 28px; margin-bottom: 24px;
}
.rippa-page .rippa-wizard h3 { color: #fff; margin: 0 0 6px; font-size: 1.2rem; }
.rippa-page .rippa-wizard p { margin: 0 0 14px; opacity: 0.92; font-size: 0.95rem; }
.rippa-page .rippa-wizard__result {
  margin-top: 16px; padding: 14px 18px; background: rgba(255,255,255,0.1); border-radius: 10px; display: none;
  border-left: 4px solid var(--accent);
}
.rippa-page .rippa-wizard__result.is-visible { display: block; }
.rippa-page .rippa-wizard__result strong { color: var(--accent); font-family: 'Radio Canada', sans-serif; font-size: 1.1rem; }

/* HUB SPECIFIC */
.rippa-page .hero-hub {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; padding: 60px 0 80px; position: relative; overflow: hidden;
}
.rippa-page .hero-hub::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 56px;
  background: var(--bg); clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 60%);
}
.rippa-page .hero-hub h1 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); margin: 8px 0 16px; }
.rippa-page .hero-hub__lead { font-size: 1.1rem; opacity: 0.95; max-width: 720px; margin: 0 0 28px; }
.rippa-page .hero-hub__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.rippa-page .hero-hub__trust {
  display: flex; flex-wrap: wrap; gap: 24px; list-style: none; padding: 0; margin: 0;
  font-size: 0.95rem; opacity: 0.92;
}

.rippa-usps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.rippa-usp { background: #fff; border-radius: 12px; padding: 24px; border: 1px solid var(--border); }
.rippa-usp__icon { font-size: 2rem; margin-bottom: 8px; }
.rippa-usp h3 { margin: 0 0 8px; font-size: 1.15rem; }
.rippa-usp p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* COMPARISON TABLE */
.rippa-compare { overflow-x: auto; }
.rippa-compare table { width: 100%; min-width: 720px; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; }
.rippa-compare th, .rippa-compare td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.rippa-compare thead th { background: var(--primary); color: #fff; font-family: 'Radio Canada', sans-serif; font-weight: 600; }
.rippa-compare tbody tr:last-child td { border-bottom: 0; }
.rippa-compare .model-cell { font-weight: 700; color: var(--primary); font-family: 'Radio Canada', sans-serif; }
/* Defuse generic theme rules: `table { & td:first-child { background:navy; color:white } & td:nth-child(2n) { background:... } }` */
.rippa-compare table tbody td { background-color: #fff !important; color: inherit !important; }
.rippa-compare table tbody tr:nth-child(even) td { background-color: var(--bg) !important; }
.rippa-compare table tbody td.model-cell { color: var(--primary) !important; }

/* STICKY DEVIS WIDGET */
.rippa-devis-fab {
  position: fixed; bottom: 20px; right: 20px; z-index: 9999;
  background: var(--secondary); color: #fff; border: 0;
  border-radius: 999px; padding: 14px 22px; font-weight: 700;
  box-shadow: 0 8px 24px rgba(255, 131, 0, 0.4);
  cursor: pointer; display: none; align-items: center; gap: 10px;
  font-family: inherit; font-size: 0.95rem;
  text-decoration: none;
}
.rippa-devis-fab.is-visible { display: inline-flex; }
.rippa-devis-fab:hover { background: var(--accent); }
.rippa-devis-fab__count {
  background: #fff; color: var(--secondary); border-radius: 999px;
  padding: 2px 10px; font-size: 0.85rem; font-weight: 800; min-width: 24px; text-align: center;
}

/* TOAST */
.rippa-toast {
  position: fixed; top: 24px; left: 50%; transform: translateX(-50%) translateY(-100px);
  background: var(--success); color: #fff; padding: 14px 24px; border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2); z-index: 10000;
  font-weight: 600; transition: transform 0.3s;
}
.rippa-toast.is-visible { transform: translateX(-50%) translateY(0); }

/* MON DEVIS PAGE */
.rippa-devis-list { background: #fff; border-radius: 14px; border: 1px solid var(--border); padding: 8px; }
.rippa-devis-item {
  display: grid; grid-template-columns: 80px 1fr auto auto; gap: 16px;
  padding: 14px; border-bottom: 1px solid var(--border); align-items: center;
}
.rippa-devis-item:last-child { border-bottom: 0; }
.rippa-devis-item__img { width: 80px; height: 80px; background: var(--bg); border-radius: 8px; overflow: hidden; }
.rippa-devis-item__img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.rippa-devis-item__info h4 { margin: 0 0 4px; font-size: 1.05rem; }
.rippa-devis-item__info p { margin: 0; color: var(--muted); font-size: 0.85rem; }
.rippa-devis-qty { display: flex; align-items: center; gap: 8px; }
.rippa-devis-qty button { width: 28px; height: 28px; border: 1px solid var(--border); background: #fff; border-radius: 6px; cursor: pointer; font-size: 1rem; }
.rippa-devis-qty input { width: 44px; padding: 6px; text-align: center; border: 1px solid var(--border); border-radius: 6px; font-family: inherit; }
.rippa-devis-remove { background: none; border: 0; color: var(--muted); cursor: pointer; font-size: 1.2rem; }
.rippa-devis-remove:hover { color: #c0392b; }
.rippa-devis-empty { padding: 60px 24px; text-align: center; color: var(--muted); }

.rippa-devis-form { background: #fff; border-radius: 14px; border: 1px solid var(--border); padding: 24px; margin-top: 24px; }
.rippa-devis-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
@media (max-width: 600px) { .rippa-devis-form .form-row { grid-template-columns: 1fr; } }
.rippa-devis-form label { display: block; font-size: 0.88rem; font-weight: 500; margin-bottom: 5px; color: var(--primary); }
.rippa-devis-form input, .rippa-devis-form textarea {
  width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: 0.95rem;
}
.rippa-devis-form textarea { min-height: 110px; resize: vertical; }
