/* [project]/app/components/global/navbar.scss.css [app-client] (css) */
.navbar {
  width: 100%;
  height: 150px;
  background: #fffffff2;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px #0000000d;
  padding: 1rem 0;
  transition: all .3s;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center !important;
}

.navbar.scrolled {
  padding: .5rem 0;
}

.navbar .container-navbar {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  margin: 0 1rem;
}

.navbar .container-navbar .logo {
  width: 33.333%;
}

.navbar .container-navbar .logo img {
  height: 80px;
}

.navbar .container-navbar .search-container {
  flex: 0 40%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.navbar .container-navbar .search-container input {
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.navbar .container-navbar .search-container .search-btn {
  padding: 8px 16px;
  background: none;
  color: #2c3e50;
  border: 1px solid #0000001a;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: all .2s;
}

.navbar .container-navbar .search-container .search-btn:hover {
  background: #00000005;
  border-color: #0003;
}

.navbar .container-navbar .nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  width: 33.333%;
}

.navbar .container-navbar .nav-actions .auth-buttons {
  display: flex;
  gap: 10px;
}

.navbar .container-navbar .nav-actions .auth-buttons button {
  padding: 10px 20px;
  background: none;
  border: 1px solid #0000001a;
  border-radius: 6px;
  font-weight: 500;
  font-size: .9rem;
  color: #2c3e50;
  cursor: pointer;
  transition: all .2s;
}

.navbar .container-navbar .nav-actions .auth-buttons button:hover {
  background: #00000005;
  border-color: #0003;
  transform: translateY(-1px);
}

.navbar .container-navbar .nav-actions .auth-buttons button.login {
  background: none;
  color: #2c3e50;
  border: 1px solid #0000001a;
}

.navbar .container-navbar .nav-actions .auth-buttons button.login:hover {
  background: #00000005;
  border-color: #0003;
}

.navbar .container-navbar .nav-actions .auth-buttons button.register {
  background: none;
  color: #2c3e50;
  border: 1px solid #0000001a;
}

.navbar .container-navbar .nav-actions .auth-buttons button.register:hover {
  background: #00000005;
  border-color: #0003;
}

.navbar .container-navbar .nav-actions .cart {
  position: relative;
  cursor: pointer;
  transition: transform .2s;
}

.navbar .container-navbar .nav-actions .cart:hover {
  transform: translateY(-2px);
}

.navbar .container-navbar .nav-actions .cart i {
  font-size: 1.3rem;
  color: #2c3e50;
}

.navbar .container-navbar .nav-actions .cart .cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #d32f2f;
  color: #fff;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: .8rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.navbar .container-navbar .burger-menu {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #2c3e50;
  padding: 5px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 150px;
  left: 0;
  width: 100%;
  background: #fffffffa;
  backdrop-filter: blur(10px);
  padding: 1rem;
  box-shadow: 0 2px 10px #0000001a;
  transform: translateY(-100%);
  transition: transform .3s ease-in-out;
  z-index: 1000;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu .search-container {
  margin-bottom: 1.5rem;
  display: flex;
}

.mobile-menu .search-container input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #eee;
  border-radius: 8px 0 0 8px;
  font-size: 1rem;
  transition: all .2s;
}

.mobile-menu .search-container input:focus {
  border-color: #2c3e50;
  box-shadow: 0 0 0 2px #2c3e501a;
}

.mobile-menu .search-container .search-btn {
  padding: 12px 20px;
  background: #2c3e50;
  color: #fff;
  border: none;
  border-radius: 0 8px 8px 0;
}

.mobile-menu .search-container .search-btn:hover {
  background: #34495e;
}

.mobile-menu .auth-buttons {
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.5rem;
  padding: 0 .5rem;
}

.mobile-menu .auth-buttons button {
  width: 100%;
  padding: 12px;
  margin-bottom: .5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  transition: all .3s;
}

.mobile-menu .auth-buttons button.login {
  background: #2c3e50;
  color: #fff;
  border: none;
}

.mobile-menu .auth-buttons button.login:hover {
  background: #34495e;
  transform: translateY(-2px);
}

.mobile-menu .auth-buttons button.register {
  background: #fff;
  color: #2c3e50;
  border: 2px solid #2c3e50;
}

.mobile-menu .auth-buttons button.register:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.mobile-menu .mobile-categories {
  padding: 0 .5rem;
}

.mobile-menu .mobile-categories .categories-toggle {
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  background: #f8f9fa;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: #2c3e50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
  transition: all .2s;
}

.mobile-menu .mobile-categories .categories-toggle:hover {
  background: #edf2f7;
}

.mobile-menu .mobile-categories .categories {
  display: none;
  padding: .5rem;
  margin: 0;
  border-radius: 8px;
  background: #f8f9fa;
  transition: all .3s;
  list-style: none;
}

.mobile-menu .mobile-categories .categories.open {
  display: block;
  animation: .3s ease-out slideDown;
}

.mobile-menu .mobile-categories .categories li {
  margin: 0;
}

.mobile-menu .mobile-categories .categories li a {
  display: block;
  padding: 12px 16px;
  color: #2c3e50;
  text-decoration: none;
  border-radius: 6px;
  transition: all .2s;
}

.mobile-menu .mobile-categories .categories li a:hover {
  background: #edf2f7;
  padding-left: 20px;
  color: #2c3e50;
}

.mobile-menu .mobile-nav-actions {
  padding: 1rem .5rem;
  border-bottom: 1px solid #eee;
}

.mobile-menu .mobile-nav-actions .cart-action {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  cursor: pointer;
}

.mobile-menu .mobile-nav-actions .cart-action i {
  font-size: 1.2rem;
  color: #2c3e50;
}

.mobile-menu .mobile-nav-actions .cart-action span {
  color: #2c3e50;
  font-weight: 500;
  font-size: .95rem;
}

.mobile-menu .mobile-nav-actions .cart-action:hover {
  background-color: #edf2f7;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (width <= 1024px) {
  .navbar .container-navbar .burger-menu {
    display: flex;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100vh - 100px);
    overflow-y: auto;
    z-index: 900;
  }

  .navbar {
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
  }

  .navbar .container-navbar {
    padding: 0 1rem;
  }

  .navbar .container-navbar .logo {
    width: auto;
  }

  .navbar .container-navbar .logo img {
    height: 60px;
  }

  body {
    padding-top: 100px;
  }
}

@media (width <= 768px) {
  .navbar {
    height: 80px;
  }

  .navbar .container-navbar .logo img {
    height: 50px;
  }

  .navbar .container-navbar .burger-menu {
    font-size: 1.3rem;
  }

  .mobile-menu {
    top: 80px;
    height: calc(100vh - 80px);
  }

  body {
    padding-top: 80px;
  }
}

.subnav {
  background: none;
  border: none;
  display: flex;
  justify-content: center;
  width: 100%;
}

.subnav .container-navbar {
  max-width: 1400px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.subnav .categories {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 80px;
  margin: 0;
  padding: 0;
}

.subnav .categories li a {
  text-decoration: none;
  color: #2c3e50;
  font-size: .95rem;
  font-weight: 400;
  position: relative;
  transition: color .3s;
}

.subnav .categories li a:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #2c3e50;
  transition: width .2s;
}

.subnav .categories li a:hover {
  color: #2c3e50;
}

.subnav .categories li a:hover:after {
  width: 100%;
}

.profile-section {
  position: relative;
}

.profile-section .profile-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 5px;
  border-radius: 25px;
  transition: all .2s;
}

.profile-section .profile-trigger:hover {
  background: #0000000d;
}

.profile-section .profile-trigger .profile-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-section .profile-trigger .default-profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2c3e50;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1.2rem;
}

.profile-section .profile-trigger .profile-name {
  font-size: .9rem;
  font-weight: 500;
  color: #2c3e50;
}

.profile-section .profile-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px #0000001a;
  min-width: 200px;
  margin-top: 10px;
  padding: 8px 0;
  animation: .2s ease-out fadeIn;
  z-index: 1000;
}

.profile-section .profile-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: #2c3e50;
  text-decoration: none;
  transition: all .2s;
}

.profile-section .profile-dropdown .dropdown-item i {
  font-size: 1.1rem;
}

.profile-section .profile-dropdown .dropdown-item:hover {
  background: #f8f9fa;
}

.profile-section .profile-dropdown .dropdown-item.text-danger:hover {
  background: #fee2e2;
}

.profile-section .profile-dropdown .dropdown-divider {
  margin: 8px 0;
  border-top: 1px solid #e9ecef;
}

.mobile-auth .profile-section {
  padding: 0 .5rem;
}

.mobile-auth .profile-section .profile-trigger {
  padding: 10px;
}

.mobile-auth .profile-section .profile-trigger .profile-name {
  font-size: 1rem;
}

.mobile-auth .profile-section .profile-dropdown {
  position: static;
  margin-top: 5px;
  box-shadow: none;
  border: 1px solid #e9ecef;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-categories .categories {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-out;
}

.mobile-categories .categories.open {
  display: block;
  max-height: 500px;
}

.wrapper, .wrapper-assist, main {
  position: relative;
  z-index: 10;
}

.mobile-profile-section {
  width: 100%;
}

.mobile-profile-section .profile-trigger {
  width: 100%;
  justify-content: flex-start;
  padding: 12px;
  border-radius: 8px;
  background-color: #f8f9fa;
}

.mobile-profile-section .mobile-profile-dropdown {
  position: static;
  width: 100%;
  margin-top: 8px;
  box-shadow: 0 2px 8px #0000001a;
  border-radius: 8px;
  overflow: hidden;
}

.mobile-profile-section .mobile-profile-dropdown .dropdown-item {
  padding: 12px 16px;
  font-size: .95rem;
}

/*# sourceMappingURL=app_components_global_navbar_scss_b52d8e.css.map*/