@font-face {
  font-family: 'Watch';
  src: url('../fonts/Watch-Quinn.ttf') format('opentype');
}

:root {
  --menu-height: 100px;
  --menu-bg: #000;
  --menu-color: #fff;
  --menu-highlight: #2c8249;
  --menu-font: 'Watch', sans-serif;
  --menu-font-size: 20px;
  --menu-padding-h: 20px;
  --burger-size: 30px;
  --logo-height: 60px;
  --drawer-width: 70vw;
  --transition: 0.3s;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  font-family: var(--menu-font);
  font-size: var(--menu-font-size);
}

.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--menu-height);
  background: var(--menu-bg);
  z-index: 1000;
  box-shadow: 0px 5px 60px #00000054, 0 0 20px #ffffff82;
}
.nav-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 var(--menu-padding-h);
  font-family: 'Watch';
}

.nav-menu {
  display: flex;
  flex: 1;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
  font-family: 'Watch';
}
.nav-item {
  flex: 1;
  text-align: center;
  font-family: 'Watch';
}
.nav-item a {
  position: relative;
  color: var(--menu-color);
  text-decoration: none;
  padding: 5px 0;
  transition: color var(--transition);
}
.nav-item a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 4px;
  background: var(--menu-highlight);
  transition: width var(--transition);
}
.nav-item a:hover::after,
.nav-item.active a::after {
  width: 100%;
}

.nav-logo {
  flex: 0;
}
.nav-logo img {
  height: var(--logo-height);
  width: auto;
}

.nav-icon-right {
  display: flex;
  gap: 15px;
}
.menu-icon {
  height: 26px;
  width: auto;
  filter: invert(100%);
  cursor: pointer;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--menu-color);
  font-size: var(--burger-size);
  cursor: pointer;
  z-index: 1100;
}
.mobile-logo {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.mobile-logo img {
  height: var(--logo-height);
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: block;
  }
  .mobile-logo {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: var(--drawer-width);
    height: 100vh;
    background: var(--menu-bg);
    flex-direction: column;
    align-items: center;
    padding-top: var(--menu-height);
    transition: left var(--transition);
    z-index: 1000;
  }
  body.nav-open .nav-menu {
    left: 0;
  }
  .nav-menu li {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    font-size: 30px;
    color: #ccc;
  }
  .nav-menu li.nav-logo {
    display: none;
  }
}

/* === SLIDE OUTILS === */
.tool-slide {
  position: fixed;
  top: var(--menu-height);
  right: -300px;
  width: 300px;
  height: calc(100vh - var(--menu-height));
  background: #000000f7;
  color: #fff;
  padding: 30px;
  z-index: 999;
  transition: right 0.3s ease;
  font-family: var(--menu-font);
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.4);
}
.tool-slide.open {
  right: 0;
}
.tool-slide h3 {
  margin-bottom: 20px;
  font-size: 26px;
  color: var(--menu-highlight);
}
.tool-slide ul {
  list-style: none;
  padding: 0;
}
.tool-slide ul li {
  margin: 15px 0;
}
.tool-slide ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}
.tool-slide .close-tool {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
.btn-tool img {
  height: 26px;
  width: auto;
  filter: invert(100%);
  cursor: pointer;
}
.btn-tool {
	background: transparent;
	border: none;
}
.btn-cart {
	background: transparent;
	border: none;
}