.product-small img {
  object-fit: contain !important;
  height: auto !important;
}

@media (max-width: 768px) {
  .custom-2col-mobile .col {
    width: 50% !important;
    max-width: 50% !important;
    flex-basis: 50% !important;
  }
}

/* FLAME ANIMATION */
.flame {
  display: inline-block;
  animation: flicker 0.6s infinite alternate;
  filter: drop-shadow(0 0 6px orange);
  transform-origin: center;
}

@keyframes flicker {
  0% { transform: scale(1) rotate(-2deg); opacity: 1; }
  25% { transform: scale(1.08) rotate(2deg); opacity: 0.92; }
  50% { transform: scale(0.95) rotate(-1deg); opacity: 1; }
  75% { transform: scale(1.1) rotate(1deg); opacity: 0.9; }
  100% { transform: scale(1) rotate(-2deg); opacity: 1; }
} .flag-wave {
  display: inline-block;
  animation: waveFlag 1.5s infinite ease-in-out;
  transform-origin: 70% 70%;
}

.water-text {
  display: inline-block;
  font-weight: 700;
  background: linear-gradient(90deg, #00bfff, #4fd5ff, #0099ff, #4fd5ff, #00bfff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: waterFlow 2.5s linear infinite;
}

@keyframes waveFlag {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(8deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(-8deg); }
  100% { transform: rotate(0deg); }
}

@keyframes waterFlow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}@media (max-width: 768px) {
  .water-text,
  .flag-wave {
    line-height: 1.15;
  }

  .mobile-pressure-heading {
    font-size: 28px;
    line-height: 1.1;
    text-align: center;
    padding: 0 10px;
    word-break: break-word;
  }
} .drill-combo-heading {
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffcc00;
  padding: 18px 24px;
  border-radius: 12px;
  background: linear-gradient(90deg, #111, #1a1a1a, #111);
  position: relative;
  overflow: hidden;

  /* Glow */
  text-shadow:
    0 0 5px rgba(255, 200, 0, 0.9),
    0 0 10px rgba(255, 150, 0, 0.8),
    0 0 20px rgba(255, 100, 0, 0.7);

  /* Animation */
  animation: glowPulse 2s infinite ease-in-out;
}

/* Moving light sweep (THIS is the premium effect) */
.drill-combo-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  animation: shineMove 3s infinite;
}

/* subtle scale movement (feels like power pulse) */
.drill-combo-heading:hover {
  transform: scale(1.03);
  transition: 0.3s ease;
}

/* Glow pulse */
@keyframes glowPulse {
  0%, 100% {
    text-shadow:
      0 0 5px rgba(255, 200, 0, 0.9),
      0 0 10px rgba(255, 150, 0, 0.8),
      0 0 20px rgba(255, 100, 0, 0.7);
  }
  50% {
    text-shadow:
      0 0 10px rgba(255, 220, 0, 1),
      0 0 20px rgba(255, 170, 0, 0.9),
      0 0 30px rgba(255, 120, 0, 0.8);
  }
}

/* light sweep animation */
@keyframes shineMove {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Mobile fix */
@media (max-width: 768px) {
  .drill-combo-heading {
    font-size: 24px;
    letter-spacing: 1px;
    padding: 14px 10px;
    line-height: 1.3;
  }
}.industrial-combo-wrap {
  width: 100%;
  text-align: center;
  padding: 28px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #111111, #1b1b1b, #2a2a2a, #111111);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 204, 0, 0.18);
}

.industrial-combo-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.10) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: industrialShine 3.5s linear infinite;
}

.industrial-combo-heading {
  position: relative;
  z-index: 2;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffcc00;
  text-shadow:
    0 0 6px rgba(255, 204, 0, 0.55),
    0 0 14px rgba(255, 145, 0, 0.35);
  animation: industrialFloat 2.2s ease-in-out infinite;
}

.industrial-combo-subtext {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  opacity: 0.95;
}

@keyframes industrialFloat {
  0%, 100% {
    transform: translateY(0px);
    text-shadow:
      0 0 6px rgba(255, 204, 0, 0.55),
      0 0 14px rgba(255, 145, 0, 0.35);
  }
  50% {
    transform: translateY(-4px);
    text-shadow:
      0 0 10px rgba(255, 220, 0, 0.9),
      0 0 22px rgba(255, 153, 0, 0.55);
  }
}

@keyframes industrialShine {
  0% {
    left: -120%;
  }
  100% {
    left: 140%;
  }
}

@media (max-width: 768px) {
  .industrial-combo-wrap {
    padding: 20px 14px;
    border-radius: 12px;
  }

  .industrial-combo-heading {
    font-size: 26px;
    letter-spacing: 1px;
    line-height: 1.25;
  }

  .industrial-combo-subtext {
    font-size: 14px;
    margin-top: 8px;
  }
}  .vehicle-tool-wrap {
  width: 100%;
  text-align: center;
  padding: 30px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #111111, #1c1c1c, #2a2a2a, #111111);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  border: 1px solid rgba(255, 204, 0, 0.18);
}

.vehicle-tool-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.12) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: vehicleShine 3.5s linear infinite;
}

.vehicle-tool-heading {
  position: relative;
  z-index: 2;
  font-size: 44px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.15;
  color: #ffcc00;
  text-shadow:
    0 0 6px rgba(255, 204, 0, 0.55),
    0 0 14px rgba(255, 145, 0, 0.35);
  animation: vehicleFloat 2.2s ease-in-out infinite;
}

.vehicle-tool-subtext {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  opacity: 0.95;
  letter-spacing: 0.4px;
}

@keyframes vehicleFloat {
  0%, 100% {
    transform: translateY(0px);
    text-shadow:
      0 0 6px rgba(255, 204, 0, 0.55),
      0 0 14px rgba(255, 145, 0, 0.35);
  }
  50% {
    transform: translateY(-4px);
    text-shadow:
      0 0 10px rgba(255, 220, 0, 0.95),
      0 0 22px rgba(255, 153, 0, 0.55);
  }
}

@keyframes vehicleShine {
  0% {
    left: -120%;
  }
  100% {
    left: 140%;
  }
}

@media (max-width: 768px) {
  .vehicle-tool-wrap {
    padding: 20px 14px;
    border-radius: 12px;
  }

  .vehicle-tool-heading {
    font-size: 25px;
    letter-spacing: 1px;
    line-height: 1.25;
  }

  .vehicle-tool-subtext {
    font-size: 14px;
    margin-top: 8px;
  }
}.essential-tools-wrap {
  width: 100%;
  text-align: center;
  padding: 30px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #111111, #1c1c1c, #2a2a2a, #111111);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  border: 1px solid rgba(255, 204, 0, 0.18);
}

/* moving light sweep */
.essential-tools-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.12) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: essentialShine 3.5s linear infinite;
}

.essential-tools-heading {
  position: relative;
  z-index: 2;
  font-size: 44px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.15;
  color: #ffcc00;

  text-shadow:
    0 0 6px rgba(255, 204, 0, 0.6),
    0 0 14px rgba(255, 140, 0, 0.4);

  animation: essentialFloat 2.2s ease-in-out infinite;
}

.essential-tools-subtext {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  opacity: 0.95;
}

/* float effect */
@keyframes essentialFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* shine effect */
@keyframes essentialShine {
  0% { left: -120%; }
  100% { left: 140%; }
}

/* mobile fix */
@media (max-width: 768px) {
  .essential-tools-heading {
    font-size: 24px;
    letter-spacing: 1px;
    line-height: 1.3;
  }

  .essential-tools-subtext {
    font-size: 14px;
  }

  .essential-tools-wrap {
    padding: 20px 14px;
  }
}