.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

.glass-nav {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.text-glow {
  text-shadow: 0 0 15px rgba(255, 121, 11, 0.3);
}

.nav-link-hover::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #ff790b;
  transition: width 0.3s ease;
}

.nav-link-hover:hover::after {
  width: 100%;
}

.product-card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(62, 51, 43, 0.1);
}
