
  /* FORM */
  
  section.checkout-form input:not([type="radio"],[type="checkbox"]) {
    font-size: 1rem;
    padding: 0 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(27, 42, 65, 1);
    outline: none;
    height: 3.75rem;
    background-color: transparent;
    margin-bottom: 1.5rem;
    width: 100%;
}
.checkout-summary h2,
section.checkout-form h2 {
    font-weight: 500;
    font-size: 1.563rem;
    margin-bottom: 1rem;
}
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0;
  }
  
  .form-group {
    margin-bottom: 0;
}
  
  /* PAYMENT */
  h2.title-shipping {
    margin-top: 1.5rem;
}
  .shipping-note {
    font-size: 1rem;
    margin-bottom: 1.6rem;
    font-style: italic;
}
  
  .payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
  }
  
  .payment-item {
    border: 1px solid #000;
    padding: 0 1rem;
    border-radius: 10px;
    display: flex;
    gap: 0;
    align-items: center;
    height: 3.75rem;
    line-height: 3.75rem;
    font-size: 1rem;
}
.payment-item input {
    order: 3;
    margin-left: auto;
    accent-color: #000;
    width: 1.5rem;
    height: 1.5rem;
    background-color: transparent;
}
.payment-item img {
    width: 1.5rem;
    margin-right: .5rem;
}
  
  /* COUPON */
  .title-coupon{
      margin-top: 1.5rem;
  }
  .coupon-row button.btn-outline {
    width: 15.625rem;
    border-radius: 1.5rem;
    height: 3.75rem;
    line-height: 3.75rem;
    padding: 0;
    font-size: 1.25rem;
    font-weight: 500;
}
  .coupon-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.25rem;
  }

  
  .coupon-list {
    display: flex;
    gap: 1.2rem;
  }
  
  .coupon-list button img {
    margin-right: .5rem;
}
.coupon-list button {
    padding: 0 1.25rem;
    border-radius: .8rem;
    background: rgba(27, 42, 65, 1);
    color: #fff;
    border: none;
    height: 3rem;
    line-height: 3rem;
    display: flex;
    align-items: center;
}
  .btn-outline {
    color: rgba(19, 29, 46, 1);
    background-color: transparent;
    border: 1px solid rgba(180, 72, 0, 1);
}
  /* INVOICE */
  .invoice-fields {
    margin-top: 1.6rem;
  }
  .invoice-toggle label {
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 1.5rem;
    display: block;
}
.invoice-toggle label input {
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    top: .25rem;
    margin-right: .5rem;
}
  /* SUMMARY */
  .checkout-summary {
    padding: 2.4rem;
  }
  .checkout-summary .summary-row.total {
    border: 0;
    margin-bottom: 0;
    padding-top: 0;
}
aside.checkout-summary .btn {
    width: 100%;
}
.summary-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}
.summary-item .thumb {
    width: 7.5rem;
    height: 7.5rem;
    background-color: rgba(220, 220, 217, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.summary-item {
    display: grid;
    grid-template-columns: 6rem 1fr auto;
    gap: 1.6rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #000;
}
  
  .summary-item img {
    width: 6rem;
    height: 6rem;
    object-fit: contain;
  }
  
  .tag {
    display: inline-block;
    background: rgba(220, 220, 217, 1);
    padding: .4rem .8rem;
    border-radius: .6rem;
    font-size: 1rem;
}
.price del {
    font-size: .813rem;
    color: rgba(162, 168, 177, 1);
    display: block;
    margin-top: .5rem;
}
.summary-item .thumb + div {
    padding-left: 1rem;
}
.title-total-row{
    margin-top: 1.5rem;
}
  .price {
    text-align: right;
    font-size: 1.25rem;
    display: block;
    line-height: 1;
    font-weight: 600;
  }
  

  .total-row {
    display: flex;
    justify-content: space-between;
    margin: 1.2rem 0;
  }
  
  .total-row.grand {
    border-top: .1rem solid #ddd;
    padding-top: 1.6rem;
    font-size: 2rem;
  }
  
  .btn-primary {
    margin-top: 2.4rem;
    width: 100%;
    padding: 1.6rem;
    border-radius: 3rem;
    background: #b45309;
    color: #fff;
    border: none;
    font-size: 1.8rem;
  }
  /*order*/
  .head-order > img {
    max-width: 11.563rem;
}
.head-order {
    text-align: center;
    margin-top: 7rem;
}
.head-order p {
    font-size: 1.25rem;
    font-weight: 500;
}
.order-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
    margin-top: 6rem;
    align-items: flex-start;
    position: relative;
    padding: 0 4rem;
}
.order-layout:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background-color: #000;
    opacity: .5;
}
section.order-information h2{
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: .75rem;
}
section.order-information {
    border: 1px solid #000;
    padding: 2rem;
    border-radius: 1.25rem;
    margin-top: 4rem;
}
section.order-information p {
    margin-bottom: .75rem;
    font-size: 1.25rem;
}
section.order-information p span {
    font-weight: 500;
    display: block;
}
aside.order-summary h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}
.order-summary .summary-row.total {
    border-top: 1px solid #000;
    border-bottom: 0;
}
.order-summary .summary-row > * {
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.2;
    font-weight: 500;
}
.btn-order > * {
    padding: 0;
    width: 100%;
}

.btn-order a.btn.btn-outline {
    color: rgba(180, 72, 0, 1);
}
.btn-order {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
p.p-help a {
    color: rgba(47, 90, 207, 1);
}

p.p-help {
    text-align: center;
    font-size: .875rem;
    margin-top: 1.5rem;
}
  /*order*/
@media (max-width: 991px) {
    .order-layout {
      display: block;
      padding: 0;
  }
  .order-layout:before{
    
    display: none;
  }
  section.order-information {
    margin-bottom: 2rem;
  }
  .payment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .coupon-list {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}
}
  