<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.info-text {
  margin: 0;
  padding: 2px 0;
  line-height: 1.2;
}

.product-container {
  font-family: Arial, sans-serif;
  max-width: 400px;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 5px;
}

.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
}

.product-info-main {
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
}

#current-price {
  font-family: Poppins;
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #0d2c54;
}

.package-title,
.quantity-title {
  font-family: Roboto;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #98A0AF;
  margin-bottom: 0px;
}

.product-package-selection {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  /* Adjust spacing as needed */
}

.product-package-btn {
  width: 76px;
  height: 36px;
  border-radius: 6px;
  background: none;
  border: 1px solid #ddd;
  cursor: pointer;
  font-family: Poppins;
  font-size: 14px;
  transition: background-color 0.2s ease;
  /* Add these properties to keep text on one line */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  /* Ensure buttons take full width of grid cell */
  text-align: center;
}

.product-package-btn.active {
  background-color: #e6f7f0;
  /* Soft mint/green color */
  border-color: #c1e8d9;
  /* Slightly darker border for definition */
  color: #11DDAC;
}

/* Optional hover effect */
.product-package-btn:hover:not(.active) {
  background-color: #f5f5f5;
}

.quantity-control-container {
  display: flex;
  align-items: center;
  height: 40px;
  border: 1px solid #E4E4E4;
  border-radius: 6px;
  overflow: hidden;
  background-color: white;
  max-width: 120px;
  margin: 10px 0;
  box-shadow: -1px 0px 0px 0px #EEF1F6 inset;
}

.quantity-control-button {
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: none;
  border-right: 1px solid #E4E4E4;
  font-size: 18px;
  color: #0D2C54;
  cursor: pointer;
  padding: 0;
}

.quantity-control-button:last-child {
  border-right: none;
  border-left: 1px solid #E4E4E4;
}

.quantity-control-button:hover {
  background-color: #f0f0f5;
}

.quantity-control-button:active {
  background-color: #e0e0e5;
}

#quantity {
  flex: 1;
  height: 100%;
  border: none;
  text-align: center;
  font-size: 16px;
  color: #0D2C54;
  padding: 0;
  min-width: 30px;
}

/* Remove arrows/spinners from number input */
#quantity::-webkit-outer-spin-button,
#quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Size info styles */
.size-info {
  font-size: 12px;
  color: #666;
  margin-top: 6px;
}

.unclickable {
  cursor: not-allowed !important;
}

.pharma-icon {
  width: 24px;
  height: 24px;
}

/* Cart Buttons Styles */
.cart-buttons-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  width: 100%;
}

.btn-add-to-cart {
  width: 100%;
  height: 48px;
  border: 2px solid #11DDAC;
  background-color: transparent;
  color: #11DDAC;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  color: var(--Base-White, #11DDAC);
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}

.btn-add-to-cart:hover {
  background-color: rgba(10, 234, 217, 0.1);
}

.btn-checkout {
  width: 100%;
  height: 48px;
  background-color: #11DDAC;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  color: var(--Base-White, #FFF);
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}

.btn-checkout:hover {
  background-color: #11DDAC;
}

@media (max-width: 768px) {
  .btn-add-to-cart:hover {
    background-color: transparent;
  }
  .btn-add-to-cart:active {
    background-color: rgba(10, 234, 217, 0.1);
    transition: background-color 0.1s ease;
  }
}</pre></body></html>