/* Inputs base */
/* Inputs base */

.rs-checkout input,
select,
textarea,
button {
  font: inherit;
}

.rs-checkout input,
select,
textarea {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}

.rs-checkout input::placeholder,
textarea::placeholder {
  color: #999
}

input:focus,
select:focus,
textarea:focus {
  border-color: #e58770;
  box-shadow: 0 0 0 4px color-mix(in srgb, #e58770 18%, transparent);
}

.rs-checkout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
}

@media (max-width: 900px) {
  .rs-checkout {
    grid-template-columns: 1fr;
  }
}

/* Coupon code starrt here */
/* Coupon code starrt here */

.rs-coupon {
  border: 1px solid #e9e9e9;
  padding: 18px;
  margin-bottom: 26px;
  background: #fff;
  border-radius:0px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.order-rs {
  width: 20px !important;
}

.rs-coupon input {
  flex: 1;
  width: auto;
  padding: 12px 14px;
  border-color: #e587706b;
}

.rs-coupon button {
  padding: 12px 18px;
  background: #e58770;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: transform .08s ease, opacity .2s, background .2s;
}

.rs-coupon button:hover {
  opacity: .95
}

.rs-coupon button:active {
  transform: translateY(1px)
}

.rs-coupon button:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, #e58770 22%, transparent)
}

.rs-billing,
.rs-shipping,
.rs-summary {
  border: 1px solid #e9e9e9;
  padding: 20px;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
}

.rs-billing {
  margin-bottom: 18px
}

.rs-shipping {
  margin-bottom: 18px
}

.rs-billing h3,
.rs-shipping h3,
.rs-summary h3,
.rs-payment h3 {
  margin: 0 0 14px 0;
  font-size: 18px;
  color: #111;
  letter-spacing: .2px;
}

.rs-billing label,
.rs-shipping label,
.rs-payment label {
  display: block;
  font-size: 13px;
  margin: 10px 0 6px;
  color: #666;
}

.rs-billing textarea,
.rs-shipping textarea {
  resize: vertical;
  min-height: 84px;
}

/* Order Summary start code css */
/* Order Summary start code css */

.rs-summary {
  background: linear-gradient(180deg, #f6efe9 0%, #fdfdfd 100%);
}

.rs-summary table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.rs-summary table tr td {
  padding: 10px 0;
  vertical-align: top;
}

.rs-summary table tr:not(:last-child) td {
  border-bottom: 1px dashed #e8e8e8;
}

.rs-summary table tr:last-child td {
  font-weight: 700;
  border-top: 1px solid #ddd;
  color: white;
  background: #d69b8c;
  padding: 10px;
  font-size: 16px;
}

.rs-check {
    background: #f6efe9;
}

/* Payment css start here  */
/* Payment css start here  */



.rs-payment {
  margin-top: 18px
}

.rs-payment label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px 0;
  cursor: pointer;
  padding: 10px 12px;
  border: 1px solid #e9e9e9;
  border-radius: 0px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.rs-payment label:hover {
  border-color: color-mix(in srgb, #e58770 45%, #e9e9e9);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .05);
}

.rs-payment input[type="radio"] {
  accent-color: #e58770;
}

/* Primary Button start here code  */
/* Primary Button start here code  */

.rs-btn {
  background: #e58770;
  border: none;
  color: #fff;
  padding: 13px 20px;
  margin-top: 14px;
  width: 100%;
  font-size: 16px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .2px;
  transition: transform .08s ease, opacity .2s, box-shadow .2s;
  box-shadow: 0 10px 20px rgba(229, 135, 112, .22);
}

.rs-btn:hover {
  opacity: .95
}

.rs-btn:active {
  transform: translateY(1px)
}

.rs-btn:focus {
  outline: none;
  box-shadow: 0 0 0 6px color-mix(in srgb, #e58770 22%, transparent)
}

.rs-shipping-toggle {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px dashed #eee;
}

.rs-shipping {
  display: none
}

.rs-shipping.active {
  display: block
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #666 50%), linear-gradient(135deg, #666 50%, transparent 50%);
  background-position: calc(100% - 18px) 16px, calc(100% - 14px) 16px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px
}

@media (max-width:768px) {
  .container {
    margin: 24px auto
  }

  .rs-coupon {
    flex-direction: column;
    align-items: stretch
  }
}