html,
body {
  overflow-x: hidden;
}

@font-face {
  font-family: 'Font Awesome 6 Pro';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/fa-regular-400.woff2') format('woff2');
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/fa-brands-400.woff2") format("woff2"),
    url("../fonts/fa-brands-400.ttf") format("truetype");
}


@font-face {
  font-family: 'Font Awesome 6 Pro';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/fa-solid-900.woff2') format('woff2'),
    url('../fonts/fa-solid-900.woff') format('woff');
}

.fas {
  font-family: "Font Awesome 6 Pro";
  /* or "Font Awesome 6 Solid" */
  font-weight: 900;
}



.fas {
  font-family: "Font Awesome 6 Pro" !important;
  font-weight: 900 !important;
}

body {
  background-color: #121212;
  color: #ffffff;
}

body {
  background-color: #121212;
  color: #ffffff;
}

body.light-mode {
  background-color: #ffffff;
  color: #000000;
}

body.light-mode .filter-btn {
  border: 1px solid #000;
  color: #000;
  background-color: transparent;
}

body.light-mode .filter-btn.active {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

body.light-mode .filter-btn:hover {
  border-color: #027dc1;
  color: #027dc1;
}

body.light-mode .product-card {
  border-color: #000;
}

body.light-mode .footer {
  background-color: #f8f8f8;
  color: #000;
}

/* Don't change header color even in light mode */
/* body.light-mode .header {
background-color: black !important;
color: white;
} */
body.light-mode .stay-dark h4,
body.light-mode .stay-dark p,
body.light-mode .stay-dark .modal-title {
  color: #fff !important;
}

/* Keep white border and text for close button */
body.light-mode .stay-dark .btn-close {
  filter: invert(1);
  /* ensures visibility on white themes */
}

/* Prevent color changes in light mode for scroll percentage */
body.light-mode .stay-dark {
  background-color: #000 !important;
  color: #000 !important;
}

/* Default (dark mode) */
.category-extra-description {
  color: #ffffff;
}

/* Light mode override */
body.light-mode .category-extra-description {
  color: #000000;
}


/* Optional: Target span inside if needed */
body.light-mode .stay-dark span {
  color: #000 !important;
}

.product-modal-img {
  width: 20%;
  max-width: 300px;
}

@media (max-width: 576px) {
  .product-modal-img {
    width: 40%;
    max-width: 250px;
  }
}

#theme-toggle {
  background-color: #121212 !important;
  color: #ffffff !important;
  border: none;
  padding: 6px 16px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

#theme-toggle:hover {
  background-color: #1e1e1e !important;
}


.filter-btn {
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  padding: 8px 16px;
  margin: 5px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.filter-btn.active {
  background-color: #fff;
  /* Red */
  color: #111;
  border-color: #111;
}

.filter-btn:hover {
  border-color: #027dc1;
  color: #027dc1;
}

.owl-nav,
.owl-dots {
  display: none;
}

@media (max-width: 768px) {
  .filter-btn {
    padding: 6px 10px;
    font-size: 13px;
    margin: 3px;
    border-radius: 6px;
  }
}

.product-card {
  border: 1px solid #fff;
  /* Transparent-ish border */
  border-radius: 16px;
  padding: 20px;
  background-color: transparent;
  text-align: center;
  transition: box-shadow 0.3s ease;
  height: 100%;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.product-name {
  text-align: center;
  font-weight: 500;
  margin-top: 10px;
  font-size: 16px;
}

@media (max-width: 576px) {
  .product-card img {
    height: 150px;
  }

  .product-name {
    font-size: 14px;
  }
}

.about-banner {
  background-image: url(img/trion1c.jpg);
  /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  height: 300px;
  /* Adjust as needed */
  position: relative;
}

.about-banner h1 {
  font-size: 3rem;
  z-index: 2;
}

/* Optional: add overlay if needed */
.about-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* Dark overlay */
  z-index: 1;
}