/* Page styles - 2026 */

/* Hero images */
#torso > img.hero {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

/* Typography */
h1 {
  font-family: "Segoe UI", system-ui, sans-serif;
  font-weight: 700;
  color: var(--brand);
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin: 1rem 0 1.5rem;
  line-height: 1.25;
}
h2 {
  color: var(--brand);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin: 1.5rem 0 .75rem;
  font-weight: 700;
}
h3, h5 {
  color: var(--brand-dark);
  font-weight: 600;
  margin-bottom: .5rem;
}
p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: var(--text);
}
p.lead {
  font-size: 1.15rem;
  color: var(--muted);
}

/* CTA */
.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0 1rem;
}
.btn {
  display: inline-block;
  padding: .85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: transform .15s, box-shadow .2s, background .2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(127,87,159,.3);
}
.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn-outline:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

/* Servicii list */
ul.servicii {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
ul.servicii li {
  background: var(--card-alt);
  padding: 1.25rem;
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  font-size: .98rem;
  color: var(--text);
  line-height: 1.55;
}

/* Servicii layout with side thumbnail */
.servicii-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .servicii-intro { grid-template-columns: 2fr 1fr; }
}
.ghid-thumb {
  position: relative;
  z-index: 1;
  transition: z-index 0s .3s;
  cursor: zoom-in;
}
.ghid-thumb picture,
.ghid-thumb img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
}
.ghid-thumb img {
  box-shadow: var(--shadow);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
  transform-origin: center right;
  will-change: transform;
}
.ghid-thumb:hover,
.ghid-thumb:focus-within {
  z-index: 20;
  transition-delay: 0s;
}
.ghid-thumb:hover img,
.ghid-thumb:focus-within img {
  transform: scale(1.9);
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
/* Mobile: NO hover zoom (arată prost) — tap opens lightbox instead */
@media (max-width: 768px), (hover: none), (pointer: coarse) {
  .ghid-thumb { cursor: pointer; }
  .ghid-thumb:hover img,
  .ghid-thumb:focus-within img {
    transform: none !important;
    box-shadow: var(--shadow) !important;
  }
}
.ghid-thumb figcaption {
  font-size: .85rem;
  color: var(--muted);
  text-align: center;
  margin-top: .5rem;
}

/* Preturi - produse grid */
.prez-prod {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f7f3fc, #eef6f9);
  border-radius: var(--radius);
  margin-bottom: 2rem;
}
.produse {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .75rem;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.produse:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.produse img {
  width: auto;
  height: 70px;
  margin: 0 auto .5rem;
}
.produse h5 {
  font-size: .85rem;
  color: var(--brand-dark);
  margin: 0;
}

/* Pricing table */
#title_table {
  text-align: center;
  color: var(--text);
  font-size: 1.1rem;
  margin: 1.5rem 0 1rem;
  font-weight: 600;
}
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--card);
}
.tabel_pret {
  min-width: 600px;
  border-collapse: collapse;
  font-size: .92rem;
}
.tabel_pret .tabelup {
  background: var(--brand);
  color: #fff;
  padding: .85rem .5rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--brand-dark);
}
.tabel_pret .tabel {
  padding: .7rem .5rem;
  text-align: center;
  border: 1px solid var(--border);
  color: var(--text);
}
.tabel_pret tr:nth-child(even) .tabel {
  background: var(--card-alt);
}
.tabel_pret #baloane {
  background: var(--brand-hover);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: .85rem;
}
.tabel_pret #baloane_footer {
  background: var(--card-alt);
  color: var(--muted);
  font-size: .85rem;
  padding: 1rem;
  text-align: left;
  line-height: 1.5;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-card {
  background: var(--card-alt);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--brand);
}
.contact-card h2 { margin-top: 0; }
.contact-card a { color: var(--brand); font-weight: 600; }
.contact-card a:hover { color: var(--brand-hover); }
.harta-link img {
  border-radius: 8px;
  margin-top: .75rem;
  transition: transform .2s;
}
.harta-link:hover img { transform: scale(1.03); }

/* Harta thumbnail — hover zoom similar to ghid-thumb */
.harta-thumb {
  position: relative;
  z-index: 1;
  margin: .75rem 0 0;
  cursor: zoom-in;
  transition: z-index 0s .3s;
}
.harta-thumb a {
  display: block;
  text-decoration: none;
}
.harta-thumb picture,
.harta-thumb img {
  display: block;
  width: 100%;
  border-radius: 10px;
}
.harta-thumb img {
  box-shadow: var(--shadow);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
  transform-origin: center left;
  will-change: transform;
}
.harta-thumb:hover,
.harta-thumb:focus-within {
  z-index: 20;
  transition-delay: 0s;
}
.harta-thumb:hover img,
.harta-thumb:focus-within img {
  transform: scale(1.8);
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
/* Mobile: NO hover zoom on map (arată prost) — tap opens lightbox instead */
@media (max-width: 768px), (hover: none), (pointer: coarse) {
  .harta-thumb { cursor: pointer; }
  .harta-thumb:hover img,
  .harta-thumb:focus-within img {
    transform: none !important;
    box-shadow: var(--shadow) !important;
  }
}

/* Form */
fieldset.register {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  background: var(--card);
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 1rem auto;
}
legend {
  font-weight: 700;
  color: var(--brand);
  padding: 0 .5rem;
  font-size: 1.05rem;
}
.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.form-row label {
  font-weight: 600;
  margin-bottom: .35rem;
  font-size: .95rem;
  color: var(--text);
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea {
  padding: .7rem .9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(127,87,159,.15);
  outline: none;
}
.form-row textarea { min-height: 120px; resize: vertical; }
.radio-row, .check-row {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.radio-row label, .check-row label {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  cursor: pointer;
}
.btnSubmit {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: .85rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btnSubmit:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}
/* Form feedback banner */
#form-feedback:empty { display: none; }
#form-feedback {
  max-width: 640px;
  margin: 1rem auto;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
}
#form-feedback.ok  { background: #e7f7ec; color: #186a3b; border-left: 4px solid #2ecc71; }
#form-feedback.err { background: #fbe7ea; color: #86213b; border-left: 4px solid #e94f64; }

/* Turnstile wrapper */
.turnstile-wrap {
  margin: 1.25rem 0;
  min-height: 65px;
}
.turnstile-wrap .cf-turnstile {
  display: flex;
  justify-content: center;
}

/* Honeypot - hidden from users, catches bots */
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Blog / coming soon */
.coming-soon {
  text-align: center;
  padding: 3rem 1rem;
}
.coming-soon h1 { margin-bottom: 1rem; }
.coming-soon p { font-size: 1.1rem; color: var(--muted); max-width: 540px; margin: 0 auto 1rem; }

/* ===== Blog index cards ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.blog-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}
.blog-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid var(--border);
  position: relative;
}
.blog-card__img-link {
  display: block;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
.blog-card__img {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--brand), var(--brand-hover));
  position: relative;
  overflow: hidden;
  display: block;
}
.blog-card__img picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.blog-card:hover .blog-card__img img {
  transform: scale(1.05);
}
.blog-card__img svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.blog-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}
.blog-card__meta {
  display: flex;
  gap: .5rem;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--brand);
  font-weight: 600;
}
.blog-card__meta .cat { background: var(--card-alt); padding: .25rem .6rem; border-radius: 999px; }
.blog-card__meta .read { color: var(--muted); }
.blog-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
}
.blog-card h3 a {
  color: var(--text);
  text-decoration: none;
  transition: color .2s;
}
.blog-card h3 a:hover { color: var(--brand); }
.blog-card__excerpt {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.blog-card__link {
  display: inline-block;
  margin-top: .5rem;
  font-weight: 600;
  color: var(--brand);
  font-size: .92rem;
  align-self: flex-start;
}
.blog-card__link::after {
  content: " →";
  transition: transform .2s;
  display: inline-block;
}
.blog-card:hover .blog-card__link::after { transform: translateX(4px); }
.blog-card a.stretched { position: absolute; inset: 0; z-index: 2; }

/* ===== Blog post article ===== */
.blog-post {
  max-width: 780px;
  margin: 0 auto;
}
.blog-post__hero {
  aspect-ratio: 16 / 7;
  background: linear-gradient(135deg, var(--brand), var(--brand-hover));
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.blog-post__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255,255,255,.4), transparent 55%),
              radial-gradient(circle at 15% 80%, rgba(255,255,255,.25), transparent 45%);
}
.blog-post__hero svg {
  position: relative;
  max-width: 55%;
  max-height: 75%;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.25));
}
.blog-post__hero picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.blog-post__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-post__meta {
  display: flex;
  gap: 1rem;
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: .75rem;
  align-items: center;
  flex-wrap: wrap;
}
.blog-post__meta .cat {
  background: var(--brand);
  color: #fff;
  padding: .3rem .75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.blog-post h1 {
  text-align: left;
  margin: .5rem 0 1rem;
}
.blog-post .lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.blog-post h2 {
  margin: 2rem 0 .75rem;
  font-size: 1.4rem;
  color: var(--brand);
}
.blog-post p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.blog-post ul {
  margin: 1rem 0 1.25rem 1.5rem;
  list-style: disc;
}
.blog-post ul li {
  margin-bottom: .5rem;
  line-height: 1.6;
}
.blog-post__back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 2rem;
  color: var(--brand);
  font-weight: 600;
}
.blog-post__cta {
  background: linear-gradient(135deg, var(--card-alt), var(--card));
  border-left: 4px solid var(--brand);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 2rem 0 1rem;
}
.blog-post__cta h3 {
  color: var(--brand);
  margin-bottom: .5rem;
  font-size: 1.1rem;
}

/* ===== Blog reader (SPA mode) ===== */
#blog-grid.is-hidden,
#blog-reader[hidden] { display: none !important; }

.blog-reader {
  max-width: 820px;
  margin: 0 auto;
  animation: fade-in .4s ease;
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.back-to-grid {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--card-alt);
  color: var(--brand);
  border: 1px solid var(--border);
  padding: .65rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  font-size: .95rem;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  margin-bottom: 1.5rem;
}
.back-to-grid:hover,
.back-to-grid:focus-visible {
  background: var(--brand);
  color: #fff;
  transform: translateX(-3px);
  box-shadow: 0 6px 16px rgba(127,87,159,.25);
}
.reader-hero {
  aspect-ratio: 16 / 8;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
  position: relative;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-hover));
}
.reader-hero picture,
.reader-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.reader-hero img { object-fit: cover; }
.reader-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.35));
}

.reader-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: .75rem;
  font-size: .88rem;
  color: var(--muted);
}
.reader-meta .cat {
  background: var(--brand);
  color: #fff;
  padding: .3rem .8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.reader-body h1 {
  text-align: left;
  margin: .5rem 0 1.5rem;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.2;
}
.reader-body .lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.reader-body h2 {
  margin: 2rem 0 .75rem;
  font-size: 1.4rem;
  color: var(--brand);
}
.reader-body p {
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.reader-body ul {
  margin: 1rem 0 1.25rem 1.5rem;
  list-style: disc;
}
.reader-body ul li {
  margin-bottom: .5rem;
  line-height: 1.65;
}
/* Inline article links — but NOT CTA buttons */
.reader-body a:not(.btn) {
  color: var(--brand);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.reader-body a:not(.btn):hover { border-bottom-color: var(--brand); }

/* Restore proper button colors inside reader-body (override earlier rule) */
.reader-body .btn-primary { color: #fff; }
.reader-body .btn-outline { color: var(--brand); }
.reader-body .btn-primary:hover { color: #fff; }
.reader-body .btn-outline:hover { color: #fff; }

.reader-cta {
  background: linear-gradient(135deg, var(--card-alt), var(--card));
  border-left: 4px solid var(--brand);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 2.5rem 0 1.5rem;
}
.reader-cta h3 {
  color: var(--brand);
  margin-bottom: .5rem;
  font-size: 1.15rem;
}
.reader-cta p { font-size: .98rem; margin-bottom: 1rem; }

/* Related articles */
.related-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border);
}
.related-section h2 {
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
  color: var(--brand);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.related-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  text-align: left;
  padding: 0;
  font: inherit;
  color: inherit;
  display: block;
  width: 100%;
}
.related-card:hover,
.related-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.related-card__img {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand), var(--brand-hover));
}
.related-card__img picture,
.related-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.related-card__img img { object-fit: cover; }
.related-card__body {
  padding: .85rem 1rem 1rem;
}
.related-card__cat {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--brand);
  font-weight: 700;
  display: block;
  margin-bottom: .35rem;
}
.related-card__title {
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

@media (max-width: 640px) {
  .reader-hero { aspect-ratio: 16 / 10; }
  .reader-body h1 { font-size: 1.5rem; }
  .reader-body p { font-size: .98rem; }
  .related-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .related-card__title { font-size: .82rem; }
}
@media (max-width: 420px) {
  .related-grid { grid-template-columns: 1fr; }
}

/* Trust strip */
.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--card-alt);
  border-radius: var(--radius);
}
.trust-item {
  text-align: center;
  padding: .5rem;
}
.trust-item strong {
  display: block;
  color: var(--brand);
  font-size: 1.1rem;
  margin-bottom: .25rem;
}
.trust-item span {
  font-size: .9rem;
  color: var(--muted);
}

/* ======================================
   Mobile tweaks (page-specific)
   ====================================== */
@media (max-width: 768px) {
  /* Hero images a bit shorter */
  #torso > picture > img.hero,
  #torso > img.hero { max-height: 260px; }

  /* Form labels stack */
  .register { padding: 1.25rem 1rem; }
  .radio-row, .check-row { gap: .75rem; }

  /* Pricing table — fit without horizontal scroll */
  .table-wrap { overflow-x: visible; }
  .tabel_pret {
    min-width: 0;
    width: 100%;
    font-size: .78rem;
    table-layout: fixed;
  }
  .tabel_pret .tabelup,
  .tabel_pret .tabel {
    padding: .45rem .2rem;
    word-break: break-word;
    hyphens: auto;
  }
  .tabel_pret #baloane { font-size: .92rem; padding: .55rem .2rem; }
  .tabel_pret #baloane_footer { font-size: .72rem; padding: .75rem; }

  /* CTA buttons full width on small screens */
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { width: 100%; }

  /* Contact cards stack */
  .contact-card { padding: 1.1rem; }
}

@media (max-width: 480px) {
  /* Preturi produse grid: smaller thumbs */
  .prez-prod { grid-template-columns: repeat(auto-fill, minmax(85px, 1fr)); padding: 1rem; gap: .6rem; }
  .produse { padding: .5rem; }
  .produse img { height: 55px; }
  .produse h5 { font-size: .75rem; }

  /* Hero shorter still */
  #torso > picture > img.hero,
  #torso > img.hero { max-height: 200px; }

  /* Servicii list tighter */
  ul.servicii li { padding: 1rem; font-size: .92rem; }

  /* Pricing table — even tighter on small phones */
  .tabel_pret { font-size: .68rem; }
  .tabel_pret .tabelup,
  .tabel_pret .tabel { padding: .35rem .15rem; }
  .tabel_pret #baloane { font-size: .78rem; }
  .tabel_pret #baloane_footer { font-size: .65rem; line-height: 1.4; padding: .6rem .4rem; }
}
