/* DIVIRA Back in Stock — Frontend */
.dew-bis-container {
  margin: 28px 0 0;
  background: #fff;
  border: 1px solid #e8e0d6;
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 0 2px 18px rgba(27,18,8,0.06);
  font-family: inherit;
}
.dew-bis--hidden { display: none !important; }
.dew-bis__header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.dew-bis__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fdf6e8;
  border: 1px solid #f0d9a0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a6a1a;
  font-size: 16px;
}
.dew-bis__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: #1a1208;
  line-height: 1.3;
  font-family: 'Cinzel', serif;
}
.dew-bis__desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #6b5d4a;
}
.dew-bis__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.dew-bis__field { display: flex; flex-direction: column; gap: 6px; }
.dew-bis__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3d2f1a;
}
.dew-bis__label .required { color: #b42318; }
.dew-bis__input {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #d9d0c2;
  border-radius: 8px;
  font-size: 14px;
  color: #1a1208;
  background: #fdfcfa;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.dew-bis__input:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.18);
  background: #fff;
}
.dew-bis__input:invalid { border-color: #e0c0c0; }
.dew-bis__variation-note {
  margin: 0 0 12px;
  font-size: 12.5px;
  color: #6b5d4a;
  background: #fdf6e8;
  border: 1px solid #f0d9a0;
  border-radius: 8px;
  padding: 9px 12px;
}
.dew-bis__btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  background: #1a1208;
  color: #fff;
  border: 1px solid #1a1208;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.dew-bis__btn:hover { background: #2c1f0f; transform: translateY(-1px); }
.dew-bis__btn:active { transform: translateY(0); }
.dew-bis__btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.dew-bis__message {
  margin-top: 12px;
  padding: 10px 13px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
}
.dew-bis__message--success {
  background: #eaf6ec;
  border: 1px solid #a8d5ad;
  color: #1a5c1e;
}
.dew-bis__message--error {
  background: #fdf0f0;
  border: 1px solid #e0a0a0;
  color: #7a1a1a;
}
@media (max-width: 640px) {
  .dew-bis-container { padding: 18px 16px; border-radius: 12px; }
  .dew-bis__fields { grid-template-columns: 1fr; }
  .dew-bis__title { font-size: 16px; }
}
