  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: Arial, Helvetica, sans-serif;
    width: 70%;
    margin: 0 auto;
  }

  /* HEADER TOP - Mặc định cho desktop */
  .header-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    padding: 6px 10px;
    background-color: #f9f9f9;
  }

  .header-top .item p {
    margin: 0;
    color: #0a5c36;
    font-weight: bold;
    white-space: nowrap;
  }

  /* RESPONSIVE - MOBILE chỉnh lại header-top */
  @media (max-width: 768px) {
    .header-top {
      flex-direction: row;
      /* Dàn hàng ngang luôn */
      flex-wrap: wrap;
      justify-content: center;
      gap: 6px;
      /* Giảm gap giữa các item */
      padding: 4px;
      font-size: 12px;
    }

    .header-top .item {
      flex: 0 0 auto;
    }

    .header-top .item p {
      text-align: center;
      font-size: 12px;
    }
  }


  .header-top2 {
    display: flex;
    gap: 15px;
    margin: 0px;
  }

  .img1 {
    flex-basis: 8%;
    width: 8%;
  }
  .input {
    flex-basis: 67%;
    width: 67%;
  }

  .btn-header {
    flex-basis: 25%;
    width: 25%;
  }

  .header-top2 img {
    width: 50px;
  }

  .header-top2 input {
    border: 2.5px solid #0a5c36;
    border-radius: 20px;
    padding-left: 20px;
    padding: 10px 12px;
  }

  .header-top2 button {
    display: inline-block;
    background-color: #0a5c36;
    border: none;
    border-radius: 20px;
    color: white;
    font-weight: bold;
    transform: scale(1);
    transition: 0.2S ease;
    padding: 10px 20px;
  }

  .header-top2 button:hover {
    transform: scale(1.03);
  }

  .header-top2 .input::placeholder {
    color: gray;
    font-style: italic;
  }

  .header-top2 .input:focus::placeholder {
    color: transparent;
  }

  /* HEAER MID */

  .header-mid a {
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    color: white;
    transition: 0.1s ease;
    padding: 5px;
  }

  .header-mid a:hover {
    transform: scale(1.1);  
    color: rgb(238, 255, 0);
  }

  .header-mid {
    top: 0;
    z-index: 999;
    background-color: #0a5c36;
    padding: 15px 30px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  #header {
    overflow: visible;
    /* Đảm bảo sticky hoạt động đúng */
  }

  /* PHẦN MAIN NHÉ */
  #main {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
  }

  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .header-mid a {
    position: relative;
    transition: color 0.3s;
  }

  .header-mid a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: white;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
  }

  .header-mid a:hover::after {
    transform: scaleX(1);
  }

  .call-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00d084, #00ffa8);
    color: white;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(0, 255, 128, 0.5);
    animation: pulse 1.8s infinite;
    z-index: 1000;
    transition: transform 0.2s ease;
  }

  .call-box:hover {
    background: linear-gradient(135deg, #00ff99, #33ffd7);
    transform: scale(1.05);
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(0, 255, 128, 0.6);
    }

    70% {
      transform: scale(1.07);
      box-shadow: 0 0 0 12px rgba(0, 255, 128, 0);
    }

    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(0, 255, 128, 0);
    }
  }

  .fixed-left-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(45deg, #ff9800, #ffeb3b);
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(255, 152, 0, 0.6);
    animation: pulse 1.5s infinite;
    cursor: pointer;
    z-index: 9999;
  }

  .fixed-left-button p {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.08);
    }

    100% {
      transform: scale(1);
    }
  }

  .zalo-contact {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: transform 0.3s ease;
  }

  .zalo-contact:hover {
    transform: scale(1.1);
  }

  .zalo-contact img {
    width: 32px;
    height: 32px;
  }

  /* --- Box Chat Zalo --- */
  @media (max-width: 768px) {
    body {
      width: 100%;
      padding: 0 10px;
    }

    .header-top {
      flex-direction: column;
      gap: 5px;
      text-align: center;
    }

    .header-top2 {
      flex-direction: column;
      align-items: center;
    }

    .header-top2 input,
    .header-top2 button {
      width: 50%;
      margin-bottom: 10px;
    }
  }

  /* Main */

  /* CHĂM SÓC KHÁCH HÀNG */
  .features-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 60px auto;
  }

  .feature-box {
    flex: 1 1 200px;
    max-width: 280px;
    border: 2px dashed #d4e7d1;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    background-color: #fff;
  }

  .feature-box img {
    width: 150px;
    margin-bottom: 15px;
  }

  .feature-box h3 {
    color: #0a5c36;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
  }

  .feature-box p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }

  /* Hover hoặc click */
  .feature-box:active,
  .feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(10, 92, 54, 0.2);
  }

  /* Đường chạy phía đáy */
  .feature-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30%;
    width: 40%;
    height: 3px;
    background-color: #0a5c36;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
  }

  .feature-box:active::after,
  .feature-box:hover::after {
    transform: scaleX(1);
  }

  /* ========================= FEATURES MOBILE ========================= */
  @media (max-width: 768px) {
  .features-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px;
    gap: 8px;
    margin-top: 5px;

  }

  .feature-box {
    width: 48%;
    box-sizing: border-box;
    padding: 5px;
    border: 1.4px dashed #71cc93;
    border-radius: 8px;
    text-align: center;
    font-size: 12px;
    margin-bottom: 10px;
  }

  .feature-box h3 {
    font-size: 14px;
  }

  .feature-box img {
    max-width: 70px;
    height: auto;
    margin-bottom: 8px;
  }
  }
  /* === Footer Base === */
  .footer {
    background-color: #0a5c36;
    color: #ffffff;
    padding: 40px 20px 20px;
    font-size: 14px;
  }

  .footer a {
    color: #ffffff;
    text-decoration: none;
  }

  .footer a:hover {
    text-decoration: underline;
  }

  .footer h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 15px;
  }

  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-col {
    flex: 1;
    min-width: 250px;
  }

  .footer-logo {
    width: 100px;
    margin-bottom: 10px;
    background-color: white;
    border-radius: 3px;
    padding: 5px;
  }

  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-col ul li {
    margin-bottom: 6px;
  }

  .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
  }

  .social-icons img {
    width: 26px;
    height: 26px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
  }

  .social-icons img:hover {
    transform: scale(1.1);
  }

  .map-wrapper {
    margin-top: 12px;
    border-radius: 8px;
    overflow: hidden;
  }

  .footer-bottom {
    text-align: center;
    font-size: 11px;
    font-weight: bold;
    margin-top: 30px;
    color: #c8f5df;
    background-color: rgb(0, 131, 113);
    padding: 2px 0;
    margin: 0;
  }

  /* === Responsive for Mobile === */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-col {
      width: 100%;
      margin-bottom: 20px;
    }

    .footer-logo {
      width: 80px;
      margin: 0 auto 10px;
    }

    .social-icons {
      justify-content: center;
    }

    .map-wrapper iframe {
      height: 200px;
    }
  }

  .swiper-wrapper {
    display: flex;
  }

  /* Swiper vùng hiển thị */
  .product-slider {
    width: 100%;
    padding: 40px 0;
  }

  /* Slide chung */
  .product-card {
    text-align: center;
    background-color: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(218, 218, 218, 0.1);
    transition: transform 0.3s ease, box-shadow 0.1s ease;
    cursor: pointer;
  }

  .product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  /* Ảnh sản phẩm */
  .product-card img {
    width: 700px;
  }

  /* Tên sản phẩm */
  .product-card p {
    margin-top: 30px;
    font-weight: bold;
    color: #0a5c36;
    font-size: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  /* GIỚI THIỆU VỀ CÔNG TY */
  .swiper-button-next,
  .swiper-button-prev {
    color: #0a5c36;
    font-weight: bold;
  }

  .about-section {
    background: #f4f4f4;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
  }

  .about-section .container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .about-title {
    font-size: 34px;
    text-align: center;
    color: #0a5c36;
    margin-bottom: 30px;
  }

  .about-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
    padding: 0 15px;
  }

  .about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 30px;
  }

  .about-block {
    flex: 1 1 48%;
    background: #fff;
    padding: 25px 20px;
    border-left: 5px solid #0a5c36;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  }

  .about-block.full-width {
    flex: 1 1 100%;
  }

  .about-block h3 {
    font-size: 20px;
    color: #0a5c36;
    margin-bottom: 15px;
  }

  .about-block ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .about-block li {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
  }

  .about-block li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 1px;
    color: #0a5c36;
    font-size: 14px;
  }

  .about-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
    font-style: italic;
    color: #555;
  }

  h1 {
    color: #0a5c36;
    border: none;
    border-radius: 40px;
    padding: 17px;
    margin: 0px;
    margin-top: 40px;
    max-width: 400px;
    text-align: center;
  }

  .about-section {
    background: #f4f4f4;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
  }

  .about-section .container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .about-title {
    font-size: 34px;
    text-align: center;
    color: #0a5c36;
    margin-bottom: 30px;
  }

  .about-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
    padding: 0 15px;
  }

  .about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 30px;
  }

  /* FORM ĐẶT HÀNG */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .order-form-container {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
    animation: fadeInUp 0.3s ease;
  }

  .order-form-container h2 {
    margin-bottom: 20px;
    text-align: center;
  }

  .order-form-container input,
  .order-form-container textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
  }

  .order-form-container button {
    width: 100%;
    padding: 10px;
    background: #0a5c36;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
  }

  .order-form-container button:hover {
    background: #08814e;
  }

  .close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Phản hồi khách hàng */
  .testimonials {
    padding: 60px 20px;
    background: #f6f6f6;
    text-align: center;
  }

  .testimonials h2 {
    font-size: 28px;
    color: #0a5c36;
    margin-bottom: 30px;
  }

  .testimonial-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .testimonial {
    background: #fff;
    border: 1px solid #ddd;
    border-left: 4px solid #0a5c36;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .testimonial p {
    font-style: italic;
    color: #333;
  }

  .testimonial h4 {
    margin-top: 15px;
    font-size: 16px;
    color: #555;
  }

  /* ========================= PARTNERS ========================= */
  .partners {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #ffffff, #f6fff9);
    text-align: center;
  }

  .partners h2 {
    font-size: 32px;
    color: #0a5c36;
    margin-bottom: 40px;
    position: relative;
  }

  .partners h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #0a5c36;
    margin: 10px auto 0;
    border-radius: 2px;
  }

  .partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    justify-items: center;
  }

  .partner-item {
    width: 80%;
    max-width: 220px;
    height: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
  }

  .partner-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .partner-item img {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
    padding: 20px;
  }

  /* ========================= RESPONSIVE ========================= */
  @media (max-width: 768px) {
    .partner-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .partner-item {
      max-width: 140px;
      height: 90px;
    }

    .partner-item img {
      max-height: 60px;
    }
  }

  /* Câu hỏi thường gặp */
  .faq {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #f6fff9, #ffffff);
    font-family: 'Segoe UI', sans-serif;
  }

  .faq h2 {
    font-size: 32px;
    color: #0a5c36;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
  }

  .faq h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #0a5c36;
    margin: 10px auto 0;
    border-radius: 2px;
  }

  .faq-item {
    max-width: 800px;
    margin: 0 auto 20px;
    background-color: #e8f8f2;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
    border-left: 6px solid #0a5c36;
    transition: 0.3s ease;
  }

  .faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: #dff5ec;
  }

  .faq-item h4 {
    color: #0a5c36;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    position: relative;
    padding-left: 30px;
  }

  .faq-item h4::before {
    content: '❓';
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 20px;
  }

  .faq-item p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
  }

  /* Ảnh tự động cuộn */
  .auto-slider-section {
    padding: 40px 0;
    background: #f7f7f7;
    text-align: center;
  }

  .auto-slider-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1e4f24;
    text-transform: uppercase;
  }

  .auto-slider-swiper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
  }

  .auto-slider-swiper .swiper-slide {
    width: auto;
    text-align: center;
    transition: transform 0.3s ease;
  }

  .auto-slider-swiper .swiper-slide img {
    width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }

  .auto-slider-swiper .swiper-slide img:hover {
    transform: scale(1.05);
  }

  /* ==================== */
  /* ✅ TỐI ƯU ZOOM VÀ KHÔNG BỊ VỠ BỐ CỤC */
  /* ==================== */

  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .container,
  .content,
  .section,
  .row,
  .column {
    width: 100%;
    box-sizing: border-box;
  }

  .header-mid a,
  nav a,
  .menu a {
    font-size: 1em;
    padding: 0.5em 1em;
    word-break: keep-all;
  }

  /* Tránh đối tượng xuống dòng bất thường */
  .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
  }

  @media (max-width: 768px) {
    .header-mid {
      flex-wrap: wrap;
      justify-content: center;
    }

    .product-card img,
    .banner img {
      max-width: 100%;
      height: auto;
      object-fit: cover;
    }

    .product-card {
      width: 100%;
      max-width: 360px;
      margin: 0 auto;
    }
  }


  /* ====== MENU HAMBURGER ====== */
  .menu-toggle {
    display: none;
    font-size: 28px;
    font-weight: bold;
    padding: 10px 20px;
    cursor: pointer;
    background-color: #0a5c36;
    color: white;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 10000;
    border-radius: 6px;
  }
  /* MENU NGANG LUÔN GHIM */
  .header-mid-wrapper {
    position: sticky;
    display: block;
    top: 0;
    z-index: 999;
    background-color: #0a5c36;
  }
  /* Ẩn menu ngang mặc định trên mobile */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }

    .header-mid-wrapper {
      display: none;
      width: 100%;
      background-color: #0a5c36;
    }

    .header-mid-wrapper.show-menu {
      display: block;
    }

    .header-mid {
      flex-wrap: wrap;
      align-items: stretch;
      padding: 10px;
      gap: 5px;
    }

    .header-mid a {
      width: 100%;
      text-align: center;
      padding: 14px 0;
      font-size: 16px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
  }

  @media (max-width: 768px) {
    .header-top2 {
      flex-direction: row;
      justify-content: center;
      align-items: center;
      flex-wrap: nowrap;
      gap: 10px;
    }

    .header-top2 img {
      width: 40px;
      height: auto;
    }

    .header-top2 input {
      flex: 1;
      min-width: 120px;
      width: auto;
    }

    .header-top2 button {
      flex-shrink: 0;
      padding: 8px 14px;
      font-size: 14px;
    }
  }

  /* Kích thước to hơn và đẹp hơn cho cả desktop và mobile */
  .header-top2 {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
  }

  .header-top2 img {
    width: 60px;
    height: auto;
  }

  .header-top2 input {
    flex: 1;
    padding: 25px 18px;
    font-size: 16px;
    border-radius: 25px;
    border: 2px solid #0a5c36;
  }

  .header-top2 button {
    padding: 25px 22px;
    font-size: 16px;
    border-radius: 25px;
    background-color: #0a5c36;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
  }

  .header-top2 button:hover {
    background-color: #08814e;
    border-radius: 40px;
  }

  /* Responsive cho mobile vẫn giữ to đẹp */
  @media (max-width: 768px) {
    .header-top2 {
      flex-direction: row;
      justify-content: center;
      flex-wrap: nowrap;
      gap: 10px;
    }

    .header-top2 img {
      width: 50px;
    }

    .menu-toggle {
      display: block;
      font-size: 28px;
      font-weight: bold;
      padding: 10px 20px;
      cursor: pointer;
      background-color: #0a5c36;
      color: white;
      position: fixed;
      top: 10px;
      right: 10px;
      z-index: 99999;
      /* ⚠ Đặt thật cao để đảm bảo không bị che */
      border-radius: 6px;
    }

    @media (max-width: 768px) {
      .header-mid-wrapper {
        display: none;
        position: fixed;
        /* ✅ Giữ menu cố định khi scroll */
        top: 60px;
        /* ✅ Đặt dưới nút ☰ */
        left: 0;
        width: 100%;
        background-color: #0a5c36;
        z-index: 9999;
      }

      .header-mid-wrapper.show-menu {
        display: block !important;
      }

      .menu-toggle {
        display: block;
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 99999;
        font-size: 28px;
        font-weight: bold;
        padding: 10px 20px;
        background-color: #0a5c36;
        color: white;
        border-radius: 6px;
        cursor: pointer;
      }
    }

    /* Swiper Banner */
    .banner-swiper {
      width: 100%;
      height: auto;
      position: relative;
    }

    .banner-swiper img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .swiper-pagination {
      position: absolute;
      bottom: 15px;
      left: 0;
      width: 100%;
      text-align: center;
    }

    .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      background: rgba(255, 255, 255, 0.5);
      opacity: 1;
      margin: 0 6px;  
      border-radius: 50%;
      display: inline-block;
      transition: background 0.3s;
    }

    .swiper-pagination-bullet-active {
      background: #ffffff;
    }
