/* --- RESET --- */
body{
  background: #fafafa;
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
a { text-decoration: none; color: inherit; }
/*Menu*/
.headers{
        /* position: fixed; */
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
    }
    .headers .fa-magnifying-glass{
    color: #CF102Dff;
    line-height: 80px;
    font-size: 30px;
    position: relative;
    left: 30px;
    }
    .headers #nav-v2 .left-sidebar>ul li label:after {
        content: "\2192"; /* Mã Unicode cho mũi tên chỉ sang phải */
        font-family: "icomoon" !important;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 12px;
        color: #fff;
        position: absolute;
        height: 70px;
        line-height: 70px;
        right: 32px;
        opacity: 1;
        transform: translate(0, 0); 
        transition: all .3s ease;
    }
    *, ::after, ::before {
        box-sizing: border-box;
    }
    .headers .menu-right>.select-city {
        font-family: "Nunito", Sans-Serif;
        font-size: 14px;
        font-weight: 700;
        color: #fff;
        line-height: 46px;
        height: 46px;
        background: #CF102Dff;
        border-radius: 4px;
        padding: 0 10px;
        display: inline-block;
        position: relative;
        top: 17px;
        cursor: pointer;
        transition: all .2s ease;
    }
    .headers .menu-right {
        position: absolute;
        right: 9%;
        top: 0;
    }
    @media screen and (max-width: 740px) {
        .headers .menu-right {
            display: none;
        }
        .pt-header{
            margin-bottom: 5rem!important;
        }
        /* .header-logo a img{width: 45% !important;} */
        
    }

/* --- HEADER --- */
header {
  background-color: #e60000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  position: relative;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}

.search-bar {
  flex: 1;
  max-width: 500px;
  margin: 0 30px;
  position: relative;
}

.search-bar input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  border-radius: 25px;
  border: none;
  outline: none;
}

.search-bar i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #e60000;
  font-size: 18px;
}

.user-area {
  display: flex;
  align-items: center;
  gap: 20px;
}

.user-area i {
  font-size: 20px;
  cursor: pointer;
}

/* --- MAIN MENU --- */
nav {
  background: #e60000;
  display: flex;
  justify-content: center;
}

.menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.menu > li {
  position: relative;
  padding: 15px 0;
  cursor: pointer;
  color: #fff;
  font-weight: 600;
}

.menu > li:hover {
  color: #ffe600;
}

/* --- DROPDOWN MEGA MENU --- */
.mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #fff;
  color: #000;
  display: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  z-index: 999;
}

.menu > li:hover .mega-menu {
  display: flex;
}

.mega-left {
  width: 20%;
  border-right: 1px solid #eee;
  background: #fffaf8;
}

.mega-left ul {
  list-style: none;
}

.mega-left li {
  padding: 12px 15px;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
}

.mega-left li:hover {
  background: #ffe5e5;
  color: #e60000;
}

.mega-center {
  width: 35%;
  padding: 20px;
}

.mega-center h4 {
  color: #e60000;
  margin-bottom: 10px;
  font-weight: bold;
}

.mega-right {
  width: 45%;
  padding: 20px;
}

.product-card {
  display: inline-block;
  width: 48%;
  margin: 5px 1%;
  border: 2px solid #f5f5f5;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

.product-card img {
  width: 100%;
  border-radius: 8px;
}

.product-card .price {
  color: #e60000;
  font-weight: bold;
}

/* --- MOBILE --- */
@media (max-width: 900px) {
  .menu {
    display: none;
    flex-direction: column;
    background: #e60000;
  }

  .menu.active { display: flex; }

  .menu-toggle {
    display: block;
    font-size: 25px;
    cursor: pointer;
  }

  .search-bar { display: none; }
}

.menu-toggle { display: none; color: #fff; }

.box_social_top a {
    display: flex
;
    width: 28px;
    height: 28px;
    border-radius: 15px;
    background: #CF102Dff;
    align-items: center;
    justify-content: space-evenly;
    color: #fff;
}
.dropdown {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    background-color: #fff;
}

.dropdown-trigger img {
    width: 30px;
}

.dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
    /* min-width: 150px; */
}

.dropdown-list.show {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f0f0f0;
}

.dropdown-item img {
    width: 30px;
}
@media only screen and (max-width: 991px) {
    .banner_dt {
        display: none;
    }
}
.v-banner img{
    aspect-ratio: 16 / 6;
    object-fit: cover;
}
/* .v-banner{
  margin-top: 90px !important;
} */
/*Banner*/
* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Inter', sans-serif; }

.slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 15px;
}

.slides {
  display: flex;
  transition: transform 0.7s ease;
}

.slide {
  min-width: 100%;
  transition: opacity 0.5s ease;
}

.slide img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

/* --- BUTTONS --- */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 2px solid red;
  color: red;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.prev:hover, .next:hover {
  background: red;
  color: #fff;
}

.prev { left: 10px; }
.next { right: 10px; }

/* --- DOTS --- */
.dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.4s ease;
}

.active {
  background-color: red;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .prev, .next { width: 28px; height: 28px; font-size: 16px; }
}