:root {
  --primary: #8CC647;
  --secondary: #028711;
}

@font-face {
  font-family: "flexslider-icon";
  src: url("../../../assets/fonts/flexslider-icon.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}


.header {
  padding: 5px;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}
header {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.75);
  position: relative;
  z-index: 10000;
}

header .logo {
  font-weight: bold;
  font-size: 30px;
  color: #333;
}
header .logo img {
  width: 120px;
  height: auto;
  object-fit: contain;
}

header .navbar ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

header .navbar ul li {
  position: relative;
  float: left;
  display: flex;
  align-items: center;
}

header .navbar ul li a {
  font-size: 16px;
  padding: 28px 7px;
  color: #333;
  display: block;
  transition: all 0.25s ease;
}

header .navbar ul li a:hover {
  background-color: var(--primary);
  color: #fff;
}

@-webkit-keyframes scale-in-ver-top {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
    opacity: 1;
  }
}
@keyframes scale-in-ver-top {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
    opacity: 1;
  }
}
header .navbar:after, header .navbar:before {
  content: none;
}

header .navbar ul li ul {
  position: absolute;
  float: left;
  width: 200px;
  background-color: #999;
  display: none;
  top: 100%;
  -webkit-animation: scale-in-ver-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: scale-in-ver-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

header .navbar ul li ul li {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
}

header .navbar ul li:hover > ul {
  display: block;
}

#menu-bar {
  display: none;
}


header label input {
  display: none !important;
}

.frame-avt-menu {
  padding: 15px !important;
}
.frame-avt-menu img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid gray;
}

header .navbar ul li .frame-avt-menu:hover {
  background-color: transparent;
  color: var(--secondary);
}

body {
  background-color: #fff;
}

.container {
  width: 100%;
  max-width: 1280px;
}

.padding-site {
  padding: 30px 15px;
}

a {
  text-decoration: none !important;
}

.title-footer {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 24px;
}

.list-item-showroom {
  list-style-type: disc;
}
.list-item-showroom li {
  position: relative;
}
.list-item-showroom li a {
  color: var(--primary);
  transition: all 0.25s ease;
}
.list-item-showroom li a:hover {
  color: var(--secondary);
}

#admintoolbar {
  top: 50% !important;
}

.absolute-footer {
  padding: 12px;
  background-color: #333;
  text-align: center;
  color: #fcfcfc;
}
.absolute-footer a {
  color: var(--primary);
  transition: all 0.25s ease;
}
.absolute-footer a:hover {
  color: var(--secondary);
}

.filter-product .frame-input-search-product {
  display: flex;
  align-items: center;
  justify-content: center;
}
.filter-product .frame-input-search-product input {
  height: 40px;
  box-shadow: 0px 0px 0px grey;
  border: 1px solid #00b214;
  width: 70%;
  border-right: 0;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  padding: 6px 12px;
}
.filter-product .frame-input-search-product .icon-search {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  transition: all 0.25s ease;
}
.filter-product .frame-input-search-product .icon-search i {
  color: #fff;
}
.filter-product .frame-input-search-product .icon-search:hover {
  background-color: var(--secondary);
}
.filter-product .form-select {
  font-size: 16px;
  width: 30%;
  margin: auto;
}

.left-sidebar {
  background-color: #fafafa;
}
.left-sidebar .item-widget {
  background-color: #fff;
  border-radius: 8px;
  padding: 12px;
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
  margin-bottom: 36px;
}
.left-sidebar .item-widget h2 {
  margin-bottom: 12px;
}
.left-sidebar .item-widget:last-child {
  margin-bottom: 0;
}
.left-sidebar .list-cat-product ul {
  list-style-type: none;
  padding-left: 0;
}
.left-sidebar .list-cat-product ul li {
  border-top: 1px solid #ececec;
}
.left-sidebar .list-cat-product ul li a {
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px;
}
.left-sidebar .list-cat-product ul li a:hover {
  color: var(--primary);
}
.left-sidebar .list-new-product ul {
  list-style-type: none;
  padding-left: 0;
}
.left-sidebar .list-new-product ul li {
  border-top: 1px solid #ececec;
}
.left-sidebar .list-new-product ul li a {
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
}
.left-sidebar .list-new-product ul li a img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.left-sidebar .list-new-product ul li a h3 {
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.left-sidebar .list-new-product ul li a h4 {
  color: red;
}
.left-sidebar .list-new-product ul li a h4 span {
  font-size: 12px;
}
.left-sidebar .list-new-product ul li a:hover {
  color: var(--primary);
}
.left-sidebar .item-product:hover {
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}
.left-sidebar .view-more {
  background-color: var(--secondary);
  color: #fff;
  font-size: 16px;
  border-radius: 24px;
  padding: 6px 24px;
  transition: all 0.25s ease;
  display: flex;
  width: fit-content;
  margin: auto;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.frame-product-top {
  background-color: #fafafa;
}
.frame-product-top .item {
  padding: 24px;
  background-color: #fff;
  border-radius: 8px;
}
.frame-product-top .item .item-parent img {
  width: 100%;
  max-height: 450px;
  height: auto;
  object-fit: contain;
}
.frame-product-top .item .product-name {
  color: #000;
}
.frame-product-top .item .all-price-product .price-product {
  color: red;
  font-size: 20px;
  font-weight: bold;
}
.frame-product-top .item .all-price-product .price-product span {
  font-size: 16px;
}
.frame-product-top .item .all-price-product .sale-price-product {
  color: grey;
  text-decoration: line-through;
  margin-right: 12px;
}
.frame-product-top .item .in-stock {
  color: var(--primary);
}
.frame-product-top .item .right-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.frame-product-top .item .add-quatity-selector {
  display: flex;
  align-items: center;
  gap: 20px;
}
.frame-product-top .item .add-quatity-selector .quatity-selector {
  display: flex;
  align-items: center;
  gap: 12px;
}
.frame-product-top .item .add-quatity-selector .quatity-selector .change-quatity {
  width: 30px;
  height: 30px;
  color: #333;
  background-color: #dbdcdf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  line-height: 0;
  margin: 0;
  padding: 0;
  transition: all 0.25s ease;
  font-size: 12px;
}
.frame-product-top .item .add-quatity-selector .quatity-selector .change-quatity:hover {
  background-color: var(--primary);
  color: #fff;
}
.frame-product-top .item .add-quatity-selector .quatity-selector .change-quatity.disabled {
  opacity: 0.3;
  cursor: default;
}
.frame-product-top .item .add-quatity-selector .quatity-selector .change-quatity.disabled:hover {
  background-color: #dbdcdf;
  color: unset;
}
.frame-product-top .item .add-quatity-selector .quatity-selector input {
  border: 0;
  width: fit-content;
  min-width: 0;
  max-width: 24px;
  text-align: center;
  border-bottom: 1px solid;
}
.frame-product-top .item .contact-media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.frame-product-top .item .contact-media .button-facebook {
  width: 100%;
  padding: 6px 12px;
  background-color: #21569a;
  border-radius: 8px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.frame-product-top .item .contact-media .button-zalo {
  width: 100%;
  padding: 6px 12px;
  background-color: #00abff;
  border-radius: 8px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.frame-product-top .item .product-category a {
  color: var(--primary);
}
.frame-product-top .item .product-category a:hover {
  color: var(--secondary);
}

.content-product img {
  max-width: 100%;
  height: auto;
}

.button-default {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: #fff !important;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.button-default:hover {
  background-color: var(--secondary);
}

.flexslider:hover .flex-direction-nav a {
  opacity: 1 !important;
}

.flex-direction-nav a:before {
  font-size: 30px !important;
  color: #fff !important;
}

a {
  transition: all 0.25s ease;
}

.frame-product-info .title-tab {
  margin-bottom: 24px;
  text-transform: uppercase;
  font-weight: bold;
}

.item-product {
  padding: 10px;
  border-radius: 8px;
  background-color: #fff;
  transition: all 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 15px;
}
.item-product .thubnail-product {
  display: block;
  height: 200px;
  overflow: hidden;
  margin-bottom: 12px;
}
.item-product .thubnail-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.25s ease;
}
.item-product .thubnail-product:hover img {
  transform: scale(1.1);
}
.item-product h3 {
  transition: all 0.25s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 50px;
}
.item-product h3:hover {
  color: var(--primary);
}
.item-product h4 {
  color: red;
}
.item-product h4 span {
  font-size: 12px;
}
.item-product .add-to-cart {
  font-size: 12px;
  background-color: var(--primary);
  color: #fff;
  padding: 6px 12px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  gap: 6px;
}
.item-product .add-to-cart:hover {
  background-color: var(--secondary);
}
.item-product .add-to-cart.added {
  background-color: red;
}

.all-price-product .sale-price-product {
  font-size: 14px;
  color: gray;
  text-decoration: line-through;
  margin-right: 10px;
}
.all-price-product .sale-price-product span {
  font-size: 12px;
}
.all-price-product .price-product {
  font-size: 16px;
  color: red;
}
.all-price-product .price-product span {
  font-size: 16px;
}

.related-product {
  border-top: 1px solid #000;
}
.related-product .item-product {
  border: 1px solid #ececec;
}

.right-menu {
  display: flex;
  align-items: center;
}

.pagination {
  gap: 10px;
  justify-content: center;
}

.pagination .disabled {
  display: none;
}

.pagination li a {
  border-radius: 50% !important;
  display: block;
  overflow: hidden;
  width: 40px;
  height: 40px;
  text-align: center;
  align-content: center;
  background-color: #eef3f8;
  border: 0;
  transition: all 0.25s ease;
}

.pagination li a:hover {
  background-color: var(--primary);
  color: #fff;
}

.pagination li.active a {
  background-color: var(--primary) !important;
  color: #fff !important;
}

.block-cart .svg {
  top: 0 !important;
}

.block-cart .num-cart {
  top: -5px !important;
  padding: 4px 5px 4px !important;
}

.btn-update-payment {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.btn-update-payment .button-default {
  border: 1px solid #ececec;
}

.table-cart-product td {
  align-content: center;
}

.alert-default {
  background-color: var(--primary) !important;
  color: #fff !important;
  border: 1px solid var(--secondary) !important;
}

.info-payment {
  margin: 24px 0;
}
.info-payment .frame-info-payment {
  background-color: #ececec;
  border-radius: 6px;
  border: 1px solid #fafafa;
  padding: 24px;
}
.info-payment .frame-info-payment input, .info-payment .frame-info-payment select, .info-payment .frame-info-payment textarea {
  font-size: 16px;
  color: #333;
}
.info-payment .frame-info-payment label {
  font-weight: normal;
}
.info-payment .frame-info-payment textarea {
  resize: vertical;
  width: 100%;
  min-height: 200px;
  border-radius: 6px;
  padding: 12px;
}
.info-payment .frame-info-payment ul {
  padding: 0;
}
.info-payment .frame-info-payment ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid lightgray;
  padding: 12px 0;
}
.info-payment .frame-info-payment ul li .label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  padding: 0;
}
.info-payment .frame-info-payment ul li span:last-child {
  text-align: right;
}
.info-payment .frame-info-payment ul li:first-child {
  border-top: 0;
  padding-top: 0;
}
.info-payment .frame-info-payment ul li:last-child {
  padding-bottom: 0;
}
.info-payment iframe {
  width: 500px;
  height: 280px;
}

.iframe-ytb iframe {
  width: 100%;
  height: 280px;
}

.radio-input {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-input * {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.radio-input label {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0px 20px;
  width: 220px;
  cursor: pointer;
  height: 40px;
  position: relative;
}

.radio-input label::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 45px;
  z-index: -1;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 10px;
  border: 2px solid transparent;
}

.radio-input label:hover::before {
  transition: all 0.2s ease;
  background-color: #2a2e3c;
}

.radio-input .label:has(input:checked)::before {
  background-color: #2d3750;
  border-color: #435dd8;
  height: 50px;
}

.radio-input .label .text {
  color: #333;
}

.radio-input .label input[type=radio] {
  background-color: #fff;
  appearance: none;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.radio-input .label input[type=radio]:checked {
  background-color: #435dd8;
  -webkit-animation: puls 0.7s forwards;
  animation: pulse 0.7s forwards;
}

.radio-input .label input[type=radio]:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transition: all 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: #fff;
  transform: scale(0);
}

.radio-input .label input[type=radio]:checked::before {
  transform: scale(1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.btn-order-finish {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 12px;
}

.card-container.card {
  max-width: 400px;
  width: 100%;
  padding: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  border: 24px solid var(--primary);
  border-radius: 20px;
}

.btn {
  font-weight: 700;
  height: 36px;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: default;
}

.card {
  background-color: #F7F7F7;
  padding: 20px 25px 30px;
  margin: 0 auto 25px;
  margin-top: 50px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}

.profile-img-card {
  height: 80px;
  margin: 0 auto 10px;
  display: block;
}

.profile-name-card {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 10px 0 0;
  min-height: 1em;
}

.reauth-email {
  display: block;
  color: #404040;
  line-height: 2;
  margin-bottom: 10px;
  font-size: 14px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.form-signin #inputEmail,
.form-signin #password {
  direction: ltr;
  height: 44px;
  font-size: 16px;
}

.form-signin input[type=email],
.form-signin input[type=password],
.form-signin input[type=text],
.form-signin button {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  z-index: 1;
  position: relative;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.form-signin .form-control:focus {
  border-color: rgb(104, 145, 162);
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgb(104, 145, 162);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgb(104, 145, 162);
}

.btn.btn-signin {
  background-color: var(--primary);
  padding: 0px;
  font-weight: 700;
  font-size: 14px;
  height: 36px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: none;
  -o-transition: all 0.218s;
  -moz-transition: all 0.218s;
  -webkit-transition: all 0.218s;
  transition: all 0.218s;
}

.btn.btn-signin:hover,
.btn.btn-signin:active,
.btn.btn-signin:focus {
  background-color: rgb(12, 97, 33);
}

.forgot-password {
  color: rgb(104, 145, 162);
}

.forgot-password:hover,
.forgot-password:active,
.forgot-password:focus {
  color: rgb(12, 97, 33);
}

.footer {
  background-color: #dbdbdb;
}

.flag-buyed {
  position: absolute;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #83b58b;
  z-index: 999;
  top: 5px;
  left: 10px;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 10px;
  cursor: default;
}
.btn_product_empty{
  border-radius: 50px !important;
  height: 28px;
}




@media (max-width: 1023px) {
  .order_-1 {
    order: -1;
  }
}
@media (max-width: 580px) {
  .content-product iframe {
    width: 100%;
    height: 300px;
  }
  .card-container.card {
    border: 0;
  }
  .bg-mobile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
  }
  .frame-product-top .item {
    padding: 0;
  }
  .frame-product-top .item .add-quatity-selector {
    gap: 16px;
    flex-direction: column;
  }
  .frame-product-top .item .add-quatity-selector .button-default {
    width: 100%;
  }
  .btn-order-finish .button-default {
    width: 100%;
  }
  .info-payment .frame-info-payment {
    padding: 16px;
  }
  .iframe-ytb iframe {
    height: 220px;
  }
  .info-payment iframe {
    width: 100%;
    height: 220px;
  }
  .filter-product .frame-input-search-product input {
    width: 70%;
  }
  .filter-product .form-select {
    width: 60%;
  }
  .left-sidebar .view-more {
    margin-bottom: 24px;
  }
}
@media (max-width: 1023px) {
  .block-cart .svg {
    top: -15px !important;
  }
  .block-cart .num-cart {
    top: -21px !important;
  }
  .right-menu {
    flex-direction: row-reverse;
  }
  .right-menu .block-cart .title-2 {
    display: none;
  }
  .padding-site {
    padding: 16px 8px;
  }
  header label {
    font-size: 20px;
    width: 40px;
    height: 40px;
    background-color: black;
    color: white;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  header .navbar {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    transform: translateX(150%);
    opacity: 50%;
    overflow-y: auto;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 16px;
    transition: all 0.25s ease;
    display: none;
    z-index: 1000;
  }
  header .navbar ul li {
    width: 100%;
  }
  header .navbar ul li ul {
    position: relative;
    width: 100%;
  }
  header .navbar ul li ul li {
    background-color: #eee;
  }
  @-webkit-keyframes tilt-in-right-1 {
    0% {
      -webkit-transform: rotateX(-30deg) translateX(300px) skewX(30deg);
      transform: rotateX(-30deg) translateX(300px) skewX(30deg);
      opacity: 0;
    }
    100% {
      -webkit-transform: rotateX(0deg) translateX(0) skewX(0deg);
      transform: rotateX(0deg) translateX(0) skewX(0deg);
      opacity: 1;
    }
  }
  @keyframes tilt-in-right-1 {
    0% {
      -webkit-transform: rotateX(-30deg) translateX(300px) skewX(30deg);
      transform: rotateX(-30deg) translateX(300px) skewX(30deg);
      opacity: 0;
    }
    100% {
      -webkit-transform: rotateX(0deg) translateX(0) skewX(0deg);
      transform: rotateX(0deg) translateX(0) skewX(0deg);
      opacity: 1;
    }
  }
  .nav-mobile {
    -webkit-animation: tilt-in-right-1 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: tilt-in-right-1 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    opacity: 100%;
    display: block !important;
  }
  header .navbar ul {
    flex-direction: column;
    width: 100%;
  }
  header .navbar ul li a {
    width: 100%;
  }
  .burger {
    position: relative;
    width: 30px;
    height: 24px;
    background: transparent;
    cursor: pointer;
    display: block;
  }
  .burger > input {
    display: none;
  }
  .burger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: black;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }
  .burger span:nth-of-type(1) {
    top: 0px;
    transform-origin: left center;
  }
  .burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
  }
  .burger span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
  }
  .burger input:checked ~ span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 0px;
    left: 8px;
  }
  .burger input:checked ~ span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
  }
  .burger input:checked ~ span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 21px;
    left: 8px;
  }
}












.info_item{
  min-height: 35px;
}

.info_item button{
  width: 100%;
}
.product-header > a{
  color: #fff;
}















/*block tin tức*/
/* ===== KHUNG CHUNG ===== */
.news-section {
  padding: 40px 0;
  background: #fff;
  font-family: "Roboto", sans-serif;
}

/* ===== TIÊU ĐỀ KHỐI ===== */
.section-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #61a52e;
  margin-bottom: 30px;
  position: relative;
}

.section-title::before,
.section-title::after {
  content: "";
  width: 60px;
  height: 2px;
  background: #ddd;
  position: absolute;
  top: 50%;
}

.section-title::before {
  left: calc(50% - 170px);
}

.section-title::after {
  right: calc(50% - 170px);
}

/* ===== ITEM ===== */
.news-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f0f0f0;
  transition: box-shadow 0.3s ease;
}

.news-item:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* ===== ẢNH ===== */
.news-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.news-item:hover img {
  transform: scale(1.05);
}

/* ===== NỘI DUNG ===== */
.news-content {
  padding: 15px 10px 20px 10px;
}

.news-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 5px;
}

.news-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.news-title a:hover {
  color: #61a52e;
}

.news-date {
  font-size: 13px;
  color: #999;
  margin-bottom: 8px;
}

.news-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .news-image { height: 180px; }
  .section-title::before, .section-title::after { display: none; }
}












/*block sản phẩm theo chuyên mục*/
.product-section {
  padding: 40px 0;
  font-family: 'Roboto', sans-serif;
  background: #fff;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.product-header .title {
  font-size: 22px;
  font-weight: 700;
  color: #5ea729;
  border-bottom: 3px solid #5ea729;
  padding-bottom: 5px;
  display: inline-block;
}

.btn-viewall {
  background: #8cc63f;
  color: #fff;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-viewall:hover {
  background: #74a932;
}

/* ==== KHUNG SẢN PHẨM ==== */
.product-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 15px;
  text-align: center;
  position: relative;
  margin-bottom: 25px;
  transition: all 0.25s ease;
}

.product-item:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* ==== GIẢM GIÁ ==== */
.discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #7bc142;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* ==== HÌNH ẢNH ==== */
.product-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 10px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-item:hover img {
  transform: scale(1.05);
}

/* ==== TÊN SẢN PHẨM ==== */
.name {
  font-size: 16px;
  font-weight: 700;
  color: #3b651b;
  margin-bottom: 5px;
  line-height: 1.4;
  min-height: 48px;
}

/* ==== GIÁ ==== */
.price {
  font-size: 16px;
  color: #d61c5b;
  margin-bottom: 12px;
}

.price .old {
  color: #999;
  text-decoration: line-through;
  margin-right: 6px;
  font-weight: 400;
}

/* ==== NÚT ==== */
.btn-cart {
  background: #8cc63f;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.btn-cart:hover {
  background: #6fa732;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 992px) {
  .product-image { height: 200px; }
}

@media (max-width: 768px) {

  .product-header { 
   align-items: flex-start; 
  }
  .btn-viewall { margin-top: 10px; }
  .product-image { height: 180px; }
}
.red{
  color: red;
}
.header_search{
  width: 70%;
}
.footer-bar {
  background-color: #34b233;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  padding: 10px;
}

/* bỏ giới hạn container bootstrap cho riêng phần này */
.footer-bar > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bar .left,
.footer-bar .right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* cụm bên trái cách nhẹ mép trái */
.footer-bar .left {
  padding-left: 20px;
}

/* cụm bên phải sát mép phải */
.footer-bar .right {
  padding-right: 20px;
  justify-content: flex-end;
  margin-left: auto; /* đẩy hết qua bên phải */
}

.footer-bar a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-bar i {
  font-size: 15px;
  margin-right: 5px;
}
</style>
<style>
.product-menu {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: flex-start;
}
.height-navigation{
  border-bottom: 1px #eeeeee solid;
}
.category-sidebar {
  width: 260px;
  flex-shrink: 0;
  border-right: 1px solid #eee;
  background: #fff;
  position: relative;
}

.category-header {
  background: #43b02a;
  color: #fff;
  font-weight: 600;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
}

.category-header i {
  margin-right: 10px;
  font-size: 18px;
}

.category-list {
  list-style: none;
  position: absolute;
  left: 0px;
  top: 46px;
  padding: 0;
  width: 100%;
  display: none;
  background: #fff;
  border: solid 1px #dcdcdc;
  z-index: 10;
}

.category-list li {
  border-bottom: 1px solid #f2f2f2;
  position: relative;
}

.category-list li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.category-list li a:hover {
  background: #f2f2f2;
  color: #43b02a;
}

/* Nút mũi tên bên phải */
.toggle-sub {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  font-size: 10px;
  color: #666;
  transition: transform 0.3s;
}

.has-sub.open > .toggle-sub {
  transform: rotate(180deg);
}

/* Menu con */
.sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  background: #fafafa;
  border-top: 1px solid #eee;
}

.sub-menu li a {
  padding: 8px 20px;
  font-size: 14px;
  color: #555;
}

.sub-menu li a:hover {
  background: #f2f2f2;
  color: #43b02a;
}

/* Menu phải */
.menu-right {
  flex: 1;
  padding: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  box-sizing: border-box;
}

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

.menu-right .menu-links a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  transition: color 0.2s;
}
.menu-right .menu-hotline {
  background: #43b02a;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 7px 18px;
  font-size: 15px;
  text-decoration: none;
}

.menu-right .menu-hotline:hover {
  opacity: 0.9;
}

.menu-links .dropdown-menu{
  margin: 0px;
  padding: 0px;
}





/* --- KHUNG CHUNG MENU --- */
.menu-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 0px 20px;
  position: relative;
}

.menu-links {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
}

.menu-links > a {
  position: relative;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  transition: color 0.2s;
}

.menu-links > a:hover {
  color: #43b02a;
}

/* --- DROPDOWN MENU (ẩn mặc định) --- */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* nằm ngay dưới menu cha */
  left: 0;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  border-radius: 4px;
  padding: 8px 0;
  z-index: 999;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.dropdown-menu li a:hover {
  background: #43b02a;
  color: #fff;
}

/* --- HIỆN MENU CON KHI RÊ CHUỘT --- */
.menu-links > a:hover + .dropdown-menu,
.dropdown-menu:hover {
  display: block;
}

/* --- HOTLINE BÊN PHẢI --- */
.menu-hotline {
  background: #43b02a;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 7px 18px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.menu-hotline:hover {
  opacity: 0.85;
}
.product-menu{
  display: flex;
}





















 /* Nút mở menu */
  .mobile-menu-btn {
    color: #34b233;
    font-size: 30px;
    padding: 6px 10px;
  }

/* Khung menu trượt */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -81%;
  width: 80%;
  height: 100vh;
  background: #3f9e1f;
  color: #fff;
  transition: left 0.3s ease;
  z-index: 100002;
  overflow-y: auto;
}

/* Khi mở menu */
.mobile-menu.active {
  left: 0;
}

/* Nền mờ */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 100000;
}
.menu-overlay.active {
  display: block;
}


.menu-close {
  margin-left: 10px;
  font-size: 22px;
  cursor: pointer;
}

/* Danh sách menu */
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-list li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.menu-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.2s;
}
.menu-list a:hover {
  background: rgba(0,0,0,0.1);
}
.menu-list .hot {
  background: #d10000;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 4px;
}

/* Submenu */
.submenu {
  display: none;
  background: rgba(0,0,0,0.1);
}
.menu-list li.open .submenu {
  display: block;
  padding-left: 0px;
}
.submenu li a {
  padding-left: 30px;
  font-size: 14px;
}





























.slider {
  position: relative;
  width: 100%;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* --- DANH SÁCH SLIDE --- */
.slider-wrapper {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* --- ẢNH SLIDE --- */
.slider-slide {
  min-width: 100%;
  position: relative;
}
.slider-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* --- CHỮ TRÊN ẢNH --- */
.slider-caption {
  position: absolute;
  bottom: 25px;
  left: 30px;
  background: rgba(67, 176, 42, 0.9);
  color: #fff;
  padding: 10px 18px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
}
.slider-caption > a{
  color: #fff !important;
}

/* --- NÚT ĐIỀU HƯỚNG --- */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.2);
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 8px 8px;
  cursor: pointer;
  border-radius: 100%;
  z-index: 10;
  transition: background 0.3s;
  height: 40px;
  width: 40px;
}
.slider-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}
.slider-btn.prev {
  left: 15px;
}
.slider-btn.next {
  right: 15px;
}

/* --- CHẤM TRÒN ĐIỀU HƯỚNG --- */
.slider-dots {
  text-align: center;
  position: absolute;
  bottom: 15px;
  width: 100%;
}
.slider-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.slider-dots span.active {
  background: #43b02a;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .slider-caption {
    font-size: 14px;
    padding: 8px 12px;
  }
}


























/* ===== KHUNG TỔNG ===== */
.best-seller {
  padding: 40px 0;
  background: #fff;
  font-family: 'Roboto', sans-serif;
}

.best-seller .title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #61a52e;
  margin-bottom: 40px;
  position: relative;
}

.best-seller .title::after {
  content: "";
  width: 120px;
  height: 2px;
  background: #cde8b1;
  display: block;
  margin: 10px auto 0;
}

/* ===== CARD SẢN PHẨM ===== */
.product-box {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
  position: relative;
  transition: all 0.25s ease;
  min-height: 180px;
}

.product-box:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* ===== ẢNH BÊN TRÁI ===== */
.product-left {
  position: relative;
  width: 40%;
  flex-shrink: 0;
}

.product-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  display: block;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-box:hover img {
  transform: scale(1.05);
}

/* ===== LABEL GIẢM GIÁ ===== */
.discount {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #7bc142;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* ===== NỘI DUNG BÊN PHẢI ===== */
.product-right {
  width: 60%;
  padding: 15px 20px;
}

.product-right .name {
  font-size: 16px;
  font-weight: 700;
  color: #4a7c26;
  margin-bottom: 8px;
}

.product-right .price {
  font-size: 16px;
  color: #d61c5b;
  margin-bottom: 12px;
}

.product-right .old {
  color: #999;
  text-decoration: line-through;
  margin-right: 6px;
}

.btn-cart {
  display: inline-block;
  background: #7bc142;
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  border-radius: 25px;
  padding: 8px 20px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-cart:hover {
  background: #63a734;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .product-box {
    flex-direction: column;
    text-align: center;
}
.product-left, .product-right {
    width: 100%;
    padding: 10px;
}
.product-img {
    height: 200px;
}
}