/* Modal Base & Full Width Fix */
body.wcflow-modal-open {
  overflow: hidden;
}

/* Direct Order Button Styles */
.wcflow-trigger-btn {
  background: #333;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.wcflow-trigger-btn:hover {
  background: #555;
  color: #fff;
  text-decoration: none;
}

.wcflow-trigger-btn:focus {
  outline: 2px solid #333;
  outline-offset: 2px;
}

.wcflow-trigger-btn:disabled,
.wcflow-trigger-btn.wcflow-button-disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  background: #ccc !important;
}

/* Gifting button row for regular products (100% width, no quantity controls) */
.wcflow-gifting-button-row {
  margin-top: 20px;
  width: 100%;
}

.wcflow-gifting-button-row .wcflow-trigger-btn {
  width: 100% !important;
  display: block !important;
  margin: 0 !important;
}

/* Product layout row for direct order products (with quantity controls) */
.wcflow-product-layout-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  width: 100%;
}

.wcflow-product-layout-row .quantity {
  flex-shrink: 0;
  margin: 0 !important;
}

.wcflow-product-layout-row .wcflow-trigger-btn {
  flex: 1;
  margin: 0 !important;
}
