.centered-text {
  text-align: center;
}

.color-picker-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.color-input {
  width: 40px;
  height: 40px;
  border: none;
  padding: 0;
  background: none;
}

.color-preview {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background-color: #ffffff;
}

.small-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 6px;
  margin-bottom: 10px;
}

.quantity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns */
  gap: 20px 30px; /* row-gap column-gap */
  margin-bottom: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.quantity-grid div {
  display: flex;
  flex-direction: column;
}


.quantity-grid label {
  font-weight: 500;
  margin-bottom: 6px;
}

.quantity-grid input[type="number"] {
  padding: 8px 12px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.price-hint {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 20px;
}


.estimate-box {
  margin-top: 20px;
  padding: 15px;
  background-color: #fdf4f8;
  border: 1px solid #c71585;
  border-radius: 8px;
  text-align: center;
}

.estimated-total {
  font-size: 1.2rem;
  font-weight: bold;
  color: #c71585;
}


.foliage-option {
  margin: 20px 0;
}

.foliage-option label {
  font-weight: 500;
}

.foliage-option .small-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 6px;
  margin-bottom: 10px;
}


.size-help-link {
  font-size: 0.95rem;
  color: #c71585;
  text-decoration: underline;
  cursor: pointer;
}
.size-info {
  margin-top: 10px;
  padding: 10px;
  background-color: #fafafa;
  border-left: 3px solid #c71585;
}


.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-content h2 {
  margin-top: 0;
  color: #c71585;
}

.modal-content p {
  margin: 10px 0;
  font-size: 0.95rem;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
}


.spacing-10 {
  margin: 20px;
}

/* 🌸 Footer Links */
footer a {
  color: #666;            /* subtle grey */
  font-size: 0.9rem;      /* smaller than body text */
  text-decoration: none;  /* remove underline */
  margin-left: 0.5rem;
}

footer a:hover {
  color: #c59bc9;         /* your brand accent on hover */
  text-decoration: underline;
}