  #v1{background-color: #7a7272;  
  }
  .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    height: 90px;
  }

  /* Logo */
  .v1_img_dmx {
    height: 70px;
    width: auto;
    border-radius: 4px;
  }

  /* Thanh tìm kiếm */
  .search-box {
    position: relative;
    width: 40%;
  }

  .search-box input[type="text"] {
    width: 100%;
    height: 36px;
    border-radius: 20px;
    border: none;
    padding: 0 40px 0 15px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
  }

  .search-box input[type="text"]:focus {
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
  }

  .search-box a {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #5c4033;
    background: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
  }

  .search-box a:hover {
    background: #d0b49f;
    color: #fff;
  }

  /* Menu phụ bên phải */


  .v1_tab_menu ul {
    list-style: none;
  }

  .v1_tab_menu li {
    display: inline-block;
    margin-left: 20px;
  }

  .v1_tab_menu li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
  }

  .v1_tab_menu li a:hover {
    color: #ffd28a;
  }

  .v1_tab_menu i {
    margin-right: 6px;
    color: #ffd28a;
  }

          .v1_map {
                  font-size: 21px;
                  color: red;
              }
              
          .fa-shopping-cart {
              font-size: 21px;
          }
          .fa-phone-square {
              font-size: 21px;
          }
   
    


      
          .subnav {
              
              overflow: hidden;
                  
          }

          .subnav .subnavbtn {
                  font-size: 16px;
                  border: none;
                  outline: none;
                  color: white;
                  padding: 14px 27px;
                  background-color: inherit;
                  font-family: inherit;
                  margin: 0;
              }

          .navbar {
              overflow: hidden;
              background-color: #8f8888;
              display: flex;
              text-align: center;
              justify-content: space-around;
              z-index: 10;
              
          }

          .navbar a {
                
                  font-size: 16px;
                  color: white;
                  text-align: center;
                  padding: 16px 27px;
                  text-decoration: none;
              }
          .navbar a:hover, .subnav:hover .subnavbtn {
                  background-color: rgb(120, 111, 111);
                      }
          .subnav-content {
              display: none ;
              position: absolute;
              background-color: #8f8888;
              min-width: 200px; /* cố định chiều rộng để đều nhau */
              border-radius: 4px;
              box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
              z-index: 999;
          }

          .subnav-content a {
              display: block;
              padding: 12px 20px;
              color: white;
              text-align: center; /* căn giữa text */
          }


                  .subnav-content a:hover {
                      background-color: #eee;
                      color: black;
                  
                  }

          .subnav:hover .subnav-content {
              display: block;
          }






  .footer {
    background: #1f1f1f;
    color: #ddd;
    padding: 60px 10% 20px;
    font-family: 'Segoe UI', sans-serif;
  }

  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
  }

  .footer-col h2,
  .footer-col h3 {
    color: #fff;
    margin-bottom: 20px;
  }

  .footer-logo {
    font-size: 28px;
    letter-spacing: 2px;
    color: #c89b6d;
  }

  .footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .social-links a {
    display: inline-block;
    margin-right: 13px;
    color: #c89b6d;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
  }
  .social-links img{
      max-width: 35px;
      width: 100%;
      object-fit: cover;
  }
  .social-links a:hover {
    color: #fff;
    transform: translateY(-3px);
  }

    .QR {
    width: 100%;
    max-width: 92px;
    margin: 11px 0 0 0px;
  }
  
  .footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 13px;
    color: #aaa;
  }


  /* ===== MOBILE HEADER ===== */

  /* mobile */


.mobile{
  display: none;
}
  @media (max-width: 768px) {
.top-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
    padding: 0 15px;
    width: 100%;
}


#v2 .navbar{
    display:none;
}

.mobile-menu .navbar{
    display:flex;
    flex-direction:column;
}   

  .mobile{

      font-size:28px;
      display: block;
      cursor: pointer;
  }
  .menu{
      flex-direction: column;
      height: auto;
      gap: 0px;
      padding: 11px;
  }

  /* search */
  .search-box{
      width:90%;
  }

  .v1_tab_menu{
    width: 100%;
  }
  /* menu phải */
  .v1_tab_menu ul{
      display:flex;
      flex-wrap:wrap;
      justify-content:center;
      gap: 10px;
     
  }
  .v1_tab_menu li{
      margin:auto;
      font-size:13px;
      
  }

/* LOGO */

.v1_img_dmx{
  height: 75px;
  width: auto;
  object-fit: contain;
 
}

/* SEARCH */

.search-box{
    width:90%;
    margin:10px auto;
    display: none;
}

  }

/* ===== MOBILE MENU OVERLAY ===== */

.mobile-menu-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    z-index:9999;
    opacity:0;
    visibility:hidden;
    transition:0.35s;
}

/* khi mở */
.mobile-menu-overlay.active{
    opacity:1;
    visibility:visible;
}

/* ===== MENU PANEL ===== */

.mobile-menu{
    position:absolute;
    top:0;
    right:-320px;
    width:300px;
    height:100%;
    background:#ffffff;
    padding:30px 0;
    transition:0.35s;

    box-shadow:-8px 0 25px rgba(0,0,0,0.25);
}

/* slide ra */
.mobile-menu-overlay.active .mobile-menu{
    right:0;
}

/* ===== CLOSE BUTTON ===== */

.close-menu{
    position:absolute;
    top:9px;
    right:13px;
    font-size:26px;
    cursor:pointer;
    color:#333;
}

/* ===== NAVBAR ===== */

.mobile-menu .navbar{
    display:flex;
    flex-direction:column;
    margin-top:12px;
    background-color:  #dfc6b3;
}

/* item */

.mobile-menu .navbar a{
    padding:16px 25px;
    font-size:17px;
    text-decoration:none;
    color:#333;
    border-bottom:1px solid #eee;
    transition:0.25s;
}

/* hover */

.mobile-menu .navbar a:hover{
    background:#f4efe9;
    color:#c89b6d;
    padding-left:35px;
}

.mobile-menu{
background-color: #7a7272;
    background: linear-gradient(182.34deg, #FAE594 -30.67%, #f9dededd 22.5%);
}
.mobile-menu a{
font-family: 'Beau Sweet Sans';
font-weight: 700;
}
/* ===== ACTIVE EFFECT ===== */

.mobile-menu .navbar a:active{
    background:#e8e2db;
}
