:root {
  --bg: #fff;
  --muted: #f5f6f7;
  --text: #111;
  --accent: royalblue;
  --primary: #d32f2f;
  --card-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --container-max: 1200px;
  --gap: 16px;
  font-family: Inter, "Century Gothic", Arial, sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body,
html {
  height: 100%;
  background: var(--bg);
  color: var(--text);
}
#loader {
  position: fixed;
  inset: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.header,
.loadingContainer {
  align-items: center;
  display: flex;
}
.getQuob,
.navIco {
  display: none;
}
.loadingContainer {
  position: relative;
  height: 4px;
  width: 40%;
  background-color: #dfdfdf;
  overflow: hidden;
}
.loada,
.loadb,
.loadc {
  position: relative;
  height: 4px;
  width: 10%;
}
.productBox,
.world {
  flex-direction: column;
}
.loada {
  background-color: #004aad;
  box-shadow: 0 0 60px #004aad;
  animation: 3s linear infinite loa;
}
@keyframes loa {
  0% {
    width: 10%;
    left: 0;
  }
  50% {
    width: 50%;
    left: 50%;
  }
  100% {
    width: 10%;
    left: 100%;
  }
}
.loadb {
  background-color: red;
  animation: 3s linear infinite lob;
}
@keyframes lob {
  0% {
    width: 10%;
    left: 0;
  }
  50% {
    width: 50%;
    left: 50%;
  }
  100% {
    width: 10%;
    left: 100%;
  }
}
.loadc {
  background-color: #ff0;
  animation: 3s linear infinite loc;
}
@keyframes loc {
  0% {
    width: 10%;
    left: 0;
  }
  50% {
    width: 50%;
    left: 50%;
  }
  100% {
    width: 10%;
    left: 100%;
  }
}
.world {
  padding: 20px;
  display: flex;
  align-items: center;
}
.header {
  position: fixed;
  width: 97%;
  padding: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  justify-content: space-between;
  z-index: 3;
  background-color: #fff;
}
.headerBox,
.navBut {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo {
  height: 40px;
}
.headerBox {
  justify-content: space-evenly;
}
.navBut {
  padding: 10px;
  border-radius: 15px;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
  white-space: nowrap;
}
.navBut:hover {
  background-color: #f0f0f0;
}
.getQuo {
  background-color: red;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}
.footerLinkb,
.navButx {
  padding: 10px;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
}
.onavBut {
  display: none;
  background: 0 0;
  border: none;
  font-size: 30px;
}
.navButxt {
  position: relative;
  display: inline-block;
}
.navButx,
.navButxt:hover .productBox,
.productBox:hover {
  display: flex;
}
.navButx {
  border-radius: 15px;
  transition: 0.3s;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  cursor: pointer;
}
.productBox {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  gap: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.footerLinkb {
  transition: 1s;
  border-radius: 5px;
  width: 100%;
}
.footerLinkb:hover {
  background-color: #d8c4c4;
}
.page {
  max-width: var(--container-max);
  margin-top: 70px;
  padding: 0 16px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(242px, 1fr));
  gap: var(--gap);
}
.card {
  background: linear-gradient(180deg, #fafafa, #f5f5f5);
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.18s, box-shadow 0.18s;
  overflow: hidden;
}
.card:hover {
  background: #4169e1;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
.card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  border-radius: 6px;
  background: 0 0;
}
.card h2 {
  text-transform: uppercase;
}
.card h3 {
  font-size: 16px;
  margin-top: 4px;
}
.card p {
  height: 140px;
  overflow-y: scroll;
}
.card p::-webkit-scrollbar {
  display: none;
}
.desc {
  height: 72px;
  overflow: auto;
  font-size: 14px;
  line-height: 1.25;
}
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.consult-btn {
  padding: 8px 14px;
  border-radius: 22px;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}
.footerLink,
.socialmediaBox a {
  text-decoration: none;
  color: #000;
}
.consult-btn.inverse {
  background: 0 0;
  color: var(--accent);
}
.card:hover .consult-btn {
  background-color: #fff;
  color: #4169e1;
}
.containerh {
  position: relative;
  width: 100%;
  padding: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  margin-top: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.containerh p {
  width: 100%;
  text-align: center;
}
.footerxyz {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footercontainera {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.socialmediaBox {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px;
}
.socialmediaBox a {
  font-size: 25px;
}
.footercontainerb {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 5px;
}
.footerminBoxa {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footerLink {
  padding: 5px;
  white-space: nowrap;
  transition: 1s;
  border-radius: 5px;
  width: max-content;
}
.footerLink:hover {
  background-color: #dfdfdf;
}
@media (max-width: 975px) {
  .header {
    width: 95%;
  }
  .headerBox {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 20px;
    display: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  }
  .nav-links.open,
  .onavBut {
    display: flex;
  }
  .navBut {
    width: 100%;
    justify-content: flex-start;
  }
  .onavBut {
    align-items: center;
    justify-content: center;
  }
  .navIco {
    display: inline;
    font-size: 20px;
  }
  .cta,
  .getQuo {
    display: none;
  }
  .getQuob {
    display: block;
    background-color: red;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    flex-direction: column;
    box-shadow: var(--card-shadow);
  }
  .menu-toggle {
    display: inline-flex;
  }
}
@media (max-width: 650px) {
  .card img {
    height: 180px;
  }
  .header {
    padding: 10px;
  }
  .brand h1 {
    font-size: 16px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .header {
    width: 90%;
  }
}
.desc::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.desc::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 6px;
}
