/* =========================================================
   SME KITCHEN EQUIPMENTS — starter site stylesheet
   Design tokens
   ========================================================= */
:root {
  --steel-50: #F4F5F6;
  --steel-100: #E8EAEC;
  --charcoal: #1A1D21;
  --charcoal-deep: #d81e27;
  --red: #D81E27;
  --red-deep: #A9151C;
  --ink: #000;
  --ink-soft: #000;
  --white: #FFFFFF;

  --font-display: 'Baskervville', -apple-system, Segoe UI, sans-serif;
  --font-body: 'Baskervville', -apple-system, Segoe UI, sans-serif;

  --radius: 12px;
  --radius-sm: 7px;
  --shadow: 0 14px 32px -16px rgba(16, 18, 20, 0.3);
  --shadow-lg: 0 26px 54px -22px rgba(16, 18, 20, .4);
  --shadow-red: 0 20px 40px -16px rgba(216, 30, 39, .4);
  --container: 1200px;

  --gradient-primary: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  --gradient-dark: linear-gradient(135deg, #1f2225 0%, var(--charcoal) 45%, #2c1416 100%);
  --gradient-radial-accent: radial-gradient(circle at 20% 20%, rgba(216, 30, 39, .18), transparent 45%), radial-gradient(circle at 82% 78%, rgba(216, 30, 39, .12), transparent 42%);
  --ease-smooth: cubic-bezier(.16, .84, .44, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--red);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

::-webkit-scrollbar-track {
  background: var(--steel-50);
}

::-webkit-scrollbar-thumb {
  background: var(--red-deep);
  border-radius: 10px;
  border: 2px solid var(--steel-50);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--steel-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  fill: none;
  stroke: currentColor;
  vertical-align: -0.15em;
}

.icon.filled {
  fill: currentColor;
  stroke: none;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--charcoal);
  margin: 0 0 .2em;
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .01em;
}

h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 3.3rem);
}

h3 {
  font-size: 1.15rem;
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 700;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
  font-size: 20px;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 28px;
  color: var(--red);
}

.crown-divider {
  width: 110px;
  height: 18px;
  color: var(--red);
  margin: .6em 0 1.2em;
}

.section-head {
  max-width: 660px;
  margin-bottom: 2.4rem;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .crown-divider {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .85em 1.6em;
  border-radius: 4px;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-family: var(--font-display);
  border: 2px solid transparent;
  transition: transform .25s var(--ease-smooth), box-shadow .25s var(--ease-smooth), background .25s ease, color .25s ease, border-color .25s ease;
  position: relative;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 10px 22px -12px rgba(216, 30, 39, .5);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, .4) 50%, transparent 75%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}

.btn-primary:hover::before {
  transform: translateX(120%);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -12px rgba(216, 30, 39, .6);
}

.btn-outline {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .15);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .85);
}

.btn .icon {
  width: 1.05em;
  height: 1.05em;
  transition: transform .25s ease;
}

.btn-primary:hover .icon {
  transform: translateX(3px);
}


/* ==========================
   TOP BAR
========================== */

.topbar {
  background: #1a1d21;
  color: #fff;
  font-size: 14px;
}

.topbar-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 20px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.topbar-left a,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  transition: .3s;
}

.topbar-left a:hover {
  color: #d62828;
}

.topbar i {
  color: #d62828;
  font-size: 15px;
  min-width: 16px;
  text-align: center;
}

.topbar span {
  line-height: 1.4;
}

/* ==========================
   Tablet
========================== */

@media (max-width:991px) {

  .topbar-wrap {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }

  .topbar-left {
    justify-content: center;
    gap: 18px;
  }

  .topbar-right {
    justify-content: center;
  }

}

/* ==========================
   Mobile
========================== */

@media (max-width:576px) {

  .topbar {
    font-size: 13px;
  }

  .topbar-wrap {
    padding: 10px 0;
  }

  .topbar-left {
    flex-direction: column;
    gap: 10px;
  }

  .topbar-left a,
  .topbar-right {
    justify-content: center;
  }

  .topbar-right {
    max-width: 100%;
  }

  .topbar span {
    word-break: break-word;
  }

}

/* =========================================================
   Header / Nav
   ========================================================= */


.site-header {
  background: rgba(255, 255, 255, .96);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(16, 18, 20, .08);
  transition: box-shadow .25s ease;
}

/* .header is the homepage's rebuilt header wrapper — same treatment as .site-header */
.header {
  background: rgba(255, 255, 255, .96);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(16, 18, 20, .08);
  transition: box-shadow .25s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 56px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: .02em;
}

.brand-text span {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* .logo is the homepage's rebuilt brand block — same treatment as .brand */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 56px;
  width: auto;
  display: block;
  border-radius: 6px;
}

.logo div {
  display: flex;
  flex-direction: column;
}

.logo h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 0;
  line-height: 1.2;
}

.logo span {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Topbar layout used on the homepage (topbar-wrap/topbar-left/topbar-right) */
.topbar-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar-left a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar i {
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  font-weight: 600;
  font-size: .86rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width .2s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.nav-links a[aria-current="page"] {
  color: var(--red);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--charcoal);
  padding: 6px;
}

.nav-toggle .icon {
  width: 26px;
  height: 26px;
}

/* Products dropdown submenu */
.has-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: var(--ink-soft);
  padding: 2px;
  display: flex;
  cursor: pointer;
}

.dropdown-toggle .icon {
  width: 15px;
  height: 15px;
  transition: transform .2s ease;
}

.has-dropdown.open .dropdown-toggle .icon {
  transform: rotate(180deg);
}

.has-dropdown .dropdown {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: 100%;
  left: -8px;
  min-width: 230px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 60;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-dropdown .dropdown li {
  margin: 0;
}

.has-dropdown .dropdown li a {
  display: block;
  padding: .65em .9em;
  font-size: .82rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  border-radius: 6px;
}

.has-dropdown .dropdown li a::after {
  display: none;
}

.has-dropdown .dropdown li a:hover {
  background: var(--steel-50);
  color: var(--red);
}

@media (max-width:1000px) {
  .dropdown-toggle {
    padding: 6px;
  }

  .dropdown-toggle .icon {
    width: 18px;
    height: 18px;
  }

  .has-dropdown .dropdown {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height .25s ease;
    background: var(--steel-50);
    border-radius: 6px;
  }

  .has-dropdown.open .dropdown {
    max-height: 400px;
    padding: 6px;
    margin-top: 8px;
  }
}

@media (max-width:1000px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 86%);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 28px 28px;
    gap: 22px;
    box-shadow: -14px 0 40px -20px rgba(0, 0, 0, .3);
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    z-index: 999;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-cta .btn-outline {
    display: none;
  }
}


/* ===========================
   MOBILE MENU
=========================== */

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: #c62828;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  transition: .3s;
}

.menu-btn:hover {
  background: #a91f1f;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  visibility: hidden;
  opacity: 0;
  transition: .3s;
  z-index: 998;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--white) !important;
  padding: .7em 1.4em;
  border-radius: 4px;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease;
}

.quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -10px rgba(216, 30, 39, .55);
}

@media(max-width:991px) {

  .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
  }

  .menu {

    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 90px 25px 30px;
    transition: .35s;
    overflow-y: auto;
    z-index: 999;
    box-shadow: -5px 0 25px rgba(0, 0, 0, .15);

  }

  .menu.active {
    right: 0;
  }

  .menu li {
    width: 100%;
    list-style: none;
    border-bottom: 1px solid #eee;
  }

  .menu li:last-child {
    border: none;
  }

  .menu li a {

    display: block;
    width: 100%;
    padding: 16px 0;
    font-size: 16px;
    color: #222;
    font-weight: 600;

  }

  .quote-btn {
    display: flex;
    margin-top: 15px;
    text-align: center;
  }

  /* Dropdown */

  .submenu {

    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f7f7f7;
    padding-left: 18px;
    border-radius: 8px;
    margin-bottom: 10px;

  }

  .dropdown.active .submenu {
    display: block;
  }

  .dropdown>a {

    display: flex;
    justify-content: space-between;
    align-items: center;

  }

}

@media(min-width:992px) {

  .menu {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .submenu {

    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    display: none;
    padding: 10px 0;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .12);

  }

  .dropdown {
    position: relative;
  }

  .dropdown:hover .submenu {
    display: block;
  }

  .submenu li {
    list-style: none;
  }

  .submenu li a {
    display: block;
    padding: 12px 18px;
  }

}

/* =========================================================
   Hero
   ========================================================= */
/* =========================================================
   Full-width animated hero banner (sits under header, above hero copy)
   ========================================================= */
.hero-banner {
  position: relative;
  width: 100%;
  height: clamp(820px, 96vw, 1040px);
  overflow: hidden;
  background: var(--charcoal);
}

.hb-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease;
}

.hb-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hb-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hb-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(100deg, rgba(16, 18, 20, .82) 0%, rgba(16, 18, 20, .45) 45%, rgba(16, 18, 20, .65) 100%);
}

.hb-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 375px;
  z-index: 3;
  color: var(--white);
}

.hb-caption .eyebrow {
  color: var(--red);
}

.hb-caption h2 {
  color: var(--white);
  max-width: 620px;
}

.hb-caption p {
  color: #D7DADD;
  max-width: 520px;
}

.hb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .35);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.hb-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.06);
}

.hb-arrow .icon {
  width: 20px;
  height: 20px;
}

.hb-prev {
  left: 24px;
}

.hb-next {
  right: 24px;
}

.hb-prev .icon {
  transform: rotate(180deg);
}

.hb-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hb-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  border: none;
  padding: 0;
  transition: background .25s ease, transform .25s ease;
}

.hb-dot.is-active {
  background: var(--red);
  transform: scale(1.4);
}

.hb-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  background: var(--red);
  width: 0;
  z-index: 4;
}

.hb-progress.is-animating {
  animation: hbProgress linear;
}

@keyframes hbProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@media (max-width:760px) {
  .hero-banner {
    height: clamp(260px, 72vw, 400px);
  }

  .hb-caption {
    bottom: 56px;
  }

  .hb-caption h2 {
    font-size: 1.5rem;
  }

  .hb-caption p {
    display: none;
  }

  .hb-arrow {
    width: 36px;
    height: 36px;
  }

  .hb-prev {
    left: 12px;
  }

  .hb-next {
    right: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hb-slide {
    transition: none;
  }

  .hb-progress {
    display: none;
  }
}

.hero {
  background: var(--charcoal);
  color: var(--white);
  padding: 100px 0;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-copy {
  max-width: 600px;
}

.hero-copy .eyebrow {
  color: var(--red);
  margin-bottom: 15px;
  display: inline-block;
}

.hero-copy h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-copy p.lead {
  font-size: 1.05rem;
  color: #C7CBCF;
  max-width: 550px;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
}

.hero-stats div span {
  font-size: .8rem;
  color: #9BA1A7;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual .grid-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 550px;
}

.hero-visual .grid-mosaic div {
  overflow: hidden;
  border-radius: 12px;
}

.hero-visual .grid-mosaic img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform .4s ease;
}

.hero-visual .grid-mosaic img:hover {
  transform: scale(1.05);
}

/* Remove uneven alignment */
.hero-visual .grid-mosaic div:nth-child(2) {
  margin-top: 0;
}

@media (max-width: 960px) {

  .hero {
    min-height: auto;
    padding: 80px 0;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .hero-copy p.lead {
    margin: 0 auto;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .hero-visual .grid-mosaic {
    max-width: 450px;
    margin: 0 auto;
  }

  .hero-visual .grid-mosaic img {
    height: 200px;
  }
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.application-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  transition: .4s ease;
  padding: 0px !important;
}

.application-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

/* Title */

.title-box {
  background: #fff;
  padding: 18px 15px;
  text-align: center;
  transition: .35s ease;
}

.title-box h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #d91e18;
  transition: .35s ease;
}

/* Hover */

.application-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
}

.application-card:hover img {
  transform: scale(1.08);
}

.application-card:hover .title-box {
  background: #d91e18;
}

.application-card:hover .title-box h3 {
  color: #fff;
}

/* Mobile */

@media(max-width:768px) {

  .application-card img {
    height: 220px;
  }

  .title-box h3 {
    font-size: 18px;
  }

}

/*==========================
   Modern Credibility Strip
===========================*/

.cred-strip {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.cred-card {
  background: #fff;
  border-radius: 22px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  transition: .35s ease;
  position: relative;
  overflow: hidden;
}

.cred-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #d91e18, #ff6b35);
}

.cred-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
}

.icon-box {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #d91e18, #ff6b35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon {
  width: 34px;
  height: 34px;
  color: #fff;
}

.cred-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f2937;
}

.cred-card p {
  font-size: .95rem;
  line-height: 1.7;
  color: #000;
}

@media(max-width:768px) {

  .cred-strip {
    padding: 70px 0;
  }

  .cred-grid {
    gap: 20px;
  }

  .cred-card {
    padding: 30px 22px;
  }

}

/* =========================================================
   Sections
   ========================================================= */
.section {
  padding: 30px 0;
}

.section.tight {
  padding: 64px 0;
}

.section.alt {
  background: linear-gradient(180deg, var(--white) 0%, var(--steel-50) 100%);
}

/* Category grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3.1;
  transition: transform .4s var(--ease-smooth), box-shadow .4s var(--ease-smooth);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 54px -20px rgba(216, 30, 39, .4);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-smooth);
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 18, 20, .88) 10%, rgba(16, 18, 20, .15) 60%, transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.category-card h3 {
  color: var(--white);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.15rem;
  margin-bottom: .2em;
}

.category-card .count {
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.category-card .cta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  margin-top: .6em;
  opacity: 0;
  transform: translateY(6px);
  transition: all .25s ease;
}

.category-card:hover .cta-row {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width:1000px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:600px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

/* Product grid (category detail pages) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 18, 20, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(216, 30, 39, .25);
}

.product-card .thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--steel-100);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .35s ease;
  cursor: zoom-in;
  border-radius: 6px;
  image-rendering: auto;
}

.product-card:hover .thumb img {
  transform: scale(1.035);
}

.product-card .info {
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(16, 18, 20, .06);
}

.product-card h3 {
  font-size: 19px;
  margin: 0;
}

/* ============================
   Product Grid Responsive
============================ */

/* Laptop */

@media (max-width:1200px) {

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

}

/* Tablet */

@media (max-width: 991px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .product-grid {
    grid-template-columns: 1fr; /* One card per row */
    gap: 18px;
  }

  .product-card .thumb {
    padding: 15px;
  }

  .product-card .info {
    padding: 15px;
  }

  .product-card h3 {
    font-size: 18px;
    text-align: center;
  }
}

/* Small Mobile */

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr; /* One card per row */
    gap: 16px;
  }

  .product-card .thumb {
    padding: 12px;
  }

  .product-card h3 {
    font-size: 17px;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(16, 18, 20, .92);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.lightbox .lb-caption {
  color: var(--white);
  text-align: center;
  margin-top: 16px;
  font-weight: 600;
  letter-spacing: .02em;
}

.lightbox .lb-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.lightbox .lb-close:hover {
  background: var(--red);
}

.lightbox .lb-close .icon {
  width: 22px;
  height: 22px;
}

/* About / split content */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split.reverse .split-media {
  order: 2;
}

.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.checklist li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.checklist .icon {
  width: 22px;
  height: 22px;
  color: var(--red);
  flex: none;
  margin-top: 2px;
}

@media (max-width:960px) {

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media {
    order: 0;
  }
}

/* Value grid */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.value-card {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--red);
}

.value-card .icon {
  width: 30px;
  height: 30px;
  color: var(--charcoal);
  margin-bottom: 12px;
}

@media (max-width:960px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:560px) {
  .value-grid {
    grid-template-columns: 1fr;
  }
}

/* Impact stats */
.stats-band {
  background: var(--gradient-dark);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-radial-accent);
  z-index: -1;
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.impact-strip div {
  position: relative;
}

.impact-strip div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.impact-strip div span {
  display: block;
  margin-top: .5em;
  font-size: .8rem;
  color: #C7CBCF;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-weight: 600;
}

.impact-strip div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: rgba(255, 255, 255, .14);
}

@media (max-width:760px) {
  .impact-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }

  .impact-strip div:not(:last-child)::after {
    display: none;
  }
}

/* Excellence / feature checklist grid */
.excellence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  margin-top: 1.6em;
}

.excellence-grid .checklist-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.excellence-grid .icon {
  width: 20px;
  height: 20px;
  color: var(--red);
  flex: none;
  margin-top: 2px;
}

.excellence-grid span {
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
}

@media (max-width:560px) {
  .excellence-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Scroll-reveal + count-up animation utilities
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s cubic-bezier(.2, .7, .2, 1), transform .6s cubic-bezier(.2, .7, .2, 1);
  }

  .reveal.in-view {
    opacity: 1;
    transform: none;
  }
}

/* Application / sectors grid */
.application-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.application-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 20px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 18, 20, .06);
  overflow: hidden;
  transition: transform .32s cubic-bezier(.2, .8, .3, 1), box-shadow .32s ease, border-color .32s ease;
}

.application-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.application-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px -18px rgba(16, 18, 20, .35);
  border-color: transparent;
}

.application-card:hover::before {
  transform: scaleX(1);
}

.application-card .icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--steel-50);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, transform .3s ease;
}

.application-card:hover .icon-badge {
  background: var(--red);
  transform: scale(1.08) rotate(-6deg);
}

.application-card .icon-badge .icon {
  width: 28px;
  height: 28px;
  color: var(--red);
  transition: color .3s ease;
}

.application-card:hover .icon-badge .icon {
  color: var(--white);
}

.application-card h3 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 800;
  text-transform: none;
  margin: 0;
  letter-spacing: .01em;
}

@media (max-width:900px) {
  .application-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:480px) {
  .application-grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonials — auto-scrolling marquee */
.testimonial-marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.testimonial-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: testimonialScroll 34s linear infinite;
}

.testimonial-marquee:hover .testimonial-track,
.testimonial-marquee:focus-within .testimonial-track {
  animation-play-state: paused;
}

@keyframes testimonialScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  flex: 0 0 380px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--steel-100);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-smooth), box-shadow .35s var(--ease-smooth);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}


.testimonial-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 18px;
}

.testimonial-stars i {
  color: #FFC107;
  font-size: 18px;
}

.testimonial-quote {
  color: var(--ink);
  font-size: .95rem;
  margin: 0;
  flex: 1;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  flex: none;
}

.testimonial-person strong {
  display: block;
  font-size: .9rem;
  color: var(--charcoal);
}

.testimonial-person span {
  display: block;
  font-size: .78rem;
  color: var(--ink-soft);
}

@media (max-width:600px) {
  .testimonial-card {
    flex: 0 0 300px;
    padding: 24px 22px;
  }
}

@media (prefers-reduced-motion:reduce) {
  .testimonial-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
  }
}

/* CTA band */
.cta-band {
  background: var(--gradient-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 50px 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-lg);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-radial-accent);
  z-index: -1;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: .25em;
}

.cta-band p {
  color: #C7CBCF;
  margin: 0;
  max-width: 560px;
}

@media (max-width:760px) {
  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: 38px 26px;
  }
}

/* Full-width edge-to-edge CTA section (homepage) */
.cta-section-full {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 84px 0;
  background: linear-gradient(120deg, var(--charcoal) 0%, #3a1418 48%, var(--red-deep) 100%);
  background-size: 200% 200%;
  animation: ctaGradientShift 12s ease-in-out infinite;
}

@keyframes ctaGradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.cta-section-full::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, .09), transparent 40%),
    radial-gradient(circle at 90% 85%, rgba(255, 255, 255, .08), transparent 45%);
}

.cta-section-full .container.cta-band {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.cta-section-full .container.cta-band::before {
  display: none;
}

.cta-section-full h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
}

.cta-section-full p {
  color: rgba(255, 255, 255, .82);
}

@media (prefers-reduced-motion:reduce) {
  .cta-section-full {
    animation: none;
  }
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.contact-card .icon {
  width: 26px;
  height: 26px;
  color: var(--red);
  flex: none;
}

.contact-card h4 {
  margin-bottom: .2em;
  font-size: 1rem;
  text-transform: none;
  font-family: var(--font-body);
  color: var(--charcoal);
}

.contact-card p {
  margin: 0;
  font-size: .9rem;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .85em 1em;
  border-radius: var(--radius-sm);
  border: 1.5px solid #D8DBDE;
  font: inherit;
  background: var(--steel-50);
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  outline: none;
}

.form-note {
  font-size: .78rem;
  color: var(--ink-soft);
  margin-top: 10px;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 26px;
}

.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

@media (max-width:960px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Page hero */
.page-hero {
  background: var(--charcoal);
  color: var(--white);
  padding: 52px 0;
  text-align: center;
}

.page-hero .eyebrow {
  margin-bottom: .5em;
}

.page-hero h1 {
  color: var(--white);
}

.breadcrumb {
  font-size: .82rem;
  color: #9BA1A7;
  margin-top: .6em;
}

.breadcrumb a {
  color: var(--red);
  font-weight: 600;
}

/* =========================================
              MODERN FOOTER
========================================= */

.site-footer {
  background: #111;
  color: #fff;
  padding: 70px 0 0;
}

.footer-grid {

  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.4fr;
  gap: 45px;
  align-items: flex-start;
  padding-bottom: 50px;

}

/* ---------- Brand ---------- */

.footer-brand {

  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;

}

.footer-brand img {

  width: 70px;
  height: 70px;
  object-fit: contain;

}

.footer-brand strong {

  display: block;
  color: #fff;
  font-size: 22px;
  margin-bottom: 5px;

}

.footer-brand span {

  color: #bdbdbd;
  font-size: 13px;

}

.site-footer p {

  color: #cfcfcf;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 20px;

}

/* ---------- Heading ---------- */

.site-footer h4 {

  font-size: 20px;
  color: #fff;
  margin-bottom: 25px;
  position: relative;

}

.site-footer h4::after {

  content: "";

  width: 45px;
  height: 3px;

  background: #d91e18;

  position: absolute;
  left: 0;
  bottom: -10px;

}

/* ---------- UL ---------- */

.site-footer ul {

  list-style: none;
  margin: 0;
  padding: 0;

}

.site-footer ul li {

  margin-bottom: 14px;

}

.site-footer ul li a {

  color: #d7d7d7;
  text-decoration: none;
  transition: .3s;

}

.site-footer ul li a:hover {

  color: #d91e18;
  padding-left: 8px;

}

/* ---------- Address ---------- */

.footer-address li {

  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;

}

.footer-address li i {

  width: 42px;
  height: 42px;

  min-width: 42px;

  border-radius: 50%;

  background: #d91e18;

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: .3s;

}

.footer-address li:hover i {

  transform: scale(1.08);
  background: #fff;
  color: #d91e18;

}

.footer-address span,
.footer-address a {

  color: #d7d7d7;
  line-height: 1.8;
  text-decoration: none;

}

.footer-address a:hover {

  color: #d91e18;

}

/* ---------- Social ---------- */

.footer-social {

  display: flex;
  gap: 12px;
  margin-top: 25px;

}

.footer-social a {

  width: 42px;
  height: 42px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, .08);

  color: #fff;

  transition: .35s;

}

.footer-social a:hover {

  background: #d91e18;
  transform: translateY(-5px);

}

.footer-social i {

  font-size: 18px;

}

/* ---------- Bottom ---------- */

.footer-bottom {

  border-top: 1px solid rgba(255, 255, 255, .08);

  padding: 22px 0;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  color: #cfcfcf;
  font-size: 14px;

}

/* ---------- Responsive ---------- */

/*=========================================
            FOOTER RESPONSIVE
=========================================*/

@media (max-width:991px) {

  .site-footer {
    padding: 60px 0 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-bottom {
    justify-content: center;
    gap: 15px;
  }

}

/* Mobile */

@media (max-width:767px) {

  .site-footer {
    padding: 50px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-grid>div {
    width: 100%;
  }

  .footer-brand {
    justify-content: flex-start;
    align-items: center;
  }

  .footer-brand img {
    width: 60px;
    height: 60px;
  }

  .footer-brand strong {
    font-size: 20px;
  }

  .footer-brand span {
    font-size: 13px;
  }

  .site-footer p {
    margin: 15px 0 20px;
    text-align: left;
  }

  .site-footer h4 {
    margin-bottom: 22px;
    text-align: left;
  }

  .site-footer h4::after {
    left: 0;
    transform: none;
  }

  .site-footer ul li {
    text-align: left;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-address li {
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }

  .footer-address li i {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px 0;
    gap: 8px;
  }

}

/* Small Mobile */

@media (max-width:480px) {

  .site-footer {
    padding: 40px 0 0;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-brand {
    gap: 12px;
  }

  .footer-brand img {
    width: 55px;
    height: 55px;
  }

  .footer-brand strong {
    font-size: 18px;
  }

  .footer-brand span {
    font-size: 12px;
  }

  .site-footer p,
  .site-footer li,
  .footer-address span,
  .footer-address a {
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
  }

  .footer-bottom {
    font-size: 13px;
  }

}

/* Quick Links & Categories Arrow */

.footer-links li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d7d7d7;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links li a::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #d91e18;
  font-size: 13px;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: #d91e18;
  transform: translateX(6px);
}

.footer-links li a:hover::before {
  transform: translateX(3px);
}

/* Whatsapp float button */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, .4);
}

.whatsapp-float .icon {
  width: 28px;
  height: 28px;
  color: var(--white);
}

/* Utility */
.mt-0 {
  margin-top: 0;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}