:root {
  --gm-blue: #2d8cff;
  --gm-blue-2: #4aa5ff;
  --gm-dark: #1a1d45;
  --gm-light: #f5f7fa;
  --gm-text: #23283d;
  --gm-muted: #697086;
}

body {
  color: var(--gm-text);
  background: #fff;
}

a {
  color: var(--gm-blue);
}

.topbar {
  background: var(--gm-dark);
  color: #fff;
}

.site-header {
  z-index: 1020;
}

.logo-img {
  max-width: 270px;
  height: auto;
}

.main-nav {
  background: linear-gradient(90deg, var(--gm-blue), var(--gm-dark));
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: .88rem;
  padding: .45rem .65rem;
  border-radius: 6px;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(255, 255, 255, .16);
}

.hero-carousel .carousel-item {
  min-height: 430px;
  background: var(--gm-dark);
}

.hero-slide {
  min-height: 430px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 29, 69, .92), rgba(45, 140, 255, .72));
}

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

.section-band {
  background: var(--gm-light);
}

.section-title {
  color: var(--gm-dark);
}

.benefit-card,
.service-card,
.category-card,
.brand-card {
  border: 1px solid rgba(26, 29, 69, .1);
  border-radius: 8px;
  background: #fff;
  height: 100%;
}

.benefit-card {
  padding: 1.15rem;
  color: var(--gm-text);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.benefit-card:hover {
  color: var(--gm-text);
  transform: translateY(-2px);
  border-color: var(--gm-blue);
  box-shadow: 0 .5rem 1.2rem rgba(26, 29, 69, .1);
}

.benefit-card i,
.service-card i {
  color: var(--gm-blue);
}

.category-card,
.brand-card {
  text-decoration: none;
  color: var(--gm-text);
  display: block;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.category-card:hover,
.brand-card:hover,
.product-card:hover {
  transform: translateY(-2px);
  border-color: var(--gm-blue);
  box-shadow: 0 .5rem 1.2rem rgba(26, 29, 69, .1);
}

.category-thumb {
  height: 165px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gm-light);
  padding: 12px;
  border-radius: 8px 8px 0 0;
}

.category-thumb img,
.product-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-card {
  overflow: hidden;
  border-radius: 8px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.product-img-wrap {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gm-light);
  padding: 12px;
}

.product-gallery .carousel-item {
  background: var(--gm-light);
  border-radius: 8px;
}

.product-gallery img {
  width: 100%;
  height: 430px;
  object-fit: contain;
  padding: 24px;
}

.brand-logo {
  width: 86px;
  height: 86px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gm-blue), var(--gm-dark));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.35rem;
}

.page-hero {
  background: linear-gradient(120deg, var(--gm-dark), var(--gm-blue));
  color: #fff;
}

.form-panel {
  border-radius: 8px;
  border: 1px solid rgba(26, 29, 69, .1);
  background: #fff;
  box-shadow: 0 .5rem 1.5rem rgba(26, 29, 69, .08);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
  z-index: 999;
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.04);
}

@media (max-width: 767.98px) {
  .site-header.sticky-top {
    position: static;
  }

  .logo-img {
    max-width: 190px;
  }

  .hero-carousel .carousel-item,
  .hero-slide {
    min-height: 390px;
  }

  .product-gallery img {
    height: 300px;
  }
}
