/* ===== HERO ===== */

.hero{
  height:100vh;
  display:flex;
  align-items:center;
  background:
    linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.4)),
    url("../images/hero.jpg") center/cover fixed;
  color:#fff;
}

.hero h1{
  font-size:56px;
}

/* ===== SECTIONS ===== */

.section{
  padding:10px 0;

}

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

/* OEM Grade Manufacturing */
.oem{
  padding:300px 0;
}

.oem h2{
  font-size:36px;
  font-weight:800;
  margin-bottom:18px;
}

.oem p{
  max-width:760px;
  font-size:16.5px;
  line-height:1.75;
  color:#4b5563;
}

/* ===== CATEGORY IMAGE PANELS ===== */

.category-stack{
  display:flex;
  flex-direction:column;
  gap:36px;
  margin-top:40px;
}

.category-panel{
  position:relative;
  height:260px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,0.12);
  transition:0.4s ease;
}

.category-panel img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s ease;
}

.panel-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.2)
  );
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:36px;
  color:#fff;
}

.panel-overlay h3{
  font-size:22px;
  font-weight:800;
}

.panel-overlay p{
  font-size:14px;
  opacity:0.9;
}

.category-panel:hover{
  transform:translateY(-6px);
}

/* ===== Horizontal Scroll Wrapper ===== */
.category-scroll{
  display:flex;
  gap:32px;
  overflow-x:auto;
  padding-left:calc((100vw - 1200px)/2);
  padding-right:60px;
  scroll-snap-type:x mandatory;
}

/* fallback */
@media(max-width:1240px){
  .category-scroll{
    padding-left:20px;
  }
}

/* ===== Horizontal Card ===== */
.category-panel.horizontal{
  position:relative;
  min-width:340px;
  height:360px;
  border-radius:26px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
  scroll-snap-align:center;
  transition:transform 0.4s ease, filter 0.4s ease;
}

/* Dim inactive cards */
.category-panel.horizontal.dim{
  filter:grayscale(0.2) brightness(0.85);
}

/* Lift active */
.category-panel.horizontal.active{
  transform:scale(1.05);
  z-index:2;
}

/* ===== Image ===== */
.category-panel.horizontal img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* ===== Overlay Content ===== */
.panel-overlay{
  position:absolute;
  bottom:26px;
  left:26px;
  right:26px;
  z-index:3;
  color:#fff;
}

.panel-overlay h3{
  margin:10px 0 4px;
  font-size:20px;
}

.panel-overlay p{
  font-size:14px;
  opacity:0.9;
}

/* ===== Icon Pulse (ONLY icon animates) ===== */
.panel-icon{
  display:inline-block;
  font-size:26px;
  transition:transform 0.4s ease;
}

.category-panel.horizontal:hover .panel-icon{
  transform:scale(1.25) rotate(-6deg);
}


/* ===== Copper CTA Band ===== */
.cta-band{
  background:linear-gradient(180deg,#c47a3c,#a45f28);
  color:#fff;
  padding:22px 0;
}

.cta-band .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.cta-band p{
  font-size:15px;
  font-weight:500;
  margin:0;
}

.cta-btn{
  background:#fff;
  color:#000;
  padding:10px 18px;
  border-radius:6px;
  font-weight:700;
  text-decoration:none;
  font-size:14px;
}

.cta-btn:hover{
  opacity:0.9;
}


/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}
.owl-carousel .owl-stage {
    margin: auto;
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}
 
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}
.no-js .owl-carousel, .owl-carousel.owl-loaded {
    display: block;
  
}
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    left: 0;
    right: 0;
    position: absolute;
    margin: auto;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  transition: height 0.5s ease-in-out;
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}


