/*
Theme Name: Anvitra
Theme URI: http://anvitra.vn
Author: Son Vu
Author URI: http://anvitra.vn
Description: Anvitra Website
Version: 1.0
License: GNU General Public License v1 or later
Text Domain: Anvitra
*/

:root{
    --max-site-width: 1200px;
    --page-padding: 20px;
    --font-rob: "Roboto", Sans-serif;
	--color-xanh: #0A8A82;
	--color-vang: #FAB019;
  }
  
  *, *::before, *::after {
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--font-rob);
    line-height: 1.4;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #fff;
    color: #111;
    -webkit-text-size-adjust: 100%;
  }
  
	::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.45);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.35) transparent;
}

  .site-container {
    max-width: var(--max-site-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--page-padding);
    padding-right: var(--page-padding);
    width: 100%;
  }
  
  img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-style: none;
    object-fit: cover;
  }
  
  ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  li {
    margin: 0;
    padding: 0;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }


  /* ===== HEADER ===== */
.site-header {
  background: #fff;
  padding: 20px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo-img {
  width: 140px;
  height: auto;
}
.text-logo {
  font-size: 35px;
  font-weight: 800;
  color: var(--color-xanh);
  margin: 0;
}

/* Title center */
.header-title {
  font-size: 25px;
  color: #0A516B;
  font-weight: 600;
}

/* Hotline */
.hotline-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hotline-icon {
  width: 50px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

.hotline-number {
  color: red;
  font-weight: 700;
  font-size: 16px;
}

.hotline-text small {
  color: #555;
}

/* ===== MENU DƯỚI HEADER ===== */
.header-menu {
  background: var(--color-xanh);
}

.menu-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-menu {
  display: flex;
  gap: 25px;
}

.main-menu > li {
  position: relative;
}

.main-menu > li > a {
  color: #fff;
  font-weight: 600;
  padding: 12px 5px;
  display: block;
  font-size: 15px;
}

/* Hover */
.main-menu > li:hover > a {
  opacity: 0.8;
}

/* Dropdown */
.main-menu li ul {
  position: absolute;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  min-width: 300px;
  display: none;
  z-index: 999;
}

.main-menu li:hover ul {
  display: block;
}

.main-menu li ul li a {
  padding: 10px;
  color: #333;
  display: block;
}

.main-menu li ul li a:hover {
  background: #eee;
}

/* Icon search */
.menu-search {
  display: flex;
  align-items: center;
}

.search-icon {
  width: 22px;
  height: 22px;
  cursor: pointer;
  filter: invert(1);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}


/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-xanh);
  padding-top: 40px;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 40px;
}

.footer-text {
  margin-bottom: 15px;
}

.footer-notify,
.footer-payment {
  max-width: 150px !important;
  margin-top: 10px;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 0;
}

.footer-menu,
.footer-contact {
  list-style: none;
  padding: 0;
}

.tag-name-company {
  color: var(--color-main);
  font-size: 16px;
}

.footer-menu li,
.footer-contact li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-contact .hotline {
  font-weight: 700;
  color: var(--color-main);
}

.footer-bottom {
  background: white;
  color: var(--color-xanh);
  text-align: center;
  padding: 3px;
  margin-top: 40px;
  font-size: 12px;
  font-style: italic;
}

.hotline-mobile {
  display: none;
}

.footer-col--logo {
  display: grid;
}

/* ===== SEARCH SIDEBAR ===== */
.header-search-wrapper {
  position: relative;
}

.search-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 320px;
  background: #fff;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all .3s ease;
  z-index: 999;
}

.header-search-wrapper.active .search-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-search-form {
  display: flex;
}

.search-field {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #ddd;
}

.search-submit {
  padding: 0 12px;
  background: #000;
  color: #fff;
  border: none;
}


.tabs-info-nav li:nth-child(-n+3) {
    			display: none;
			}