

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem; 
	padding:3% 0;
/*    justify-content: space-between;*/
	justify-content: center
}

	
.ph {
	background: none !important;
	}

.product-grid .product {
    background: #ffffff;
    text-align: center;
    padding: 1%;
    border-radius: 25px;
    border: 2px solid #ccc;
    box-sizing: border-box;

    /* EXACT 5 equal columns with gap compensation */
/*    flex: 0 0 calc((100% - (1.5rem * 4)) / 5);*/
	 flex: 0 0 calc((100% - (1.5rem * 5)) / 6);
}
.product-grid .product p {margin:0 0 15px; font-size:1em;}

.brctas { cursor:pointer; text-align: center; background: #eeeeee; border-radius:25px; padding:1%; box-sizing: border-box;  flex: 0 0 calc((100% - (1.5rem * 3)) / 4);}
.brctas .brimg {float:left; width:45%; margin:3% 0 0 0;}
.brctas .brholder {float:left;width:50%;  margin:2% 0 0 5%; text-align: left}
.brctas .brholder h3 {font-size:1.5em;}
.brctas .brholder .get-quote-btn{ margin:25px 0 0; padding:10px 15px; font-size: 1.0vw;}

	
.product-grid .product {    display: flex;    flex-direction: column; position: relative}
.product-grid .product h4 {    min-height: 2.4em; font-size: 1.2em; line-height: 1em}
.product-grid .product img {    width: 100%;    display: block;}
.product-grid .product .learn-more-btn { width:auto;   margin: 0;    font-size: 1em;    display: inline-block;    padding: 0.5em 0.5em; text-transform: capitalize}
.product-grid .product input { /*width:30%;*/ background-color: #eee;  border:0;    font-size: 1.08em;    box-sizing: border-box; border-radius: 5px;}



@media (max-width: 767px) {
   .product-grid .product {       flex: 0 0 100%; display: flex;     align-items: center;    gap: 1rem;  flex-direction: row;     border-radius: 15px; padding: 2% 3% 5%; }
    .product-grid .product img.bpi {  width: 35% !important;    display: block;    margin: 0 -4% 0 0;     }
    .product-grid .product .bph {   width:65% !important;   }

	
	
	.brctas {   flex: 0 0 100%; }
	.brctas .brholder h3 {font-size:1.6em;}
	.brctas .brimg {float:left; width:27%; margin:3% 0 0 0;}
	.brctas .brholder {float:left;width:73%;  margin:2% 0 0 0%; text-align: left}
	.brctas .brholder .get-quote-btn{ font-size: 1em; padding:6px 12px; margin-top: 5% !important;}
}	
	



.qty-input-wrapper {
    
}

.add-label {
    font-weight: 600;
    margin-right: 0;
	border-radius:50%;
	width:64px !important;
	height:64px !important;
	background:var(--cbPurple);
	color:#ffffff;
	text-transform: none!important;
	position: absolute;
/*
    right: -12px;
    bottom: -12px; 
*/
	right: -24px;
    bottom: -24px;
    font-size: 14px !important;
	line-height: 1em;
	text-align: center;
	padding-top:16px!important; 
	box-sizing: border-box
		
}

/* qty input */
.qty-input {
    width: 50px;
    padding: 6px 3px;
    font-size: 11px;
	text-align:center;
}

/* clickable icon */
.qty-plus-icon,
.qty-minus-icon{
    font-size: 1.5em;
    color: var(--cbPurple);
    cursor: pointer;
	margin-right: 3px;
	margin-left: 3px;
	margin-top:6px;
    z-index: 9;
}

/* ensure <a> is clickable */
.add-to-enq {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.add-label,
.add-to-enq {
    display: none;width:80px;
}
	
#enquiry-items {width:100%; float:left; clear:both}
	
	.enq-cart {
    position: fixed;
    bottom: 20px;
    right: -350px; /* hidden off-screen */
    width: 300px;
    background: white;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    padding: 15px;
    transition: right 0.4s ease;
    z-index: 9999;
    font-family: museo-sans, sans-serif;
}

.enq-cart.open {
    right: 20px; /* slide in */
}

.enq-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

	.enq-cart-header strong {
		font-weight:bold;
		font-size:1.2em;
		color:var(--cbPurple);
	}
.enq-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.enq-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.enq-item:last-child {
    border-bottom: none;
}

.remove-item {
    cursor: pointer;
    color: #000;
    font-size: 14px;
}

	.enq-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.enq-thumb {
    width: 45px !important;
    height: 45px !important;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.enq-info {
    flex: 1;
    font-size: 15px;
}
	.enq-btns {
		float:left;
		border: 2px solid #ccc;
    padding: 5px 10px;
    background: transparent;
    text-decoration: none;
    border-radius: 6px;
		margin-right:10px;
    font-family: museo-sans, sans-serif;
	}

.enq-cart-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: var(--cbPurple);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hide icon when expanded */
.enq-cart-icon.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Make the cart visually appealing when closed */
#enq-cart {
    opacity: 0;
    pointer-events: none;
}

#enq-cart.open {
    opacity: 1;
    pointer-events: auto; 
}






#enquiry-items .enq-title {display:block;font-size: 1.3em;    font-weight: 700;color: var(--cbPurple); }
#cart-items .enq-title {display:none; }

#bb-items  {clear:both }
#bb-items .enq-title {display:none; }
#bb-items .enq-title {display:none; }
#bb-items .enq-thumb { border: 2px solid #ddd;   width: 80px!important;    height: 80px!important;}
#bb-items .enq-info {  text-align: left;    font-size: 1.2em;}


#enquiry-items .enq-item { gap:15px;}
#enquiry-items .enq-thumb { border: 2px solid #ddd;   width: 50px;    height: 50px;}
#enquiry-items .enq-info {  text-align: left;    font-size: 1em;}





	