.ProductData {
  display: flex;
  margin-top: 20px;
  background: #fff;
  box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.05);
  gap: 20px;
  align-items: flex-start;
  border: solid 1px #ddd;
  border-radius: 5px;
  margin-bottom: 25px;
  transition: 0.4s;
  cursor: pointer;
  padding: 10px;
}

.ProductData.changeBackground {
  background-color: rgba(6, 120, 177, 0.04);
}

.ProductData:hover {
  box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.08);
}

.ProductData:hover .productImage img {
  transform: scale(1.05);
}

.ProductData.ProductDataBanner {
  background: #f9f9e8;
}

.ProductData a {
  display: block;
  text-decoration: none;
  width: 40%;
}

.ProductData a .productImage {
  transition: 0.4s;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
}

.ProductData a .productImage span {
  display: block;
  width: 100%;
  position: relative;
}

.ProductData a .productImage span img {
  width: 100%;
  transition: 0.4s;
  overflow: hidden;
  height: 220px;
  max-height: 220px;
  object-fit: cover;
  border-radius: 5px;
}

.ProductData a .productImage span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 70%;
  background: linear-gradient(
    to bottom,
    rgba(6, 27, 65, 0) 0%,
    rgba(6, 27, 65, 0.8) 100%
  );
  z-index: 2;
}

.ProductData a .productImage .productImageContent {
  position: absolute;
  left: 0px;
  top: 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
  height: 100%;
  width: 100%;
}

.ProductData a .productImage .productImageContent .ProductImageIcon {
  display: flex;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
}

.ProductData a .productImage .productImageContent .ProductImageIcon i {
  background: #0678b1;
  font-size: 14px;
  color: #fff;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ProductData a .productImage .productImageContent .ProductImageIcon strong {
  display: flex;
  text-decoration: none;
  border: solid 4px rgba(255, 255, 255, 0.02);
  background: orange;
  font-size: 11px;
  color: #000;
  align-items: center;
  padding: 2px 15px;
  gap: 15px;
  border-radius: 30px;
  font-weight: 400;
}

.ProductData a .productImage .productImageContent .ProductImageIcon strong i {
  color: #000;
  font-size: 11px;
  background: none;
  height: 0;
  width: 0;
}

.productContent {
  width: 60%;
}

.productContent .name {
  display: block;
  border-bottom: solid 1px #ddd;
}

.productContent .name a {
  font-size: 22px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  transition: 0.5s;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.productContent .name a:hover {
  color: #0678b1;
  text-decoration: underline;
}

.productContent .name .itemDetail {
  display: flex;
  gap: 10px;
  align-items: center;
  border-bottom: solid 1px #ddd;
  padding: 4px 0;
}

.productContent .name .itemDetail .verifiedbadge {
  display: block;
}

.productContent .name .itemDetail .verifiedbadge img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

.productContent .name .itemDetail .ProductRatingDetail {
  display: flex;
  gap: 15px;
  align-items: center;
}

.productContent .name .itemDetail .ProductRatingDetail h2 {
  background: #0678b1;
  font-size: 18px;
  color: #fff;
  height: 40px;
  width: 50px;
  display: flex;
  justify-content: center;
  gap: 4px;
  align-items: center;
  border-radius: 5px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

.productContent .name .itemDetail .ProductRatingDetail h2 i {
  font-size: 13px;
}

.productContent .name .itemDetail .ProductRatingDetail .RatingDetail {
  display: block;
}

.productContent .name .itemDetail .ProductRatingDetail .RatingDetail h3 {
  font-size: 15px;
  color: #000;
  font-weight: 500;
}

.productContent .name h3 {
  font-size: 15px;
  color: #444;
  font-weight: 400;
  margin: 0;
  padding: 8px 0;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
}

.productContent .name h3 span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

.productContent .name h3 i {
  font-size: 14px;
  color: #4db7fe;
}

.productParagraph {
  display: block;
  padding: 6px 0;
}

.productParagraph .productDisc {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 4em;
  font-size: 16px;
  color: #444;
  font-weight: 400;
  margin: 0;
  padding: 0;
  line-height: 23px;
}

.productParagraph .productDisc p {
  text-align: left !important;
  font-size: 15px !important;
  margin: 0 !important;
  border-bottom: solid 1px #ddd;
  padding-bottom: 4px;
}

.productParagraph .categoryName {
  display: flex;
  gap: 8px;
  padding: 5px 0;
}

.productParagraph .categoryName > div {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 230px;
  min-width: 0;
}

.productParagraph .categoryName > div .text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
  display: block;
}

.productParagraph .categoryName > div i {
  font-size: 16px;
  color: #0071bc;
}

.productParagraph .categoryName > div > div {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 15px;
  font-weight: 500;
  font-size: 14px;
  color: #555;
}

.productParagraph .categoryName > div > div i {
  font-size: 16px;
  color: #28a745;
}

.ContactButton {
  display: flex;
  gap: 5px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.ContactButton a,
.ContactButton button {
  font-size: 15px;
  text-decoration: none;
  font-weight: 400;
  padding: 6px 0;
  justify-content: center;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 5px;
  border-radius: 5px;
  width: calc(25% - 8px);
  text-align: center;
}

.ContactButton .whatsapp {
  background: #f0fdfa;
  border: 1px solid #25d366;
  color: #25d366;
}

.ContactButton .whatsapp i {
  color: #25d366;
}

.ContactButton .whatsapp:hover {
  background: #25d366;
  color: #fff;
}

.ContactButton .whatsapp:hover i {
  color: #fff;
}

.ContactButton .enquiry {
  background: #f9f9f9;
  border: 1px solid #ccc;
  color: #333;
}

.ContactButton .enquiry i {
  color: #666;
}

.ContactButton .enquiry:hover {
  background: #e2e2e2;
}

.ContactButton .call {
  background: #40b340;
  border: 1px solid #40b340;
  color: #fff;
}

.ContactButton .call i {
  color: #fff;
}

.ContactButton .call:hover {
  background: #369d36;
}

.ContactButton .share {
  background: #007bff;
  border: 1px solid #007bff;
  color: #fff;
}

.ContactButton .share i {
  color: #fff;
}

.ContactButton .share:hover {
  background: #0069d9;
}

.ListingBanner {
  display: block;
  width: 100%;
  margin-bottom: 25px;
}

.ListingBanner a {
  display: block;
  width: 100%;
  text-decoration: none;
  position: relative;
}

.ListingBanner a span {
  display: block;
  width: 100%;
  height: 250px;
  border-radius: 5px;
}

.ListingBanner a span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.ListingBanner a .listingBannerText {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  z-index: 1;
}

.ListingBanner a .listingBannerText h2 {
  font-size: 40px;
  color: #fff;
  margin: 0;
  padding: 0;
  font-weight: 700;
}

.ListingBanner a .listingBannerText h3 {
  font-size: 30px;
  color: #fff;
  margin: 0;
  padding: 0;
  font-weight: 700;
}

.ListingBanner a h4 {
  position: absolute;
  right: 0px;
  top: -10px;
  background: #ddd;
  height: 20px;
  width: 20px;
  font-size: 12px;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.advertisementBox {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  background-color: #f7f7f7;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-image: url("https://akam.cdn.jdmagicbox.com/images/icontent/newwap/web2022/floatbanner_freelisting.png");
  background-repeat: no-repeat;
  background-position: 100%;
  background-size: cover;
}

.advertisementBox1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f7f7f7;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: #4db7fe;
}

.advertisementBox2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f7f7f7;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.advertisementBox2 .adImageContainer {
  width: auto;
}

.advertisementBox2 .adContent {
  text-align: center;
}

.advertisementBox2 .adContent h2 {
  color: #000;
}

.advertisementBox2 .adContent p {
  color: #000;
}

.adImageContainer {
  width: 100%;
  margin-bottom: 20px;
}

.adImage {
  max-width: 40px;
  max-height: 40px;
  border-radius: 8px;
}

.adContent {
  width: 100%;
}

.adContent h2 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.adContent p {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 20px;
}

.adButton {
  background-color: #ff7f00;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.adButton:hover {
  background-color: #e66d00;
}

@media only screen and (max-width: 768px) and (min-width: 360px) {
  .ProductData {
    flex-wrap: wrap;
    padding-bottom: 10px;
  }
  .ProductData a {
    width: 100%;
  }
  .ProductData .productContent {
    width: 100%;
  }
  .ProductData .productContent .name a {
    font-size: 20px;
  }
  .ProductData .productContent .productParagraph {
    display: block;
  }
  .ProductData .productContent .productParagraph .ContactButton {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
  }
  .ProductData .productContent .productParagraph .ContactButton a {
    width: 48%;
  }
  .ProductData .productContent .productParagraph .ContactButton button {
    flex-wrap: wrap;
    width: 48%;
  }
  .advertisementBox2 {
    border: solid 1px #ddd;
  }
}
