.header {
    position: relative;
	color: #fff;
    z-index: 4;
    .top-bar {
		background-color: var(--rootcolor1);
		font-size: 14px;
		@media (max-width: 768px) {
			font-size: 11px;
		}

    .container {
      display: flex;
      justify-content: flex-end;
      padding: 6px 20px;

      .contact-info {
        display: flex;
        gap: 24px;

        i {
          margin-right: 6px;
          color: #fff;
        }

        a {
          color: #fff;
          text-decoration: none;

          &:hover {
            text-decoration: underline;
          }
        }
      }
    }
  }

  .main-header {
    background: #fff;
    background-size: cover;
    background-position: center;
	position: relative;
	transition: all 0.3s ease;
	z-index: 999;
	  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
 
	&.is-sticky {
	  position: fixed;
	  top: 0;
	  left: 0;
	  right: 0;
	  animation: slideDown 0.3s ease;
	}

    .container {
	  padding: 4px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
	  max-width: 95%;
    }

    .logo img {
		height: 36px;
		width: auto;
		margin-top: 5px;
		@media (max-width: 992px) {
            height: 34px;
            margin-left: 10px;
        }
    }
    /* MENU CHÍNH */
    .main-nav {
      flex: 1;
      margin: 0 40px;
	  top: 0;
		display: flex;
		justify-content: right;

		.menu-item-has-children > a .arrow {
		  font-size: 10px;
		  margin-left: 8px;
		}
      .menu {
        display: flex;
        align-items: center;
        justify-content: center;
        list-style: none;
        margin: 0;
        padding: 0;
		> .menu-item > a {
			text-transform: uppercase;
		}

        .menu-item {
          position: relative;
          list-style: none;

          a {
            display: block;
            padding: 14px 18px;
            color: #000;
            text-decoration: none;
            font-size: 14px;

            &:hover {
              color: #ff9240;
            }
          }

          .sub-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            min-width: 220px;
            border-radius: 6px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
            padding: 0;
            z-index: 99; 
			list-style: none;
            li {
				list-style: none;
			}
            li a {
              color: #333;
              padding: 10px 20px;
              display: block;

              &:hover {
                background-color: var(--rootcolor2);
                color: #fff;
              }
            }
          }

          &:hover > .sub-menu {
            display: block;
          }
        }
      }
    }

    /* ICONS & LANGUAGE */
    .header-right {
      display: flex;
      align-items: center;
      gap: 16px;

      .icon-btn {
        background: none;
        border: none;
        color: #333;
        font-size: 18px;
        cursor: pointer;
        transition: color 0.3s ease;
        &:hover {
          color: #00aaff;
        }
      }
	.micon {
	  display: none;
	}

      .language {
        display: flex;
        align-items: center;
        gap: 6px;
        font-weight: 600;
        cursor: pointer;

        &:hover {
          color: #00aaff;
        }
      }
    }
  }
.search_overlay {
	position: fixed;
	background: #0808088f;
	height: 100vh;
	width: 100%;
	display: none;
	z-index: 9999999;
	align-items: center;
	justify-content: center;
	z-index: 2000;
	transition: opacity 0.3s ease;
	padding-bottom: 10%;

  &.active {
    display: flex;
  }

  .search_box {
    position: relative;
    width: 90%;
    max-width: 600px;
    text-align: center;
    animation: fadeInUp 0.3s ease forwards;

    form {
      display: flex;
      align-items: center;
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);

      input {
        flex: 1;
        padding: 14px 18px;
        border: none;
        font-size: 16px;
        color: #333;
        outline: none;
      }

      button {
        background: #2a93d5; /* xanh dương */
        color: #fff;
        border: none;
        padding: 14px 18px;
        cursor: pointer;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s;

        &:hover {
          background: #1976b3;
        }
      }
    }

    .close_search {
      position: absolute;
      bottom: -60px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(255,255,255,0.2);
      border: 1px solid rgba(255,255,255,0.4);
      color: #fff;
      font-size: 20px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s ease;

      &:hover {
        background: rgba(255,255,255,0.4);
      }
    }
  }
}

  @media (max-width: 992px) {
	.main-header {
        .container {
			padding: 12px 0;
        }
		.main-nav {
		  flex: none;
			display: none;
		  margin: 0;
		  position: absolute;
		  top: 100%;
		  width: 100%;
          background: #fff;
            .menu li.menu-item a {
              color: #333;
              padding: 10px 20px;
              display: block;

              &:hover {
                background-color: #f0f4ff;
                color: #072b6f;
              }
            }
            .menu {
                display: block;
			}
			.sub-menu {
				width: 100%;
				box-shadow: none !important;
				padding: 0 20px !important;
			}
		}
        .header-right {
            padding-right: 15px;
			.micon {
			  display: block;
			}
        }
        &.is-open .main-nav {
			display: block;
        }
		
    }
      	
  }
}
.top_slide {
  width: 100%;
  margin: 0 auto;
  position: relative;

  .swiper {
    width: 100%;
  }

  .swiper-slide {
    position: relative;
    overflow: hidden;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    color: #fff;
    &:after {
      font-size: 16px;
    }
  }

  .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
  }

  .swiper-pagination-bullet-active {
    opacity: 1;
  }
}
.home.blog .site-wrapper {
  padding: 0;
}
.map_customer {
    border: 1px solid #e6e6e6;
    margin-top: 20px;
    border-radius: 12px;
}
.about_company {
  background: #f8f8fb;
  padding: 60px 20px;

  .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
  }

  .about_left {
    flex: 1 1 48%;
    font-size: 0.9em;

    .about_logo {
      height: 48px;
    }

    p {
      margin-bottom: 8px;
      line-height: 1.6;
      color: #222;
	  text-align: justify;
    }

.about_stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;

  .item {
    text-align: center;
    flex: 1 1 30%;

    .num {
      font-size: 30px;
      font-weight: 700;
      color: #e65a00;
      margin-bottom: 8px;
    }

    .label {
      font-size: 14px;
    }
  }
}


    .btn {
      display: inline-block;
      background: #e65a00;
      color: #fff;
      padding: 8px 26px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      transition: background .3s;
            margin-top: 25px;
      &:hover {
        background: #cc4e00;
      }
    }
  }

  .about_right {
    flex: 1 1 47%;

    .video_wrapper {
      position: relative;
      padding-top: 56.25%; // 16:9
      border-radius: 12px;
      overflow: hidden;

      iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }
    }
  }

  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }

    .about_left,
    .about_right {
      flex: 1 1 100%;
    }

    .about_stats {
      flex-direction: column;
      .item {
        flex: 1 1 100%;
      }
    }
  }
}
.video_section {
  text-align: center;
  padding: 5px 20px;

  .video_box {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 640px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    aspect-ratio: 16 / 9;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: opacity .3s;
    }

    .play_btn {
		padding-left: 10px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		font-size: 56px;
		color: #fff;
		background: rgba(0, 0, 0, 0.5);
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      transition: background .3s;
    }

    &:hover .play_btn {
      background: rgba(0, 0, 0, 0.7);
    }

    iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }
  }
}
.product_section {
  padding: 60px 20px;
  background: #fff;

  .title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }


  /* Lưới sản phẩm */
  .product_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Desktop: 3 cột */
    gap: 30px;

    /* Responsive cho màn hình Tablet (< 992px) */
    @media (max-width: 992px) {
      grid-template-columns: repeat(2, 1fr); /* Tablet: 2 cột */
    }

    /* Responsive cho màn hình Điện thoại (<576px) */
    @media (max-width: 576px) {
      grid-template-columns: 1fr; /* Mobile: 1 cột */
      gap: 15px;
    }
  }

  /* Định dạng từng thẻ sản phẩm */
  .product_item {
    display: block;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden; /* Cắt phần ảnh thừa ở góc bo tròn */
    text-decoration: none; /* Bỏ gạch chân của thẻ a */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Đổ bóng nhẹ */
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    /* Hiệu ứng khi di chuột vào sản phẩm */
    &:hover {
      transform: translateY(-5px); /* Nổi lên trên */
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12); /* Đổ bóng đậm hơn */
      
      .caption {
        color: #0056b3; /* Đổi màu chữ khi hover (thay đổi theo màu brand của bạn) */
      }
    }

    /* Định dạng hình ảnh */
    img {
      width: 100%;
      height: 250px; /* Cố định chiều cao để các ô bằng nhau */
      object-fit: cover; /* Đảm bảo ảnh không bị méo */
      display: block;
      border-bottom: 1px solid #eeeeee;
      transition: transform 0.5s ease;
    }

    /* (Tùy chọn) Hiệu ứng zoom nhẹ ảnh khi hover */
    &:hover img {
      transform: scale(1.03);
    }

    /* Định dạng tên sản phẩm */
    .caption {
		padding: 15px;
		text-align: center;
		font-size: 1.1rem;
		font-weight: 600;
		color: #873c0c;
		transition: color 0.3s ease;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		background: #f9d6023d;
    }
  }
}

.distribution_section {
  background: #f7f8fb;
  padding: 80px 20px;
  text-align: center;

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
  }

.map_area {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Chia 2 cột tỷ lệ 1:1 */
  gap: 40px;
  align-items: flex-start; /* Để text và hình căn từ trên xuống */
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;

  /* Xử lý Responsive: Chuyển về 1 cột trên màn hình nhỏ (< 768px) */
  @media (max-width: 768px) {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Định dạng cột hình ảnh */
  .map_area_img {
    width: 100%;

    .map_img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 12px; /* Bo góc ảnh cho mềm mại */
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Đổ bóng ảnh */
      object-fit: cover;
    }
  }

  /* Định dạng cột thông tin */
  .map_area_title {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Khoảng cách giữa các khối địa chỉ */

    .item_title {
      background-color: #ffffff;
      padding: 20px;
      border-left: 4px solid #f9d603; /* Thanh viền nhấn màu xanh (bạn có thể đổi màu tùy brand) */
      border-radius: 4px 12px 12px 4px;
      box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06); /* Đổ bóng nhẹ cho từng khối */
      transition: transform 0.3s ease, box-shadow 0.3s ease;

      /* Hiệu ứng trượt nhẹ khi hover */
      &:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      }

      h2 {
        font-size: 1.05rem;
        font-weight: 700;
        color: #222222;
        margin: 0 0 10px 0;
        line-height: 1.4;
      }

      p {
        font-size: 0.85rem;
        color: #555555;
        line-height: 1.6;
        margin: 0 0 6px 0;

        /* Bỏ margin thừa ở thẻ p cuối cùng */
        &:last-child {
          margin-bottom: 0;
        }
      }
    }
  }
}

  .map_img {
    width: 100%;
    height: auto;
    display: block;
  }

  .btn_wrap {
    margin-top: 40px;
  }

  .btn {
    display: inline-block;
    background: linear-gradient(90deg, #f46a1f, #e65a00);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 34px;
    border-radius: 40px;
    box-shadow: 0 4px 12px rgba(230, 90, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;

    &:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 14px rgba(230, 90, 0, 0.4);
    }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .info_columns {
      flex-direction: column;

      .column {
        flex: 1 1 100%;
      }
    }

    .btn {
      width: 100%;
      text-align: center;
    }
  }
}
.project_section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
  }

  /* Dự án */
  .project_slider {
    margin-bottom: 50px;

    .project_item {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 10px;
        background: rgba(0, 0, 0, 0.45);
        color: #fff;
        font-weight: 600;
        font-size: 15px;
        text-align: left;
      }
    }

    .swiper-button-prev,
    .swiper-button-next {
      color: #ff6600;
      width: 36px;
      height: 36px;
    }
  }

  /* Logo */
  .logo_slider {
    .swiper-slide {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px;

      img {
        max-height: 60px;
        width: auto;
        display: block;
      }
    }

    .swiper-button-prev,
    .swiper-button-next {
      color: #ff6600;
      width: 36px;
      height: 36px;
    }
  }

  @media (max-width: 768px) {
    .project_slider .caption {
      font-size: 13px;
    }

    .logo_slider .swiper-slide {
      height: 80px;
    }
  }
}
.certificate_section {
  background: #f7f8fb;
  padding: 80px 20px;
  text-align: center;

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
  }

  .cert_slider {
    .swiper-slide {
      display: flex;
      justify-content: center;
    }

    .cert_item {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      background: #fff;
      transition: transform .3s ease;

      &:hover {
        transform: translateY(-4px);
      }

      img {
        width: 100%;
        height: auto;
        display: block;
      }

      .caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.5);
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        padding: 10px;
        text-align: center;
      }
    }

    .swiper-button-prev,
    .swiper-button-next {
      color: #ff6600;
      width: 36px;
      height: 36px;
      transition: opacity .3s;
    }

    .swiper-button-prev:hover,
    .swiper-button-next:hover {
      opacity: 0.8;
    }
  }

  @media (max-width: 768px) {
    .title {
      font-size: 22px;
    }

    .cert_item .caption {
      font-size: 13px;
    }
  }
}
.timeline {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;

  h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
  }

  .timeline-item {
    position: relative;
    padding-left: 220px;

    .timeline-year {
      position: absolute;
      left: 0;
      width: 160px;
      font-weight: 700;
      font-size: 20px;
      color: #000;
    }

    &:before {
      content: "";
      position: absolute;
      left: 172px;
      top: 5px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--rootcolor2);
      border: 3px solid var(--rootcolor2);
      box-shadow: 0 0 0 2px #f78e1e;
    }
  &:after {
    content: "";
    position: absolute;
    top: 0;
    left: 180px;
    width: 2px;
    height: 100%;
    background: var(--rootcolor2);
  }

    ul {
      list-style: none;
      margin: 0;
      padding: 0;
            padding-bottom: 30px;

      li {
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 6px;
        color: #222;
		text-align: justify;

        strong {
          font-weight: 700;
        }
      }
    }
  }
  @media (max-width: 768px) {

    .timeline-item {
      padding-left: 60px;

      .timeline-year {
        position: relative;
        left: 0;
        margin-bottom: 10px;
        font-size: 20px;
      }

      &::before {
        left: 12px;
      }
    &::after {
      left: 20px;
    }
    }
  }
}
.download-tabdls {
  text-align: center;
  padding: 40px 0;
  font-family: "Arial", sans-serif;

  .title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .tabdl-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 20px;

    .tabdl-btn {
      background: none;
      border: none;
      font-size: 16px;
      font-weight: 700;
      padding: 10px 20px;
      cursor: pointer;
      position: relative;
      color: #555;
      transition: all 0.3s;

      &.active {
        color: #fff;
        background: #f78e1e;
        border-radius: 20px;
      }
    }
  }

  .tabdl-content {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;

    &.active {
      display: flex;
    }

    .card {
      position: relative;
      flex: 1 1 10%;
      max-width: 22%;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s;

      &:hover {
        transform: translateY(-5px);
      }

      img {
        width: 100%;
        display: block;
      }

      .overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.5);
        color: #fff;
        padding: 15px 10px;
        text-align: center;

        h3 {
          font-size: 18px;
          font-weight: 700;
          margin: 0;
		  bottom: 20px;
		  position: absolute;
		  left: 0;
		  right: 0;
		  color: #fff;
        }
        p {
          font-size: 14px;
          margin: 5px 0 0;
        }
      }
    }
  }

  @media (max-width: 768px) {
    .tabdl-content {
      flex-direction: column;
      align-items: center;
    }
  }
}
.clients {
  text-align: center;
  background: #fff;

  .title {
    font-size: 18px;
    font-weight: 700;
    color: #555;
    margin-bottom: 40px;
    letter-spacing: 1px;
  }

  .client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
  }

  .client-item {
        flex: 1 1 150px;
        max-width: 150px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;

    img {
      width: 100%;
      height: auto;
      object-fit: contain;
      filter: grayscale(0%);
      transition: all 0.3s ease;
    }

    &:hover {
      transform: translateY(-5px);
      opacity: 1;

      img {
        filter: grayscale(0);
        transform: scale(1.05);
      }
    }
  }

  @media (max-width: 768px) {
    .client-logos {
      gap: 30px;
    }

    .client-item img {
      max-width: 160px;
    }
  }
}





.footer {
  background: #fff;
  color: #000;
  font-family: Arial, sans-serif;
  font-size: 14px;
  padding: 40px 20px;
  border-top: 1px solid #eee;

  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	max-width: 100%;
  }

  .footer-column {
    width: 24%;

  @media (min-width: 769px) {
	  &:first-child {
		width: 30%;
	  }
	  &:last-child {
		width: 18%;
	  }
  }
  @media (max-width: 768px) {
    width: 48%;
  }
  @media (max-width: 480px) {
    width: 100%;
  }

    h3 {
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 5px;
    &:after {
                content: '';
                width: 90%;
                border-bottom: 3px solid #f26b1d;
                margin-bottom: 10px;
                display: inline-block;
                margin-top: 5px;
    }
    }


    p {
      line-height: 1.6;
      margin-bottom: 8px;

      i {
        color: #f26b1d;
        margin-right: 6px;
      }
    }

    a {
      color: #000;
      text-decoration: none;
    }

    a:hover {
      color: #f26b1d;
    }

    .qr {
      height: 140px;
      margin-bottom: 10px;
    }

    .social-icons {
      display: flex;
      gap: 10px;
      font-size: 22px;

      a {
        color: #000;
        transition: transform 0.2s ease, color 0.2s ease;
      }

      a:hover {
        color: #f26b1d;
        transform: scale(1.15);
      }
    }
  }

  .footer-contact-extra {
    margin-top: 0;
    p {
      display: flex;
      align-items: center;
      margin-bottom: 6px;
      font-size: 14px;
      font-weight: 600;
      color: #d48a00;

      i {
        width: 24px;
        height: 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        color: #fff;
        margin-right: 10px;
        font-size: 14px;
        flex-shrink: 0;
      }
      .fa-phone {
        background-color: #4CAF50;
      }
      .fa-whatsapp {
        background-color: #25D366;
      }
      .fa-weixin {
        background-color: #7BB32E;
      }
      .fa-envelope {
        background-color: #F5A623;
      }
      .zalo-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        margin-right: 10px;
        flex-shrink: 0;
        img {
          width: 24px;
          height: 24px;
          border-radius: 4px;
		  background: #018fe5;
          padding: 2px;
        }
      }

      a, span {
        color: #d48a00;
        text-decoration: none;
        font-weight: 700;
        &:hover {
          color: #f26b1d;
        }
      }
    }
  }

  .footer-copyright {
    border-top: 1px solid #eee;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;

    p {
      font-size: 13px;
      color: #888;
      margin: 0;
    }
  }
}

/*	Contact Buttons	*/
/* Default Position Right */
#w2w-widget-flyout{
	bottom:50px;
	width:50px;
	height:50px;
	border-radius:50%;
	box-shadow: 0 5px 5px rgba(0,0,0,.1);
	cursor:pointer;
	right:50px;
	font-family: -apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;
}
#w2w-widget-flyout.pos-right{
	
}
#w2w-widget-flyout.pos-left{
	left:50px;
	right:unset;
}
#w2w-widget-flyout.w2w-pos-fixed {
    position: fixed;
	z-index:999;
}
/*.w2w-pinkBg {
    background-color: #ed184f;
    background-image: linear-gradient(90deg, #fd5581, #fd8b55);
}*/
#w2w-widget-flyout > span .ripple{
    position:absolute;
    width:160px;
    height:160px;
    z-index:-1;
    left:50%;
    top:50%;
    opacity:0;
    margin:-80px 0 0 -80px;
    border-radius:100px;
    -webkit-animation:ripple 1.8s infinite;
    animation:ripple 1.8s infinite
}
@-webkit-keyframes ripple{
    0%{
        opacity:1;
        -webkit-transform:scale(0);
        transform:scale(0)
    }
    100%{
        opacity:0;
        -webkit-transform:scale(1);
        transform:scale(1)
    }
}
@keyframes ripple{
    0%{
        opacity:1;
        -webkit-transform:scale(0);
        transform:scale(0)
    }
    100%{
        opacity:0;
        -webkit-transform:scale(1);
        transform:scale(1)
    }
}
#w2w-widget-flyout > span .ripple:nth-child(2){
    animation-delay:.3s;
    -webkit-animation-delay:.3s
}
#w2w-widget-flyout > span .ripple:nth-child(3){
    animation-delay:.6s;
    -webkit-animation-delay:.6s
}
#w2w-widget-flyout > span{
	position:relative;
	width:100%;
	height:100%;
	display:flex;
	justify-content:center;
	align-items:center;
	transition: .3s ease-in-out;
}
#w2w-widget-flyout > span > i{
	color:#fff; font-size: 25px;
}
#w2w-widget-flyout span:hover{}
#w2w-widget-flyout ul{
	position:absolute;
	bottom:50px;
	background: url(../images/background.png);
	min-width:250px;
	margin:0;
	padding: 20px 10px;
	border-radius:5px;
	opacity:0;
	visibility:hidden;
	transition:.3s;
	border: 1px solid rgb(123 123 123 / 10%);
	box-shadow: 0 0 20px 0 rgb(0 0 0 / 8%);
	right:0;
}
#w2w-widget-flyout.pos-right ul{
	right:0;
}
#w2w-widget-flyout.pos-left ul{
	left:0;
	right:unset;
}
#w2w-widget-flyout ul.active{
	bottom:60px;
	opacity:1;
	visibility:visible;
	/*transition:.3s;*/
	animation: 0.5s ease 0s 1 normal none running FadeIn;
}
#w2w-widget-flyout ul li{
	list-style:none;
	display:flex;
	justify-content: center;
	align-items:center;
	padding:10px 0;
	transition:.3s;
	margin-bottom: 0;
	margin-left: 0;
}
#w2w-widget-flyout ul li:hover{
	
}
#w2w-widget-flyout ul li:not(:last-child){
	border-bottom: 1px dashed rgba(0,0,0,.1);
}
#w2w-widget-flyout ul li .w2w-icon{
	margin-right: 10px;
	width: 30px;
	min-width: 30px;
	height: 30px;
	border-radius: 50%;
	overflow: hidden;
	-webkit-justify-content: center;
	justify-content: center;
	display: flex;
	align-items: center;
}
#w2w-widget-flyout ul li .w2w-icon{display:inline-flex;box-shadow: 0 5px 5px rgba(0,0,0,.1);}
.icon-zalo {
    background: url("../images/icon-zalo.png") no-repeat 50% 50%;
    width: 16px;
    height: 16px;
    display: inline-block;
    background-size: 16px;
    vertical-align: middle;
    margin-right: 2px;
    position: relative;
}
#w2w-widget-flyout ul li.btn-zalo > .w2w-icon{
    background: #018fe5;
}
#w2w-widget-flyout ul li a {text-decoration:none; color: #000;}
#w2w-widget-flyout ul li.btn-zalo:hover > a .w2w-text{
    color: #018fe5;
}
#w2w-widget-flyout ul li.btn-facebook > .w2w-icon{
    background: linear-gradient(200deg, #ff6a68 10%, #a033fe 60%, #0595ff 100%);
	color:#fff;
}
#w2w-widget-flyout ul li.btn-facebook:hover > a .w2w-text{
    color:#306199;
}
#w2w-widget-flyout ul li.btn-phone > .w2w-icon{
    background:#46CA57;
	color:#fff;
}
#w2w-widget-flyout ul li.btn-phone:hover > a .w2w-text{
    color:#46CA57;
}
#w2w-widget-flyout ul li.btn-email > .w2w-icon{
    background:#d26e4b;
	color:#fff;
}
#w2w-widget-flyout ul li.btn-email:hover > a .w2w-text{
    color:#d26e4b;
}
.w2w-pinkBg {
    background-image: linear-gradient(90deg, #ff9240, #ffe6db);
}
.w2w-nav-panel {
	.w2w-text {
		display: none;		
	}

	li:hover {
		.w2w-text {
			display: block;
		}
	}
}

/* Back to Top Button */
.back-to-top {
	position: fixed;
	bottom: 120px;
	right: 50px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--rootcolor1), var(--rootcolor2));
	color: #fff;
	border: none;
	font-size: 18px;
	cursor: pointer;
	z-index: 998;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;

	&.visible {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	&:hover {
		transform: translateY(-3px);
		box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
		background: linear-gradient(135deg, var(--rootcolor2), var(--rootcolor1));
	}
}

@media (max-width: 768px) {
	.back-to-top {
		right: 20px;
		bottom: 110px;
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
}

/* Tk Widget (Thống kê truy cập) - Mobile */
.tk-widget {
	@media (max-width: 768px) {
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 8px !important;
		margin-top: 15px;

		.tk-item {
			display: flex;
			justify-content: space-between;
			align-items: center;
			padding: 8px 0;
			border-bottom: 1px dashed #eee;

			&:last-child {
				border-bottom: none;
			}
		}
	}
}