/*
Theme Name: Cell Bank Australia 
Theme URI: https://www.cellbankaustralia.com
Description: Child theme for Novalab theme with custom fonts and modifications
Author: Cell Bank Australia
Template: novalab
Version: 1.0.19
Text Domain: novalab-child
*/

/* Add your custom CSS below this line */

/* Right Logo Styling */
.bt-right-logo {
	display: inline-block;
	margin-left: 20px;
	vertical-align: middle;
}
.bt-content a{
  color:#1F4E9D;
}
.woocommerce-no-products-found{
  display:none;
}
.bt-right-logo img {
	max-height: 80px;
	height: auto;
	width: auto;
	vertical-align: middle;
}
.bt-logo-area .logo img {
    height: 100px;
    padding:5px;
    display: block;
    }

.logo {
	display: flex;
	align-items: center;
	gap: 20px;
}

/* Responsive adjustments for right logo */
@media (max-width: 768px) {
	.bt-right-logo {
		margin-left: 10px;
	}

	.bt-right-logo img {
		max-height: 60px;
	}
}

/* Product Grid - 3 Column Layout */
ul.products.columns-3 {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 20px !important;
	width: 100% !important;
}

ul.products.columns-3 li.product {
	/* flex-basis: calc(33.333% - 14px) !important;
	max-width: calc(33.333% - 14px) !important;
	width: calc(33.333% - 14px) !important; */
	margin: 0 !important;
}

/* Font Awesome Icon Fix - Dynamic CSS Generation */
/* Icon content is dynamically generated in functions.php using wp_head hook */
/* This approach avoids CSS attr() limitations with unicode escape sequences */

/* Category Header Styling */
.category-header-wrapper {
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 2px solid #e5e7eb;
}

.category-title,
.category-header-wrapper .category-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	/* color: #1f2937; */
	line-height: 1.2;
}

.category-description-wrapper,
.category-header-wrapper .category-description {
	font-size: 1rem;
	line-height: 1.6;
	color: #4b5563;
}

.category-description-wrapper p,
.category-header-wrapper .category-description p {
	margin-bottom: 0.75rem;
}

.category-description-wrapper p:last-child,
.category-header-wrapper .category-description p:last-child {
	margin-bottom: 0;
}

/* Responsive category header */
@media (max-width: 768px) {
	.category-title,
	.category-header-wrapper .category-title {
		font-size: 1.5rem;
	}

	.category-description-wrapper,
	.category-header-wrapper .category-description {
		font-size: 0.9rem;
	}
}

.category-title{
	color:#0891b2;
}

div.product {
    display: flex;
    gap: 2rem;
}
div.product .product-header {
       /* fixed image width on desktop */
    max-width: 70%;
}
div.product .product-summary {
    flex: 1 1 auto;
    min-width: 0; /* prevents overflow */
}
  .woocommerce div.product div.images {
    max-width: 240px;   /* adjust */
    width: 100%;
}
form.cart {
	display: flex;
	gap: 2em;
}
form.cart .quantity {
	max-width: 120px;
	
}

  @media (max-width: 1024px) {
    div.product .product-header {
        flex: 0 0 45%;
    }
}

@media (max-width: 768px) {
    div.product {
        flex-direction: column;
    }

    div.product .product-header {
        flex: none;
        width: 100%;
    }
}
.woocommerce-breadcrumb .breadcrumb-sep {
    font-family: FontAwesome;
    font-weight: 900; /* required for solid icons */
    margin: 0 8px;
}
.logged-in .btButtonWidget a[href*="technical-advice"]{
	display: none;
}

.btStickyHeaderActive.btMenuHorizontal .mainHeader .bt-logo-area .logo img{
  height:100px;
}
.secondary-logo{
  width:140px;margin-top:2.2em;margin-left:1em;
}
.btStickyHeaderActive.btMenuHorizontal .secondary-logo{
  width:140px;margin-top:5em;
}

/* Bluesky share button — matches round circle style of Facebook/X/WhatsApp */
.btIcoBluesky.bt_bb_icon .bt_bb_icon_holder {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 32px !important;
	height: 32px !important;
	position: relative;
}
.btIcoBluesky.bt_bb_icon.bt_bb_style_filled .bt_bb_icon_holder::before {
	content: "" !important;
	box-shadow: #0085ff 0px 0px 0px 48px inset;
	border-radius: 50%;
	position: absolute;
	top: 0; left: 0;
	width: 32px;
	height: 32px;
	transition: box-shadow 0.2s ease;
}
.btIcoBluesky.bt_bb_icon.bt_bb_style_filled .bt_bb_icon_holder svg {
	position: relative;
	z-index: 1;
	width: 15px;
	height: 15px;
	fill: #ffffff;
	transition: fill 0.2s ease;
}
.btIcoBluesky.bt_bb_icon.bt_bb_style_filled .bt_bb_icon_holder:hover::before {
	box-shadow: #0085ff 0px 0px 0px 1px inset;
}
.btIcoBluesky.bt_bb_icon.bt_bb_style_filled .bt_bb_icon_holder:hover svg {
	fill: #0085ff;
}

/* ── Product category hero: thumbnail overlay ─────────────────────────────── */

/*
 * The hero <section> already has position:relative (needed for parallax bg).
 * We position the overlay card in the right half, vertically centred.
 */
.novalab-child-cat-thumb-overlay {
	position: absolute;
	top: 50%;
	right: 10%;
	transform: translateY(-50%);
	z-index: 20;
	background: rgba(255, 255, 255, 0.92);
	border-radius: 8px;
	padding: 16px 24px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 220px;
}

.novalab-child-cat-thumb-overlay img {
	max-width: 180px;
	max-height: 120px;
	width: auto;
	height: auto;
	display: block;
}

/* Mobile: centre at bottom of hero, above the wave (≈70px) */
@media (max-width: 991px) {
	.novalab-child-cat-thumb-overlay {
		top: auto;
		right: auto;
		left: 50%;
		bottom: 30px;
		transform: translateX(-50%);
		max-width: 150px;
		padding: 10px 16px;
	}

	.novalab-child-cat-thumb-overlay img {
		max-width: 80px;
		max-height: 80px;
	}
}
/* ─────────────────────────────────────────────────────────────────────────── */

/* ── Cell Line Collections Block ────────────────────────────────────────── */
.cb-collections {
  
  color: #374151;
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.cb-collections *,
.cb-collections *::before,
.cb-collections *::after {
  box-sizing: border-box;
}

/* Provider card */
.cb-provider-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  box-shadow: 0 1px 4px rgba(8, 145, 178, 0.07), 0 2px 12px rgba(55, 65, 81, 0.06);
  margin-bottom: 20px;
  overflow: hidden;
}

.cb-provider-card:last-child {
  margin-bottom: 0;
}

/* Logo column */
.cb-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 160px;
  min-width: 160px;
  padding: 24px 16px;
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
}

.cb-logo img {
  display: block;
  /*max-width: 140px;
  max-height: 80px;*/
  width: 100%;
  height: auto;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}

/* Content column */
.cb-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 20px 24px;
  min-width: 0;
}

/* Provider name */
.cb-provider-name {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #0891b2;
  margin: 0 0 14px 0;
  padding: 0;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 10px;
}

/* Collection list */
.cb-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cb-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #e5e7eb;
  line-height: 1.45;
}

.cb-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cb-list li:first-child {
  padding-top: 0;
}

/* Collection name */
.cb-collection-name {
  font-size: 0.93rem;
  color: #374151;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  text-decoration: none;
}
a.cb-collection-name:hover,
a.cb-collection-name:focus {
  color: #0891b2;
  text-decoration: underline;
}

/* Price badge */
.cb-price {
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* Visit website row layout */
.cb-visit-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  padding: 9px 0;
}

.cb-visit-row:first-child {
  padding-top: 0;
}

.cb-visit-name {
  font-size: 0.93rem;
  color: #374151;
}

.cb-visit-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* Outlined button link */
.cb-btn-outline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0891b2;
  border: 1.5px solid #0891b2;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  padding: 5px 14px;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
  -webkit-transition: background 0.18s, color 0.18s;
  transition: background 0.18s, color 0.18s;
}

.cb-btn-outline:hover,
.cb-btn-outline:focus {
  background: #0891b2;
  color: #ffffff;
  text-decoration: none;
  outline: none;
}

/* Contact note */
.cb-note {
  font-size: 0.78rem;
  color: #6b7280;
  font-style: italic;
}

@media (max-width: 600px) {
  .cb-provider-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .cb-logo {
    width: 100%;
    min-width: 0;
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    padding: 18px 24px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .cb-logo img {
    max-width: 120px;
  }

  .cb-content {
    padding: 16px 18px;
  }

  .cb-price {
    font-size: 0.73rem;
    padding: 3px 9px;
  }
}
.bt-site-footer-widgets{
  padding-top:0em !important;
}