/* Product Contact Buttons CSS (SVG version) */
.woo-social-buttons-wrapper{
    width: 100%;
}
.pcb-buttons-wrapper {
 	display: flex;
    flex-flow: row;
	gap: 13px;
    width: 100%;
}
.pcb-btn{
    padding: 7px 10px;
    width: 100%;
    text-align: center;
	color: #fff;
   text-decoration: none;
   border-radius: 6px;
   font-size: 16px;
   font-weight: 600;
   transition: all 0.3s ease;
}
.pcb-whatsapp {
  background-color: #25D366;
  color: #fff;
}

.pcb-call {
	margin-top:15px;
  background-color: #000c38;
 color: #fff;
}
.pcb-btn:hover, .pcb-btn:focus {
  opacity: 0.9;
 color: #fff;
}
.ast-sticky-add-to-cart-action-wrap
.woo-social-buttons-wrapper{
    display: none !important;
}
@media (max-width: 768px) {
  .pcb-buttons-wrapper {
    flex-direction: row;
  }
.pcb-btn{
    width: 100%;
}
}
/* 
.pcb-buttons-wrapper {
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.pcb-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 48%;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.pcb-btn svg {
  width: 18px;
  height: 18px;
}

.pcb-whatsapp {
  background-color: #25D366;
}

.pcb-call {
  background-color: #007bff;
}

.pcb-btn:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .pcb-buttons-wrapper {
    flex-direction: column;
  }
}
*/