/* Fullscreen Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

#preloader img {
  width: 70vw;
  max-width: 700px;
  height: auto;
  animation: fadeIn 1s ease-in-out;
}

/* Animasi Fade In */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive tweaks untuk HP */
@media (max-width: 480px) {
  #preloader img {
    width: 80vw;
  }
}



.contact-form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,

.contact-form textarea {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  padding: 10px;
  font-size: 16px;
  background-color: #111;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #444;
}



/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}


/* NAVBAR */
.navbar {
  background-color: #FFFFFF;
  padding: clamp(6px, 1.5vw, 10px) clamp(10px, 5vw, 20px);
  display: flex;
  align-items: center;
  justify-content:space-between;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  font-size: clamp(14px, 2vw, 18px); /* Teks ikut mengecil */
  box-sizing: border-box;
}

/* Logo */
.logo {
  color: #111; /* sebelumnya putih, diganti agar terlihat di navbar putih */
  font-size: clamp(16px, 2.5vw, 20px); /* Responsive font size */
  font-weight: bold;
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: left;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #ccc;
  padding: 14px 18px;
  display: block;
  font-size: 14px;
  transition: background 0.3s ease;
}

nav ul li a:hover {
  background-color: #444;
  color: white;
}

/* Link Beranda */
.home-link {
  color: #111;
  font-weight: bold;
  font-size: clamp(14px, 2vw, 18px); /* Ukuran font responsif */
  text-decoration: none;
  padding: 0 10px;
  display: inline-block; /* Agar tidak mengubah aliran elemen */
  text-align: center; /* Menjaga teks tetap terpusat */
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #222;
  min-width: 220px;
  z-index: 999;
  flex-direction: column;
}

.dropdown-content li a {
  padding: 12px 16px;
  color: #ccc;
  white-space: nowrap;
}

.dropdown-content li a:hover {
  background-color: #333;
  color: white;
}

.dropdown:hover .dropdown-content {
  display: flex;
  flex-direction: column;
}

/* Media query untuk tampilan di perangkat mobile */
@media (max-width: 768px) {

  /* Navbar */
  .navbar {
    padding: clamp(6px, 5vw, 10px); /* Sesuaikan padding untuk perangkat mobile */
    font-size: clamp(12px, 3vw, 16px); /* Ukuran font sedikit lebih kecil */
  }

  /* Logo */
  .logo {
    font-size: clamp(14px, 5vw, 18px); /* Menyesuaikan ukuran logo */
  }

  /* Menu navigasi */
  nav ul {
    display: flex;
    align-items: left;
    justify-content: center; /* Menjaga menu tetap di tengah */
    padding: 0;
    margin: 0; /* Hilangkan margin default */
  }

  nav ul li {
    margin: 0 2px; /* Mengurangi jarak antar item menu */
  }

  nav ul li a {
    padding: 10px 12px; /* Mengurangi padding agar lebih rapat */
    font-size: clamp(12px, 3vw, 16px); /* Ukuran font lebih kecil */
  }

  /* Link Beranda */
  .home-link {
    font-size: clamp(12px, 3vw, 16px); /* Ukuran font beranda disesuaikan */
    padding: 0 8px; /* Menjaga jarak yang lebih rapat pada link */
  }

  /* Dropdown content */
  .dropdown-content {
    min-width: auto; /* Sesuaikan dengan ukuran dropdown yang lebih kecil */
  }
}




/* CONTENT */
.content {
  padding: 40px;
  text-align: center;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

/* CAROUSEL */
.carousel-container {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}

.carousel-image {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  flex-shrink: 0;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.7);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  padding: 10px 15px;
  border-radius: 50%;
}

.carousel-button.prev {
  left: 20px;
}

.carousel-button.next {
  right: 20px;
}

.carousel-button {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.carousel:hover .carousel-button {
  opacity: 1;
  pointer-events: auto;
}


/* Tombol Contact Us */
.contact-button-wrapper {
  position: absolute;
  bottom: 40px;
  width: 100%;
  text-align: center;
  z-index: 5;
}

.contact-button {
  padding: 12px 24px;
  background-color: transparent;
  color: white;
  font-size: 1rem;
  font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Font profesional tanpa unduh */
  font-weight: 600;
  border: 2px solid white;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.contact-button:hover {
  background-color: white;
  color: black;
}


/* FOOTER */
footer {
  background-color: #FFFFFFFF;
  color: black;
  padding: 20px 0;
  text-align: left;
  font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  padding: 0 20px;
}

.footer-logo {
  width: 150px;
  height: auto;
}

.footer-tagline {
  color: black;
  font-size: clamp(12px, 2vw, 14px); /* Ukuran font fleksibel */
  margin-top: 10px;
  text-align: center; /* Default center */
  font-weight: 400;
}


/* Di layar lebar (misalnya di atas 768px), rata kiri */
@media (min-width: 768px) {
  .footer-tagline {
    text-align: left;
  }
}

.footer-links {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.footer-links li {
  display: inline;
  margin: 0 15px;
}

.footer-links a {
  color: black;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

.wa-icon {
  width: 30px;
  vertical-align: middle;
  margin-right: 5px;
}

.whatsapp-number {
  font-size: 20px;
  color: green;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Gmail Icon Styling */
.gmail-icon {
  width: 30px;
  vertical-align: middle;
  margin-right: 5px;
}

.gmail-address {
  font-size: 20px;
  color: #d14d3d;  /* Gmail-specific color */
  text-decoration: none;
  font-weight: 600;
  font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.gmail-address:hover {
  text-decoration: none; /* Menghapus underline */
}

/* Kolom tengah footer */
.footer-column.center {
  display: flex;
  flex-direction: column;
  align-items: center;  /* Keep the content centered */
  text-align: center;  /* Ensure text is centered */
}

footer .footer-column.center a {
  color: black;
}

footer .footer-column.center p {
  margin: 0;
  font-weight: bold;
}

footer .footer-column.center strong {
  font-size: 16px;
  font-weight: 700;
}

footer .footer-column.center .wa-icon {
  margin-top: 10px;
}

footer .footer-column.center .whatsapp-number {
  font-size: 18px;
  font-weight: 500;
  color: green;
}

/* Added Spacing between contact sections */
.contact-details {
  margin-top: 20px;
  text-align: left;  /* Align content left */
}

footer .footer-column.center .gmail-icon {
  margin-top: 10px;
}

footer .footer-column.center .gmail-address {
  font-size: 18px;
  font-weight: 500;
  color: #d14d3d;
}

/* Adjust right column (address) */
.footer-column.right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.footer-address-title {
  font-size: clamp(16px, 2vw, 18px); /* Ukuran fleksibel */
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center; /* Default center */
}

.footer-address-content {
  font-size: clamp(14px, 1.8vw, 16px); /* Ukuran fleksibel */
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  text-align: center; /* Default center */
}

/* Kembali ke rata kiri di layar besar */
@media (min-width: 768px) {
  .footer-address-title,
  .footer-address-content {
    text-align: left;
  }
}


/* WhatsApp Horizontal Layout */
.wa-horizontal {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 5px; /* Mengurangi jarak antara ikon dan teks */
}

.wa-horizontal .whatsapp-number {
  margin-top: 4px; /* Bisa disesuaikan, misalnya 6px, 8px */
}

/* Gmail Horizontal Layout */
.gmail-horizontal {
  display: flex;
  align-items: flex-start; /* Agar teks bisa lebih ke bawah dari ikon */
  text-decoration: none;
  gap: 5px; /* Mengurangi jarak antara ikon dan teks */
}

.gmail-horizontal .gmail-address {
  margin-top: 6px; /* Sesuaikan nilai ini sesuai selera */
}

/* Menghapus underline pada link */
footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: none;  /* Hapus underline saat hover */
}

.contact-details a {
  margin-bottom: 6px; /* Atur jarak antar WhatsApp dan Gmail lebih dekat */
}

/* Responsif untuk layar kecil */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    padding: 10px 0;
  }

  .footer-logo {
    width: 80px;
  }
}

.logo {
  height: auto;
  width: 25vw;  /* Menyesuaikan lebar logo dengan 15% dari lebar layar */
  max-width: 300px;  /* Maksimal lebar logo */
}

/* MAP */
.map-container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

.address-container {
            text-align: center;
            margin-top: 20px;
        }

.address-container a {
            display: block;
            margin-top: 10px;
            font-size: 16px;
            color: #007bff;
            text-decoration: none;
        }

.address-container a:hover {
            text-decoration: underline;
        }

/* Style the contact info section */
#contact-info {
  background-color: #f9f9f9;
  padding: 30px;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

#contact-info h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-item {
  font-size: 1.1rem;
  color: #555;
  margin: 10px 0;
}

.contact-item strong {
  color: #2c3e50;
}

#contact-info p {
  font-family: Arial, sans-serif;
}

#contact-info p a {
  color: #3498db;
  text-decoration: none;
}

#contact-info p a:hover {
  text-decoration: underline;
}

.slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(20px);
  color: white;
  font-size: clamp(1.2rem, 4vw, 2rem); /* Ukuran fleksibel */
  font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transition: opacity 3s ease, transform 3s ease;
  padding: 0 5vw; /* Tambahkan padding agar teks tidak mentok di sisi layar kecil */
  box-sizing: border-box;
  width: 100%; /* Pastikan responsif horizontal */
  max-width: 800px; /* Batas lebar maksimal */
}


.carousel-slide.active .slide-text {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

.carousel-slide {
  position: relative;
}

/* Styling untuk container logo dan deskripsi baru */
.new-logo-text-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* fleksibel */
  gap: 30px;
  padding: 40px;
  background-color: #cccccc;
  opacity: 0;
  transition: opacity 2s ease-out;
  justify-items: center;
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
  max-width: max-width;  /* batas lebar agar tidak terlalu besar */
  width: 100%;        /* isi penuh wadah */
  margin: 0 auto;     /* center secara horizontal */
  box-sizing: border-box;
}


/* Styling untuk setiap item logo dan deskripsi */
.new-logo-text-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 5s ease-out, transform 5s ease-out;
}

/* Styling untuk logo */
.new-logo {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

/* Styling untuk deskripsi logo */
.new-logo-description {
  font-size: 14px;
  color: #333;
  font-weight: 400;
  margin-top: 5px;
  font-family: inherit; /* Gunakan font dari container */
}

.projects-bg-container {
  position: relative;
  width: 100%;
  height: 300px; /* Sesuaikan tinggi container sesuai kebutuhan */
  background-image: url('images/bg1g.png');
  background-size: cover;
  background-position: center;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Gambar mengisi seluruh container */
}

.text-container {
  position: absolute;
  top: 65%; /* Menempatkan teks di tengah vertikal */
  left: 20px; /* Memberikan jarak dari sisi kiri */
  transform: translateY(-50%); /* Mengoreksi posisi agar tepat di tengah */
}

.projects-bg-container h1 {
  font-family: 'Helvetica', 'Arial', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Ukuran font lebih kecil di layar sedang */
@media (max-width: 992px) {
  .projects-bg-container h1 {
    font-size: 26px;
  }
}

/* Ukuran font lebih kecil lagi di layar kecil */
@media (max-width: 768px) {
  .projects-bg-container h1 {
    font-size: 22px;
  }
}

/* Ukuran font paling kecil di layar sangat kecil (mobile) */
@media (max-width: 480px) {
  .projects-bg-container h1 {
    font-size: 18px;
  }
}

/* PROJECTS */
.projects-section {
  padding: clamp(40px, 6vw, 60px) clamp(20px, 5vw, 40px);
  background-color: #fafafa;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: clamp(14px, 2vw, 18px);
  color: #777;
  margin-bottom: 40px;
  font-weight: 400;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 2000px;
  margin: auto;
  box-sizing: border-box;
}

.project-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.project-image {
  width: 100%;
  height: clamp(200px, 35vw, 350px);
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.project-location {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
  text-align: center;
}

.project-product {
  font-size: clamp(14px, 2vw, 16px);
  color: #555;
  margin-top: 5px;
  font-weight: 400;
  text-align: center;
}

/* Responsive padding adjustment */
@media (max-width: 1200px) {
  .project-card {
    padding: 20px;
    border-radius: 12px;
  }
}

@media (max-width: 768px) {
  .project-card {
    padding: 15px;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .project-card {
    padding: 10px;
    border-radius: 8px;
  }
}


* {
  box-sizing: border-box;
}

body1 {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container1 {
  width: 100%;
  max-width: 100%;  /* Maksimal lebar container di desktop */
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.image-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;  /* Dua kolom di desktop */
  gap: 20px;
}

.main-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.main-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

#imageTitle {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 2vw;
  z-index: 2;
}

.thumbnail-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.thumbnail-title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.thumbnail-grid1 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));  /* Menyesuaikan ukuran thumbnail */
  gap: 10px;
  justify-content: center;
}

.thumbnail-container {
  text-align: center;
  position: relative;
}

.thumbnail {
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
  border: 6px solid transparent;
  border-radius: 6px;
  transition: border 0.3s;
}

.thumbnail.active,
.thumbnail:hover {
  border: 2px solid #007bff;
}

.thumbnail-text {
  font-size: 14px;
  color: #333;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 5px;
  border-radius: 4px;
  width: 100%;
  text-align: center;
}

.purchase-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #28a745;
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  border: none;
  transition: transform 0.2s, box-shadow 0.3s ease;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

.purchase-button:hover {
  background-color: #218838;
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.purchase-button:active {
  transform: translateY(2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.icon {
  margin-right: 10px;
}

@media (max-width: 768px) {
  /* Untuk tampilan mobile, ganti layout menjadi satu kolom */
  .image-layout {
    grid-template-columns: 1fr;  /* Satu kolom di layar kecil */
  }

  .thumbnail-grid1 {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));  /* Menyesuaikan ukuran thumbnail lebih kecil */
  }

  #imageTitle {
    font-size: 4vw; /* Menyesuaikan ukuran font judul di perangkat kecil */
  }

  .purchase-button {
    width: 100%; /* Tombol "Order Now" akan penuh lebar di perangkat kecil */
  }

  .thumbnail-title {
    margin-bottom: 10px;  /* Mengurangi jarak antara judul dan grid */
  }
}


    /*carouselproduk*/
    .feature-section {
      padding: 60px 20px;
      background: #f9f9f9;
      font-family: 'Poppins', sans-serif;
    }

    .feature-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .feature-title {
      font-size: 36px;
      font-weight: bold;
      margin-bottom: 20px;
      color: #333;
      font-family: 'Poppins', sans-serif;
      text-align: left;
    }

    .feature-list {
      list-style: none;
      padding: 0;
      font-size: 20px;
      line-height: 1.6;
      color: #555;
      font-family: 'Poppins', sans-serif;
      text-align: left;
    }

    .feature-list li::before {
      content: "✔";
      color: #4CAF50;
      margin-right: 10px;
    }

    .carousel1 {
      width: 100%;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    }

    .carousel1-items {
      display: flex;
      animation: slide 9s infinite;
    }

    .carousel1-item {
      width: 100%;
      object-fit: cover;
      display: block;
    }

    /* Carousel Animation */
    @keyframes slide {
      0%, 100% { transform: translateX(0); }
      33.33% { transform: translateX(-100%); }
      66.66% { transform: translateX(-200%); }
    }

    /* RESPONSIVE UNTUK HP */
    @media (max-width: 768px) {
      .feature-container {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .feature-title {
        font-size: 22px;
        text-align: center;
      }

      .feature-list {
        font-size: 15px;
        text-align: left;
      }

      .carousel1 {
        max-width: 100%;
        height: auto;
      }

      .carousel1-item {
        height: auto;
        object-fit: auto-fit;
      }

      .feature-right {
        order: -1;
      }
    }



/* Supporting Accessories Table */
.supporting-accessories {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.supporting-accessories .container {
  width: 90%;
  margin: 0 auto;
}

.supporting-accessories h2 {
  text-align: left;
  font-size: 2em;
  margin-bottom: 30px;
}

.accessories-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.accessories-table th, .accessories-table td {
  padding: 10px;
  text-align: left;
  border: 1px solid #ddd;
}

.accessories-table th {
  background-color: #333;
  color: white;
}

.accessories-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.accessories-table tr:hover {
  background-color: #ddd;

/* Make the table responsive for small screens */
@media screen and (max-width: 768px) {
  .accessories-table th, .accessories-table td {
    padding: 8px;
    font-size: 14px;
  }

  .accessories-table {
    border: none;
  }

  .accessories-table th {
    display: none;
  }

  .accessories-table td {
    display: block;
    width: 100%;
    text-align: right;
    border-bottom: 1px solid #ddd;
    padding-left: 50%;
    position: relative;
  }

  .accessories-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    font-weight: bold;
    text-transform: uppercase;
  }
}

/* For very small screens */
@media screen and (max-width: 480px) {
  .supporting-accessories h2 {
    font-size: 1.5em;
  }

  .accessories-table th, .accessories-table td {
    font-size: 12px;
  }
}



