.whatsapp-product-button-container {
  margin: 20px 0;
}

.product-message {
  margin-bottom: 16px;
}

.product-message p {
  margin: 0 0 8px 0;
  line-height: 1.5;
}

.product-message p:last-child {
  margin-bottom: 0;
}

.product-message strong {
  font-weight: 600;
  color: #333;
}

.whatsapp-product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: #25D366;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  min-width: fit-content;
  width: auto;
  box-sizing: border-box;
}

.whatsapp-product-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.whatsapp-product-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.whatsapp-product-btn.default {
  border-radius: 4px;
}

.whatsapp-product-btn.rounded {
  border-radius: 25px;
}

.whatsapp-product-btn.square {
  border-radius: 0;
}

.whatsapp-product-btn.minimal {
  background-color: transparent;
  border: 2px solid #25D366;
  color: #25D366;
}

.whatsapp-product-btn.minimal:hover {
  background-color: #25D366;
  color: white;
}

.whatsapp-product-icon {
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .whatsapp-product-button-container {
    margin: 15px 0;
  }

  .product-message {
    margin-bottom: 12px;
  }

  .whatsapp-product-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
