/* ============================================================
   BOIS INDUSTRIEL — Modern Redesign
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown-dark:   #2C1810;
  --brown-mid:    #6B3A2A;
  --brown-light:  #A0633A;
  --gold:         #C8993A;
  --gold-light:   #E8C87A;
  --green-dark:   #1B4D2E;
  --green-mid:    #2D6A4F;
  --green-light:  #52B788;
  --cream:        #FAF6F0;
  --cream-dark:   #F0E8DA;
  --white:        #FFFFFF;
  --text:         #1C1208;
  --text-muted:   #6B5240;
  --border:       #E0CDB5;
  --shadow-sm:    0 2px 8px rgba(44,24,16,.08);
  --shadow-md:    0 6px 24px rgba(44,24,16,.12);
  --shadow-lg:    0 16px 48px rgba(44,24,16,.16);
  --radius:       12px;
  --radius-sm:    8px;
  --nav-h:        72px;
  --transition:   0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--brown-dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-muted); }

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: .6rem;
}
.section-title { margin-bottom: .6rem; }
.section-desc  { max-width: 54ch; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--green-dark);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-2px);
}
.btn-brown {
  background: var(--brown-mid);
  color: var(--white);
}
.btn-brown:hover {
  background: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── Navigation ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(28,18,8,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(28,18,8,1);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--white);
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: var(--green-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}
.nav-logo-text { line-height: 1.1; }
.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
}
.nav-logo-tag {
  font-size: .68rem;
  color: var(--gold-light);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem .65rem;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.nav-link svg { width: 12px; height: 12px; flex-shrink: 0; }

/* dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--brown-dark);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: .5rem;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  box-shadow: var(--shadow-lg);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: .6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .84rem;
  color: rgba(255,255,255,.8);
  transition: var(--transition);
}
.nav-dropdown a:hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
  padding-left: 1.3rem;
}

.nav-cta {
  margin-left: .5rem;
  padding: .5rem 1.2rem;
  background: var(--green-dark);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.nav-cta:hover {
  background: var(--green-mid) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--brown-dark);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 1rem;
  z-index: 999;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: .75rem 1rem;
  color: rgba(255,255,255,.85);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  transition: var(--transition);
}
.nav-mobile a:hover { background: rgba(255,255,255,.1); color: var(--white); }
.nav-mobile-group { padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.nav-mobile-group:last-child { border: none; }
.nav-mobile-label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: .5rem 1rem .25rem;
  font-weight: 600;
}

/* ── Layout Helpers ───────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}
.section-alt { background: var(--cream-dark); }
.section-dark {
  background: var(--brown-dark);
  color: var(--white);
}
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p { color: rgba(255,255,255,.9); }
.section-dark .section-label { color: var(--gold-light); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1C1208 0%, #2C1810 40%, #1B4D2E 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(200,153,58,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(45,106,79,.15) 0%, transparent 50%);
}

/* Wood grain texture overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,1) 2px,
    rgba(255,255,255,1) 3px
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200,153,58,.15);
  border: 1px solid rgba(200,153,58,.3);
  border-radius: 100px;
  padding: .4rem 1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
}
.hero-title span { color: var(--gold-light); }

.hero-desc {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 44ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: .25rem;
}
.hero-stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 480px;
}
.hero-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.hero-card:first-child {
  grid-row: 1 / 3;
}
.hero-card-bg {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.hero-card:hover .hero-card-bg { transform: scale(1.05); }

.hero-card-label {
  position: absolute;
  bottom: .75rem;
  left: .75rem;
  background: rgba(28,18,8,.7);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .75rem;
  border-radius: 100px;
}

/* Hero card backgrounds */
.hc1 { background: linear-gradient(135deg, #4A2C1A, #8B5E3C); }
.hc2 { background: linear-gradient(135deg, #1B4D2E, #2D6A4F); }
.hc3 { background: linear-gradient(135deg, #2C1810, #6B3A2A); }

/* Wood plank illustration for hero cards */
.hero-card-bg.plank {
  background-image: repeating-linear-gradient(
    180deg,
    rgba(255,255,255,.03) 0px,
    rgba(255,255,255,.03) 1px,
    transparent 1px,
    transparent 20px
  );
}

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--green-dark) 100%);
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 56ch; margin: 0 auto 1.5rem; }
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.5rem;
}
.page-hero-breadcrumb a { color: var(--gold-light); }
.page-hero-breadcrumb a:hover { text-decoration: underline; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  height: 200px;
  overflow: hidden;
}
.card-img-inner {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.card:hover .card-img-inner { transform: scale(1.06); }

.card-body { padding: 1.5rem; }
.card-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: rgba(45,106,79,.1);
  padding: .25rem .7rem;
  border-radius: 100px;
  margin-bottom: .75rem;
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--brown-dark);
  margin-bottom: .5rem;
}
.card-desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.card-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--green-mid);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap var(--transition);
}
.card-link:hover { gap: .6rem; }

/* Product card (large) */
.product-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
}
.product-card-img {
  min-height: 300px;
  background: linear-gradient(135deg, var(--cream-dark), var(--border));
  position: relative;
  overflow: hidden;
}
.product-card-body { padding: 2.5rem; }
.product-card-name {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: .5rem;
}
.product-card-title {
  font-size: 1.6rem;
  color: var(--brown-dark);
  margin-bottom: 1rem;
}
.product-card-desc {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ── Data Tables ──────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
thead {
  background: var(--brown-dark);
  color: var(--white);
}
thead th {
  padding: .9rem 1.2rem;
  text-align: left;
  font-weight: 600;
  letter-spacing: .04em;
  font-size: .82rem;
  text-transform: uppercase;
}
tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
tbody tr:hover { background: var(--cream); }
tbody td {
  padding: .8rem 1.2rem;
  color: var(--text-muted);
}
tbody td:first-child { font-weight: 600; color: var(--text); }
.table-check { color: var(--green-mid); font-weight: 700; }

/* ── Color Swatches ───────────────────────────────────────── */
.color-palette {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1.5rem 0;
}
.color-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}
.color-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: transform var(--transition);
}
.color-swatch:hover .color-dot { transform: scale(1.15); }
.color-label {
  font-size: .7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  max-width: 60px;
  line-height: 1.2;
}

/* ── Info Boxes ───────────────────────────────────────────── */
.info-box {
  background: var(--cream-dark);
  border-left: 4px solid var(--green-mid);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.info-box.warning { border-color: var(--gold); }
.info-box.brown { border-color: var(--brown-mid); }

/* ── Spec Grid ────────────────────────────────────────────── */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.spec-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}
.spec-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: .25rem;
  font-weight: 600;
}
.spec-value {
  font-weight: 700;
  color: var(--brown-dark);
  font-size: 1.05rem;
}

/* ── Feature List ─────────────────────────────────────────── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.feature-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.feature-icon {
  width: 24px; height: 24px;
  background: rgba(45,106,79,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
  font-size: .75rem;
}
.feature-text { font-size: .9rem; color: var(--text-muted); line-height: 1.5; }

/* ── Tabs ─────────────────────────────────────────────────── */
.tabs {
  border-bottom: 2px solid var(--border);
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  overflow-x: auto;
}
.tab-btn {
  padding: .75rem 1.5rem;
  font-weight: 600;
  font-size: .88rem;
  color: var(--text-muted);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  white-space: nowrap;
}
.tab-btn:hover { color: var(--green-mid); }
.tab-btn.active {
  color: var(--green-dark);
  border-bottom-color: var(--green-mid);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Section Divider ──────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
}
.divider-line { flex: 1; height: 1px; background: var(--border); }
.divider-icon { color: var(--gold); font-size: 1.1rem; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--brown-dark) 100%);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,.015) 20px,
    rgba(255,255,255,.015) 40px
  );
}
.cta-banner h2 { color: var(--white); position: relative; }
.cta-banner p  { color: rgba(255,255,255,.75); position: relative; margin: .75rem 0 1.75rem; }
.cta-banner .btn { position: relative; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo-name { font-size: 1.3rem; }
.footer-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  margin: 1rem 0 1.5rem;
  line-height: 1.7;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .6rem;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.footer-contact-icon { color: var(--gold-light); flex-shrink: 0; margin-top: .1rem; }

.footer-col-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--white);
  padding-left: .4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
/* Elements already in viewport on page load */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual  { display: none; }
  .product-card { grid-template-columns: 1fr; }
  .product-card-img { min-height: 220px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .grid-4       { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 3.5rem 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .cta-banner { padding: 2rem; }
  .hero-stats { grid-template-columns: repeat(3,1fr); gap: .5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
