  .section {
    font-family: Arial, sans-serif;
    padding: 64px 40px;
    overflow: hidden;
  }

  .section-head { text-align: center; margin-bottom: 48px; }

  .product-section .section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff4ec; border: 1.5px solid rgba(255,120,0,0.25);
    border-radius: 100px; padding: 5px 16px; margin-bottom: 14px;
  }
  .tag-dot { width: 6px; height: 6px; border-radius: 50%; background: #FF7800; }
  .tag-text { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #CC5500; }

  .section-title { font-size: 34px; font-weight: 700; color: #1a1a1a; line-height: 1.15; max-width: 900px; margin: 0 auto 12px; }
  .section-title span { color: #FF7800; }
  .section-sub { font-size: 15px; color: #777; max-width: 500px; margin: 0 auto; line-height: 1.7; }

  .slider-controls-top {
    display: flex; align-items: center; justify-content: end;
    max-width: 1100px; margin: 0 auto 20px; flex-wrap: wrap; gap: 12px;
  }

  .autoplay-toggle {
    display: flex; align-items: center; gap: 10px;
    background: #fff; border: 1.5px solid #eee;
    border-radius: 100px; padding: 7px 16px; cursor: pointer; user-select: none;
  }
  .toggle-track {
    width: 36px; height: 20px; border-radius: 10px;
    background: #ddd; position: relative; transition: background 0.25s; flex-shrink: 0;
  }
  .toggle-track.on { background: #FF7800; }
  .toggle-knob {
    position: absolute; top: 3px; left: 3px;
    width: 14px; height: 14px; border-radius: 50%;
    background: #fff; transition: left 0.25s;
  }
  .toggle-track.on .toggle-knob { left: 19px; }
  .toggle-label { font-size: 12px; font-weight: 700; color: #1a1a1a; }

  .nav-arrows { display: flex; align-items: center; gap: 10px; }
  .nav-btn {
    width: 42px; height: 42px; border-radius: 50%;
    border: 1.5px solid #ddd; background: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.2s;
  }
  .nav-btn:hover { background: #FF7800; border-color: #FF7800; }
  .nav-btn:hover svg path { stroke: #fff; }
  .slide-count { font-size: 13px; font-weight: 700; color: #1a1a1a; }
  .slide-count span { color: #FF7800; }

  .slider-outer {
    max-width: 1100px; margin: 0 auto;
    overflow: hidden; border-radius: 16px;
    cursor: grab; user-select: none;
  }
  .slider-outer.dragging { cursor: grabbing; }

  .slider-track {
    display: flex; gap: 24px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }

  /* CARD */
  .prod-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid #eee;
    display: flex; flex-direction: column;
    flex-shrink: 0;
    min-width: 260px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
  }

  .prod-card:hover {
    border-color: #FF7800;
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(255,120,0,0.13);
  }

  .prod-card.featured { background: #1a1a1a; border-color: #1a1a1a; }
  .prod-card.featured:hover {
    border-color: #FF7800;
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(255,120,0,0.2);
  }

  /* IMAGE WRAP */
  .img-wrap {
    position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden;
  }

  .img-wrap img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.5s ease;
    pointer-events: none;
  }

  .prod-card:hover .img-wrap img { transform: scale(1.08); }

  /* image overlay on hover */
  .img-hover-overlay {
    position: absolute; inset: 0;
    background: rgba(255,120,0,0.18);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex; align-items: center; justify-content: center;
  }

  .prod-card:hover .img-hover-overlay { opacity: 1; }

  .overlay-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: #FF7800;
    display: flex; align-items: center; justify-content: center;
    transform: scale(0.7);
    transition: transform 0.35s ease;
  }

  .prod-card:hover .overlay-icon { transform: scale(1); }

  .featured-img-bg {
    width: 100%; height: 100%; background: #FF7800;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
  }
  .prod-card.featured:hover .featured-img-bg { background: #e06500; }
  .featured-img-bg img { width: 80%; height: 80%; object-fit: contain; transition: transform 0.5s ease; pointer-events: none; }
  .prod-card:hover .featured-img-bg img { transform: scale(1.06); }

  .cat-badge {
    position: absolute; top: 14px; left: 14px;
    font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    padding: 4px 10px; border-radius: 20px;
    background: #1a1a1a; color: #fff;
    transition: background 0.3s;
    z-index: 2;
  }
  .prod-card:hover .cat-badge { background: #FF7800; }
  .prod-card.featured .cat-badge { background: #fff; color: #FF7800; }
  .prod-card.featured:hover .cat-badge { background: #FF7800; color: #fff; }

  /* orange left border line on hover */
  .prod-card::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 4px; background: #FF7800;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s ease;
    border-radius: 4px 0 0 4px;
    z-index: 3;
  }
  .prod-card:hover::before { transform: scaleY(1); }

  .card-body { padding: 22px 24px 20px; display: flex; flex-direction: column; flex: 1; }
  .card-num { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #FF7800; margin-bottom: 8px; }
  .card-title { font-size: 19px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; line-height: 1.25; transition: color 0.3s; }
  .prod-card:hover .card-title { color: #FF7800; }
  .prod-card.featured .card-title { color: #fff; }
  .prod-card.featured:hover .card-title { color: #FF7800; }

  .card-desc { font-size: 13px; color: #777; line-height: 1.7; margin-bottom: 20px; flex: 1; }
  .prod-card.featured .card-desc { color: rgba(255,255,255,0.5); }

  .card-divider { height: 1px; background: #eee; margin-bottom: 18px; transition: background 0.3s; }
  .prod-card:hover .card-divider { background: rgba(255,120,0,0.2); }
  .prod-card.featured .card-divider { background: rgba(255,255,255,0.1); }

  .card-footer { display: flex; align-items: center; justify-content: space-between; }
  .read-more { font-size: 13px; font-weight: 700; color: #1a1a1a; text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color 0.2s, gap 0.2s; }
  .read-more:hover { gap: 10px; }
  .prod-card:hover .read-more { color: #FF7800; }
  .prod-card.featured .read-more { color: #FF7800; }

  .arrow-btn {
    width: 36px; height: 36px; border-radius: 50%;
    background: #f3f3f3;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: background 0.25s, transform 0.25s;
  }
  .prod-card:hover .arrow-btn { background: #FF7800; transform: rotate(-45deg); }
  .prod-card:hover .arrow-btn .arr { stroke: #fff; }
  .prod-card.featured .arrow-btn { background: #FF7800; }
  .prod-card.featured:hover .arrow-btn { transform: rotate(-45deg); }

  .dots-row { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 28px; }
  .dot { width: 8px; height: 8px; border-radius: 50%; background: #ddd; cursor: pointer; transition: all 0.25s; }
  .dot.active { background: #FF7800; width: 24px; border-radius: 4px; }

  .view-all-wrap { text-align: center; margin-top: 40px; }
  .view-all-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #1a1a1a; color: #fff;
    font-size: 13px; font-weight: 700; letter-spacing: 0.4px;
    padding: 14px 32px; border-radius: 8px;
    border: none; cursor: pointer; text-decoration: none;
    font-family: Arial, sans-serif; transition: background 0.2s, transform 0.2s;
  }
  .view-all-btn:hover { background: #FF7800; transform: translateY(-2px); }

  @media (max-width: 860px) {
    .section { padding: 48px 20px; }
    .section-title { font-size: 26px; }
  }
  @media (max-width: 560px) {
    .section { padding: 6px 16px 36px 16px; }
    .section-title { font-size: 20px; }
    .slider-controls-top { justify-content: center; }
    .section-head { margin-bottom: 28px; }
  }
  
  /* PRODUCT GRID WRAPPER */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.our-product-section{
    padding:20px 0px;
}
.our-product-section h2{
    text-align: center;
    line-height: 4.5rem;
}

/* FORCE cards to behave inside grid */

.product-grid .prod-card {
 width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  position:relative;
}

.product-grid .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-grid .card-desc {
  flex: 1;
}

 .product-grid.img-wrap {
  aspect-ratio: 4/3;
}

.product-grid prod-card-link.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* PRODUCT CARD */
.product-grid  .product-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
}

/* HOVER EFFECT */
.product-grid  .product-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* IMAGE */
.product-grid  .product-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* TITLE */
.product-grid  .product-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  padding: 15px;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

/* LINK RESET */
.product-grid  .product-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* TITLE HOVER */
.product-grid .product-item:hover h3 {
  color: #d40000;
}

/* OPTIONAL: BORDER ACCENT ON HOVER */
.product-grid .product-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #d40000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.product-grid .product-item:hover::after {
  transform: scaleX(1);
}
.card-link {
  position: absolute;
  inset: 0;          /* top:0; left:0; right:0; bottom:0 */
  z-index: 5;
  text-indent: -9999px; /* hide text if any */
}
/* TABLET */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* SMALL TABLET */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-item img {
    height: 200px;
  }
}