/* =====================================================================
   Btm Tekstil - Ana Stil Dosyası
   Palet: BTM kurumsal lacivert + kırmızı + açık gri
   ===================================================================== */

@font-face {
  font-family: 'Creato Display';
  src: url('../fonts/creato/CreatoDisplay-Regular.otf') format('opentype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Creato Display';
  src: url('../fonts/creato/CreatoDisplay-Medium.otf') format('opentype');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Creato Display';
  src: url('../fonts/creato/CreatoDisplay-Bold.otf') format('opentype');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Creato Display';
  src: url('../fonts/creato/CreatoDisplay-ExtraBold.otf') format('opentype');
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --navy: #122357;
  --navy-2: #1a326f;
  --navy-dark: #0a1535;
  --accent: #841212;
  --accent-2: #a51d1d;
  --light: #f5f6f8;
  --gray: #657087;
  --brand-gray: #dfdfdf;
  --border: #e1e3e8;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(18, 35, 87, .10);
  --shadow-lg: 0 20px 50px rgba(18, 35, 87, .18);
  --radius: 14px;
  --transition: .3s ease;
  --font: 'Creato Display', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { overflow-x: hidden; }

body {
  font-family: var(--font);
  color: #2a3542;
  line-height: 1.7;
}

a { text-decoration: none; transition: var(--transition); }

h1, h2, h3, h4, h5, h6 { font-weight: 700; color: var(--navy); }

img { max-width: 100%; }

.text-accent { color: var(--accent) !important; }
.bg-navy { background-color: var(--navy) !important; }
.bg-navy-dark { background-color: var(--navy-dark) !important; }
.bg-light-soft { background-color: var(--light) !important; }

/* ---------- Butonlar ---------- */
.btn-accent {
  background: var(--accent);
  border: none;
  color: var(--white);
  font-weight: 600;
  padding: .7rem 1.6rem;
  border-radius: 50px;
  transition: var(--transition);
}
.btn-accent:hover {
  background: var(--accent-2);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(132, 18, 18, .35);
}
.btn-outline-light-accent {
  border: 2px solid var(--white);
  color: var(--white);
  font-weight: 600;
  padding: .65rem 1.6rem;
  border-radius: 50px;
}
.btn-outline-light-accent:hover {
  background: var(--white);
  color: var(--navy);
}

/* ---------- Üst bar ---------- */
.topbar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, .8);
  font-size: .85rem;
  padding: .5rem 0;
}
.topbar a { color: rgba(255, 255, 255, .8); }
.topbar a:hover { color: var(--accent); }
.topbar .lang-switch a.active { color: var(--accent); font-weight: 600; }

/* ---------- Navbar ---------- */
.navbar-main {
  background: #050914;
  box-shadow: var(--shadow);
  padding: .4rem 0;
  transition: var(--transition);
}
.navbar-main .navbar-brand { font-weight: 800; color: var(--white); font-size: 1.5rem; letter-spacing: .5px; }
.navbar-brand .brand-accent { color: var(--accent); }
.navbar-brand img {
  display: block;
  width: auto;
  max-width: 270px;
  max-height: 68px;
  object-fit: contain;
}
.navbar-main .nav-link {
  color: rgba(255, 255, 255, .86) !important;
  font-weight: 500;
  margin: 0 .35rem;
  position: relative;
}
.navbar-main .nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: var(--transition);
}
.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after { width: 100%; }
.navbar-main .nav-link:hover,
.navbar-main .nav-link.active { color: var(--white) !important; }
.navbar-main .navbar-toggler { border-color: rgba(255, 255, 255, .45); }
.navbar-main .navbar-toggler-icon { filter: invert(1) grayscale(1) brightness(2); }

/* ---------- Hero / Slider ---------- */
.hero-carousel .carousel-item {
  height: 88vh;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-carousel .carousel-item::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10, 21, 53, .91) 0%, rgba(18, 35, 87, .64) 60%, rgba(132, 18, 18, .22) 100%);
}
.hero-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 3;
}
.hero-caption .subtitle-badge {
  display: inline-block;
  background: rgba(132, 18, 18, .30);
  color: #f4dada;
  border: 1px solid rgba(223, 223, 223, .55);
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero-caption h1,
.hero-caption .hero-title {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .3);
}
.hero-caption p {
  color: rgba(255, 255, 255, .9);
  font-size: 1.15rem;
  max-width: 620px;
  margin-bottom: 2rem;
}
.hero-carousel .carousel-indicators [data-bs-target] {
  width: 40px; height: 4px; border-radius: 4px;
}
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next { width: 6%; z-index: 4; }

/* ---------- Bölüm başlıkları ---------- */
section { padding: 5rem 0; }
.section-head { margin-bottom: 3rem; }
.section-head .eyebrow {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: .8rem;
  display: inline-block;
  margin-bottom: .6rem;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  position: relative;
}
.section-head p { color: var(--gray); max-width: 640px; }
.section-head.center { text-align: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ---------- Tanıtım (Biz Üreticiyiz) ---------- */
.intro-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.intro-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.intro-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 700;
  box-shadow: var(--shadow);
}
.intro-badge .num { font-size: 2rem; display: block; line-height: 1; }
.feature-check { list-style: none; padding: 0; }
.feature-check li { padding: .4rem 0; padding-left: 2rem; position: relative; }
.feature-check li::before {
  content: '\2713';
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 800;
  background: rgba(132, 18, 18, .10);
  width: 1.4rem; height: 1.4rem;
  border-radius: 50%;
  text-align: center;
  line-height: 1.4rem;
  font-size: .8rem;
}

/* ---------- Hizmet kutuları ---------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 100%; height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 68px; height: 68px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.3rem;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--accent); color: var(--white); }
.service-card h4 { font-size: 1.2rem; margin-bottom: .6rem; }
.service-card p { color: var(--gray); font-size: .95rem; margin: 0; }

/* ---------- Galeri ---------- */
.gallery-item {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: .5s ease; }
.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 7 Pro';
  font-weight: 900;
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 2rem;
  background: rgba(18, 35, 87, .62);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover::after { opacity: 1; }

/* ---------- Sayaçlar ---------- */
.counters-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-2));
  position: relative;
}
.counter-box { text-align: center; color: var(--white); padding: 1rem; }
.counter-box .c-icon { font-size: 2.6rem; color: var(--accent); margin-bottom: .6rem; }
.counter-box .c-num { font-size: 2.8rem; font-weight: 800; color: var(--white); line-height: 1; }
.counter-box .c-label { color: rgba(255, 255, 255, .75); margin-top: .5rem; font-size: .95rem; }

/* ---------- Ürün / kategori kartları ---------- */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card .p-img {
  aspect-ratio: 4 / 3;
  background: var(--light);
  overflow: hidden;
  position: relative;
}
.product-card .p-img img { width: 100%; height: 100%; object-fit: cover; transition: .5s ease; }
.product-card:hover .p-img img { transform: scale(1.06); }
.product-card .p-body { padding: 1.3rem; }
.product-card .p-body h5 { font-size: 1.1rem; margin-bottom: .4rem; }
.product-card .p-body p { color: var(--gray); font-size: .9rem; margin-bottom: .8rem; }
.badge-cat {
  background: rgba(132, 18, 18, .10);
  color: var(--accent);
  font-weight: 600;
  font-size: .75rem;
  padding: .3rem .7rem;
  border-radius: 50px;
}

/* ---------- Sayfa başlığı (iç sayfalar) ---------- */
.page-hero {
  background: linear-gradient(135deg, rgba(10, 21, 53, .96), rgba(18, 35, 87, .90) 65%, rgba(132, 18, 18, .78)), var(--navy);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 6.5rem 0 3rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero .breadcrumb {
  justify-content: center;
  background: transparent;
  margin: .6rem 0 0;
}
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a { color: rgba(255, 255, 255, .8); }
.page-hero .breadcrumb-item.active { color: var(--accent); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, .5); }

/* ---------- Formlar ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
}
.form-control, .form-select {
  border: 1px solid var(--border);
  padding: .75rem 1rem;
  border-radius: 10px;
}
.form-control:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 .2rem rgba(132, 18, 18, .14);
}
.form-label { font-weight: 500; color: var(--navy); }

/* ---------- Çoklu ürün teklif oluşturucu ---------- */
.quote-builder-section { background: linear-gradient(180deg, #f7f8fb 0%, #fff 100%); }
.quote-alert { max-width: 920px; }
.quote-catalog-panel, .quote-selection-panel, .quote-contact-panel { padding: 1.6rem; }
.quote-panel-title { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; }
.quote-panel-title > div { display: flex; align-items: center; gap: .75rem; }
.quote-panel-title h3 { margin: 0; font-size: 1.25rem; }
.quote-step { width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--navy); color: #fff; font-weight: 800; }
.quote-product-count { color: var(--gray); font-size: .85rem; }
.quote-search-wrap { position: relative; }
.quote-search-wrap > i { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--gray); z-index: 2; }
.quote-search-wrap .form-control { padding-left: 2.7rem; }
.quote-product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; max-height: 760px; overflow-y: auto; padding: .15rem .3rem .15rem .15rem; scrollbar-color: var(--accent) #edf0f5; scrollbar-width: thin; }
.quote-product-card { appearance: none; display: flex; flex-direction: column; min-width: 0; padding: 0; overflow: hidden; text-align: left; background: #fff; border: 1px solid var(--border); border-radius: 12px; transition: var(--transition); }
.quote-product-card:hover { border-color: rgba(132, 18, 18, .55); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(18, 35, 87, .10); }
.quote-product-card.is-selected { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(132, 18, 18, .13); }
.quote-product-image { display: block; width: 100%; aspect-ratio: 1 / .82; background: #f3f4f7; position: relative; overflow: hidden; }
.quote-product-image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .3s ease; }
.quote-product-card:hover img { transform: scale(1.04); }
.quote-card-check { position: absolute; top: .55rem; right: .55rem; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: #fff; color: transparent; border: 1px solid var(--border); box-shadow: 0 2px 8px rgba(0,0,0,.10); }
.quote-product-card.is-selected .quote-card-check { color: #fff; background: var(--accent); border-color: var(--accent); }
.quote-product-info { display: flex; flex-direction: column; gap: .35rem; padding: .8rem; width: 100%; }
.quote-product-info strong { color: var(--navy); font-size: .88rem; line-height: 1.25; }
.quote-product-info small { color: var(--accent); font-weight: 700; font-size: .76rem; }
.quote-no-results { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: .6rem; min-height: 220px; color: var(--gray); }
.quote-no-results i { font-size: 2rem; color: var(--accent); }
.quote-sidebar { position: sticky; top: 110px; }
#quoteSelectedCount { background: var(--accent); font-size: .85rem; }
.quote-selected-items { display: flex; flex-direction: column; gap: .75rem; max-height: 410px; overflow-y: auto; padding-right: .2rem; }
.quote-selected-item { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: .8rem; padding: .7rem; border: 1px solid var(--border); border-radius: 12px; background: #fafbfc; }
.quote-selected-thumb { width: 72px; height: 82px; object-fit: contain; border-radius: 8px; background: #fff; }
.quote-selected-body { display: flex; flex-direction: column; min-width: 0; }
.quote-selected-body > strong { color: var(--navy); font-size: .9rem; line-height: 1.2; }
.quote-selected-body > small { color: var(--accent); font-size: .74rem; font-weight: 600; margin-top: .2rem; }
.quote-selected-controls { display: flex; align-items: flex-end; gap: .5rem; margin-top: auto; }
.quote-selected-controls label { color: var(--gray); font-size: .72rem; flex: 1; }
.quote-selected-controls input { margin-top: .2rem; width: 100%; min-height: 34px; padding: .3rem .55rem; }
.quote-remove-btn { width: 34px; height: 34px; flex: 0 0 auto; border: 0; border-radius: 8px; background: rgba(132, 18, 18, .09); color: var(--accent); }
.quote-remove-btn:hover { background: var(--accent); color: #fff; }
.quote-empty-selection { text-align: center; color: var(--gray); padding: 1.8rem 1rem; }
.quote-empty-selection i { font-size: 2rem; color: var(--accent); opacity: .65; }
.quote-empty-selection p { margin: .5rem 0 0; }
.quote-selection-guard { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.quote-estimate { margin-top: 1rem; padding: 1rem 1.1rem; border-radius: 12px; background: linear-gradient(135deg, var(--navy), #1a326f); color: #fff; }
.quote-estimate span, .quote-estimate small { display: block; }
.quote-estimate span { color: rgba(255,255,255,.72); font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; }
.quote-estimate strong { display: block; color: #fff; font-size: clamp(1.25rem, 3vw, 1.7rem); margin: .2rem 0 .4rem; }
.quote-estimate small { color: rgba(255,255,255,.68); line-height: 1.35; }

/* ---------- Referanslar ---------- */
.ref-logo {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 130px;
  display: flex; align-items: center; justify-content: center;
  padding: 1.2rem;
  transition: var(--transition);
}
.ref-logo:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.ref-logo img { max-height: 80px; object-fit: contain; filter: grayscale(1); opacity: .7; transition: var(--transition); }
.ref-logo:hover img { filter: grayscale(0); opacity: 1; }
.ref-placeholder { font-weight: 700; color: var(--navy); font-size: 1.1rem; }

/* ---------- CTA ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--accent), #671010);
  color: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
}
.cta-band h3 { color: var(--white); }
.cta-band .btn { background: var(--white) !important; color: var(--navy) !important; }

/* ---------- İletişim bilgi kartı ---------- */
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-item .ci-icon {
  flex: 0 0 auto;
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(132, 18, 18, .10);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.contact-info-item h6 { margin: 0 0 .2rem; }
.contact-info-item p { margin: 0; color: var(--gray); }

/* ---------- Kariyer pozisyon ---------- */
.position-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem 1.8rem;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}
.position-card:hover { box-shadow: var(--shadow); }
.position-meta { color: var(--gray); font-size: .9rem; }
.position-meta i { color: var(--accent); }

/* ---------- Site içi PDF katalog okuyucu ---------- */
.catalog-viewer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.catalog-viewer-wrap {
  background: var(--navy-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.catalog-viewer {
  display: block;
  width: 100%;
  height: min(82vh, 1050px);
  min-height: 680px;
  border: 0;
  background: #525659;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, .7);
  padding: 4rem 0 0;
}
.footer h5 { color: var(--white); margin-bottom: 1.3rem; font-size: 1.1rem; }
.footer a { color: rgba(255, 255, 255, .7); }
.footer a:hover { color: var(--accent); }
.footer .footer-links { list-style: none; padding: 0; }
.footer .footer-links li { margin-bottom: .6rem; }
.footer .footer-links a { display: inline-flex; align-items: center; gap: .5rem; }
.footer .social-links a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  display: inline-flex; align-items: center; justify-content: center;
  margin-right: .5rem;
  color: var(--white);
}
.footer .social-links a:hover { background: var(--accent); color: var(--navy); }
.footer .foot-contact li { display: flex; gap: .7rem; margin-bottom: .8rem; }
.footer .foot-contact i { color: var(--accent); margin-top: .25rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 3rem;
  padding: 1.3rem 0;
  font-size: .88rem;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 56px; height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .5);
  z-index: 999;
  animation: wa-pulse 2s infinite;
}
.wa-float:hover { color: #fff; transform: scale(1.08); }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Reveal animasyonu ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Prose (sabit sayfa içerik) ---------- */
.prose p { margin-bottom: 1.1rem; color: #3d4854; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .5rem; }
.prose h2, .prose h3 { margin: 1.8rem 0 .8rem; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .navbar-main .navbar-nav { padding: 1rem 0; }
  .navbar-brand img { max-width: 225px; max-height: 58px; }
  .hero-carousel .carousel-item { height: 75vh; }
  section { padding: 3.5rem 0; }
  .quote-sidebar { position: static; }
  .quote-product-grid { max-height: 680px; }
}
@media (max-width: 575px) {
  .navbar-brand img { max-width: 190px; max-height: 52px; }
  .form-card { padding: 1.5rem; }
  .cta-band { padding: 2rem 1.3rem; text-align: center; }
  .counter-box .c-num { font-size: 2.2rem; }
  .catalog-viewer-head { align-items: stretch; flex-direction: column; }
  .catalog-viewer-head > .d-flex { width: 100%; }
  .catalog-viewer-head .btn { flex: 1; }
  .catalog-viewer { height: 72vh; min-height: 520px; }
  .quote-catalog-panel, .quote-selection-panel, .quote-contact-panel { padding: 1rem; }
  .quote-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem; max-height: 620px; }
  .quote-product-info { padding: .65rem; }
  .quote-product-info strong { font-size: .8rem; }
  .quote-panel-title { align-items: flex-start; }
}
