/* Páginas locais: carrinho (layout sacola.html), checkout, pedido */

/* Compensa o header fixo nas páginas bootstrap (checkout/pedido) */
.main-content {
  padding-top: 180px;
  min-height: 50vh;
}

@media (max-width: 768px) {
  .main-content {
    padding-top: 186px;
  }
}

.main-content .page-title-section {
  margin-bottom: 0.5rem;
}

.main-content .page-title {
  font-size: 1.4rem;
}

/* ── CART BANNER ── */
.cart-banner {
  max-width: 1200px;
  margin: 86px auto 30px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-banner-title {
  color: #212529;
  letter-spacing: 0.3px;
  padding-bottom: 6px;
  border-bottom: 3px solid #fbb03b;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 300;
}

/* ── CART WRAPPER ── */
.cart-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.cart-wrapper--empty {
  justify-content: center;
}

.cart-empty {
  width: 100%;
  max-width: 480px;
  text-align: center;
  background: #fff;
  border: 0.8px solid #dddddd;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  padding: 40px 28px;
}

.cart-empty p {
  margin: 0 0 20px;
  color: #555;
  font-size: 15px;
}

.cart-empty-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-left {
  flex: 1;
  min-width: 0;
}

/* ── CART TABLE ── */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 0.8px solid #dddddd;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.07);
  margin-bottom: 24px;
}

.cart-table thead tr {
  background: #f7f7f7;
  border-bottom: 1px solid #e8e8e8;
}

.cart-table thead th {
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #444444;
  text-align: left;
}

.cart-table thead th.col-subtotal {
  text-align: right;
  color: #00a88a;
}

.cart-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s;
}

.cart-table tbody tr:last-child {
  border-bottom: none;
}

.cart-table tbody tr:hover {
  background: #fafafa;
}

.cart-table tbody td {
  padding: 16px 18px;
  vertical-align: middle;
}

.cart-remove-form {
  display: inline;
  margin: 0;
}

.cart-remove {
  background: none;
  border: none;
  color: #aaaaaa;
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}

.cart-remove:hover {
  color: #c0392b;
  background: rgba(192, 57, 43, 0.07);
}

.cart-product-cell {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-product-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
  border: 0.8px solid #eeeeee;
  flex-shrink: 0;
  display: block;
}

.cart-product-name {
  font-size: 13.6px;
  font-weight: 500;
  color: #212529;
  line-height: 1.4;
  margin-bottom: 4px;
}

.cart-product-name a {
  color: inherit;
  text-decoration: none;
}

.cart-product-name a:hover {
  color: #00a859;
  text-decoration: underline;
}

.cart-product-price {
  font-size: 14px;
  font-weight: 700;
  color: #00a859;
}

.cart-qty {
  font-size: 13.6px;
  color: #555;
}

.cart-subtotal-cell {
  text-align: right;
  font-size: 14px;
  font-weight: 700;
  color: #00a859;
}

/* ── CART ACTIONS ── */
.cart-actions-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0 0;
}

.coupon-input {
  flex: 1;
  max-width: 260px;
  padding: 9px 14px;
  border: 0.8px solid #dddddd;
  border-radius: 4px;
  font-size: 13.6px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.coupon-input:focus {
  border-color: #fbb03b;
}

.btn-coupon {
  background: #fbb03b;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 9px 20px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-coupon:hover {
  background: #e0991e;
}

.btn-coupon--remove {
  background: #888;
}

.btn-coupon--remove:hover {
  background: #666;
}

.cart-flash {
  max-width: 1100px;
  margin: 12px auto 0;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 14px;
}

.cart-flash--ok {
  background: #e8f8f4;
  color: #007a63;
  border: 1px solid #b6e5da;
}

.cart-flash--err {
  background: #fdecea;
  color: #b42318;
  border: 1px solid #f5c2c0;
}

.summary-row--discount {
  color: #00a88a;
}

.btn-update {
  background: transparent;
  color: #00a88a;
  border: 1.5px solid #00a88a;
  border-radius: 4px;
  padding: 8px 18px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-update:hover {
  background: rgba(0, 168, 138, 0.08);
  color: #00a88a;
}

/* ── ORDER SUMMARY ── */
.cart-right {
  width: 300px;
  flex-shrink: 0;
}

.order-summary-box {
  background: #ffffff;
  border: 0.8px solid #dddddd;
  border-radius: 5px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.summary-title {
  background: #00a88a;
  color: #ffffff;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13.6px;
}

.summary-row.total-row {
  font-weight: 700;
  font-size: 14.4px;
  background: #f9f9f9;
  border-bottom: none;
}

.summary-row.total-row .summary-val {
  color: #00a859;
}

.summary-coupon {
  padding: 16px 18px;
  border-bottom: 1px solid #f0f0f0;
}

.summary-coupon input {
  width: 100%;
  padding: 8px 12px;
  border: 0.8px solid #dddddd;
  border-radius: 4px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  margin-bottom: 10px;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.summary-coupon input:focus {
  border-color: #fbb03b;
}

.summary-coupon .btn-coupon {
  width: 100%;
  padding: 10px;
  font-size: 12.5px;
}

.summary-btns {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-update-summary {
  width: 100%;
  background: transparent;
  color: #00a88a;
  border: 1.5px solid #00a88a;
  border-radius: 4px;
  padding: 10px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}

.btn-update-summary:hover {
  background: rgba(0, 168, 138, 0.08);
  color: #00a88a;
}

.btn-checkout {
  width: 100%;
  background: #00a859;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 12px;
  font-family: inherit;
  font-size: 13.6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  box-sizing: border-box;
}

.btn-checkout:hover {
  background: #008f4a;
  color: #fff;
}

.btn-add-more {
  text-align: center;
  font-size: 12.5px;
  color: #888888;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  text-decoration: none;
  display: block;
  padding: 4px;
}

.btn-add-more:hover {
  color: #00a859;
  text-decoration: underline;
}

/* ── SUGGESTIONS ── */
.suggestions-section {
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 0 20px 80px;
}

.suggestions-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
  color: #212529;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 500;
}

.suggestions-divider {
  border: none;
  border-top: 2px solid #fbb03b;
  margin: 0 auto 28px;
  width: 60px;
}

.suggestions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.suggestion-card {
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
  border: 0.8px solid #dddddd;
  transition: transform 0.2s, box-shadow 0.2s;
}

.suggestion-card:hover {
  transform: translateY(-3px);
  box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.13);
}

.suggestion-img-wrap {
  position: relative;
  display: block;
  text-decoration: none;
}

.suggestion-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.suggestion-type-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 11px;
  font-weight: 400;
  color: #ffffff;
  text-transform: lowercase;
  padding: 3px 10px;
}

.suggestion-body {
  padding: 12px 14px 14px;
  text-align: center;
}

.suggestion-name {
  font-size: 13px;
  font-weight: 500;
  color: #212529;
  line-height: 1.35;
  margin-bottom: 6px;
  border-bottom: 0.8px solid #dee2e6;
  padding-bottom: 8px;
}

.suggestion-name a {
  color: inherit;
  text-decoration: none;
}

.suggestion-name a:hover {
  color: #00a859;
}

.suggestion-price {
  font-size: 14px;
  font-weight: 700;
  color: #00a859;
  margin-bottom: 10px;
}

.btn-add-to-cart {
  width: 100%;
  background: transparent;
  color: #00a859;
  border: 1.5px solid #00a859;
  border-radius: 4px;
  padding: 7px 10px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-add-to-cart:hover {
  background: rgba(0, 168, 89, 0.07);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cart-wrapper {
    flex-direction: column;
  }

  .cart-right {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .cart-actions-row {
    flex-wrap: wrap;
  }

  .coupon-input {
    max-width: 100%;
    width: 100%;
  }

  .cart-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cart-table th:nth-child(3),
  .cart-table td:nth-child(3) {
    display: none;
  }

  .cart-product-img {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .cart-banner {
    padding: 0 12px;
  }

  .cart-banner-title {
    font-size: 18px;
  }

  .cart-wrapper {
    padding: 0 12px 40px;
    gap: 16px;
  }

  .suggestions-section {
    padding: 0 12px 50px;
  }

  .suggestions-header {
    font-size: 17px;
  }

  .summary-btns {
    padding: 12px 14px 14px;
  }
}

/* ── CHECKOUT ── */
.checkout-page {
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(0, 168, 89, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 10%, rgba(251, 176, 59, 0.12), transparent 50%),
    #f7f8f7;
  padding-top: 120px;
  padding-bottom: 64px;
}

@media (max-width: 768px) {
  .checkout-page {
    padding-top: 110px;
  }
}

.checkout-banner {
  margin-top: 0;
  margin-bottom: 20px;
  justify-content: center;
}

.checkout-banner .cart-banner-title {
  text-align: center;
}

.checkout-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.checkout-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.checkout-panel {
  background: #fff;
  border: 0.8px solid #dddddd;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 22px 24px 26px;
  position: relative;
  overflow: hidden;
}

.checkout-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00a859 0%, #15a273 45%, #fbb03b 100%);
}

.checkout-panel__head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.checkout-panel__head h2 {
  margin: 0 0 4px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #212529;
}

.checkout-panel__head p {
  margin: 0;
  font-size: 0.9rem;
  color: #6c757d;
}

.checkout-step {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #00a859;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 168, 89, 0.28);
}

.checkout-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px 16px;
}

.checkout-field {
  grid-column: span 12;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkout-field--half { grid-column: span 6; }
.checkout-field--zip { grid-column: span 3; }
.checkout-field--street { grid-column: span 9; }
.checkout-field--num { grid-column: span 3; }
.checkout-field--neigh { grid-column: span 5; }
.checkout-field--comp { grid-column: span 4; }
.checkout-field--city { grid-column: span 8; }
.checkout-field--uf { grid-column: span 4; }
.checkout-field--quarter { grid-column: span 3; }
.checkout-field--full { grid-column: span 12; }

.checkout-field label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #555;
}

.checkout-field input,
.checkout-field select {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.checkout-field input:focus,
.checkout-field select:focus {
  border-color: #00a859;
  box-shadow: 0 0 0 3px rgba(0, 168, 89, 0.15);
}

.checkout-pay-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
}

.checkout-pay-card {
  cursor: pointer;
  margin: 0;
}

.checkout-pay-card__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-pay-card__body {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid #dddddd;
  border-radius: 8px;
  background: #fafafa;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  min-height: 76px;
}

.checkout-pay-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0, 168, 89, 0.1);
  color: #00a859;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.checkout-pay-card__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.checkout-pay-card__text strong {
  font-size: 0.98rem;
  color: #212529;
}

.checkout-pay-card__text small {
  color: #777;
  font-size: 0.8rem;
}

.checkout-pay-card__input:checked + .checkout-pay-card__body {
  border-color: #00a859;
  background: rgba(0, 168, 89, 0.06);
  box-shadow: 0 0 0 3px rgba(0, 168, 89, 0.12);
}

.checkout-pay-card__input:checked + .checkout-pay-card__body .checkout-pay-card__icon {
  background: #00a859;
  color: #fff;
}

.checkout-pay-card.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.checkout-card-fields {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed #e2e2e2;
}

.checkout-card-fields.d-none {
  display: none !important;
}

.checkout-card-number {
  position: relative;
}

.checkout-card-number input {
  padding-right: 52px !important;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.checkout-card-brand {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 24px;
  color: #9aa3ab;
  font-size: 1.55rem;
  line-height: 1;
  pointer-events: none;
}

.checkout-card-brand.is-visa { color: #1a1f71; }
.checkout-card-brand.is-mastercard { color: #eb001b; }
.checkout-card-brand.is-amex { color: #2e77bc; }
.checkout-card-brand.is-diners { color: #0079be; }
.checkout-card-brand.is-discover { color: #ff6000; }
.checkout-card-brand.is-elo,
.checkout-card-brand.is-hipercard {
  color: #111;
}

.checkout-card-brand__text {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  background: #111;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.checkout-card-brand.is-elo .checkout-card-brand__text {
  background: #00a4e0;
}

.checkout-card-brand.is-hipercard .checkout-card-brand__text {
  background: #b3131b;
}

.checkout-aside {
  position: sticky;
  top: 120px;
}

.checkout-summary {
  background: #fff;
  border: 0.8px solid #dddddd;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.checkout-summary__title {
  margin: 0;
  padding: 16px 18px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #212529;
  border-bottom: 3px solid #fbb03b;
  background: #fafafa;
}

.checkout-summary__list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  max-height: 240px;
  overflow: auto;
}

.checkout-summary__list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 18px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
}

.checkout-summary__list li:last-child {
  border-bottom: 0;
}

.checkout-summary__item {
  color: #444;
  line-height: 1.35;
}

.checkout-summary__price {
  color: #00a88a;
  font-weight: 700;
  white-space: nowrap;
}

.checkout-summary__totals {
  padding: 12px 18px 4px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkout-summary__totals > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
  color: #555;
}

.checkout-summary__totals .is-discount {
  color: #00a859;
}

.checkout-summary__totals .is-total {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 2px solid #fbb03b;
  font-size: 1.05rem;
  color: #212529;
}

.checkout-summary__totals .is-total strong {
  color: #00a859;
  font-size: 1.2rem;
}

.checkout-summary__actions {
  padding: 14px 18px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkout-summary__actions .btn-checkout:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.checkout-summary__secure {
  margin: 0;
  padding: 0 18px 16px;
  text-align: center;
  font-size: 0.75rem;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.checkout-summary__secure i {
  color: #00a859;
}

.checkout-alert {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.92rem;
  border: 1px solid transparent;
}

.checkout-alert--error {
  background: #fff5f5;
  border-color: #f5c2c7;
  color: #842029;
}

.checkout-alert--warn {
  background: #fff8e8;
  border-color: #fbb03b;
  color: #7a5a10;
}

.checkout-state {
  max-width: 520px;
  margin: 20px auto;
  text-align: center;
  background: #fff;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(16, 40, 50, 0.08);
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
}

.checkout-state--ok {
  border-top: 4px solid #00A069;
}

.checkout-state--ok::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 110px;
  background: linear-gradient(120deg, rgba(0, 160, 105, 0.14), rgba(2, 193, 214, 0.12));
  pointer-events: none;
}

.checkout-state__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(0, 160, 105, 0.14);
  color: #00A069;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  z-index: 1;
}

.checkout-state__icon--muted {
  background: #f0f0f0;
  color: #999;
}

.checkout-state h2 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  color: #1a1a1a;
  position: relative;
  z-index: 1;
}

.checkout-state p {
  margin: 0 0 8px;
  color: #666;
  position: relative;
  z-index: 1;
}

.checkout-state__meta a {
  color: #ED190D;
  font-weight: 700;
}

.checkout-state__actions {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-aside {
    position: static;
    order: -1;
  }
}

@media (max-width: 720px) {
  .checkout-pay-options {
    grid-template-columns: 1fr;
  }

  .checkout-field--half,
  .checkout-field--zip,
  .checkout-field--street,
  .checkout-field--num,
  .checkout-field--neigh,
  .checkout-field--comp,
  .checkout-field--city,
  .checkout-field--uf,
  .checkout-field--quarter {
    grid-column: span 12;
  }

  .checkout-shell {
    padding: 0 12px 32px;
  }

  .checkout-panel {
    padding: 18px 16px 20px;
  }
}

