/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

/* Navbar */
.navbar {
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 4px 6px -1px rgba(0,0,0,0.1),
              0px 2px 4px -2px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

/* Container */
.nav-container {
  max-width: 1180px;
  height: 92px;
  margin: auto;
  padding: 0 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo a {
  width: 205px;
  height: 84px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  color: #101828;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Links */
.nav-links a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #364153;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00A63E;
}

/* Button */
.nav-links .btn {
  background: #00A63E;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 500;
}

.nav-links .btn:hover {
  background: #008f34;
}

/* Dropdown styling */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-toggle, .subdropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.dropdown-menu, .subdropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  border: 1px solid #f1f5f9;
}

.subdropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 5px;
}

.nav-dropdown:hover > .dropdown-menu,
.nav-subdropdown:hover > .subdropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu a {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  color: #364153;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
  background: #f8fafc;
  color: #00A63E;
}

/* Responsive Navbar */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 20px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .logo a {
    width: 175px;
    height: 72px;
  }
  
  .nav-links {
    position: absolute;
    top: 92px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    display: none;
  }
  
  .nav-links.active {
    display: flex;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .dropdown-menu, .subdropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    margin-top: 10px;
    display: none;
    width: 100%;
  }
  
  .subdropdown-menu {
    margin-left: 15px;
  }

  .nav-dropdown.active > .dropdown-menu,
  .nav-subdropdown.active > .subdropdown-menu {
    display: block;
  }
}



/* Hero Section */
.hero {
  position: relative;
  height: 650px;
  background: url('../images/hero-image.png') center/cover no-repeat;
  display: flex;
  align-items: center;
}

/* Overlay Gradient */
.hero-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  display: flex;
  align-items: center;
}

/* Content */
.hero-content {
  max-width: 1180px;
  padding: 0 94px;
  color: white;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: 20px;
  background: rgba(230, 230, 230, 0.2);
  border: 1px solid rgba(230, 231, 230, 0.3);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

/* Heading */
.hero h1 {
  font-size: 72px;
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: 600;
  max-width: 900px;
  text-shadow: 0px 4px 6px rgba(0,0,0,0.4);
}

/* Subheading */
.hero h3 {
  margin-top: 20px;
  font-size: 24px;
  color: #D1D5DC;
  font-weight: 400;
}

/* Paragraph */
.hero p {
  margin-top: 10px;
  max-width: 650px;
  font-size: 18px;
  line-height: 28px;
  color: #99A1AF;
}

/* Button */
.hero-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 28px;
  background: #03772E;
  color: #fff;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0px 10px 15px rgba(13, 84, 43, 0.5);
  transition: 0.3s;
}

.hero-btn:hover {
  background: #025d24;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero {
    min-height: 500px;
    height: auto;
    background-position: 58% center;
  }

  .hero-overlay {
    min-height: 500px;
    padding: 40px 0;
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.68) 62%,
      rgba(0, 0, 0, 0.35) 100%
    );
  }

  .hero-content {
    width: 100%;
    padding: 0 20px;
  }

  .badge {
    max-width: 100%;
    padding: 7px 14px;
    font-size: 12px;
    line-height: 18px;
    white-space: normal;
  }

  .hero h1 {
    max-width: 620px;
    font-size: 40px;
    line-height: 1.14;
    letter-spacing: 0;
  }

  .hero h3 {
    margin-top: 16px;
    font-size: 20px;
    line-height: 28px;
  }

  .hero p {
    max-width: 520px;
    font-size: 16px;
    line-height: 26px;
  }

  .hero-btn {
    margin-top: 24px;
    padding: 13px 22px;
    border-radius: 10px;
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 470px;
  }

  .hero-overlay {
    min-height: 470px;
    padding: 32px 0;
  }

  .hero-content {
    padding: 0 16px;
  }

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


/* About Section */
.about {
  background: #ffffff;
  padding: 80px 0;
}

/* Container */
.about-container {
  max-width: 1180px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

/* Heading */
.about h2 {
  font-size: 36px;
  font-weight: 800;
  color: #101828;
}

.about h2 span {
  color: #00A63E;
}

/* Paragraph */
.about-text {
  max-width: 900px;
  margin: 20px auto 60px;
  font-size: 18px;
  line-height: 29px;
  color: #364153;
}

/* Cards */
.about-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Card */
.card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  width: 30%;
  min-width: 280px;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.1),
              0px 2px 4px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.about-cards .card {
  flex: 1 1 280px;
  max-width: 360px;
  min-width: 0;
  width: 100%;
}

.card:hover {
  transform: translateY(-5px);
}

/* Icon */
.icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: 12px;
  color: white;
}

.icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon svg * {
  fill: none;
  stroke: #ffffff;
}

.icon.green { background: #009689; }
.icon.blue { background: #155DFC; }
.icon.teal { background: #007D99; }

/* Card Title */
.card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #101828;
}

/* Card Text */
.card p {
  font-size: 16px;
  line-height: 24px;
  color: #4A5565;
}

@media (max-width: 640px) {
  .about {
    padding: 64px 0;
  }

  .about-container {
    padding: 0 16px;
  }

  .about h2 {
    font-size: 30px;
  }

  .about-text {
    margin-bottom: 36px;
    font-size: 16px;
    line-height: 26px;
  }

  .about-cards {
    gap: 18px;
  }

  .about-cards .card {
    flex-basis: 100%;
    max-width: 360px;
  }
}

/* Section */
.chairman {
  background: #F9FAFB;
  padding: 80px 0;
}

/* Container */
.container {
  max-width: 1180px;
  margin: auto;
  padding: 0 20px;
}

/* Title */
.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 50px;
  color: #101828;
}

.section-title span {
  color: #00A63E;
}

/* Layout */
.chairman-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* BOTH CARDS */
.chairman-card,
.group-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 534px;
}

/* LEFT CARD */
.chairman-card {
  background: #ffffff;
  color: #101828;
  padding: 32px;
  border: 0.8px solid #F3F4F6;
  border-radius: 16px;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1),
              0px 4px 6px -4px rgba(0,0,0,0.1);
}

/* Header */
.chairman-header {
  color: #101828;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

/* Image */
.chairman-img {
  width: 96px;
  height: 96px;
  border: 4px solid #00A63E;
  border-radius: 50%;
  overflow: hidden;
}

.chairman-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Name */
.chairman-card h3 {
  color: #101828;
  font-size: 24px;
  font-weight: 700;
}

/* Role */
.role {
  color: #00A63E;
  font-weight: 600;
  font-size: 16px;
}

.chairman-card .role {
  color: #00A63E;
}

.chairman-company {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #101828;
}

.company-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4A5565;
}

.company-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.company-name-nepal {
  color: #155DFC;
}

.company-name-polytech {
  color: #00A63E;
}

/* Text */
/* Text */
.chairman-card p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 26px;
  color: #101828;
}

.chairman-quote {
  font-size: 18px !important;
  text-align: justify;
  line-height: 28px !important;
  color: #101828;
  font-style: italic;
  position: relative;
  padding-left: 20px;
  border-left: 4px solid #00A63E;
  margin-top: 24px !important;
}

/* Push content evenly */
.chairman-card p:last-child {
  margin-bottom: auto;
}

/* RIGHT CARD */
.group-card {
  background: #00A63E;
  color: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0px 20px 25px rgba(0,0,0,0.1);

  justify-content: space-between;
}

/* Header */
.group-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Icon */
.group-header .icon {
  background: rgba(255,255,255,0.2);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}

/* Title */
.group-card h3 {
  font-size: 30px;
  font-weight: 700;
}

/* Text */
.group-text {
  margin: 20px 0 24px;
  font-size: 18px;
  line-height: 29px;
  color: #F0FDF4;
}

/* Stats */
.stats {
  display: flex;
  gap: 16px;
  margin: 0 0 24px;
}

.stat {
  flex: 0 0 calc(50% - 8px);
  background: #8bd7a7;
  padding: 16px;
  border-radius: 10px;
  min-height: 92px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.stat h4 {
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  margin: 0;
}

.stat p {
  font-size: 14px;
  line-height: 20px;
  color: #DCFCE7;
  margin: 4px 0 0;
}

/* Footer */
.group-footer {
  font-size: 14px;
  line-height: 23px;
  color: #F9FAFB;
}

.group-visit-link {
  align-self: flex-end;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.group-visit-link span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.2s ease;
}

.group-visit-link:hover,
.group-visit-link:focus-visible {
  color: #DCFCE7;
  transform: translateX(4px);
}

.group-visit-link:hover span,
.group-visit-link:focus-visible span {
  transform: translateX(4px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .chairman-wrapper {
    grid-template-columns: 1fr;
  }
}


/* SECTION */
.featured-products {
  background: #131A29;
  padding: 80px 0;
  color: #ffffff; /* white text for headings */
}

/* CONTAINER */
.container {
  max-width: 1180px;
  margin: auto;
  padding: 0 20px;
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
}

.chairman .section-title {
  color: #101828;
}

.chairman .section-title span {
  color: #00A63E;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #D1D5DB; /* soft white like design */
  margin-bottom: 50px;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Featured products marquee */
.featured-marquee {
  overflow: hidden;
  padding-bottom: 20px;
}

.featured-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: featured-scroll 42s linear infinite;
}

.featured-marquee:hover .featured-track {
  animation-play-state: paused;
}

.featured-set {
  display: flex;
  gap: 25px;
  padding-right: 25px;
}

.featured-set .product-card {
  flex: 0 0 calc((1180px - 75px) / 4);
}

@keyframes featured-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .featured-track {
    animation: none;
  }
}

/* CARD */
.product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  height: 100%;
  
  /* Reset inherited white text */
  color: #101828;
}

.product-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.product-img {
  height: 180px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.product-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 8px;
}

.product-content p {
  font-size: 14px;
  color: #4A5565;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* BUTTON */
.product-btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #2563EB;
  color: #2563EB;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-btn:hover {
  background: #2563EB;
  color: #ffffff;
}


@media (max-width: 1024px) {
  .featured-set .product-card {
    flex-basis: calc((100vw - 65px) / 2);
  }
}

@media (max-width: 600px) {
  .featured-set .product-card {
    flex-basis: calc(100vw - 40px);
  }
}


/* Product Range Section */
.product-range {
  background: #ffffff;
  padding: 80px 0;
}

/* Header */
.product-range-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.product-range-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #101828;
}

.product-range-header h2 span {
  color: #00A63E;
}

.product-range-header p {
  margin-top: 12px;
  font-size: 18px;
  line-height: 28px;
  color: #4A5565;
}

/* Filters */
.product-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  border: none;
  background: #F3F4F6;
  color: #364153;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.filter-btn:hover {
  background: #E5E7EB;
}

.filter-btn.active {
  background: #00A63E;
  color: #ffffff;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
              0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.filter-btn.active:hover {
  background: #008f34;
}

/* Grid */
.product-range-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.range-card {
  background: #FFFFFF;
  border: 0.8px solid #F3F4F6;
  border-radius: 10px;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1),
              0px 2px 4px -2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.range-card[hidden] {
  display: none;
}

/* Image */
.range-image {
  background: #F9FAFB;
  position: relative;
  height: 192px;
}

.range-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Icon */
.range-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1),
              0px 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.range-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Themes */
.theme-blue .range-icon {
  background: #EFF6FF;
  color: #155DFC;
}

.theme-green .range-icon {
  background: #F0FDF4;
  color: #00A63E;
}

/* Content */
.range-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.range-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 8px;
}

.range-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.theme-blue .range-tag {
  color: #155DFC;
}

.theme-green .range-tag {
  color: #00A63E;
}

.range-text {
  font-size: 14px;
  line-height: 23px;
  color: #4A5565;
  margin-bottom: 20px;
}

/* Button */
.range-btn {
  margin-top: auto;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: 1.6px solid transparent;
  transition: 0.3s ease;
}

.theme-blue .range-btn {
  color: #155DFC;
  border-color: #2B7FFF;
}

.theme-green .range-btn {
  color: #00A63E;
  border-color: #00C950;
}

.theme-blue .range-btn:hover {
  background: #155DFC;
  color: #ffffff;
}

.theme-green .range-btn:hover {
  background: #00A63E;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-range-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .product-range-grid {
    grid-template-columns: 1fr;
  }

  .product-range-header h2 {
    font-size: 30px;
  }

  .product-range-header p {
    font-size: 16px;
  }
}

/* Trusted Suppliers Section */
.trusted-suppliers {
  background: #F9FAFB;
  padding: 80px 0;
}

/* Header */
.suppliers-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.suppliers-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #101828;
}

.suppliers-header h2 span {
  color: #00A63E;
}

.suppliers-header p {
  margin-top: 12px;
  font-size: 18px;
  line-height: 28px;
  color: #4A5565;
}

/* Grid */
.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.supplier-card {
  background: #ffffff;
  border: 0.8px solid #F3F4F6;
  border-radius: 14px;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1),
              0px 2px 4px -2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Image */
.supplier-image {
  background: #E5E7EB;
  height: 235px;
}

.supplier-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Body */
.supplier-body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Tag */
.supplier-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #155DFC;
}

.supplier-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #155DFC;
}

.supplier-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* Title */
.supplier-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #101828;
}

/* Description */
.supplier-body p {
  font-size: 14px;
  line-height: 20px;
  color: #4A5565;
}

/* Subheading */
.suppliers-subtitle {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #101828;
  margin: 48px 0 32px;
}

.suppliers-subtitle span {
  color: #00A63E;
}

/* Responsive */
@media (max-width: 1024px) {
  .suppliers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .suppliers-grid {
    grid-template-columns: 1fr;
  }

  .suppliers-header h2 {
    font-size: 30px;
  }

  .suppliers-header p {
    font-size: 16px;
  }

  .suppliers-subtitle {
    font-size: 24px;
  }
}

/* Stats Section */
section.stats {
  background: #131A29;
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.stat-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.stat-icon svg {
  width: 32px;
  height: 32px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 40px;
  }
}

/* Manufacturing Process Section */
.process {
  background: #ffffff;
  padding: 80px 0;
}

.process-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.process-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #101828;
}

.process-header h2 span {
  color: #00A63E;
}

.process-header p {
  margin-top: 12px;
  font-size: 18px;
  line-height: 28px;
  color: #4A5565;
}

.process-steps {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.process-steps::before {
  display: none;
}

.process-step {
  position: relative;
  flex: 1;
  min-width: 160px;
  text-align: center;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 72px;
  left: calc(50% + 82px);
  width: calc(100% - 116px);
  height: 2px;
  background: #D1D5DC;
}

.process-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 66px;
  right: -18px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #D1D5DC;
}

.process-image {
  position: relative;
  z-index: 1;
  width: 144px;
  height: 144px;
  margin: 0 auto 16px;
  border-radius: 999px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0px 0px 0px 4px #EBEBEB,
              0px 10px 15px -3px rgba(0, 0, 0, 0.1),
              0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  line-height: 23px;
  color: #4A5565;
}

@media (max-width: 1024px) {
  .process-steps {
    flex-wrap: wrap;
    justify-content: center;
  }

  .process-steps::before {
    display: none;
  }

  .process-step::before,
  .process-step::after {
    display: none;
  }

  .process-step {
    flex: 0 1 calc(33.333% - 24px);
  }
}

@media (max-width: 700px) {
  .process-step {
    flex: 0 1 calc(50% - 24px);
  }
}

@media (max-width: 500px) {
  .process-step {
    flex: 0 1 100%;
  }

  .process-header h2 {
    font-size: 30px;
  }

  .process-header p {
    font-size: 16px;
  }
}

/* Why Choose Us Section */
.why-choose {
  background: #F9FAFB;
  padding: 80px 0;
}

.why-choose-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.why-choose-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #101828;
}

.why-choose-header h2 span {
  color: #00A63E;
}

.why-choose-header p {
  margin-top: 12px;
  font-size: 18px;
  line-height: 28px;
  color: #4A5565;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1),
              0px 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.why-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin: 0 auto 16px;
  color: #ffffff;
}

.why-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-icon.teal { background: #009689; }
.why-icon.indigo { background: #4F39F6; }
.why-icon.blue { background: #155DFC; }
.why-icon.green { background: #00A63E; }
.why-icon.purple { background: #9810FA; }

.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  line-height: 20px;
  color: #4A5565;
}

@media (max-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-header h2 {
    font-size: 30px;
  }

  .why-choose-header p {
    font-size: 16px;
  }
}

/* Product Gallery Section */
.product-gallery {
  background: #ffffff;
  padding: 80px 0;
}

.gallery-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.gallery-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #101828;
}

.gallery-header h2 span {
  color: #00A63E;
}

.gallery-header p {
  margin-top: 12px;
  font-size: 18px;
  line-height: 28px;
  color: #4A5565;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  background: #F3F4F6;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.08),
              0px 2px 4px -2px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-header h2 {
    font-size: 30px;
  }

  .gallery-header p {
    font-size: 16px;
  }
}

/* Trusted Partners Section */
.trusted-partners {
  background: #F9FAFB;
  padding: 80px 0;
}

.partners-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.partners-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #101828;
}

.partners-header h2 span {
  color: #00A63E;
}

.partners-header p {
  margin-top: 12px;
  font-size: 18px;
  line-height: 28px;
  color: #4A5565;
}

.partners-marquee {
  overflow: hidden;
  padding: 8px 0 18px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.partners-track {
  display: flex;
  width: max-content;
  animation: partners-scroll 32s linear infinite;
}

.partners-marquee:hover .partners-track,
.partners-marquee:focus-within .partners-track {
  animation-play-state: paused;
}

.partners-set {
  display: flex;
  gap: 24px;
  padding-right: 24px;
}

.partner-card {
  position: relative;
  flex: 0 0 250px;
  height: 150px;
  background: #ffffff;
  border-radius: 12px;
  padding: 22px;
  border: 1px solid #E5E7EB;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.08),
              0px 2px 4px -2px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: grid;
  place-items: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.partner-card:hover,
.partner-card:focus-visible {
  border-color: #00A63E;
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.14);
  transform: translateY(-4px);
  outline: none;
}

.partner-card img {
  width: 100%;
  height: 100%;
  max-width: 190px;
  max-height: 105px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-name {
  position: absolute;
  inset: auto 12px 12px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(16, 24, 40, 0.76);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.partner-card:hover img,
.partner-card:focus-visible img {
  transform: scale(1.04);
}

.partner-card:hover .partner-name,
.partner-card:focus-visible .partner-name {
  opacity: 1;
  transform: translateY(0);
}

@keyframes partners-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
  .partner-card {
    flex-basis: 220px;
  }
}

@media (max-width: 640px) {
  .partners-set {
    gap: 16px;
    padding-right: 16px;
  }

  .partner-card {
    flex-basis: 190px;
    height: 130px;
    padding: 18px;
  }

  .partners-header h2 {
    font-size: 30px;
  }

  .partners-header p {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-track {
    animation: none;
  }

  .partners-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .partners-set[aria-hidden="true"] {
    display: none;
  }
}

/* Testimonials Section */
.testimonials {
  background: #ffffff;
  padding: 80px 0;
}

.testimonials-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.testimonials-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #101828;
}

.testimonials-header h2 span {
  color: #00A63E;
}

.testimonials-header p {
  margin-top: 12px;
  font-size: 18px;
  line-height: 28px;
  color: #4A5565;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 10px;
  border: 0.8px solid #F3F4F6;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1),
              0px 2px 4px -2px rgba(0, 0, 0, 0.1);
  padding: 24px;
}

.testimonial-stars {
  color: #FDC700;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 23px;
  font-style: italic;
  color: #364153;
  margin-bottom: 16px;
}

.testimonial-footer {
  border-top: 0.8px solid #E5E7EB;
  padding-top: 16px;
}

.testimonial-footer h4 {
  font-size: 14px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 4px;
}

.testimonial-footer .role {
  font-size: 12px;
  font-weight: 600;
  color: #00A63E;
  margin-bottom: 4px;
}

.testimonial-footer .company {
  font-size: 12px;
  color: #4A5565;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-header h2 {
    font-size: 30px;
  }

  .testimonials-header p {
    font-size: 16px;
  }
}

/* Contact Section */
.contact-section {
  background: #F9FAFB;
  padding: 80px 0;
}

.contact-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.contact-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #101828;
}

.contact-header h2 span {
  color: #00A63E;
}

.contact-header p {
  margin-top: 12px;
  font-size: 18px;
  line-height: 28px;
  color: #4A5565;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: start;
}

.contact-info {
  background: #00A63E;
  color: #ffffff;
  border-radius: 10px;
  padding: 32px;
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-icon {
  width: 20px;
  height: 20px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.contact-value {
  display: block;
  font-size: 16px;
  line-height: 24px;
}

.contact-form {
  background: #ffffff;
  border-radius: 10px;
  border: 0.8px solid #E5E7EB;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1),
              0px 2px 4px -2px rgba(0, 0, 0, 0.1);
  padding: 32px;
}

.contact-form h3 {
  font-size: 24px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #364153;
}

.form-group input,
.form-group textarea {
  border: 0.8px solid #D1D5DC;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  font-family: inherit;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-btn {
  width: 100%;
  border: none;
  background: #00A63E;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1),
              0px 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.contact-map {
  margin-top: 32px;
  height: 320px;
  background: #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-header h2 {
    font-size: 30px;
  }

  .contact-header p {
    font-size: 16px;
  }
}

/* Footer */
.site-footer {
  background: #101828;
  color: #99A1AF;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand img {
  width: 110px;
  height: auto;
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 20px;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column a {
  color: #99A1AF;
  text-decoration: none;
  font-size: 14px;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
}

.footer-icon {
  width: 16px;
  height: 16px;
  color: #99A1AF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.footer-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  border-top: 0.8px solid #1E2939;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: #1E2939;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Refined interactions and updated product/category experiences */
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(0, 166, 62, 0.35);
  outline-offset: 3px;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.range-card {
  color: inherit;
  text-decoration: none;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.range-card:hover {
  transform: translateY(-5px);
  border-color: #D7F5E1;
  box-shadow: 0 18px 34px rgba(16, 24, 40, 0.12);
}

.range-card:active {
  transform: translateY(-2px) scale(0.99);
}

.range-image {
  overflow: hidden;
}

.range-image img {
  transition: transform 360ms ease, opacity 360ms ease;
}

.range-card:hover .range-image img {
  transform: scale(1.045);
}

.range-card:hover .range-body h3 {
  color: #008236;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.filter-btn:active {
  transform: scale(0.98);
}

.category-detail {
  background: #F8FAFC;
  padding: 128px 0 88px;
  min-height: 560px;
}

.category-hero,
.category-empty {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.back-products-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: #008236;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.back-products-link:hover {
  color: #00A63E;
}

.category-eyebrow {
  color: #00A63E;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.category-hero h1,
.category-empty h1 {
  color: #101828;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 16px;
}

.category-hero p,
.category-empty p {
  color: #4A5565;
  font-size: 18px;
  line-height: 30px;
}

.category-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-product-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.category-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(16, 24, 40, 0.12);
}

.category-product-image {
  height: 220px;
  overflow: hidden;
  background: #EEF2F7;
}

.category-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 360ms ease;
}

.category-product-image--contain {
  background: #ffffff;
}

.category-product-image--contain img {
  object-fit: contain;
  box-sizing: border-box;
  padding: 12px;
}

.category-product-card:hover .category-product-image img {
  transform: scale(1.035);
}

.category-product-card:hover .category-product-image--contain img {
  transform: none;
}

.category-product-body {
  padding: 24px;
}

.category-product-body h2 {
  color: #101828;
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.category-product-body p {
  color: #4A5565;
  font-size: 15px;
  line-height: 24px;
}

.product-specs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.product-specs li {
  background: #F0FDF4;
  color: #008236;
  border: 1px solid #BBF7D0;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
}

.back-products-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 8px;
  background: #00A63E;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: background 220ms ease, transform 220ms ease;
}

.back-products-btn:hover {
  background: #008236;
  transform: translateY(-2px);
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  position: relative;
  width: 100%;
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 24, 40, 0) 45%, rgba(16, 24, 40, 0.62) 100%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(16, 24, 40, 0.14);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  transition: transform 360ms ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-actions {
  margin-top: 32px;
  text-align: center;
}

.gallery-view-all {
  min-height: 44px;
  border: 1px solid #00A63E;
  background: #ffffff;
  color: #008236;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.gallery-view-all:hover {
  background: #00A63E;
  color: #ffffff;
  transform: translateY(-2px);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  overscroll-behavior: contain;
  touch-action: none;
}

.gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.82);
  opacity: 0;
  transition: opacity 220ms ease;
}

.gallery-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: calc(100vh - 48px);
  background: #0F172A;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: scale(0.97) translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery-lightbox.is-open .gallery-backdrop {
  opacity: 1;
}

.gallery-lightbox.is-open .gallery-dialog {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.gallery-dialog-header {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 0 20px;
}

.gallery-counter {
  color: #E5E7EB;
  font-size: 14px;
  font-weight: 800;
}

.gallery-close,
.gallery-nav {
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease, opacity 200ms ease;
}

.gallery-close {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
}

.gallery-close:hover,
.gallery-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.04);
}

.gallery-stage {
  margin: 0;
  padding: 0 70px 28px;
  text-align: center;
}

.gallery-stage img {
  width: 100%;
  max-height: calc(100vh - 190px);
  object-fit: contain;
  display: block;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery-stage img.is-loaded {
  opacity: 1;
}

.gallery-stage figcaption {
  min-height: 22px;
  margin-top: 14px;
  color: #CBD5E1;
  font-size: 14px;
  font-weight: 600;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 36px;
  line-height: 1;
}

.gallery-prev {
  left: 16px;
}

.gallery-next {
  right: 16px;
}

html.lightbox-open,
body.lightbox-open {
  overflow: hidden;
}

body.lightbox-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

@media (max-width: 1024px) {
  .category-products-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .category-detail {
    padding: 68px 0;
  }

  .category-hero h1,
  .category-empty h1 {
    font-size: 36px;
  }

  .category-hero p,
  .category-empty p {
    font-size: 16px;
    line-height: 26px;
  }

  .gallery-stage {
    padding: 0 16px 22px;
  }

  .gallery-nav {
    top: auto;
    bottom: 24px;
  }

  .gallery-prev {
    left: 24px;
  }

  .gallery-next {
    right: 24px;
  }

}

@media (max-width: 640px) {
  .category-products-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .category-product-image {
    height: 210px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-ready,
  .range-card:hover,
  .gallery-item:hover,
  .category-product-card:hover,
  .range-card:hover .range-image img,
  .gallery-item:hover img,
  .category-product-card:hover .category-product-image img {
    opacity: 1;
    transform: none;
  }
}
