/****************************************
*****************************************
Product Section
*****************************************
****************************************/

.product-section {
  position: relative;
  top: 0;
  z-index: 2;
  background: #f2f2f2;
  padding: 8vw 4vw 5vw;
  box-sizing: border-box;
  max-width: 1920px;
}

.product-banner {
  position: absolute;
  top: -3vw;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 10px;
  padding: 1.8vw 3vw;
  width: 90%;
  max-width: 1100px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.product-banner p {
  font-size: 20px;
  line-height: 1.6;
  color: #111;
}

.product-banner .highlight {
  color: #f9435a;
  font-weight: bold;
}

.product-container {
  text-align: center;
  width: 100%;
}

.product-container h2 {
  color: #f9435a;
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 92%;
  margin: 0 auto;
}

.product-card {
  background-color: transparent;
  border-right: 1px solid #ddd;
  padding: 0 1.5vw;
  text-align: left;
}

.product-card:last-child {
  border-right: none;
}

.product-card span img {
  height: 40px;
  margin-bottom: 20px;
}

.product-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.product-card p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #333;
}

.product-card a {
  color: #f9435a;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
}

.product-card a:hover {
  text-decoration: underline;
}

@media (max-width: 1080px) {
  .product-container {
    padding-top: 20px;
    text-align: center;
    width: 100%;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-card {
    border-right: 1px solid #fff;
  }
  .product-banner {
    position: absolute;
    border-radius: 0px;
    width: 100%;
    top: -40px;
  }
}

@media (max-width: 768px) {
  .product-container {
    padding-top: 90px;
    text-align: center;
    width: 100%;
  }
  .product-grid {
    grid-template-columns: repeat(1, 1fr);
    max-width: 500px;
    margin: 0px auto;
  }
  .product-section {
    position: relative;
    width: 100vw;
    padding: 8vw 4vw 5vw;
    box-sizing: border-box;
    max-width: 1920px;
    margin: 0 auto;
    border-radius: 0px;
  }
}

/****************************************
*****************************************
Battery Section
*****************************************
****************************************/

.batteries-section {
  padding: 40px 0;
  margin: 0 auto;
}

.batteries-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.batteries-item {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  padding: 2vw;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
  background: #fff;
}

.batteries-img-1 {
  width: 311px;
  height: 311px;
  object-fit: cover;
}

.batteries-img-2 {
  width: 291px;
  height: 291px;
  object-fit: cover;
}

.batteries-img-3 {
  width: 213px;
  height: 290px;
  object-fit: cover;
}

.batteries-content {
  max-width: 630px;
}

.batteries-heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1.5vw;
  color: var(--Primary_Red_75, #f53f50);
  font-style: normal;
  line-height: normal;
}

.batteries-description {
  font-size: 18px;
  color: #333;
  margin-bottom: 0.8vw;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
}

.batteries-link {
  font-weight: 600;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.5vw;
}

.batteries-link:hover {
  text-decoration: underline;
}
@media (max-width: 1080px) {
  .batteries-item {
    gap: 40px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .batteries-item {
    flex-direction: column;
    gap: 40px;
    padding: 30px;
  }
}
