/**
 * Dealer Quick Order App cart panel styles.
 */

.dqoa-cart-panel {
  background: #ffffff;
  border-left: 1px solid var(--dqoa-border);
  padding: 30px 22px;
  position: sticky;
  top: 0;
  height: calc(100vh - 48px);
  overflow-y: auto;
}

.dqoa-cart-panel h3 {
  margin: 0 0 22px;
  font-size: 34px;
  line-height: 1;
  color: var(--dqoa-dark);
}

.dqoa-cart-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #edf2f7;
  background: transparent;
}

.dqoa-cart-product-image {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dqoa-cart-product-image img {
  max-width: 72px;
  max-height: 72px;
  object-fit: contain;
}

.dqoa-cart-product-info {
  min-width: 0;
}

.dqoa-cart-item-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 10px;
  align-items: start;
  margin-bottom: 10px;
}

.dqoa-cart-item-header strong {
  color: var(--dqoa-dark);
  font-size: 17px;
  line-height: 1.2;
  font-weight:100;
}

.dqoa-remove-cart-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 0;
  background: transparent;
  color: #374151;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.dqoa-remove-cart-item:hover {
  color: var(--dqoa-red);
}

.dqoa-cart-item-body {
  display: grid;
  grid-template-columns: 108px minmax(72px, auto);
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dqoa-cart-qty-btn {
  border: 0;
  background: #f8fafc;
  color: #111827;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.dqoa-cart-qty-btn:hover {
  background: var(--dqoa-red);
  color: #ffffff;
}

.dqoa-cart-qty {
  width: 44px;
  height: 36px;
  border: 0;
  border-left: 1px solid #dfe4ea;
  border-right: 1px solid #dfe4ea;
  background: #ffffff;
  color: #111827;
  font-size: 16px;
  text-align: center;
  padding: 0;
  outline: none;
}

.dqoa-cart-qty::-webkit-outer-spin-button,
.dqoa-cart-qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.dqoa-cart-qty {
  -moz-appearance: textfield;
  appearance: textfield;
}

.dqoa-cart-subtotal {
  color: var(--dqoa-dark);
  font-size: 16px;
  white-space: nowrap;
  text-align: right;
}

.dqoa-cart-total {
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  background: var(--dqoa-dark);
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
}

.dqoa-cart-total strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#dqoa-checkout-btn,
#dqoa-save-quote-btn {
  width: 100%;
  margin-top: 14px;
  height: 54px;
  border-radius: 12px;
  font-size: 18px;
}

#dqoa-save-quote-btn {
  background: #ffffff;
  color: var(--dqoa-red);
  border: 1px solid var(--dqoa-red);
}

#dqoa-save-quote-btn:hover {
  background: #fff1f2;
}

/**
* Mobile cart drawer polish.
*/
@media (max-width: 1024px) {
  .dqoa-cart-panel::before {
    content: "";
    display: block;
    width: 46px;
    height: 5px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: #cbd5e1;
  }

  .dqoa-cart-panel h3 {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .dqoa-cart-item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
  }

  .dqoa-cart-product-image,
  .dqoa-cart-product-image img {
    width: 64px;
    height: 64px;
  }

  .dqoa-cart-item-header strong {
    font-size: 16px;
  }

  .dqoa-cart-item-body {
    grid-template-columns: 112px auto;
    gap: 10px;
  }

  .dqoa-cart-total {
    position: sticky;
    bottom: 0;
    z-index: 2;
    margin-top: 16px;
    font-size: 24px;
  }

  #dqoa-checkout-btn,
  #dqoa-save-quote-btn {
    height: 52px;
    font-size: 16px;
  }
}
/**
 * Final clean cart quantity and remove button UI.
 */
.dqoa-cart-qty-control {
  display: grid;
  grid-template-columns: 32px 42px 32px;
  width: 106px;
  height: 36px;
  border: 1px solid #dbe2ea;
  border-radius: 999px;
  overflow: hidden;
  background: #ffffff;
}

.dqoa-cart-qty-btn {
  border: 0 !important;
  background: #f8fafc !important;
  color: #374151 !important;
  font-size: 14px !important;
  cursor: pointer !important;
  padding: 0 !important;
  line-height: 1 !important;
}

.dqoa-cart-qty-btn:hover {
  background: #111820 !important;
  color: #ffffff !important;
}

.dqoa-cart-qty {
  width: 40px !important;
  height: 34px !important;
  border: 0 !important;
  border-left: 1px solid #e5e7eb !important;
  border-right: 1px solid #e5e7eb !important;
  background: #ffffff !important;
  color: #111827 !important;
  font-size: 15px !important;
  text-align: center !important;
  padding: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}

.dqoa-remove-cart-item {
  width: 28px !important;
  height: 28px !important;
  border: 0 !important;
  background: transparent !important;
  color: #374151 !important;
  font-size: 26px !important;
  line-height: 1 !important;
  padding: 0 !important;
}

.dqoa-remove-cart-item:hover {
  color: var(--dqoa-red) !important;
}
