.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-top: 15px;
  padding-bottom: 15px;
  border-radius: 4px;
  padding-left: 0;
}

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

.discount-price {
  display: inline-block;
  margin-left: 5px;
  vertical-align: baseline;
}
.discount-price .original-price {
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #9D9D9D;
  text-decoration: line-through;
}

.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: 10px;
  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;
}

.product-page-shipping-info {
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-align: center;
  text-decoration: underline;
}

/* Shipping Modal Overlay - Ensure it's above everything */
#shippingModal.dialog-overlay {
  z-index: 9999 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background-color: rgba(0, 0, 0, 0.7) !important;
}

@media (max-width: 768px) {
  .btn-add-to-cart:hover {
    background-color: transparent;
  }
  .product-page-shipping-info {
    margin-top: 10px;
    margin-bottom: 5px;
  }
  .btn-add-to-cart:active {
    background-color: rgba(10, 234, 217, 0.1);
    transition: background-color 0.1s ease;
  }
  /* Add bottom padding to prevent sticky button from covering content */
  .product-header.otc {
    padding-bottom: 80px;
  }
  /* Hide desktop checkout button on mobile */
  .desktop-checkout-btn {
    display: none;
  }
  /* Hide shipping info on mobile in product header */
  .product-header.otc .cart-buttons-container .product-page-shipping-info {
    display: none;
  }
  /* Sticky Mobile Checkout Styles */
  .sticky-mobile-checkout {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: white;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    display: block;
  }
  .sticky-checkout-container {
    max-width: 100%;
    margin: 0 auto;
  }
  .mobile-checkout-btn {
    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%;
  }
  .mobile-checkout-btn:hover {
    background-color: #11DDAC;
  }
  .mobile-checkout-btn:active {
    background-color: #0fc99a;
    transform: scale(0.98);
  }
}
/* Hide mobile checkout on desktop */
@media (min-width: 769px) {
  .sticky-mobile-checkout {
    display: none;
  }
}
body {
  background-color: #fff !important;
}