/* ================================
   SINGLE PRODUCT LAYOUT
================================ */

/* Container */
.pb-single-container {
    max-width: 1200px;
    margin: auto;
    padding: 30px;
}

/* ===== TOP SECTION ===== */
.pb-top-section {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

/* Image */
.pb-product-image {
    display:flex;
    /* border: 1px solid #eee; */
    padding: 15px;
    /* background: #fafafa; */
}

/* .pb-product-summary{
  display:flex !important;
} */

/* Summary */
.pb-product-summary h1 {
    font-size: 24px;
    font-weight: 700;
}

.pb-product-summary .price {
    font-size: 20px;
    color: #1e73be;
    font-weight: 700;
    margin: 10px 0;
}

.pb-product-summary .single_add_to_cart_button {
    background: #1e73be;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.pb-product-summary .single_add_to_cart_button:hover {
    opacity: 0.9;
}

/* ===== BOTTOM SECTION ===== */
.pb-bottom-section {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar */
.pb-left-sidebar {
    border: 1px solid #ddd;
    padding: 0px;
}

/* Description */
.pb-full-description {
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .pb-top-section,
    .pb-bottom-section {
        grid-template-columns: 1fr;
    }
}



/* Back button (appears above the product image) */
.pb-back-btn {
  display: inline-block;
  margin-bottom: 12px;
  text-decoration: none;
  color: #1e73be;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: background-color .12s, border-color .12s;
  font-size: 13px;
}
.pb-back-btn:hover {
  background: rgba(30,115,190,0.06);
  border-color: rgba(30,115,190,0.12);
}

/* Product summary container needs relative positioning so the badge can be absolute */
.pb-product-summary {
  position: relative;
  padding-top: 6px; /* leave space for badge */
}

/* Research badge (top-right of summary) */
.pb-research-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  display: inline-block;
  background: #eaf3ff;
  color: #1e73be;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

/* Slight spacing tweak so badge doesn't overlap heading on small screens */
@media (max-width: 992px) {
  .pb-research-badge {
    position: static;
    display: inline-block;
    margin-bottom: 10px;
  }
}

/* keep the image area visually consistent with screenshot */
.pb-product-image {
  /* border: 1px solid #eee; */
  padding: 15px;
  /* background: #fafafa; */
}

/* small refine: ensure product title stays aligned with summary area */
.pb-product-summary .product_title {
  margin-top: 6px;
}




.woocommerce #content div.product div.images,
 .woocommerce div.product div.images,
  .woocommerce-page #content div.product div.images, 
  .woocommerce-page div.product div.images {
    width:100% !important

  }




  .woocommerce-js div.product .product_title{
    font-size:32px;
    font-family: Abhaya Libre ExtraBold;
    color:black;
  }
