/* TOP STRIP */
.top-strip {
  height: 28px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 210px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.85em;
  font-size: 22px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 300;
}

/* HEADER */
.header {
  margin-top: 28px;
  background: var(--bg-header);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 48px;
  justify-content: space-between;
}

/* MENU */
.menu a {
  text-decoration: none;
  color: #111;
  margin-right: 26px;
  letter-spacing: 0.14em;
  font-size: 13px;
}

.menu a.active {
  background: #111;
  color: #fff;
  padding: 6px 14px;
}

/* SEARCH */
.search-wrap input {
  width: 340px;
  padding: 14px 30px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.9);
  letter-spacing: 0.16em;
  text-align: center;
}

/* ICON PANEL */
.icons-panel {
  background: var(--bg-panel);
  padding: 12px 22px;
  border-radius: 999px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.icon {
  width: 22px;
  height: 22px;
  opacity: 0.9;
}

/* SVG ICONS */
.icon.heart { background: url("/icons/heart.svg") center/contain no-repeat; }
.icon.bag { background: url("/icons/bag.svg") center/contain no-repeat; }
.icon.user { background: url("/icons/user.svg") center/contain no-repeat; }

.infinity-btn {
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Italiana', serif;
}
