p {
  text-align: justify;
}
.info-banner {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  background-color: #e9f8eb;
  border-radius: 10px;
  padding: 15px;
	margin-top : 30px;
	margin-bottom:50px;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px; /* Space between icon and text */
  flex: 1 1 calc(25% - 20px); /* Set flexible width for each item */
  margin: 10px; /* Space between rows */
  font-family: Arial, sans-serif;
}

.icon {
  width: 40px;
  height: 40px;
}

.info-text p {
  margin: 0;
  font-size: 14px;
  color: #000;
}

.info-text strong {
  color: #007a3d;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .info-banner {
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start;
  }

  .info-item {
    flex-direction: row;
    justify-content: flex-start;
    width: 100%; /* Full width for each item */
    gap: 15px;
  }

  .icon {
    width: 30px;
    height: 30px; /* Smaller icons for mobile */
  }

  .info-text p {
    font-size: 13px; /* Adjust font size for smaller screens */
  }
  .woocommerce div.product form.cart .button {
    width: 80% !important;
}
.woocommerce-product-details__short-description{
  text-align: justify;
}
}
/* Keep your existing styles */
.medical_table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
  font-family: Arial, sans-serif;
}

.medical_table th,
.medical_table td {
  border: 1px solid #ccc;
  padding: 8px 12px;
  text-align: left;
}

.medical_table th {
  background-color: #66C791;
  color: #fff;
  font-weight: bold;
}

/* Responsive scroll wrapper */
.table-responsive {
  width: 100%;
  overflow-x: auto;
}

/* Optional: prevent full-width on small screens */
@media (max-width: 768px) {
  .medical_table {
    width: max-content;
    min-width: 600px; /* or however wide your table needs */
  }
}

.woocommerce div.product form.cart .variations td, .woocommerce div.product form.cart .variations th {
    display: block;
    text-align: left;
}
.woocommerce div.product form.cart .button {
    vertical-align: middle;
    float: left;
    width: 85%;
    padding: 15px;
    border-radius: 10px;
    background: #006935;
}

.woocommerce .quantity .qty {
    width: 3.631em;
    text-align: center;
    height: 40px;
    border-radius: 10px;
    border: 2px solid #000;
}
.variation-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.variation-pills button {
    padding: 10px 18px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.variation-pills button:hover,
.variation-pills button.selected {
    border-color: #006935;
    background-color: #006935;
    color: #fff;
}

.variations select {
    display: none !important; /* hide original dropdown */
}

.blocks-container {
    display: flex;
    gap: 20px;
    margin: 40px 0px 40px 0px;
    flex-wrap: wrap;
}

.bordered-box {
    border: 1px solid #ccc;
    padding: 20px;
    flex: 1 1 300px;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.bordered-box .box-image {
    max-width: 80px;
    height: auto;
    border-radius: 50%;
    flex-shrink: 0;
}

.bordered-box .box-content {
    flex: 1;
}

.bordered-box .box-title {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
}

.bordered-box .box-description a {
    color: #0073aa;
    text-decoration: none;
}
.product-last-updated {
    font-style: italic;
    margin-bottom: 20px;
    color: #666;
}
