/* Header */
/* Header */
.header {
    position: fixed;
    width: 100%;
    z-index: 999;
    box-shadow: 2px 1px 3px 2px rgba(0, 0, 0, 0.356);
    border-top: 1px var(--color-main) solid;
}

.header .hd-voucher {
    background: var(--color-main);
    color: #fff;
    padding: 3px;
    justify-content: space-between;
    display: flex;
}

.header .hd-voucher .hd-voucher-content {
    font-size: 15px;
    margin: auto;
}

.header .hd-voucher .hd-voucher-icon {
    color: black;
    font-size: 18px;
}

.header .hd-voucher .hd-voucher-icon:hover {
    cursor: pointer;
    color: #fff;
    transition: all 0.3s;
}

 .header .container {
    max-width: 1120px;
    margin-inline: 1.5rem;
  }
  
  /*=============== HEADER ===============*/
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* font-family: var(--body-font); */
    background-color: #fff;
    box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
    z-index: var(--z-fixed);
    border-top: #43766c78 1px solid;
  }
  
  /*=============== NAV ===============*/
  .header .nav {
    height: var(--header-height);
  }
  
  .header .nav__logo, 
  .nav__burger, 
  .nav__close {
    color: #43766C;
  }
  
  .header .nav__data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header .nav__logo img {
    height: 35px;
    width: auto;
    margin-left: -25px;
    /* Color highlighting when pressed on mobile devices */
    /*-webkit-tap-highlight-color: transparent;*/
  }
  
  
  .header .nav__toggle {
    position: relative;
    width: 32px;
    height: 32px;
  }
  
  .header .nav__burger {
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 1.5rem;
    cursor: pointer;
    transition: opacity .1s, transform .4s;
  }
  .header .nav__close {
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 1.5rem;
    cursor: pointer;
    transition: opacity .1s, transform .4s;
  }
  
  .header .nav__close {
    opacity: 0;
  }
  
  /* Navigation for mobile devices */
  @media screen and (max-width: 1118px) {
    .header .nav__menu {
    background: #fff;
      position: absolute;
      left: 0;
      top: 2.5rem;
      width: 100%;
      height: calc(100vh - 3.5rem);
      overflow: auto;
      pointer-events: none;
      opacity: 0;
      transition: top .4s, opacity .3s;
    }
    .header .nav__menu::-webkit-scrollbar {
      width: 0;
    }
    .header .nav__list {
      background-color: var(--black-color);
      padding-top: 1rem;
    }
  }
  
  .header .nav__link {
    font-size: 20px;
    color: #000;
    font-weight: var(--font-semi-bold);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
  }
  
  .header .nav__link:hover {
    color: #43766C;
  }
  
  /* Show menu */
  .header .show-menu {
    opacity: 1;
    top: 3.5rem;
    pointer-events: initial;
  }
  
  /* Show icon */
  .header .show-icon .nav__burger {
    opacity: 0;
    transform: rotate(90deg);
    color: #43766C;
  }
  .header .show-icon .nav__close {
    opacity: 1;
    transform: rotate(90deg);
    color: #43766C;
  }
  
  /*=============== DROPDOWN ===============*/
  .header .dropdown__item {
    cursor: pointer;
  }
  
  .header .dropdown__arrow {
    font-size: 1.25rem;
    font-weight: initial;
    transition: transform .4s;
  }
  
  .header .dropdown__link, 
  .dropdown__sublink {
    padding: 10px;
    width: 220px;
    color: #fff;
    background-color: #43766C;
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    font-weight: var(--font-semi-bold);
    transition: background-color .3s;
  }
  
  .header .dropdown__link i, 
  .dropdown__sublink i {
    font-size: 1.25rem;
    font-weight: initial;
  }
  
  .header .dropdown__link:hover, 
  .dropdown__sublink:hover {
    background-color: #a7bbb7;
  }
  
  .header .dropdown__menu, 
  .dropdown__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out;
  }
  
  /* Show dropdown menu & submenu */
  .header .dropdown__item:hover .dropdown__menu, 
  .dropdown__subitem:hover > .dropdown__submenu {
    max-height: 1000px;
    transition: max-height .4s ease-in;
  }
  
  /* Rotate dropdown icon */
  .header .dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
  }
  
  /*=============== BREAKPOINTS ===============*/
  /* For small devices */
  @media screen and (max-width: 575.99px) {
    .header .container {
      margin-inline: 1rem;
    }
  
    .header .nav__link {
      padding-inline: 1rem;
    }

    .header .hd-voucher {
        display: none;
    }
  }
  
  /* For large devices */
  @media screen and (min-width: 1118px) {
    .header .container {
      margin-inline: auto;
    }
  
    .header .nav {
      height: calc(var(--header-height) + 2rem);
      display: flex;
      justify-content: space-between;
    }
    .header .nav__toggle {
      display: none;
    }
    .header .nav__list {
      height: 100%;
      display: flex;
      column-gap: 3rem;
    }
    .header .nav__link {
      height: 100%;
      padding: 0;
      justify-content: initial;
      column-gap: .25rem;
    }
    .header .nav__link:hover {
      background-color: transparent;
    }
  
    .header .dropdown__item, 
    .dropdown__subitem {
      position: relative;
    }
  
    .header .dropdown__menu, 
    .dropdown__submenu {
      max-height: initial;
      overflow: initial;
      position: absolute;
      left: 0;
      top: 6rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s, top .3s;
    }
  
    .header .dropdown__link, 
    .dropdown__sublink {
      padding-inline: 1rem 3.5rem;
    }
  
    .header .dropdown__subitem .dropdown__link {
      padding-inline: 1rem;
    }
  
    .header .dropdown__submenu {
      position: absolute;
      left: 100%;
      top: .5rem;
    }
  
    /* Show dropdown menu */
    .header .dropdown__item:hover .dropdown__menu {
      opacity: 1;
      top: 5.5rem;
      pointer-events: initial;
      transition: top .3s;
    }
  
    /* Show dropdown submenu */
    .header .dropdown__subitem:hover > .dropdown__submenu {
      opacity: 1;
      top: 0;
      pointer-events: initial;
      transition: top .3s;
    }
  }
/* End Header */

/* section 1 */

.anhsp {
    width: 400px;
    border-radius: 10px;
    margin: 220px auto 0 auto;
    display: flex;
}

/* end section 1 */

/* section 2 */

.right {
    max-width: 500px;
    margin: 0 auto;
}

.name-product {
    margin-top: 220px;
    font-size: 50px;
    font-weight: 500;
}

.star {
    display: flex;

}

.five-star {
    width: 100px;
    height: 20px;
}

.title {
    font-weight: 600;
}

.list {
    text-align: justify;
}

/* them vao gio hang */
.add-to-cart {
    display: flex;
    border: 1px solid black;
    border-radius: 20px;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
    max-width: 500px;
}

.input {
    width: 50px;
    margin-left: 10px;
    border-radius: 7px;
    padding: 5px;
}

.add {
    border-radius: 15px;
    padding: 20px;
    
}

.add .button-click{
  margin: auto;
}

.add:hover {
    background-color: var(--bg-1);
}

/* end */
/* end section 2 */

/* section 3 */
.comment {
    margin-top: 50px;
    border: 1px solid black;
    border-radius: 10px;
    margin-bottom: 50px;
}

.comment .title {
    color: var(--color-main);
    margin-left: 20px;
    margin-top: 15px;
    font-size: 23px;
}

.input-comment {
    display: block;
    width: 97%;
    margin: 0 auto;
    padding: 10px;
    border-radius: 7px;
}

.comment-item {
    margin: 20px;
}

.comment-name {
    display: flex;
    align-items: center;
    margin-top: 10px;
    justify-content: space-between;
}

.name-comment {
    display: flex;
    align-items: center;
    justify-content: center;
}

.avt {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}


.report {
    display: block;
    justify-content: center;
    align-items: center;
}

.report img {
    height: 15px;
    margin-right: 10px;
}

.report button {
    display: none;
    position: absolute;
    width: 80px;
    border-radius: 5px;
}

.like {
    display: flex;
    margin-left: 30px;
}

.like-icon {
    height: 20px;
}

.like-like {
    margin-left: 5px;
    font-size: small;
    color: rgba(0, 0, 255, 0.635);
}

.like-cmt {
    margin-left: 15px;
    font-size: small;
    color: rgba(0, 0, 255, 0.635);
}

/* end section 3 */

hr {
    width: 90%;
    margin: 0 auto !important;
}

/* section 4 */

.sp-khac {
    color: var(--color-main);
    margin-left: 100px;
    margin-top: 20px;
    font-size: 25px;
}

.product {
    width: 280px;
    display: flex;
    flex-direction: column;
}

.box {
    transition: all 0.5s;
    margin: 45px auto;
    display: flex;
    flex-direction: column;
}

.box:hover {
    margin-top: -10px;
}

.box .nd {
    width: 100%;
    width: 280px;
}

.box img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    width: 280px;
}

.inner-title {
    font-size: 25px;
    font-weight: 400;
}

.inner-desc {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 5px;
    margin-top: 10px;
}

.nd {
    text-align: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 0 5px 0;
    height: 100px;
    columns: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-name {
    font-size: 25px;
    color: var(--color-text-1);
}

.so-sp {
    font-size: 15px;
    color: #00000071;
}

/* slidershow */
.todung {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.slider {
    width: 900px;
    overflow: hidden;
    display: flex;
    padding: 30px 0px;
    position: relative;
}

.slider .productt {
    width: 280px;
    object-fit: cover;
    margin-right: 20px;
    margin-left: 5px;
}

.slider .productt img {
    width: 280px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    transform: all 0.5s;
}

.slider .productt .information {
    text-align: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 0 5px 0;
    height: 100px;
    columns: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slider .productt .information .title {
    font-size: 25px;
    color: var(--color-text-1);
}


.slider .productt .information .price {
    font-size: 15px;
    color: #00000071;
}

.slider .arrow {
    width: 1690px;
    position: absolute;
    justify-content: space-between;
    display: flex;
    top: 40%;
}

.slider .arrow button {
    font-size: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid gray;
    background-color: white;
}

/* end slidershow */

/* end section 4 */

/* section 5 */
.chinh-sach {
    margin-top: 70px;
    background-color: var(--bg-1);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 50px;
}

.tieu-De {
    font-size: 30px;
    font-weight: bold;
}

/* end section 5 */

/* section 6 */

.block {
    margin: 80px auto 0 auto;
    text-align: center;
}

/* end section 6 */
/* Footer */
.footer {
    position: relative;
    top: 50px;
    background: var(--color-main);
    padding: 10px;
}

.footer .footer-box-1 {
    margin-left: 100px;
}

.footer .footer-box-1 .footer-box-1-img {
    background: #fff;
    padding: 10px;
    display: inline-block;
    margin-top: 30px;
}

.footer .footer-box-1 .footer-box-1-img img {
    width: auto;
    height: 30px;
}

.footer .footer-box-1 .footer-box-1-content-1 {
    color: var(--color-text-2);
    font-size: 24px;
    opacity: 0.85;
    font-weight: 500;
    font-family: var(--font);
    margin-top: 30px;
    margin-bottom: 5px;
}

.footer .footer-box-1 .footer-box-1-content-2 {
    color: var(--color-text-2);
    font-size: 18px;
    opacity: 0.85;
    font-family: var(--font);
}

.footer .footer-box-1 .footer-box-1-signup-button {
    border: 1px #ffffff89 solid;
    border-radius: 12px;
    padding: 10px 30px;
    background: var(--color-text-2);
    text-align: center;
    display: inline;
    align-items: center;
    transition: all 0.3s;
}

.footer .footer-box-1 .footer-box-1-signup-button a {
    text-align: center;
    color: var(--color-text-1);
    font-size: 20px;
}

.footer .footer-box-1 .footer-box-1-signup-button:hover {
    background: var(--color-highlight);
}

.footer .footer-box-2 {
    margin-left: 70px;
    margin-top: 20px;
}

.footer .footer-box-2 .footer-box-2-inner {
    margin-right: 50px;
}

.footer .footer-box-2 .footer-box-2-inner p {
    color: var(--color-text-2);
    font-size: 18px;
}

.footer .footer-box-2 .footer-box-2-inner p a {
    color: var(--color-text-2);
    font-size: 18px;
}

.footer .footer-box-2 .footer-box-2-inner .underline {
    text-decoration: underline;
}

.footer .footer-box-2 .footer-box-2-inner .footer-box-2-title {
    color: var(--color-text-2);
    font-size: 30px;
    font-weight: 600;
}

.footer .footer-box-2 .footer-box-2-inner .footer-box-2-icon a {
    font-size: 22px;
    margin-right: 15px;
    color: var(--color-text-2);
}

.footer .footer-navbar {
    content: "";
    background: var(--color-text-2);
    width: calc(100% - 170px);
    height: 0.5px;
    position: absolute;
    bottom: 35px;
    margin-left: 100px;
}

.footer .footer-cs {
    color: var(--color-text-2);
    margin-left: 100px;
}

/* End Footer */

.container#blur.active{
  filter: blur(20px);
  pointer-events: none;
  user-select: none;
}

.container#blur2.active{
  filter: blur(20px);
  pointer-events: none;
  user-select: none;
}

#popup{
  border-radius: 12px;
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 600px;
  padding: 50px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}

#popup.active{
  top: 50%;
  visibility: visible;
  opacity: 1;
  transform: 0.5s;
}

#popup2{
  border-radius: 12px;
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 600px;
  padding: 50px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}

#popup2.active{
  top: 50%;
  visibility: visible;
  opacity: 1;
  transform: 0.5s;
}


.button-click{
  cursor: pointer;
}

.dong{
  border: 1px solid black;
  border-radius: 10px;
  margin:auto;
  padding-left: 29px;
  padding-top: 6px;
  margin-top: 30px;
  width: 100px;
  height: 40px;
}

.dong:hover{
  background-color: var(--bg-1);
}

@media (max-width: 1199.98px) {
  
}

@media (max-width: 991.98px) {
  .anhsp {
    width: 350px;
    margin: 100px auto 0 auto;
  }
  .name-product{
    font-size: 35px;
    margin-top: 50px;
  }
  .add-to-cart {
    max-width: 400px;
    margin: auto;
  }

}

@media (max-width: 850.98px) {

}

@media (max-width: 767.98px) {

}


@media (max-width: 657.98px) {

}

@media (max-width: 575.98px) {

}