/* Orvelia — ortak header (ana sayfa + içerik) */

.ov-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.ov-header-wrap > * {
  pointer-events: auto;
}

.ov-main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 104px;
  transform-origin: 50% 0;
}

.ov-header-nav {
  flex: 1;
  display: flex;
  gap: 1.7rem;
  align-items: center;
}

.ov-header-nav a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
}

.ov-main-logo {
  height: 104px;
  width: auto;
}

.ov-header-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.ov-search-bar {
  position: relative;
  width: 100%;
  max-width: 260px;
}

.ov-search-input {
  width: 100%;
  padding: 0.5rem 1rem 0.5rem 2.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f1f1f1;
  border-radius: 2px;
}

.ov-search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  border: 0;
  padding: 0;
  line-height: 1;
  cursor: pointer;
}

.ov-header-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.85rem;
}

.ov-header-link--cart {
  position: relative;
  display: flex;
  align-items: center;
}

.ov-cart-icon {
  width: 22px;
  height: 22px;
}

.ov-cart-count {
  position: absolute;
  top: -4px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  background: #d4af37;
  border-radius: 50%;
  color: #111;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

