
/* Ship Check (Dark) */

.ship-check--dark {
    max-width: 860px;
    background: #f6f6f6;
    padding: 20px 25px;
    margin: 20px 0 15px;
}

/* Title */
.ship-check--dark .ship-check__title {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 800;
  color: #000;
}

/* Grid Row */
.ship-check--dark .ship-check__row {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.ship-check--dark .ship-check__row--3 {
  grid-template-columns: 1fr 1fr;
}

/* Inputs (select + input) */

.ship-check--dark .ship-check__input::placeholder {
    color: #ccc !important;
}

.ship-check--dark .ship-check__input {
    height: 39px;
    width: 100%;
    border: 2px solid rgb(0 0 0 / 16%);
    background: #ececec;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 800;
    color: #000000;
    outline: none;
}

.ship-check--dark .ship-check__input::placeholder {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 800;
}

.ship-check--dark .ship-check__input:focus {
  border-color: rgba(255, 255, 255, 0.55);
}

/* Select arrow (custom) */
.ship-check--dark .ship-check__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' width='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;

  padding-right: 45px; /* space for arrow */
}

/* If theme is adding its own arrow via wrapper/pseudo */
.ship-check--dark .form-select::after,
.ship-check--dark .select::after,
.ship-check--dark .form-field--select::after {
  display: none !important;
}

/* Button */


.ship-check--dark .ship-check__btn {
    height: 45px;
    width: 100%;
    border: 0;
    background: #0e7dc2;
    color: #ffffff;
    border-radius: 0;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.06em;
    cursor: pointer;
    grid-column: 1 / -1;
    font-family: "erbaum";
}
/* Message */
.ship-check--dark .ship-check__msg {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

.ship-check--dark .ship-check__msg.is-error {
    color: #ff0000;
}

.ship-check--dark .ship-check__msg.is-ok {
  color: rgb(66 147 72 / 90%);
}

/* Mobile */
@media (max-width: 640px) {
  .ship-check--dark {
    padding: 16px 16px;
    margin: 22px 0 12px;
  }
  .autoparts .quantity-and-cart-btn-wrapper {
    grid-template-columns: 120px 1fr;
}

  .ship-check--dark .ship-check__row--3 {
    grid-template-columns: 1fr;
    gap: 12px;
  }


.ship-check--dark .ship-check__title {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.15;
    font-weight: 800;
    color: #000000;
}

  .ship-check--dark .ship-check__input {
    height: 40px;
    font-size: 11px;
    padding: 0 11px;
    border-radius: 0;
  }

  .ship-check--dark .ship-check__btn {
    height: 35px;
    font-size: 13px;
    letter-spacing: 0.05em;
  }

  .ship-check--dark .ship-check__msg {
    font-size: 9px;
    margin-top: 12px;
  }
}
