@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
───────────────────────────────────────────────────────────── */
