/* =========================================================
   ZIRMAVEC FACTORY — Wilshire Build
   Visual Template: T11 — Wide Panorama  (anchor: decisionemc.com)
   Palette derived from the ZIRMAVEC logo.
   ========================================================= */

/* ---------- 1. TOKENS ---------- */
:root {
  /* Brand — from logo */
  --primary-color: #1c6434;
  --primary-light: #2f8f4f;
  --secondary-color: #ef6918;
  --secondary-light: #f68a3f;
  --accent-color: #da272c;
  --accent-dark: #b81f24;

  /* Neutrals */
  --ink: #16201a;
  --ink-soft: #5b6660;
  --line: #e2e6e3;
  --band: #f0f1f2;
  --white: #ffffff;
  --black: #0c110e;

  /* T11 template tokens */
  --container-max: 1360px;
  --section-pad: 85px;
  --grid-gap: 1.5rem;
  --radius: 4px;
  --btn-radius: 2px;
  --card-pad: 2rem 2rem;
  --shadow: 0 2px 14px rgba(22, 32, 26, .07);
  --shadow-hover: 0 6px 22px rgba(22, 32, 26, .11);
  --h1-size: clamp(1.85rem, 4.4vw, 3.2rem);
  --h2-size: clamp(1.5rem, 2.8vw, 2.15rem);
  --body-lh: 1.8;
  --hero-h: 54vh;
  --pagehero-h: 220px;
}

/* ---------- 2. BASE ---------- */
* { box-sizing: border-box; }

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: .92rem;
  line-height: var(--body-lh);
  color: var(--ink-soft);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.015em;
}

a { text-decoration: none; transition: color .25s ease; }
img { max-width: 100%; height: auto; display: block; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--container-max);
  padding-left: 22px;
  padding-right: 22px;
}

.section-padding { padding: var(--section-pad) 0; }
.bg-light-soft { background: var(--band); }

/* D4 — heading with a short accent rule beneath, no separate tag text */
.section-tag {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: .55rem;
}

.section-title {
  font-size: var(--h2-size);
  font-weight: 700;
  margin-bottom: 1.15rem;
  position: relative;
  padding-bottom: 18px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 3px;
  background: var(--accent-color);
}

.text-center .section-title::after,
.section-head-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-head-center { text-align: center; }

/* ---------- 3. BUTTONS ---------- */
.btn-brand,
.btn-brand-outline,
.btn-brand-secondary {
  border-radius: var(--btn-radius);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 2px solid transparent;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}

.btn-brand {
  background: var(--accent-color);
  color: var(--white);
}
.btn-brand:hover, .btn-brand:focus {
  background: var(--accent-dark);
  color: var(--white);
}

.btn-brand-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .7);
}
.btn-brand-outline:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn-brand-secondary {
  background: var(--primary-color);
  color: var(--white);
}
.btn-brand-secondary:hover {
  background: var(--primary-light);
  color: var(--white);
}

.btn-lg { padding: 15px 38px; font-size: .84rem; }

/* ---------- 4. TOP BAR ---------- */
.top-bar {
  background: var(--band);
  border-bottom: 1px solid var(--line);
  font-size: .78rem;
  padding: 8px 0;
  color: var(--ink-soft);
}
.top-bar a { color: var(--ink-soft); }
.top-bar a:hover { color: var(--accent-color); }
.top-bar i { color: var(--primary-color); margin-right: 7px; }

/* ---------- 5. NAVBAR ---------- */
.main-navbar {
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.main-navbar.scrolled { box-shadow: 0 2px 16px rgba(22, 32, 26, .09); }

.main-navbar .container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.navbar-brand {
  padding: 14px 0;
  margin-right: 2rem;
  display: flex;
  align-items: center;
}
.navbar-brand img { height: 64px; width: auto; }

.main-navbar .navbar-nav { align-items: stretch; }

.main-navbar .nav-item { display: flex; align-items: stretch; }

.main-navbar .nav-link {
  display: flex;
  align-items: center;
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: .84rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 0 1.05rem;
  position: relative;
}
.main-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 1.05rem;
  right: 1.05rem;
  bottom: 22px;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active { color: var(--primary-color); }
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after { transform: scaleX(1); }

/* G5 — solid dark square block, full navbar height */
.main-navbar .btn-brand {
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
  border-radius: 0;
  padding: 0 26px;
  align-self: stretch;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: none;
}
.main-navbar .btn-brand:hover { background: var(--accent-color); color: var(--white); }

.navbar-toggler {
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 6px 10px;
  align-self: center;
  margin-left: auto;
}
.navbar-toggler:focus { box-shadow: none; }

/* ---------- 6. HERO SLIDER (54vh panoramic) ---------- */
.hero-slider { position: relative; }

.hero-slide {
  height: var(--hero-h);
  min-height: 430px;
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

/* C1 — left block, horizontal gradient 75% left -> transparent 60% */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
              rgba(12, 17, 14, .82) 0%,
              rgba(12, 17, 14, .68) 34%,
              rgba(12, 17, 14, .18) 60%,
              rgba(12, 17, 14, .05) 100%);
}

.hero-slide .container { position: relative; z-index: 2; }

.hero-slide .hero-copy { max-width: 620px; padding-right: 12px; }

.hero-tag {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent-color);
  padding: 6px 14px;
  margin-bottom: 1.1rem;
}

.hero-slide h1 {
  font-size: var(--h1-size);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-slide p {
  color: rgba(255, 255, 255, .86);
  font-size: .97rem;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 1.9rem;
}

/* A1 — vertical dot stack on the right edge, active dot ringed */
.hero-slider .carousel-indicators {
  right: 34px;
  left: auto;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  margin: 0;
  gap: 14px;
  z-index: 4;
}
.hero-slider .carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  border: 0;
  margin: 0;
  opacity: 1;
  text-indent: 0;
  position: relative;
  transition: background .25s ease;
}
.hero-slider .carousel-indicators [data-bs-target].active {
  background: var(--accent-color);
}
.hero-slider .carousel-indicators [data-bs-target].active::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
}

/* B3 — circular translucent buttons, vertically centred */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: 46px;
  height: 46px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  opacity: 1;
  transition: background .25s ease;
  z-index: 4;
}
.hero-slider .carousel-control-prev { left: auto; right: 138px; }
.hero-slider .carousel-control-next { left: auto; right: 82px; }
.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover { background: var(--accent-color); border-color: var(--accent-color); }
.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon { width: 17px; height: 17px; }

/* ---------- 7. PAGE HERO (compact panoramic strip) ---------- */
.page-hero {
  height: var(--pagehero-h);
  background-size: cover;
  background-position: center 55%;
  position: relative;
  display: flex;
  align-items: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 17, 14, .84) 0%, rgba(12, 17, 14, .6) 45%, rgba(12, 17, 14, .2) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: .4rem;
}
.breadcrumb-custom {
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  font-weight: 600;
}
.breadcrumb-custom a { color: var(--white); }
.breadcrumb-custom a:hover { color: var(--secondary-light); }

/* ---------- 8. ABOUT ROWS (F1 — plain 16:9 rect, no radius) ---------- */
.about-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
}
.about-img-wrap .badge-float {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  color: var(--white);
  padding: 18px 26px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  line-height: 1.35;
  max-width: 210px;
}
.about-img-wrap .badge-float .num {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: .7rem;
  font-size: .92rem;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-size: 1rem;
  line-height: var(--body-lh);
}

/* ---------- 9. FEATURE CARDS (J5 gradient wash + E4 icon top-right) ---------- */
.feature-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #eef1ef 100%);
  border: 0;
  border-radius: var(--radius);
  padding: var(--card-pad);
  padding-right: 6.6rem;
  height: 100%;
  text-align: right;
  box-shadow: var(--shadow);
  transition: box-shadow .3s ease, background .3s ease;
}
.feature-card:hover { box-shadow: var(--shadow-hover); }

.feature-card .icon-wrap {
  position: absolute;
  top: 1.9rem;
  right: 1.9rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border-radius: var(--radius);
}
.feature-card .icon-wrap i {
  font-size: 1.35rem;
  color: var(--white);
  line-height: 1;
}

.feature-card h5 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: .6rem;
  padding-right: .2rem;
}
.feature-card p {
  font-size: .89rem;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ---------- 10. MISSION / VISION + VALUES ---------- */
.mv-card {
  background: linear-gradient(135deg, #ffffff 0%, #eef1ef 100%);
  border-radius: var(--radius);
  padding: 2.4rem 2.2rem;
  height: 100%;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--accent-color);
}
.mv-card > i {
  font-size: 1.9rem;
  color: var(--primary-color);
  display: block;
  margin-bottom: 1rem;
}
.mv-card h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: .75rem; }
.mv-card p { font-size: .92rem; margin-bottom: 0; }

.value-pill {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  height: 100%;
  text-align: right;
  box-shadow: var(--shadow);
}
.value-pill > i { font-size: 1.6rem; color: var(--accent-color); display: block; margin-bottom: .8rem; }
.value-pill h6 { font-size: 1rem; font-weight: 700; margin-bottom: .45rem; }
.value-pill p { font-size: .86rem; margin-bottom: 0; }

/* ---------- 11. PRODUCT / ITEM CARDS (16:9, radius 0, horizontal drift) ---------- */
.category-card-link { display: block; height: 100%; }

.product-card,
.item-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.product-card:hover,
.item-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-hover);
}

.product-img,
.item-img {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.product-img img,
.item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: object-position .55s ease;
}
/* Motion: horizontal drift only — no vertical lift, no scale */
.product-card:hover .product-img img,
.item-card:hover .item-img img { object-position: 78% 50%; }

.product-body,
.item-body {
  padding: 1.15rem 1.4rem;
  text-align: center;
  border-top: 1px solid var(--line);
}
.product-body h5,
.item-body h5 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: .01em;
  color: var(--ink);
  transition: color .25s ease;
}
.product-card:hover .product-body h5,
.item-card:hover .item-body h5 { color: var(--accent-color); }

/* ---------- 12. CTA (H2 — heading left, accent square button right) ---------- */
.cta-section {
  background-size: cover;
  background-position: center 55%;
  position: relative;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 17, 14, .88) 0%, rgba(12, 17, 14, .66) 55%, rgba(12, 17, 14, .38) 100%);
}
.cta-section .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.cta-section .cta-copy { max-width: 720px; }
.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.7vw, 2.05rem);
  font-weight: 700;
  margin-bottom: .7rem;
  padding-bottom: 0;
}
.cta-section h2::after { display: none; }
.cta-section p {
  color: rgba(255, 255, 255, .82);
  font-size: .94rem;
  margin-bottom: 0;
  max-width: 640px;
}

/* ---------- 13. CONTACT ---------- */
.contact-info-card {
  background: linear-gradient(150deg, var(--primary-color) 0%, #134527 100%);
  color: rgba(255, 255, 255, .82);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  height: 100%;
}
.contact-info-card h4 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  padding-bottom: 16px;
  position: relative;
}
.contact-info-card h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 3px;
  background: var(--accent-color);
}
.contact-info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-info-item:last-child { margin-bottom: 0; }
.ci-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .1);
  border-radius: var(--radius);
}
.ci-icon i { color: var(--white); font-size: 1.05rem; }
.ci-text { min-width: 0; }
.ci-text small {
  display: block;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  font-weight: 700;
  margin-bottom: 2px;
}
.ci-text span,
.ci-text a {
  color: var(--white);
  font-size: .93rem;
  font-weight: 500;
  word-break: break-word;
}
.ci-text a:hover { color: var(--secondary-light); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 2.2rem;
  height: 100%;
}
.contact-form-wrap h4 { font-size: 1.25rem; font-weight: 700; }
.contact-form-wrap .form-label {
  font-family: 'Manrope', sans-serif;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: .4rem;
}
.contact-form-wrap .form-control {
  border-radius: var(--btn-radius);
  border: 1px solid var(--line);
  padding: 11px 14px;
  font-size: .92rem;
  background: #fafbfa;
}
.contact-form-wrap .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(28, 100, 52, .1);
  background: var(--white);
}
#contactForm > [class*="col-"] { padding: 0 .6rem 1.1rem; }
#contactForm { margin: 0 -.6rem; }

/* ---------- 14. FOOTER ---------- */
.site-footer { background: var(--black); color: rgba(255, 255, 255, .62); }
.footer-top { padding: 70px 0 50px; }

.footer-brand-text { margin-bottom: 1.2rem; }
.footer-brand-text img { height: 52px; width: auto; }

.site-footer p { font-size: .89rem; line-height: 1.8; max-width: 460px; }

.site-footer h5 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  padding-bottom: 12px;
  position: relative;
}
.site-footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--accent-color);
}

.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li {
  font-size: .89rem;
  margin-bottom: .75rem;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}
.site-footer ul li i { color: var(--secondary-color); margin-top: 6px; flex: 0 0 auto; }
.site-footer a { color: rgba(255, 255, 255, .62); word-break: break-word; }
.site-footer a:hover { color: var(--white); }

/* Chevron-bulleted quick links */
.site-footer .footer-links li { position: relative; padding-left: 18px; display: block; }
.site-footer .footer-links li::before {
  content: "\F285";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0;
  font-size: .8rem;
  color: var(--secondary-color);
  line-height: 1.8;
}

/* I1 — accent-filled copyright bar */
.footer-bottom {
  background: var(--accent-color);
  color: var(--white);
  padding: 15px 0;
  font-size: .82rem;
  letter-spacing: .03em;
}

/* ---------- 15. BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  background: var(--accent-color);
  color: var(--white);
  border-radius: var(--btn-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 999;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent-dark); color: var(--white); }

/* ---------- 16. RESPONSIVE ---------- */
@media (max-width: 1199.98px) {
  :root { --container-max: 1140px; }
  .main-navbar .nav-link { padding: 0 .8rem; font-size: .8rem; }
  .hero-slider .carousel-control-next { right: 74px; }
}

@media (max-width: 991.98px) {
  :root {
    --section-pad: 62px;
    --hero-h: 62vh;
    --pagehero-h: 190px;
  }

  .top-bar { display: none; }

  .main-navbar .container { flex-wrap: wrap; align-items: center; }
  .main-navbar .navbar-collapse { flex-basis: 100%; }
  .navbar-brand { padding: 12px 0; }
  .navbar-brand img { height: 36px; }

  .main-navbar .navbar-nav {
    align-items: stretch;
    padding: .5rem 0 1rem;
    border-top: 1px solid var(--line);
    margin-top: .25rem;
  }
  .main-navbar .nav-item { display: block; }
  .main-navbar .nav-link { display: block; padding: .65rem 0; }
  .main-navbar .nav-link::after { display: none; }
  .main-navbar .btn-brand {
    display: inline-flex;
    align-self: flex-start;
    padding: 12px 24px;
    margin-top: .5rem;
  }

  .hero-slide::before {
    background: linear-gradient(90deg, rgba(12, 17, 14, .86) 0%, rgba(12, 17, 14, .68) 60%, rgba(12, 17, 14, .45) 100%);
  }
  .hero-slider .carousel-indicators { right: 14px; gap: 11px; }
  .hero-slide .hero-copy { padding-right: 34px; }
  .hero-slider .carousel-control-prev,
  .hero-slider .carousel-control-next { width: 38px; height: 38px; }
  .hero-slider .carousel-control-prev { right: 96px; }
  .hero-slider .carousel-control-next { right: 50px; }

  .cta-section .container { justify-content: flex-start; }

  .about-img-wrap .badge-float { padding: 14px 20px; max-width: 180px; }
  .about-img-wrap .badge-float .num { font-size: 1.45rem; }
}

@media (max-width: 767.98px) {
  :root { --section-pad: 52px; --card-pad: 1.6rem 1.5rem; }

  body { font-size: .9rem; }

  .hero-slide { min-height: 440px; }
  .hero-slide .btn-lg { padding: 12px 26px; font-size: .78rem; }
  .hero-slide .btn-brand { margin-bottom: .6rem; }

  .feature-card { padding-right: 1.5rem; text-align: left; }
  .feature-card .icon-wrap { position: static; margin-bottom: 1rem; }
  .value-pill { text-align: left; }
  .product-body, .item-body { text-align: left; }

  .footer-top { padding: 52px 0 36px; }
  .footer-brand-text img { height: 44px; }
}

@media (max-width: 575.98px) {
  .container { padding-left: 18px; padding-right: 18px; }
  .hero-slider .carousel-control-prev,
  .hero-slider .carousel-control-next { display: none; }
  .hero-slide .hero-copy { max-width: 100%; }
}
