:root {
  --primary-color: #121a25;
  --secondary-color: #f51c1c;
  --secondary-color2: #4f5ac2;
  --white-color: #ffffff;
  --black-color: #000000;
  --text-gray: #666666;
  --bg-gray: #f7f8fc;
  --border-color: #e4e4e4;
  --font-heading: "Josefin Sans", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --transition: all 0.3s ease;
  --container-offset: 12rem;
}

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

html { font-size: 62.5%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--black-color);
  background: var(--white-color);
  overflow-x: hidden;
}

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

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

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

.container-fluid {
  width: 100%;
  max-width: calc(100% - var(--container-offset));
  margin: 0 auto;
  padding: 0 15px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section--padding { padding: 60px 0; }

.section__heading { margin-bottom: 40px; }
.section__heading--maintitle {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 12px;
  text-transform: capitalize;
}
.section__heading p {
  color: var(--text-gray);
  font-size: 1.5rem;
  margin: 0;
}

.text-center { text-align: center; }
.text-white { color: #fff !important; }
.bg__primary { background: var(--primary-color); }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.position__relative { position: relative; }
.border-radius-5 { border-radius: 5px; }
.border-radius-10 { border-radius: 10px; }
.display-block { display: block; width: 100%; }

/* Header */
.header__section { position: relative; z-index: 999; width: 100%; }
.header__topbar {
  background: var(--primary-color);
  padding: 8px 0;
  font-size: 1.3rem;
}
.header__shipping--text { margin: 0; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.header__topbar--inner { gap: 15px; flex-wrap: nowrap; }
.topbar__sep { margin: 0 10px; opacity: 0.5; }
.topbar__social { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.topbar__social a {
  color: #fff;
  font-size: 1.4rem;
  opacity: 0.9;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.topbar__social a:hover { opacity: 1; color: var(--secondary-color); }
.topbar__shop { color: #fff; font-weight: 600; white-space: nowrap; }
.topbar__shop a { color: #fff; margin-left: 6px; text-decoration: underline; }
.topbar__shop a:hover { color: var(--secondary-color); }

.main__header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  width: 100%;
}
.main__header.header__sticky.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.main__header--inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  min-height: 70px;
}
.main__logo { flex-shrink: 0; }
.main__logo--img { max-height: 52px; width: auto; }

/* Desktop navigation */
.header__menu {
  flex: 1;
  display: none;
  justify-content: center;
}
.header__menu--navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.header__menu--link {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  padding: 10px 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.header__menu--link:hover,
.header__menu--items:hover > .header__menu--link { color: var(--secondary-color); }
.header__menu--link--shop { color: var(--secondary-color); }
.menu-chevron { font-size: 1rem; transition: transform 0.25s ease; }
.header__menu--items { position: relative; list-style: none; }
.header__menu--items.has-dropdown:hover .menu-chevron { transform: rotate(180deg); }
.header__menu--items.has-dropdown:hover > .header__sub--menu,
.header__menu--items.has-dropdown:focus-within > .header__sub--menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.header__sub--menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 230px;
  max-height: 360px;
  overflow-y: auto;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 200;
  pointer-events: none;
  list-style: none;
  margin: 0;
}
.header__sub--menu li { list-style: none; }
.header__sub--menu__link {
  display: block;
  padding: 10px 18px;
  font-size: 1.35rem;
  color: var(--text-gray);
  text-transform: none;
  font-weight: 500;
  font-family: var(--font-body);
}
.header__sub--menu__link:hover { color: var(--secondary-color); background: var(--bg-gray); }

.header__account {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.header__account--btn {
  color: var(--primary-color);
  font-size: 1.8rem;
  padding: 8px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  transition: var(--transition);
}
.header__account--btn:hover {
  color: var(--secondary-color);
  background: var(--bg-gray);
}
.header__cart--badge {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--secondary-color);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

/* Mobile hamburger */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu-btn:hover span { background: var(--secondary-color); }

/* Offcanvas mobile menu */
.offcanvas__menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  pointer-events: none;
}
.offcanvas__menu.is-open {
  visibility: visible;
  pointer-events: auto;
}
.offcanvas__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.offcanvas__menu.is-open .offcanvas__overlay { opacity: 1; }
.offcanvas__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 24px rgba(0,0,0,0.15);
}
.offcanvas__menu.is-open .offcanvas__inner { transform: translateX(0); }
.offcanvas__head { padding: 16px 18px 10px; border-bottom: 1px solid var(--border-color); }
.offcanvas__logo { max-height: 42px; width: auto; }
.offcanvas__close {
  background: var(--bg-gray);
  border: none;
  font-size: 2.4rem;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--primary-color);
}
.offcanvas__nav { padding: 8px 0; flex: 1; }
.offcanvas__link,
.offcanvas__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-bottom: 1px solid var(--border-color);
  background: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--primary-color);
  text-align: left;
  cursor: pointer;
  text-decoration: none;
}
.offcanvas__link:hover,
.offcanvas__toggle:hover { color: var(--secondary-color); background: var(--bg-gray); }
.offcanvas__link--accent { color: var(--secondary-color); }
.offcanvas__toggle i { font-size: 1.2rem; transition: transform 0.25s ease; }
.offcanvas__group.is-open .offcanvas__toggle i { transform: rotate(180deg); }
.offcanvas__sub { background: #fafbfc; }
.offcanvas__sub[hidden] { display: none; }
.offcanvas__group.is-open .offcanvas__sub { display: block; }
.offcanvas__sub a {
  display: block;
  padding: 11px 20px 11px 32px;
  font-size: 1.35rem;
  color: var(--text-gray);
  border-bottom: 1px solid #eee;
}
.offcanvas__sub a:hover { color: var(--secondary-color); }
.offcanvas__cart-badge {
  background: var(--secondary-color);
  color: #fff;
  font-size: 1.1rem;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 8px;
}
.offcanvas__footer {
  padding: 16px 20px 24px;
  border-top: 1px solid var(--border-color);
  font-size: 1.35rem;
}
.offcanvas__footer a { color: var(--secondary-color); font-weight: 600; }

.d-none { display: none !important; }
.d-lg-block { display: none; }
.d-lg-flex { display: none; }
.d-lg-inline-flex { display: none; }

@media (min-width: 992px) {
  .d-lg-block { display: block !important; }
  .d-lg-flex { display: flex !important; }
  .d-lg-inline-flex { display: inline-flex !important; }
  .mobile-menu-btn { display: none; }
  .header__menu { display: flex; }
  :root { --container-offset: 6rem; }
}

@media (min-width: 1200px) {
  :root { --container-offset: 8rem; }
  .header__menu--navigation { gap: 6px 28px; }
  .header__menu--link { font-size: 1.45rem; }
}

@media (max-width: 991px) {
  :root { --container-offset: 2rem; }
  .main__header--inner { min-height: 62px; }
  .main__logo { flex: 1; text-align: center; }
  .main__logo--img { max-height: 44px; margin: 0 auto; }
}

/* Hero slider */
.hero__slider { position: relative; overflow: hidden; }
.hero__slide {
  display: none;
  position: relative;
}
.hero__slide.is-active { display: block; }
.hero__slide img { width: 100%; height: 500px; object-fit: cover; }
.hero__slide--content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 500px;
  z-index: 2;
}
.hero__slide--content h2 {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  margin: 0 0 15px;
}
.hero__slide--content p { color: #fff; font-size: 1.6rem; margin-bottom: 20px; }
.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,26,37,0.6) 0%, transparent 60%);
}
.hero__nav {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.hero__dot.is-active { background: var(--secondary-color); border-color: var(--secondary-color); }
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  font-size: 1.8rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__arrow:hover { background: var(--secondary-color); color: #fff; }
.hero__arrow--prev { left: 20px; }
.hero__arrow--next { right: 20px; }

/* Category banners */
.banner__section { padding: 50px 0 30px; }
.banner__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.banner__items {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 180px;
  background: var(--bg-gray);
}
.banner__items--img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.banner__items:hover .banner__items--img { transform: scale(1.05); }
.banner__items--content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(transparent, rgba(18,26,37,0.85));
}
.banner__items--content h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #fff;
  margin: 0;
  font-weight: 600;
}

/* Product cards */
.product__section { background: var(--white-color); }
.product__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}
.product__items {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.product__items:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.product__items--thumbnail {
  background: var(--bg-gray);
  padding: 15px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product__items--img {
  max-height: 170px;
  width: auto;
  object-fit: contain;
}
.product__items--content { padding: 15px; text-align: center; }
.product__items--content__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 8px;
}
.product__items--content__title a:hover { color: var(--secondary-color); }
.product__items--meta { font-size: 1.3rem; color: var(--text-gray); margin: 3px 0; }

.product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}
.product__price {
  width: 100%;
  margin: 0 0 4px;
  font-size: 1.5rem;
}
.product__price--sale {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.8rem;
}
.product__price--mrp {
  color: var(--text-gray);
  text-decoration: line-through;
  font-size: 1.3rem;
  margin-right: 6px;
}
.btn__sm {
  font-size: 1.2rem !important;
  padding: 8px 14px !important;
}

.btn__primary {
  display: inline-block;
  background: var(--secondary-color);
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.4rem;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn__primary:hover { background: var(--primary-color); color: #fff; }
.btn__outline {
  display: inline-block;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  padding: 10px 26px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.4rem;
}
.btn__outline:hover { background: var(--secondary-color); color: #fff; }

/* USP grid */
.usp__section { margin-top: -30px; position: relative; z-index: 2; }
.usp__card .product__items--thumbnail { height: 160px; }
.usp__card .product__items--content__title { font-size: 1.4rem; }

/* About section */
.about__section { background: var(--bg-gray); }
.about__flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about__thumbnail--img { border-radius: 8px; width: 100%; }
.about__content--title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.about__content--subtitle {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 20px;
  line-height: 1.3;
}
.about__content--desc { color: var(--text-gray); margin-bottom: 25px; font-size: 1.5rem; }

/* Stats counter */
.counter__section { padding: 50px 0; background: var(--primary-color); }
.counter__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.counter__item h3 {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0 0 8px;
}
.counter__item p {
  color: #fff;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
}

/* CTA banner */
.cta__banner {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin: 40px 0;
}
.cta__banner img { width: 100%; height: 300px; object-fit: cover; }
.cta__banner--content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(18,26,37,0.55);
  text-align: center;
  padding: 30px;
}
.cta__banner--content h2 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: #fff;
  margin: 0 0 15px;
}
.cta__banner--content p { color: #eee; max-width: 600px; margin-bottom: 20px; }

/* Gallery */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery__item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.gallery__item img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s; }
.gallery__item:hover img { transform: scale(1.05); }

/* Testimonials */
.testimonial__section {
  background: linear-gradient(135deg, #4f5ac2 0%, #3a4499 100%);
  color: #fff;
}
.testimonial__section .section__heading--maintitle { color: #fff; }
.testimonial__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.testimonial__items {
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 25px;
  backdrop-filter: blur(4px);
}
.testimonial__items--author {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 12px;
}
.testimonial__items--desc { font-size: 1.4rem; line-height: 1.7; opacity: 0.95; }

/* Contact */
.contact__section { background: var(--bg-gray); }
.contact__flex {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.contact__info {
  background: var(--primary-color);
  border-radius: 10px;
  padding: 35px;
}
.contact__info--items { margin-bottom: 25px; }
.contact__info--content__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact__info--content__desc { font-size: 1.4rem; line-height: 1.7; }
.contact__info--content__desc a:hover { color: var(--secondary-color); }
.contact__map iframe { width: 100%; height: 380px; border: 0; border-radius: 10px; }

/* Footer */
.footer__section {
  background: var(--primary-color);
  color: #fff;
  padding-top: 50px;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 40px;
}
.footer__widget--title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}
.footer__widget--menu li { margin-bottom: 10px; }
.footer__widget--menu a {
  color: rgba(255,255,255,0.8);
  font-size: 1.4rem;
}
.footer__widget--menu a:hover { color: var(--secondary-color); }
.footer__widget p { color: rgba(255,255,255,0.8); font-size: 1.4rem; line-height: 1.7; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 20px 0;
  text-align: center;
}
.copyright__content { color: rgba(255,255,255,0.7); font-size: 1.4rem; margin: 0; }
.copyright__content a { color: var(--secondary-color); }

/* Scroll top */
#scroll__top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: #fff;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
}
#scroll__top.is-visible { opacity: 1; visibility: visible; }
#scroll__top svg { width: 20px; height: 20px; }

/* WhatsApp & floating buttons */
.float__whatsapp {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 997;
}
.float__whatsapp img { width: 60px; border-radius: 50%; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.float__catalogue {
  position: fixed;
  bottom: 200px;
  right: 0;
  z-index: 997;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: right center;
}
.float__catalogue a {
  background: #1287b7;
  color: #fff;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 1.3rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Inner page banner */
.page__banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e2d3d 100%);
  padding: 80px 0 60px;
  text-align: center;
}
.page__banner h1 {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  color: #fff;
  margin: 0 0 10px;
}
.page__banner p { color: rgba(255,255,255,0.8); font-size: 1.5rem; margin: 0; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 15px; font-size: 1.3rem; }
.breadcrumb a { color: var(--secondary-color); }
.breadcrumb span { color: rgba(255,255,255,0.6); }

/* Products page */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 35px;
}
.category-tabs a {
  padding: 8px 20px;
  border-radius: 25px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 500;
}
.category-tabs a:hover,
.category-tabs a.active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
}

/* Responsive */
@media (max-width: 1199px) {
  :root { --container-offset: 4rem; }
  .product__grid { grid-template-columns: repeat(4, 1fr); }
  .banner__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
  .about__flex,
  .contact__flex { grid-template-columns: 1fr; }
  .product__grid { grid-template-columns: repeat(3, 1fr); }
  .counter__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__slide img { height: 380px; }
  .hero__slide--content h2 { font-size: 2.8rem; }
}

@media (max-width: 767px) {
  :root { --container-offset: 2rem; }
  .section--padding { padding: 40px 0; }
  .section__heading--maintitle { font-size: 2.4rem; }
  .banner__grid { grid-template-columns: repeat(2, 1fr); }
  .product__grid { grid-template-columns: repeat(2, 1fr); }
  .counter__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .hero__slide img { height: 280px; }
  .hero__slide--content { left: 5%; right: 5%; }
  .hero__slide--content h2 { font-size: 2.2rem; }
  .page__banner { padding: 60px 0 40px; }
  .page__banner h1 { font-size: 2.6rem; }
}
