/* =========================
   PRODUCT SECTIONS
========================= */

#product-com,
#product-cam,
#product-auto {
  padding: 60px 0;
  overflow: hidden;
}

#product-com {
  background: #ffffff;
}

#product-cam {
  background: #f2f2f2;
}

#product-auto {
  background: #ffffff;
}
/* =========================
   IMAGE SECTION
========================= */

.product-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

#product-com .product .product-image-wrapper img{
    height: 500px;
    width: 450px;
}

#product-cam .product, #product-auto .product, #product-com .product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding-left: 40px;
  padding-right: 40px;
}

#product-com h1,
#product-cam h1,
#product-auto h1 {
  font-size: 52px;
  font-weight: 700;
  color: #2254c5;
  margin-bottom: 10px;
}

#product-com h3,
#product-cam h3,
#product-auto h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

#product-com p,
#product-cam p,
#product-auto p {
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 24px;
}

/* =========================
   BUTTON
========================= */

.read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  background: #2254c5;
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more:hover {
  background: #173c93;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

@media (max-width: 1199px) {

  #product-com h1,
  #product-cam h1,
  #product-auto h1 {
    font-size: 42px;
  }

  #product-com h3,
  #product-cam h3,
  #product-auto h3 {
    font-size: 24px;
  }

}


@media (max-width: 991px) {

  #product-com,
  #product-cam,
  #product-auto {
    padding: 60px 0;
    text-align: center;
  }

  .product-image-box {
    max-width: 350px;
    height: 380px;
  }

  .center-content {
    flex-direction: column;
    gap: 30px;
  }

  #product-com .col-md-4,
  #product-cam .col-md-4,
  #product-auto .col-md-4 {
    width: 100%;
  }

  #product-com .col-md-8,
  #product-cam .col-md-8,
  #product-auto .col-md-8 {
    width: 100%;
    padding: 0 15px;
  }

  #product-com h1,
  #product-cam h1,
  #product-auto h1 {
    font-size: 38px;
  }

  #product-com h3,
  #product-cam h3,
  #product-auto h3 {
    font-size: 18px;
  }

  #product-com p,
  #product-cam p,
  #product-auto p {
    font-size: 16px;
    text-align: center !important;
  }

  #product-com img,
  #product-cam img,
  #product-auto img {
    max-height: 380px;
  }

}

@media (max-width: 576px) {
    #product-cam .product, #product-auto .product, #product-com .product {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        padding-left: 40px;
        padding-right: 40px;
    }

    #product-com .product .product-image-wrapper img{
        height: auto;
        width: auto;
    }

  #product-com,
  #product-cam,
  #product-auto {
    padding: 50px 0;
  }

  #product-com h1,
  #product-cam h1,
  #product-auto h1 {
    font-size: 30px;
  }

  #product-com h3,
  #product-cam h3,
  #product-auto h3 {
    font-size: 16px;
    line-height: 1.5;
  }

 .product-image-box {
    max-width: 280px;
    height: 300px;
  }

  #product-com p,
  #product-cam p,
  #product-auto p {
    font-size: 15px;
    line-height: 1.8;
  }

  #product-com img,
  #product-cam img,
  #product-auto img {
    max-height: 280px;
  }

  .read-more {
    width: 100%;
    max-width: 240px;
    height: 52px;
  }

}

@media (min-width: 1221px) {

  #product-com,
  #product-cam,
  #product-auto {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

}