/* ==========================================================================
   KKR MULTITECH ENGINEERS - PRODUCTS PAGE CSS
   ========================================================================== */

:root {
  --cubic-transition: all 700ms cubic-bezier(0.32, 0.72, 0, 1);
  --bevel-glow-light: inset 0 1px 1px rgba(255, 255, 255, 0.6);
  --bevel-glow-dark: inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

/* Page Scope */
.kkr-products-page-wrapper {
  font-family: var(--text-font, "DM Sans", sans-serif);
  color: var(--text-color, #797f7d);
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}

/* Macro-Whitespace Section Spacing */
.kkr-products-page-wrapper section {
  position: relative;
  border-bottom: 1px solid #f1f5f9;
}

.kkr-products-page-wrapper section:not(.products-hero) {
  padding: 80px 0 !important;
}

/* Headings */
.kkr-products-page-wrapper h1,
.kkr-products-page-wrapper h2,
.kkr-products-page-wrapper h3,
.kkr-products-page-wrapper h4 {
  font-family: var(--title-font, "DM Sans", sans-serif);
  color: var(--theme-color3, #0E233E);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 0;
}

/* Eyebrow Micro-Badges */
.micro-eyebrow-badge {
  display: inline-block;
  background-color: rgba(20, 115, 190, 0.08);
  color: var(--theme-color1, #1473be);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(20, 115, 190, 0.15);
}

.products-hero .micro-eyebrow-badge {
  background-color: rgba(246, 147, 28, 0.15);
  color: var(--theme-color2, #f6931c);
  border: 1px solid rgba(246, 147, 28, 0.25);
}

/* Concentric Double-Bezel (Doppelrand) Architecture */
/* .double-bezel-outer {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 8px;
  border-radius: 2rem;
  transition: var(--cubic-transition);
} */

.double-bezel-inner {
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 35px;
  border-radius: calc(2rem - 8px);
  box-shadow: var(--bevel-glow-light);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--cubic-transition);
}

.double-bezel-outer:hover {
  border-color: var(--theme-color1, #1473be);
  transform: translateY(-4px);
}

.double-bezel-outer:hover .double-bezel-inner {
  border-color: var(--theme-color1, #1473be);
  box-shadow: 0 20px 40px rgba(20, 115, 190, 0.04);
}

/* Concentric Bezel in Dark Sections */
.products-hero .double-bezel-outer {
  background-color: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.products-hero .double-bezel-inner {
  background-color: rgba(14, 35, 62, 0.4);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--bevel-glow-dark);
}

/* Island Button / Nested CTA Architecture */
.island-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--theme-color2, #f6931c);
  color: #0E233E !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 6px 6px 28px;
  border-radius: 50px;
  border: none;
  transition: var(--cubic-transition);
  cursor: pointer;
  width: max-content;
}

.island-btn .btn-text {
  margin-right: 20px;
}

.island-btn .btn-icon-circle {
  width: 38px;
  height: 38px;
  background-color: #0E233E;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--cubic-transition);
}

.island-btn:hover {
  transform: scale(0.98);
  background-color: var(--theme-color1, #1473be);
  color: #ffffff !important;
}

.island-btn:hover .btn-icon-circle {
  background-color: #ffffff;
  color: var(--theme-color1, #1473be);
  transform: translate(2px, -1px) scale(1.05);
}

/* Alternate Dark Button */
.island-btn.btn-dark {
  background-color: var(--theme-color3, #0E233E);
  color: #ffffff !important;
}

.island-btn.btn-dark .btn-icon-circle {
  background-color: var(--theme-color2, #f6931c);
  color: #0E233E;
}

.island-btn.btn-dark:hover {
  background-color: var(--theme-color2, #f6931c);
  color: #0E233E !important;
}

.island-btn.btn-dark:hover .btn-icon-circle {
  background-color: #0E233E;
  color: #ffffff;
}

/* Wide Button Version */
.island-btn.btn-block {
  width: 100%;
}


/* ==========================================================================
   SECTION ARCHITECTURES
   ========================================================================== */

/* 1. HERO SECTION */
.products-hero {
  background-image: url(../images/banner/product-banner.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 180px 0 80px 0 !important;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.products-hero:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(105deg, rgba(14, 35, 62, 0.75) 0%, rgba(14, 35, 62, 0.55) 60%, rgba(14, 35, 62, 0.2) 100%);
  content: "";
  z-index: 1;
}

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

.products-hero-content {
  position: relative;
  z-index: 2;
}

.products-hero-title {
  font-size: 58px;
  line-height: 1.1;
  color: #ffffff !important;
  margin-bottom: 24px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.products-hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #ffffff !important;
  margin-bottom: 35px;
  max-width: 630px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.products-breadcrumb {
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.products-breadcrumb a {
  color: rgba(255, 255, 255, 0.9) !important;
  transition: color 0.3s ease;
}

.products-breadcrumb a:hover {
  color: var(--theme-color2, #f6931c);
}

.products-breadcrumb span {
  color: var(--theme-color2, #f6931c);
  margin-left: 8px;
}

.kkr-products-page-wrapper h1 {
  width: 600px;
}


/* 2. BRANDS INTRODUCTION SECTION */
.products-intro {
  background-color: #fafbfc;
  border-bottom: 1px solid #f1f5f9;
}

.products-intro-title {
  font-size: 44px;
  line-height: 1.15;
  color: var(--theme-color3, #0E233E);
}

.products-intro-content {
  border-left: 4px solid var(--theme-color2, #f6931c);
  padding: 10px 0 10px 40px;
}

.products-intro-text {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.products-intro-text:last-child {
  margin-bottom: 0;
}


/* 3. LUBI PUMPS - REFERENCE IMAGE COLLAGE & TABS */
.products-brand-lubi {
  background-color: #ffffff;
}

.brand-section-header.text-center {
  margin-bottom: 50px;
}

.lubi-tabs-nav-wrapper {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}

.lubi-tabs-nav-wrapper .nav-pills {
  border: 1px solid #e2e8f0;
  padding: 6px;
  border-radius: 50px;
  background-color: #f8fafc;
  width: max-content;
  margin: 0 auto;
}

.lubi-tabs-nav-wrapper .nav-link {
  color: var(--theme-color3, #0E233E);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
  background: none;
  border: none;
}

.lubi-tabs-nav-wrapper .nav-link.active,
.lubi-tabs-nav-wrapper .nav-link:hover {
  background-color: var(--theme-color2, #f6931c);
  color: #0E233E !important;
}

/* Image Collage Layout */
.lubi-collage-wrapper {
  position: relative;
  width: 100%;
  height: 420px;
  margin-bottom: 40px;
  background: radial-gradient(circle at center, #ffffff 0%, #f1f5f9 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lubi-collage-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-color: var(--theme-color2, #f6931c);
}

.lubi-collage-bg {
  display: none;
}

.lubi-collage-fg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lubi-collage-fg img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.06));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lubi-collage-wrapper:hover .lubi-collage-fg img {
  transform: scale(1.05);
}

.lubi-collage-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: #ffffff;
  padding: 15px 22px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 3;
  border: 1px solid #e2e8f0;
}

.lubi-collage-badge .badge-number {
  font-size: 38px;
  font-weight: 800;
  color: var(--theme-color1, #1473be);
  line-height: 1;
  display: block;
}

.lubi-collage-badge .badge-text {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #797f7d;
  margin-top: 4px;
  display: block;
}

/* Right side content layout */
.lubi-right-content {
  padding-left: 20px;
}

.lubi-right-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.lubi-right-eyebrow .yellow-line {
  width: 35px;
  height: 3px;
  background-color: var(--theme-color2, #f6931c);
  display: inline-block;
}

.lubi-right-eyebrow .eyebrow-text {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--theme-color2, #f6931c);
  letter-spacing: 0.12em;
}

.lubi-right-title {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--theme-color3, #0E233E);
}

.lubi-right-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 30px;
}

/* Feature column lists */
.lubi-split-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  margin-bottom: 35px;
}

.lubi-split-col {
  display: flex;
  flex-direction: column;
}

.lubi-split-icon {
  width: 48px;
  height: 48px;
  background-color: var(--theme-color2, #f6931c);
  color: #0E233E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 15px;
}

.lubi-split-icon img {
  width: 30px;
}

.lubi-split-col h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-color3, #0E233E);
  margin-bottom: 12px;
}

.lubi-split-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.lubi-split-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: #555555;
  margin-bottom: 8px;
  line-height: 1.5;
}

.lubi-split-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 21px;
  height: 44px;
  background-image: url(../images/products-trusted-brands-engineered-performance/lubi-pumps/orange-check-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
}


/* 4. SHAKTI PUMPS - ALTERNATING ROW COLLAGE LAYOUT */
.products-brand-shakti {
  background-color: #f8fafc;
}

.shakti-product-row {
  margin-bottom: 80px;
}

.shakti-product-row:last-child {
  margin-bottom: 0;
}

/* Image Collage Layout (Shakti) */
.shakti-collage-wrapper,
.shakti-single-img-wrapper {
  position: relative;
  width: 100%;
  height: 420px;
  margin-bottom: 40px;
  background: radial-gradient(circle at center, #ffffff 0%, #f1f5f9 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.shakti-collage-wrapper:hover,
.shakti-single-img-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-color: var(--theme-color1, #1473be);
}

.shakti-collage-wrapper img,
.shakti-single-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.06));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.shakti-collage-wrapper:hover img,
.shakti-single-img-wrapper:hover img {
  transform: scale(1.05);
}

.shakti-collage-bg,
.shakti-collage-fg {
  display: none;
}

/* Alternate row placement for collage bg/fg positioning if collage is on the left side (Row 2: Monoblock) */
.shakti-product-row:nth-child(3) .shakti-collage-bg {
  left: 0;
  right: auto;
}

.shakti-product-row:nth-child(3) .shakti-collage-fg {
  right: 0;
  left: auto;
}

.shakti-product-row:nth-child(3) .shakti-collage-badge {
  right: 15px;
  left: auto;
}

.shakti-collage-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: #ffffff;
  padding: 15px 22px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 3;
  border: 1px solid #e2e8f0;
}

.shakti-collage-badge .badge-number {
  font-size: 38px;
  font-weight: 800;
  color: var(--theme-color1, #1473be);
  line-height: 1;
  display: block;
}

.shakti-collage-badge .badge-text {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #797f7d;
  margin-top: 4px;
  display: block;
}

/* Content layout for Shakti */
.shakti-right-content,
.shakti-left-content {
  padding: 0 10px;
}

.shakti-right-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.shakti-right-eyebrow .blue-line {
  width: 35px;
  height: 3px;
  background-color: var(--theme-color1, #1473be);
  display: inline-block;
}

.shakti-right-eyebrow .eyebrow-text {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--theme-color1, #1473be);
  letter-spacing: 0.12em;
}

.shakti-right-title {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--theme-color3, #0E233E);
}

.shakti-right-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 30px;
}

/* Feature column lists */
.shakti-split-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  margin-bottom: 35px;
}

.shakti-split-col {
  display: flex;
  flex-direction: column;
}

.shakti-split-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(20, 115, 190, 0.1);
  color: var(--theme-color1, #1473be);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.shakti-split-icon img {
  width: 28px;
  height: auto;
}

.shakti-split-col h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-color3, #0E233E);
  margin-bottom: 12px;
}

/* Blue check bullet list for Shakti section */
.shakti-split-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.shakti-split-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: #555555;
  margin-bottom: 8px;
  line-height: 1.5;
}

.shakti-split-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background-image: url(../images/products-trusted-brands-engineered-performance/shakti-pumps/blue-check-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
}


/* 5. ROTOMOTIVE - TECHNICAL BLUEPRINT GRIDS */
.products-brand-rotomotive {
  background-color: #ffffff;
}

.rotomotive-asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.rotomotive-item-long {
  grid-column: span 8;
}

.rotomotive-item-short {
  grid-column: span 4;
}


/* 6. DELTA AUTOMATION - SLICED STACK LAYOUT */
.products-brand-delta {
  background-color: #fafbfc;
}

.delta-horizontal-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.delta-horizontal-card-outer {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 2rem;
  padding: 8px;
  transition: var(--cubic-transition);
}

.delta-horizontal-card-inner {
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: calc(2rem - 8px);
  padding: 40px;
  box-shadow: var(--bevel-glow-light);
  transition: var(--cubic-transition);
}

.delta-horizontal-card-outer:hover {
  border-color: var(--theme-color2, #f6931c);
}

.delta-horizontal-card-outer:hover .delta-horizontal-card-inner {
  border-color: var(--theme-color2, #f6931c);
  box-shadow: 0 20px 40px rgba(246, 147, 28, 0.04);
}

.delta-row-split {
  display: grid;
  grid-template-columns: 2fr 3fr 1.5fr;
  gap: 40px;
  align-items: center;
}

.delta-title-area h3 {
  font-size: 26px;
  margin-bottom: 10px;
}


/* 7. PANASONIC - ASYMMETRIC GRID */
.products-brand-panasonic {
  background-color: #ffffff;
}

.panasonic-split-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 35px;
}


/* 8. NIDEC MOTION PRODUCTS - OVERLAPPING GRID */
.products-brand-nidec {
  background-color: #fafbfc;
}

.nidec-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}


/* 9. TAMAGAWA - HIGHLIGHT PANEL */
.products-brand-tamagawa {
  background-color: #ffffff;
}

.tamagawa-center-layout {
  display: flex;
  justify-content: center;
}

.tamagawa-bezel-card {
  max-width: 850px;
  width: 100%;
}


/* 10. HIWIN - MULTI-AXIS BENTO BOXES */
.products-brand-hiwin {
  background-color: #fafbfc;
}

.hiwin-bento-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
}

.hiwin-bento-grid .bento-col-wide {
  grid-column: span 1;
}


/* 11. PRESSURE SENSORS - TECHNICAL SPOTLIGHT */
.products-brand-pressure {
  background-color: #ffffff;
}

.pressure-center-layout {
  display: flex;
  justify-content: center;
}

.pressure-bezel-card {
  max-width: 850px;
  width: 100%;
}


/* TWO-COLUMN BRAND LAYOUT (Tamagawa, Pressure Sensors) */
.brand-two-col-row {
  margin-top: 40px;
  gap: 0;
}

.brand-two-col-img {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafd;
  border-radius: 1.5rem;
  min-height: 320px;
  overflow: hidden;
}

.brand-two-col-img img {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-two-col-img:hover img {
  transform: scale(1.04);
}

.brand-two-col-content {
  padding: 0 0 0 48px;
}

.brand-two-col-content .brand-product-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--theme-color3, #0E233E);
  margin-bottom: 16px;
}

.brand-two-col-content .text-muted {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
}

.brand-two-col-footer {
  margin-top: 32px;
}


/* 12. WHY BUY SECTION */
.products-why-buy {
  background-color: var(--theme-color3, #0E233E);
  color: #ffffff;
  padding: 100px 0 !important;
  border-bottom: none !important;
}

.kkr-products-page-wrapper .why-buy-title {
  font-size: 38px;
  color: #ffffff !important;
  margin-bottom: 20px;
  font-weight: 700;
}

.why-buy-desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.why-buy-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.why-buy-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.2rem;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.why-buy-card:hover {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: var(--theme-color2, #f6931c);
  transform: translateY(-4px);
}

.why-buy-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-buy-card-icon.bg-blue {
  background-color: var(--theme-color1, #1473be);
}

.why-buy-card-icon.bg-orange {
  background-color: var(--theme-color2, #f6931c);
}

.kkr-products-page-wrapper .why-buy-card-heading {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff !important;
  margin-bottom: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.kkr-products-page-wrapper .why-buy-card:hover .why-buy-card-heading {
  color: var(--theme-color2, #f6931c) !important;
}


/* 13. CALL TO ACTION */
.products-cta {
  background-color: #ffffff;
  padding: 80px 0 !important;
  border-bottom: none !important;
}

/* .cta-machined-outer {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 8px;
  border-radius: 2.5rem;
} */

.cta-machined-inner {
  background-image: linear-gradient(135deg, rgba(14, 35, 62, 0.88) 0%, rgba(6, 17, 32, 0.94) 100%), url('../images/background/services-cta-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #cbd5e1;
  padding: 70px 80px;
  border-radius: calc(2.5rem - 8px);
  box-shadow: var(--bevel-glow-dark);
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-align: left;
}

.cta-machined-inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background-image: radial-gradient(rgba(246, 147, 28, 0.08) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  z-index: -1;
  opacity: 0.8;
}

.cta-title-col h2 {
  color: #ffffff !important;
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-title-col p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  max-width: 60ch;
}

.cta-actions-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.cta-actions-col .theme-btn,
.cta-actions-col .island-btn {
  width: 260px !important;
  text-align: center;
  justify-content: center;
  display: inline-flex;
  align-items: center;
}


/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */

@media (max-width: 1199px) {
  .products-hero-title {
    font-size: 48px;
  }

  .rotomotive-asymmetric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rotomotive-item-long,
  .rotomotive-item-short {
    grid-column: span 1;
  }

  .hiwin-bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hiwin-bento-grid .bento-col-wide {
    grid-column: span 2;
  }
}

@media (max-width: 991px) {
  .kkr-products-page-wrapper section {
    padding: 90px 0 !important;
  }

  .products-hero {
    padding: 150px 0 60px 0 !important;
  }

  .products-hero-title {
    font-size: 34px !important;
    line-height: 1.2 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  .products-hero-collage {
    height: 320px;
    margin-top: 50px;
  }

  .delta-row-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .delta-btn-area {
    display: flex;
    justify-content: flex-start;
  }

  .delta-btn-area .island-btn {
    width: 100%;
  }

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

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

  .why-buy-left-col {
    margin-bottom: 50px;
  }

  .why-buy-left-col p {
    max-width: 100%;
  }

  .cta-machined-inner {
    padding: 45px;
  }

  .cta-actions-col {
    align-items: center;
    margin-top: 35px;
  }

  .cta-actions-col .theme-btn,
  .cta-actions-col .island-btn {
    width: 100% !important;
    text-align: center !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media (max-width: 767px) {
  .products-hero-title {
    font-size: 28px !important;
    line-height: 1.2 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  .products-intro-title {
    font-size: 32px;
  }

  .products-intro-content {
    padding-left: 20px;
    margin-top: 20px;
  }

  .brand-title {
    font-size: 34px;
  }

  .lubi-split-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .lubi-right-content {
    padding-left: 0;
    margin-top: 30px;
  }

  /* Make tab pills scrollable horizontally on mobile to prevent clipping and wrapping */
  .lubi-tabs-nav-wrapper {
    overflow-x: auto !important;
    justify-content: flex-start !important;
    padding: 10px 15px !important;
    -webkit-overflow-scrolling: touch;
    width: 100% !important;
  }
  
  .lubi-tabs-nav-wrapper .nav-pills {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    margin: 0 auto !important;
  }
  
  .lubi-tabs-nav-wrapper .nav-link {
    white-space: nowrap !important;
  }

  /* Reset collage wrapper height to fit the responsive image size and prevent blank spacing gaps */
  .lubi-collage-wrapper {
    height: auto !important;
    min-height: auto !important;
    margin-bottom: 25px !important;
    padding: 20px !important;
    border-radius: 16px !important;
  }

  .lubi-collage-fg {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .lubi-collage-fg img {
    width: 100% !important;
    height: auto !important;
    max-height: 260px !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: 0 !important;
  }

  /* Reverse columns on mobile so text content is on top and image is at the bottom */
  #lubiTabContent .row {
    display: flex !important;
    flex-direction: column-reverse !important;
  }
  
  .lubi-collage-wrapper {
    margin-top: 30px !important;
    margin-bottom: 0 !important;
  }

  .shakti-split-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .shakti-right-content,
  .shakti-left-content {
    padding-left: 0;
    padding-right: 0;
    margin-top: 30px;
  }

  /* Shakti Pumps section mobile space fixes */
  .shakti-collage-wrapper,
  .shakti-single-img-wrapper {
    height: 280px !important;
    margin-top: 35px !important;
    margin-bottom: 35px !important;
    padding: 20px !important;
    border-radius: 16px !important;
  }
  
  .shakti-collage-wrapper img,
  .shakti-single-img-wrapper img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 240px !important;
    object-fit: contain !important;
  }

  .shakti-product-row:not(.shakti-monoblock-row) .col-md-12:first-child .shakti-collage-wrapper {
    margin-top: 0 !important;
  }

  /* Reverse columns on mobile for Monoblock Pumps to put text on top and image at the bottom */
  .shakti-monoblock-row {
    display: flex !important;
    flex-direction: column-reverse !important;
  }

  .shakti-monoblock-row .shakti-collage-wrapper {
    margin-bottom: 0 !important;
    margin-top: 35px !important;
  }

  .shakti-product-row:nth-child(3) .shakti-collage-bg {
    left: auto;
    right: 0;
  }

  .shakti-product-row:nth-child(3) .shakti-collage-fg {
    right: auto;
    left: 0;
  }

  .shakti-product-row:nth-child(3) .shakti-collage-badge {
    right: auto;
    left: 15px;
  }

  .rotomotive-asymmetric-grid {
    grid-template-columns: 1fr;
  }

  .rotomotive-item-long,
  .rotomotive-item-short {
    grid-column: span 1;
  }

  .hiwin-bento-grid {
    grid-template-columns: 1fr;
  }

  .hiwin-bento-grid .bento-col-wide {
    grid-column: span 1;
  }



  .cta-title-col h2 {
    font-size: 32px;
  }
}

/* ==========================================================================
   BRAND PRODUCT GRID SYSTEM (Rotomotive, Delta, Panasonic, HIWIN, Tamagawa, Pressure)
   ========================================================================== */
.brand-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

/* .brand-product-card-outer {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 8px;
  border-radius: 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
} */

.brand-product-card-outer:hover {
  transform: translateY(-8px);
  border-color: var(--theme-color2, #f6931c);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.no-shadow-card {
  box-shadow: none !important;
}

.no-shadow-card:hover {
  box-shadow: none !important;
}

.brand-product-card-inner {
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 30px;
  border-radius: calc(2rem - 8px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand-product-card-outer:hover .brand-product-card-inner {
  border-color: var(--theme-color2, #f6931c);
}


.brand-product-image-box {
  width: 100%;
  height: 200px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.brand-product-image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-product-card-outer:hover .brand-product-image-box img {
  transform: scale(1.06);
}

.brand-product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.brand-product-model {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #797f7d;
  background-color: #f1f5f9;
  padding: 4px 10px;
  border-radius: 4px;
}

.brand-product-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--theme-color3, #0E233E);
  margin-bottom: 0;
  line-height: 1.3;
}

.brand-product-title span {
  color: var(--theme-color2, #f6931c);
}

.brand-product-title .span-blue {
  color: var(--theme-color1, #1473be) !important;
}

.brand-product-body {
  flex-grow: 1;
}

.brand-product-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 15px;
  margin-bottom: 25px;
}

.brand-product-list-col {
  display: flex;
  flex-direction: column;
}

.brand-product-list-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--theme-color1, #1473be);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.brand-product-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.brand-product-list li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  color: #555555;
  margin-bottom: 8px;
  line-height: 1.4;
}

.brand-product-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
}

.brand-list-orange li::before {
  background-image: url(../images/products-trusted-brands-engineered-performance/lubi-pumps/orange-check-icon.svg);
}

.brand-list-blue li::before {
  background-image: url(../images/products-trusted-brands-engineered-performance/shakti-pumps/blue-check-icon.svg);
}

.brand-product-footer {
  margin-top: auto;
}

.brand-product-center-card {
  max-width: 760px;
  margin: 50px auto 0 auto;
}

@media (max-width: 991px) {
  .brand-product-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-buy-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .why-buy-modern-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .brand-product-lists {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Two-column brand layout responsive */
@media (max-width: 991px) {
  .brand-two-col-content {
    padding: 32px 0 0 0;
  }
}

@media (max-width: 767px) {
  .brand-two-col-img {
    min-height: 220px;
    padding: 20px;
  }

  .brand-two-col-content .brand-product-title {
    font-size: 22px;
  }
}

/* ==========================================================================
   HIWIN GRID CENTERING SYSTEM (CSS Grid Centered Last Card)
   ========================================================================== */
.hiwin-grid .brand-product-card-outer:last-child {
  grid-column: 1 / span 2;
  justify-self: center;
  width: 100%;
  max-width: calc(50% - 20px);
}

@media (max-width: 991px) {
  .hiwin-grid .brand-product-card-outer:last-child {
    grid-column: auto;
    max-width: 100%;
  }
}

.space-sec-product {
  padding: 80px 0 !important;
}