::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: #008080;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #00a3a3;
}

.foxyz-products-page {
  --foxyz-bg: #0A0E0D;
  --foxyz-panel: rgba(13, 36, 32, .52);
  --foxyz-panel-strong: rgba(13, 36, 32, .84);
  --foxyz-border: rgba(46, 207, 184, .16);
  --foxyz-teal: #1DB5A0;
  --foxyz-teal-2: #2ECFB8;
  --foxyz-teal-dark: #157A6E;
  --foxyz-text: #FFFFFF;
  --foxyz-muted: #abc9c5;
  color: var(--foxyz-text);
  font-family: "Rubik", Arial, sans-serif;
}

.foxyz-products-page,
.foxyz-products-page * {
  box-sizing: border-box;
}

.foxyz-products-page .foxyz-products-shell {
  position: relative;
  overflow: visible;
  padding: 2.5rem 0 1rem;
}

.foxyz-products-page .foxyz-products-alert {
  display: flex;
  align-items: center;
  gap: .65rem;
  width: 100%;
  min-height: 54px;
  padding: .9rem 1rem;
  margin-bottom: 3rem;
  border-radius: .48rem;
  background: linear-gradient(135deg, #157A6E 0%, #1DB5A0 54%, #2ECFB8 100%);
  border: 1px solid rgba(46, 207, 184, .42);
  box-shadow: 0 0 0 7px rgba(13, 36, 32, .82), 0 16px 36px rgba(0, 0, 0, .30);
  color: #fff !important;
  text-decoration: none !important;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.25;
}

.foxyz-products-page .foxyz-products-alert svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  opacity: .9;
}

.foxyz-products-page .foxyz-products-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  align-items: end;
  gap: 2rem;
  min-height: 190px;
  padding: 1.35rem 0 2.55rem;
  margin-bottom: 2.35rem;
  isolation: isolate;
}

.foxyz-products-page .foxyz-products-waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -72px;
  width: 100%;
  max-width: none;
  height: 270px;
  transform: none;
  object-fit: fill;
  object-position: center bottom;
  opacity: .34;
  filter: none;
  z-index: -1;
  pointer-events: none;
}

.foxyz-products-page .foxyz-products-hero::after {
  content: none;
}

.foxyz-products-page .foxyz-products-copy {
  max-width: 768px;
}

.foxyz-products-page .foxyz-products-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(27px, 2.7vw, 38px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-shadow: none;
}

.foxyz-products-page .foxyz-products-copy h1 span {
  background: linear-gradient(180deg, var(--foxyz-teal), var(--foxyz-teal-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.foxyz-products-page .foxyz-products-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--foxyz-muted);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  
  text-align: left;
}

.foxyz-products-page .foxyz-products-search {
  position: relative;
  display: flex;
  align-items: center;
  height: 46px;
  border-radius: .72rem;
  background: rgba(16, 18, 24, .82);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03), 0 14px 35px rgba(0, 0, 0, .22);
  overflow: hidden;
}

.foxyz-products-page .foxyz-products-search:focus-within {
  border-color: rgba(46, 207, 184, .52);
  box-shadow: 0 0 0 4px rgba(29, 181, 160, .08), 0 14px 35px rgba(0, 0, 0, .22);
}

.foxyz-products-page .foxyz-products-search svg {
  width: 21px;
  height: 21px;
  margin-left: 14px;
  color: rgba(255, 255, 255, .55);
  flex: 0 0 21px;
}

.foxyz-products-page .foxyz-products-search input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  padding: 0 1rem 0 .75rem;
  font-size: .95rem;
  font-weight: 400;
  font-family: "Rubik", Arial, sans-serif;
}

.foxyz-products-page .foxyz-products-search input::placeholder {
  color: rgba(255, 255, 255, .34);
}

.foxyz-products-page .foxyz-products-grid {
  position: relative;
  z-index: 1;
}

.foxyz-products-page .products .card {
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(13, 36, 32, .92), rgba(10, 14, 13, .95));
  border: 1px solid rgba(46, 207, 184, .14);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255,255,255,.04);
}

.foxyz-products-page .products .card:hover {
  border-color: rgba(46, 207, 184, .36);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .36), inset 0 1px 0 rgba(255,255,255,.06);
}

.foxyz-products-page .products .card .card-img-top {
  background: #07100f;
}

.foxyz-products-page .products .card .card-img-top .overlay .btn,
.foxyz-products-page .btn-primary {
  background: linear-gradient(135deg, #157A6E, #1DB5A0 58%, #2ECFB8) !important;
  border-color: rgba(46, 207, 184, .55) !important;
  color: #fff !important;
}

.foxyz-products-page .products .card .card-img-top .overlay .btn:hover,
.foxyz-products-page .btn-primary:hover {
  background: linear-gradient(135deg, #1DB5A0, #2ECFB8) !important;
  border-color: rgba(46, 207, 184, .75) !important;
}

.foxyz-products-page .products .card .card-img-top .badges div,
.foxyz-products-page .products .card .info .text-primary,
.foxyz-products-page .products .card .info p.text-primary,
.foxyz-products-page .text-primary {
  color: #2ECFB8 !important;
}

.foxyz-products-page .products .card .card-img-top .badges div {
  background: rgba(29, 181, 160, .9) !important;
  color: #fff !important;
}

.foxyz-products-page .products .card .card-title {
  color: #fff;
  font-weight: 700;
}

.foxyz-products-page .products .card .info {
  color: rgba(255,255,255,.7);
}

.foxyz-products-page .foxyz-products-empty {
  display: grid;
  place-items: center;
  min-height: 260px;
  color: rgba(255,255,255,.62);
  text-align: center;
}

.foxyz-products-page .foxyz-products-empty svg {
  color: rgba(46,207,184,.5);
  margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
  .foxyz-products-page .foxyz-products-hero {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.25rem;
    min-height: 230px;
  }
  .foxyz-products-page .foxyz-products-search {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .foxyz-products-page .foxyz-products-alert {
    align-items: flex-start;
    font-size: .82rem;
    padding: .8rem;
    box-shadow: 0 0 0 5px rgba(13, 36, 32, .82), 0 12px 28px rgba(0,0,0,.26);
  }
  .foxyz-products-page .foxyz-products-hero {
    padding-top: .8rem;
  }
  .foxyz-products-page .foxyz-products-waves {
    width: 100%;
    height: 230px;
    bottom: -66px;
  }
}
html{
  scroll-behavior:smooth;
}

#faq,
#showcase{
  scroll-margin-top:120px;
}