#custom-checkout-wrapper {
    padding: 20px;
    background: #f9f9f9;
}
#mcc-cart-preview,
#mcc-customer-fields,
#mcc-shipping,
#mcc-payment,
#mcc-summary {
    margin-bottom: 30px;
}

.mcc-customer-type label {
    display: inline-block;
    margin-right: 20px;
    font-weight: 500;
}

.mcc-customer-type input[type="radio"] {
    margin-right: 5px;
}

.mcc-group input,
.mcc-group textarea,
.mcc-fields-common input,
.mcc-fields-common textarea,
.mcc-fields-legal input {
    display: block;
    width: 100%;
    max-width: 500px;
    margin-bottom: 10px;
    padding: 8px;
    font-size: 14px;
}
.mcc-errors {
    background: #fff4f4;
    border: 1px solid #e40000;
    padding: 15px;
    margin-bottom: 20px;
    color: #e40000;
    border-radius: 5px;
}
.mcc-errors ul {
    margin: 0;
    padding-left: 20px;
}

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

.mcc-qty-input {
    -moz-appearance: textfield; 
}
.mcc-qty-input {
    width: 60px;
    text-align: center;
}
.mcc-cart-summary {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #ccc;
}


#custom-checkout-wrapper {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-family: inherit;
}


#custom-checkout-wrapper h2 {
  font-size: 20px;
  margin-top: 30px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 8px;
  color: #333;
}

#custom-checkout-wrapper input[type="text"],
#custom-checkout-wrapper input[type="email"],
#custom-checkout-wrapper input[type="tel"],
#custom-checkout-wrapper input[type="number"],
#custom-checkout-wrapper input[type="file"],
#custom-checkout-wrapper textarea,
#custom-checkout-wrapper select {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fafafa;
  box-sizing: border-box;
  font-size: 14px;
}


#custom-checkout-wrapper .button,
#custom-checkout-wrapper button[type="submit"] {
  background: #0060df;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
}

#custom-checkout-wrapper .button:hover {
  background: #004eb8;
}


.mcc-qty-plus, .mcc-qty-minus {
  background: #f0f0f0;
  border: 1px solid #ccc;
  width: 32px;
  height: 32px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}


.mcc-errors {
  background: #ffeaea;
  border-left: 4px solid #f44336;
  padding: 10px 15px;
  color: #b00020;
  font-size: 14px;
  margin-bottom: 20px;
  border-radius: 6px;
}

.mcc-customer-type label {
  margin-right: 20px;
  font-weight: 500;
  font-size: 14px;
}

.mcc-cart-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mcc-cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  margin-bottom: 16px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s ease;
}

.mcc-cart-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.mcc-cart-thumb img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 5px;
}

.mcc-cart-title {
  flex-grow: 1;
  font-size: 15px;
  font-weight: 500;
  color: #222;
  max-width: 360px;
  line-height: 1.4;
}

.mcc-cart-qty button {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: #f5f5f5;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.15s ease;
}

.mcc-cart-qty button:hover {
  background: #eee;
}

.mcc-cart-qty input {
  width: 48px;
  text-align: center;
  padding: 6px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.mcc-stock-info {
  font-size: 12px;
  color: #666;
}

.mcc-cart-price {
  font-size: 17px;
  font-weight: bold;
  color: #0060df;
  min-width: 80px;
  text-align: right;
}

.mcc-cart-remove button {
  background: transparent;
  border: none;
  color: #bbb;
  font-size: 22px;
  cursor: pointer;
  transition: color 0.2s;
}

.mcc-cart-remove button:hover {
  color: #e63946;
}

.mcc-cart-stock {
  font-size: 13px;
  color: #555;
  min-width: 100px;
  text-align: center;
  line-height: 1.4;
}

.mcc-hidden-field {
    display: none !important;
}
