@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../webfonts/fa-solid-900.woff2") format("woff2"),
       url("../webfonts/fa-solid-900.ttf") format("truetype");
}


/* ============================
   KAMPANYA BANNER
============================ */
.campaign-bar {
  background: #f8f1d6;
  padding: 10px 0;
  font-family: 'Segoe UI', sans-serif;
  font-size: 15px;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
}

.campaign-bar .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.campaign-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.campaign-left strong {
  font-size: 18px;
  font-weight: 600;
  margin-left: 5px;
}

.btn-start {
  background: #000;
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.3s ease;
}

.btn-start:hover {
  background: #333;
}

.countdown {
  display: flex;
  gap: 14px;
  font-weight: bold;
}

.countdown div {
  background: #fff;
  border-radius: 8px;
  padding: 4px 8px;
  text-align: center;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
  min-width: 40px;
}

.countdown span {
  display: block;
  font-size: 18px;
  color: #000;
}

.countdown small {
  font-size: 11px;
  color: #888;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .campaign-bar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .campaign-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .countdown {
    justify-content: flex-start;
  }
}
/* ============================
   TOP BAR
============================ */
.top-bar {
  background: #f4f4f4;
  font-size: 13px;
  color: #333;
  padding: 6px 0;
  border-bottom: 1px solid #ddd;
}

.top-bar .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-left {
  font-weight: 500;
}

.top-right a {
  color: #333;
  text-decoration: none;
  margin-left: 12px;
  font-weight: 500;
}

.top-right a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
/* ============================
   ANA HEADER
============================ */
.main-header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.logo img {
  max-height: 50px;
}

.search-box {
  flex: 1;
  max-width: 500px;
}

.search-box input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-icons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: #333;
}

.header-icons i {
  font-size: 20px;
  margin-bottom: 4px;
}

.cart-count {
  background: orange;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 50%;
  margin-left: 4px;
}

.main-menu {
  background: #fff;
  border-top: 1px solid #eee;
}

.main-menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 10px 0;
  margin: 0;
  gap: 20px;
  flex-wrap: wrap;
}

.main-menu ul li a {
  color: #333;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.main-menu ul li a.highlighted {
  color: red;
}

.main-menu ul li a:hover {
  text-decoration: underline;
}
.header-icons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: #333;
  position: relative;
  text-align: center;
}

.header-icons a::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  display: block;
  font-size: 20px;
  margin-bottom: 4px;
}

/* İkonların unicode içerikleri */
.icon-user::before {
  content: "\f007"; /* kullanıcı */
}

.icon-heart::before {
  content: "\f004"; /* kalp */
}

.icon-cart::before {
  content: "\f07a"; /* alışveriş sepeti */
}
.search-box {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.search-box input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.search-results-box {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  z-index: 999;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  display: none;
  border-radius: 0 0 6px 6px;
}

.search-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.2s;
}

.search-item:hover {
  background: #f9f9f9;
}

.search-item.outofstock {
  opacity: 0.5;
}

.search-thumb img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}

.search-info {
  display: flex;
  flex-direction: column;
}

.search-title strong {
  font-weight: 600;
}

.search-price {
  font-size: 13px;
  color: #555;
}

.search-type {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}
.search-view-all {
  text-align: center;
  padding: 10px;
  background: #f7f7f7;
  border-top: 1px solid #ddd;
}

.search-view-all a {
  color: #444;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
}

.search-view-all a:hover {
  text-decoration: underline;
}
.search-price ins {
  text-decoration: none;
}
.search-price del {
  color: #999;
  font-size: 13px;
  margin-right: 6px;
}

.search-price ins {
  color: #e60023;
  font-weight: bold;
  font-size: 15px;
}
/* Alt menü görünmesin (default) */
/* Üst Menü */
.woventico-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* Menü Öğeleri */
/* Üst Menü */
.woventico-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* Menü Öğeleri */
.woventico-menu li {
  position: relative;
}

.woventico-menu li a {
  color: #333;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  padding: 8px 12px;
  display: inline-block;
  transition: all 0.2s ease;
}

.woventico-menu li a:hover,
.woventico-menu li.current-menu-item > a {
  color: #e60023;
  text-decoration: underline;
}

/* ALT MENÜ (dropdown) */
.woventico-menu li ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  min-width: 200px;
  z-index: 999;
  padding: 6px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* ALT MENÜ - Aktifleştir */
.woventico-menu li:hover > ul.sub-menu {
  display: block;
}

/* ALT MENÜ Öğeleri */
.woventico-menu li ul.sub-menu li {
  display: block;
}

.woventico-menu li ul.sub-menu a {
  padding: 10px 16px;
  display: block;
  font-size: 13px;
  color: #333;
  white-space: nowrap;
  font-weight: 400;
}

.woventico-menu li ul.sub-menu a:hover {
  background-color: #f8f8f8;
  color: #e60023;
}



.woocommerce-mini-cart__empty-message { display: none !important; }

/* ─────────────────────────────────────────────────────────────
   Popup görünümü için mini-cart dropdown stilleri
───────────────────────────────────────────────────────────── */

/* === AUTH MODAL === */
/* === AUTH MODAL === */
.wov-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.wov-modal-overlay.open {
  display: flex;
}

.wov-modal {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  width: 400px;
  max-width: 90%;
  position: relative;
}

.wov-close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Sekmeler */
.wov-tabs {
  display: flex;
  justify-content: space-around;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
}
.wov-tab {
  flex: 1;
  padding: 10px;
  border: none;
  background: none;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  color: #666;
}
.wov-tab.active {
  border-bottom: 3px solid #f60;
  color: #000;
}

/* Sekme İçeriği */
.wov-tab-content {
  display: none;
}
.wov-tab-content.active {
  display: block;
}

/* Form inputları */
#authModal input[type="text"],
#authModal input[type="email"],
#authModal input[type="password"],
#authModal input[type="tel"],
#authModal input[type="date"] {
  width: 100% !important;
  padding: 10px !important;
  margin: 6px 0 !important;
  border: 1px solid #ccc !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  box-sizing: border-box;
  background: #fff !important;
  color: #333 !important;
}

/* Buton */
#authModal button.wov-btn {
  width: 100%;
  background: #f60;
  color: white;
  padding: 12px;
  font-weight: bold;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  margin-top: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}
#authModal button.wov-btn:hover {
  background: #d94f00;
}

/* Checkbox ve etiketler */
#authModal label {
  font-size: 13px;
  display: block;
  margin-top: 10px;
  line-height: 1.5;
}
#authModal input[type="checkbox"] {
  margin-right: 6px;
  vertical-align: middle;
}

/* Sosyal giriş */
.wov-social-login {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}
.wov-social-login button {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
  font-size: 13px;
  border-radius: 4px;
}
.wov-social-login button:hover {
  background: #f3f3f3;
}
.wov-lost-password {
  margin-top: 10px;
  text-align: right;
}
.wov-lost-password a {
  font-size: 13px;
  color: #555;
  text-decoration: underline;
}
.wov-lost-password a:hover {
  color: #f60;
}

/* ============================
   AYRILMIS MASAUSTU / MOBIL HEADER
============================ */
:root {
  --wov-container: 1200px;
  --wov-gap: 16px;
  --wov-header-height-mobile: 64px;
  --wov-bottom-nav-height: 72px;
  --wov-border: #e9e9e9;
  --wov-text: #202020;
  --wov-accent: #111111;
  --wov-soft: #f7f7f7;
}

.container {
  width: min(var(--wov-container), calc(100% - 32px));
  margin-inline: auto;
}

.site-name-fallback {
  font-weight: 700;
  font-size: 20px;
  color: var(--wov-text);
}

.wov-site-header {
  position: relative;
  z-index: 40;
}

.desktop-header-wrap,
.mobile-header-wrap {
  width: 100%;
}

.desktop-header-wrap {
  display: block;
}

.mobile-header-wrap {
  display: none;
}

.desktop-search-area {
  flex: 1;
  min-width: 280px;
  max-width: 560px;
}

.header-inner {
  flex-wrap: nowrap;
}

.header-icons {
  flex-shrink: 0;
}

.mini-cart-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 340px;
  background: #fff;
  border: 1px solid var(--wov-border);
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.09);
  padding: 14px;
  z-index: 70;
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--wov-header-height-mobile);
  padding: 10px 16px;
  background: #fff;
  border-bottom: 1px solid var(--wov-border);
  position: sticky;
  top: 0;
  z-index: 60;
}

.mobile-logo {
  flex: 1;
  display: flex;
  justify-content: center;
}

.mobile-logo img,
.logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.mobile-logo img {
  max-height: 40px;
}

.mobile-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--wov-border);
  border-radius: 12px;
  background: #fff;
  color: var(--wov-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none;
}

.mobile-icon-btn i {
  font-size: 18px;
}

.mobile-cart-link {
  position: relative;
  text-decoration: none;
}

.mobile-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
}

.mobile-search-box {
  padding: 0 16px 12px;
  background: #fff;
  border-bottom: 1px solid var(--wov-border);
}

.mobile-search-form input,
.mobile-drawer-search input {
  width: 100%;
  height: 46px;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  padding: 0 14px;
  font-size: 15px;
  background: #fafafa;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 69;
}

.mobile-menu-drawer {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(88vw, 360px);
  background: #fff;
  transform: translateX(-100%);
  transition: transform .28s ease;
  z-index: 70;
  padding: 18px 16px calc(20px + env(safe-area-inset-bottom));
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

body.mobile-menu-open {
  overflow: hidden;
}

body.mobile-menu-open .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}

body.mobile-menu-open .mobile-menu-drawer {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.mobile-drawer-header strong {
  font-size: 19px;
}

.mobile-drawer-search {
  margin-bottom: 18px;
}

.mobile-menu-list,
.mobile-menu-list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-list > li {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-list > li > a,
.mobile-menu-list .sub-menu a {
  display: block;
  padding: 14px 0;
  text-decoration: none;
  color: var(--wov-text);
  font-weight: 600;
}

.mobile-menu-list .sub-menu {
  padding: 0 0 10px 12px;
}

.mobile-menu-list .sub-menu a {
  padding: 10px 0;
  font-weight: 500;
  color: #555;
}

.mobile-quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.mobile-quick-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--wov-soft);
  color: var(--wov-text);
  text-decoration: none;
  font-weight: 600;
}

.mobile-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  height: calc(var(--wov-bottom-nav-height) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(255,255,255,.98);
  border-top: 1px solid var(--wov-border);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.08);
  z-index: 65;
}

.mobile-bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--wov-text);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
}

.mobile-bottom-nav .nav-item i {
  font-size: 18px;
}

@media (min-width: 993px) {
  .mobile-bottom-nav,
  .mobile-menu-drawer,
  .mobile-menu-overlay,
  .mobile-search-box,
  .mobile-header-wrap {
    display: none !important;
  }
}

@media (max-width: 992px) {
  .campaign-bar,
  .top-bar,
  .desktop-header-wrap {
    display: none !important;
  }

  .mobile-header-wrap {
    display: block;
  }

  body {
    padding-bottom: calc(var(--wov-bottom-nav-height) + env(safe-area-inset-bottom) + 10px);
  }
}

@media (max-width: 768px) {
  .container {
    width: min(var(--wov-container), calc(100% - 24px));
  }

  .mobile-header {
    padding-inline: 12px;
  }

  .mobile-search-box {
    padding-inline: 12px;
  }
}
