/* ==============================
   GLOBAL RESET (Elementor Safe)
================================ */
.custom-product-wrapper,
.about-bulk-wrapper {
  width: 100%;
  box-sizing: border-box;
}

/* ==============================
   DESKTOP DEFAULT (≥1025px)
================================ */

.custom-product-wrapper {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 40px;
  margin: 40px 0;
}

.product-left img {
  width: 100%;
  height: auto;
}

.thumbs {
  margin-top: 15px;
}

.thumbs img {
  width: 70px;
  margin-right: 10px;
  cursor: pointer;
}

.product-right h1 {
  font-size: 32px;
}

.perfect-for span {
  display: inline-block;
  border: 1px solid #aaa;
  padding: 6px 14px;
  border-radius: 20px;
  margin: 5px;
}

.about-bulk-wrapper {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 40px;
  margin: 60px 0;
}

.about-product {
  background: #0e5f5b;
  color: #fff;
  padding: 30px;
  border-radius: 8px;
}

.bulk-pricing {
  background: #fff;
  color: #000;
  padding: 30px;
  border-radius: 8px;
}

.bulk-pricing table {
  width: 100%;
  border-collapse: collapse;
}

.bulk-pricing th,
.bulk-pricing td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

/* ==============================
   TABLET (768px – 1024px)
================================ */

@media (max-width: 1024px) {

  .custom-product-wrapper {
    grid-template-columns: 1fr;
  }

  .product-left {
    order: 1;
  }

  .product-right {
    order: 2;
  }

  .about-bulk-wrapper {
    grid-template-columns: 1fr;
  }

  .about-product,
  .bulk-pricing {
    margin-bottom: 30px;
  }
}

/* ==============================
   MOBILE (≤767px)
================================ */

@media (max-width: 767px) {

  .custom-product-wrapper {
    gap: 25px;
    padding:20px;
  }

  .product-right h1 {
    font-size: 24px;
  }

  .thumbs img {
    width: 55px;
  }

  .perfect-for span {
    padding: 5px 10px;
    font-size: 13px;
  }

  .about-product,
  .bulk-pricing {
    padding: 20px;
  }

  .bulk-pricing table,
  .bulk-pricing thead,
  .bulk-pricing tbody,
  .bulk-pricing th,
  .bulk-pricing td,
  .bulk-pricing tr {
    display: block;
  }

  .bulk-pricing tr {
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
  }

  .bulk-pricing td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }

  .bulk-pricing td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 45%;
    font-weight: bold;
    text-align: left;
  }
}
