.price-form {
  width: 100%;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;

  background: var(--styx-base-color-3);
}

.price-form-title {
	font-family: Rubik;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
	color: var(--styx-text-color-3);
	align-self: center;
	padding: 0 0 12px;
}

#priceForm {
  display: flex;
  gap: 0.75rem;
  flex-wrap: nowrap;
  align-items: center;
}

.price-select-wrap {
  position: relative;
  flex: 1;
}

.price-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5rem;
  width: 100%;
}

.price-select-wrap::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--styx-text-color-3);
  font-size: 0.9rem;
  pointer-events: none;
}

.price-input {
  font-family: Inter;
  flex: 1;
  min-width: 140px;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--styx-base-color-2);
  background: var(--styx-base-color-3);
  color: var(--styx-text-color-3);
  font-size: 0.9rem;
  outline: none;
  transition: 0.2s border-color ease, 0.2s background ease;
}

.price-input:focus {
  border-color: var(--styx-text-color-3);
  background: var(--styx-base-color-3);
}

.price-submit {
  white-space: nowrap;
  padding: 9.5px 1.25rem;
  background: transparent;
  color: var(--styx-text-color-3);
  border: 2px solid var(--styx-base-color-1);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: 0.15s all ease;
}

.price-submit:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.28);
  background: var(--styx-base-color-1);
  color: var(--styx-text-color-1);
}

.price-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

.price-modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-family: Inter;
}

.price-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
}

.price-modal-content {
  position: relative;
  background: var(--styx-base-color-3);
  color: var(--styx-text-color-3);
  padding: 1.5rem 2rem;
  max-width: 360px;
  width: 90%;
  z-index: 2;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  text-align: center;
  animation: modalFadeIn .25s ease;
}

.price-modal-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.price-modal-text {
  font-size: 0.9rem;
  opacity: .85;
  margin-bottom: 1.2rem;
}

.price-modal-close {
  background: var(--styx-base-color-1);
  color: var(--styx-text-color-1);
  border: none;
  padding: 0.55rem 1.5rem;
  margin-top: 12px;
  cursor: pointer;
  font-size: .9rem;
  transition: .2s;
}

.price-modal-close:hover {
  background: var(--styx-base-color-1);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(.9); }
  to   { opacity: 1; transform: scale(1); }
}

/* ============== MEDIA QUERIES ============== */
/* Mobile Approach */

@media (hover: none) and (pointer: coarse) {
.price-form {
	align-items: center;
}

#priceForm {
	flex-direction: column;
}

#priceForm, .price-select-wrap, .price-input{
	width: 100%;
}

.price-submit {
	margin: 12px 0 0;
}
}
/* Tablet Approach */
@media (min-width: 641px) and (hover: none) and (pointer: coarse) {

}
/* Desktop Approach */
@media (min-width: 1024px) and (pointer: fine) {

}