/* ================= HEADER TOP ================= */
.full-header-top {
  background: #c8102e;
  color: #fff;
  font-size: 14px;
}

.inner-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
}

.header-to-contact a {
  color: #fff;
  margin-right: 20px;
  text-decoration: none;
}

.header-to-contact i {
  margin-right: 5px;
}

.right-header-top {
  display: flex;
  align-items: center;
}
.header-top-cart {
  position: relative;
}

.header-top-account a,
.header-top-cart a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
}
.custom_mini_cart {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header-top-cart .cart_count {
  margin-left: 5px;
}

.views_mini_cart {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: 320px;
  background: #fff;
  z-index: 99999;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* ================= HEADER MID ================= */
.full-header-mid {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
.inner-mid .row {
  align-items: center;
}
.header-shortnews {
  font-size: 16px;
  font-weight: 600;
}

.header-logo {
  text-align: center;
}

.header-logo img {
  max-height: 100px;
}
.header-search {
  display: flex;
  justify-content: flex-end;
}

.search-form-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.search-field {
  width: 100%;
  height: 42px;
  padding: 0 45px 0 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
  outline: none;
}

.search-submit {
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border: none;
  background: none;
  color: #c8102e;
  font-size: 18px;
  cursor: pointer;
}

/* BOX GỢI Ý */
.search_ajax {
  position: absolute;
  top: calc(100%);
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  display: none;
  z-index: 9999;
}

/* TITLE */
.title_search_ajax {
  padding: 10px 15px;
  background: #f5f5f5;
  font-weight: 600;
  font-size: 14px;
}

/* ITEM */
.content_search_ajax li {
  list-style: none;
  border-bottom: 1px solid #eee;
}

.content_search_ajax li:last-child {
  border-bottom: none;
}

.content_search_ajax a {
  display: flex;
  gap: 12px;
  padding: 12px 15px;
  text-decoration: none;
  align-items: center;
  transition: background 0.25s;
}

.content_search_ajax a:hover {
  background: #f7f7f7;
}

/* ẢNH */
.content_search_ajax img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

/* TEXT */
.content_search_ajax h4 {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin: 0 0 4px;
  line-height: 1.3;
}

.content_search_ajax .price {
  font-size: 13px;
  color: #c73536;
  font-weight: 600;
}

.content_search_ajax del {
  color: #999;
  margin-left: 6px;
}

/* LINK XEM TẤT CẢ */
.show_kq_seacrh_all {
  display: block;
  padding: 12px;
  text-align: center;
  font-weight: 600;
  border-top: 1px solid #eee;
  color: #000;
  text-decoration: none;
}

.show_kq_seacrh_all:hover {
  background: #f5f5f5;
}

/* ================= MAIN MENU ================= */
.full-header {
  background: #fff;
  border-top: 1px solid #eee;
}

.main-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-menu ul li {
  margin: 0 18px;
}

.main-menu ul li a {
  color: #111;
  font-weight: 600;
  text-transform: uppercase;
  padding: 15px 0;
  display: block;
}

.main-menu ul li.current-menu-item a,
.main-menu ul li a:hover {
  color: #c8102e;
}

/* ================= STICKY HEADER ================= */
.full-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* ================= MINI CART ================= */
.views_mini_cart {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  width: 300px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 999;
}
.woocommerce-breadcrumb,
.woocommerce-result-count{
  display: none;
}
@media screen and (max-width: 900px) {
  .main-menu{
    position: absolute;
    top: 25px;
    left: 15px;
  }
  .logo_closemenu{
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .logo_closemenu button{
    background-color: transparent;
    border: none;
    outline: none;
    margin-right: 15px;
  }
  .logo_closemenu button i{
    color: #000;
    font-size: 18px;
    font-weight: bold;
  }
  .logo_mobile{
    flex: 1;
  }
  .logo_mobile img{
    display: block;
    height: 80px;
    margin: auto;
  }

}