/* 卡通风格导航栏、搜索栏、购物篮、后台管理按钮 */

.etsy-navbar {
  background: linear-gradient(90deg,#fbc2eb,#a6c1ee 60%,#fbc2eb);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 24px rgba(180,180,255,0.10);
}

.etsy-logo img {
  border: 4px solid #fbc2eb;
  box-shadow: 0 4px 16px #fbc2eb70;
}

.etsy-search {
  background: #fff8fa;
  border-radius: 32px;
  box-shadow: 0 2px 8px #fbc2eb50;
  display: flex;
  align-items: center;
  padding: 4px 14px 4px 10px;
  border: 2px solid #fbc2eb;
  transition: box-shadow .2s, border-color .2s;
}
.etsy-search:focus-within {
  box-shadow: 0 2px 16px #a6c1ee80;
  border-color: #a6c1ee;
}
.etsy-search-input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 1.1rem;
  border-radius: 24px;
  padding: 6px 12px;
  flex: 1;
  font-family: 'Comic Sans MS','PingFang SC','Arial',sans-serif;
  box-shadow: 0 1px 6px #fbc2eb40;
  color: #b86efb;
  transition: box-shadow .2s, border-color .2s;
}
.etsy-search-input:focus {
  box-shadow: 0 2px 16px #a6c1ee80;
  background: #fffdfb;
}
.etsy-search-input::placeholder {
  color: #e0aaff;
  font-style: italic;
}
.etsy-search input[type="text"] {
  border: none;
  background: transparent;
  outline: none;
  font-size: 1.1rem;
  border-radius: 24px;
  padding: 6px 12px;
  flex: 1;
  font-family: 'Comic Sans MS','PingFang SC','Arial',sans-serif;
}
.etsy-search input[type="text"]::placeholder {
  color: #e0aaff;
  font-style: italic;
}
.etsy-search-btn {
  background: linear-gradient(90deg,#a6c1ee,#fbc2eb);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  box-shadow: 0 2px 8px #a6c1ee40;
  transition: transform .15s;
  cursor: pointer;
}
.etsy-search-btn:hover {
  transform: scale(1.15) rotate(-8deg);
  background: linear-gradient(90deg,#fbc2eb,#a6c1ee);
}
.etsy-search-btn .bi {
  font-size: 1.3rem;
  color: #fff;
}

.etsy-nav-links .etsy-nav-icon {
  font-family: 'Comic Sans MS','PingFang SC','Arial',sans-serif;
  font-weight: 600;
  border-radius: 24px;
  background: linear-gradient(90deg,#fbc2eb 60%,#a6c1ee);
  color: #fff;
  padding: 8px 20px 8px 16px;
  margin-left: 12px;
  box-shadow: 0 2px 8px #a6c1ee44;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: background .2s, transform .15s;
  position: relative;
}
.etsy-nav-links .etsy-nav-icon .bi {
  font-size: 1.4rem;
  margin-right: 8px;
  filter: drop-shadow(0 2px 2px #fff7);
}
.etsy-nav-links .etsy-nav-icon:hover {
  background: linear-gradient(90deg,#a6c1ee,#fbc2eb);
  transform: scale(1.07) rotate(-2deg);
  color: #fff;
}

.etsy-cart-badge {
  background: #ffb6b6;
  color: #fff;
  font-size: 1rem;
  border-radius: 50%;
  padding: 2px 8px;
  position: absolute;
  top: -8px;
  right: -8px;
  box-shadow: 0 2px 6px #ffb6b650;
}

.etsy-admin-icon {
  margin-right: 8px;
  font-size: 1.3rem;
  color: #fff8fa;
  filter: drop-shadow(0 2px 2px #a6c1ee77);
}
