
.navbar {
  max-width: 1100px;
  margin: 40px auto;
  padding: 8px 35px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* Logo */
a img {
  width: 90px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

.menu a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  padding: 5px 0;
  transition: .3s ease;
}

.menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #E9A93C;
  transition: .3s ease;
}

.menu a:hover {
  color: #E9A93C;
  transform: translateY(-2px);
}

.menu a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Cart */
.cart {
  font-size: 18px;
  color: #555;
  transition: .3s ease;
}

.cart:hover {
  color: #E9A93C;
  transform: scale(1.15);
}

.account-btn {
  position: relative;
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(135deg,#F5BA5E,#E9A93C);
  color: #5C370C;
  border: none;
  cursor: pointer;
  transition: all .35s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

.account-btn:hover {
  background: linear-gradient(135deg,#5C370C,#7A4A12);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(92,55,12,.45);
}


.acc-div {
  position: absolute;
  top: 105px;
  right: 100px;
  z-index: 999;
  min-width: 230px;
  padding: 18px 16px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  display: none;
  animation: dropdown .35s ease forwards;
}

@keyframes dropdown {
  from {
    opacity: 0;
    transform: translateY(-15px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Logo inside dropdown */
.acc-logo {
  width: 55px;
  display: block;
  margin: 0 auto 10px;
}

/* Greeting text */
.acc-p {
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  color: #5C370C;
  margin-bottom: 14px;
}

.button-nav {
  width: 100%;
  padding: 11px 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(135deg,#F5BA5E,#E9A93C);
  border: none;
  color: #5C370C;
  cursor: pointer;
  transition: all .3s ease;
}

.button-nav:hover {
  background: linear-gradient(135deg,#5C370C,#7A4A12);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(92,55,12,.35);
}

@media (max-width: 705px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .acc-div {
    right: 40px;
    top: 170px;
  }
}

@media (max-width: 600px) {
  .acc-div {
    right: 50%;
    transform: translateX(50%);
    top: 210px;
  }
}
