/* <+++++++++++++ Navbar  +++++++++++++> */

.header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  color: #1a1a1a;
  width: 100%;
  z-index: 100;
  border-bottom: 2px solid #009443;
}

.navbar {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-link {
  color: #1a1a1a;
  transition: color 0.3s;
  font-weight: 400;
}

.nav-link:hover {
  color: #009443;
}

.nav-link-lang {
  /* display: inline-block; */
  padding: 0.25rem 0.5rem; /* Adjust padding for size */
  background-color: #fff; /* Button color */
  color: #1a1a1a; /* Text color */
  border: none; /* No border */
  border-radius: 50px; /* Makes it pill-shaped */
  text-align: center; /* Center text */
  text-decoration: none; /* No underline */
  /* font-size: 16px; Font size */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.5s; /* Smooth transition */
}

.nav-link-lang:hover {
  background-color: #009443;
  color: #fff;
}

.nav-menu-btn,
.nav-close-btn {
  /* display: flex; */
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-menu-list {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 1.3rem;
  font-size: 1.1rem;
}

.nav-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

@media screen and (max-width: 1023px) {
  .nav-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    padding-block: 3.5rem;
    background-color: #fff;
    display: none;
    transition: top 0.5s;
    transition: display 0.5s;
    /* opacity: 0; */
  }
}
.show-menu {
  top: 0;
  /* opacity: 1; */
  display: initial;
}

/* <++++++++++  product Description +++++++++++> */

.prod-desc {
  padding-block: 5rem 2.5rem;
}

.product-desc-container {
  display: flex;
  flex-direction: column; /* Stack elements vertically on small screens */
  /* max-width: 1200px; */
  /* margin: auto; */
  /* background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  /* border-radius: 8px; */
  overflow: hidden;
}

.product-gallery {
  flex: 1;
  padding: 2.5rem;
}

.main-image img {
  width: 100%;
  border-radius: 8px;
}

.thumbnail-gallery {
  display: flex;
  margin-top: 10px;
  overflow-x: auto; /* Allow horizontal scrolling for thumbnails */
}

.thumbnail {
  width: 80px;
  height: 80px;
  margin-right: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: border 0.3s;
}

.thumbnail:hover {
  border: 2px solid #009443;
}

.product-details {
  flex: 1;
  padding-top: 2.5rem;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  align-items: center;
  /* padding-bottom: 0px; */
}

.product-details h1 {
  margin: 0;
}

.price {
  font-size: 24px;
  color: #009443;
}

.description {
  margin: 10px 0;
}

.features-ul {
  list-style-type: disc; /* Default bullet style */
}
.features-ul li::marker {
  color: #009443; /* Change this to your desired color */
  font-size: 1.2rem; /* Optional: change the size of the bullet */
}

.features-ul li {
  margin-bottom: 0.9rem;
}
/* .buy-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.buy-button:hover {
  background-color: #0056b3;
} */

/*<+++++++++++++++ product table section  +++++++++++++>*/
.table-section {
  text-align: center;
  /* padding-top: 2.5rem; */
}
.table_container {
  padding-bottom: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
}

.table {
  border-collapse: collapse;
  /* width: 100%; */
}

.table th,
td {
  padding: 4px;
}

.table th {
  background-color: #009443;
  color: #fff;
}

.stationary-column {
  position: sticky;
  z-index: 1;
}

/*<+++++++++++++++ product video section  +++++++++++++>*/
.product-video {
  padding-bottom: 2.5rem;
}

.product-video-container {
  display: flex;
  flex: 1;
  padding: 2.5rem;
  justify-content: center;
}

iframe {
  aspect-ratio: 16 / 9;
  height: auto;
  width: 100%;
}

/*<+++++++++++++++ footer section  +++++++++++++>*/

.footer {
  padding-block: 2.5rem;
  background-color: #009443;
}

.footer-data {
  row-gap: 3.5rem;
}

.footer-data {
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-address {
  color: var(--body-color);
  /* text-indent: 0.5rem; */
}

.footer-link-section {
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.footer-title {
  font-size: var(--h3-font);
  margin-bottom: 1rem;
  color: var(--body-color);
}

.footer-links {
  display: grid;
  row-gap: 0.75rem;
}

.footer-links {
  display: grid;
  row-gap: 0.75rem;
}

.footer-link {
  color: var(--body-color);
  transition: color 0.5s;
}

.footer-link:hover {
  color: var(--para-color);
}

.footer-social-container,
.footer-social {
  display: flex;
}

.footer-social-container {
  margin-top: 5rem;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
}

.footer-social {
  column-gap: 1.5rem;
}

.footer-social-link {
  color: var(--body-color);
  font-size: 1.5rem;
  transition: color 0.5s, transform 0.5s;
}

.footer-social-link:hover {
  color: var(--body-color);
  transform: translateY(-0.25rem);
}

.footer-copyrights {
  font-size: var(--small-font);
  color: var(--body-color);
  text-align: center;
}

/*<+++++++++++++++ Breakpoints  +++++++++++++>*/

@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .footer-link-section {
    grid-template-columns: max-content;
  }
}
/* @media screen and (min-width: 576px) {

} */

/* @media screen and (min-width: 768px) {

} */

@media (min-width: 768px) {
  .product-desc-container {
    flex-direction: row; /* Stack elements side by side on larger screens */
  }

  .product-gallery {
    flex: 1;
  }

  .product-details {
    flex: 1;
  }

  .footer-data {
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-evenly;
  }
  .footer-copy {
    order: -1;
  }
}

@media (max-width: 768px) {
  .thumbnail {
    width: 60px; /* Smaller thumbnails on mobile */
    height: 60px;
  }

  .price {
    font-size: 20px; /* Smaller price font on mobile */
  }

  .description {
    font-size: 14px; /* Smaller description font on mobile */
  }
}

@media screen and (min-width: 1023px) {
  .nav-menu-btn,
  .nav-close-btn {
    display: none;
  }

  .nav-menu-list {
    flex-direction: row;
    column-gap: 4rem;
  }
  iframe {
    aspect-ratio: 16 / 9;
    height: auto;
    width: 70%;
  }
  .footer-link-section {
    column-gap: 4.5rem;
  }
}
@media screen and (min-width: 1052px) {
  .container {
    margin-inline: auto;
  }

  .footer {
    padding-block: 5rem 3rem;
  }

  .footer-title {
    margin-bottom: 1.5rem;
  }
  .footer-social-container {
    column-gap: 2rem;
  }
  .footer-social-link {
    font-size: 1.5rem;
  }
}
