.banner-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 16px;
  border-radius: 16px;
  padding: 20px 24px;
  max-width: 860px;
  margin: 0 auto;
}

.banner-form-grid .form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.banner-form-grid .form-field label {
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 2px;
}

.banner-form-grid .form-field input[type='text'],
.banner-form-grid .form-field input[type='date'],
.banner-form-grid .form-field input[type='time'],
.banner-form-grid .form-field select {
  width: 100%;
  height: 46px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 0 65px;
  font-size: 14px;
  color: #111827;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  box-sizing: border-box;
}

.banner-form-grid .form-field input[type='text']:focus,
.banner-form-grid .form-field input[type='date']:focus,
.banner-form-grid .form-field input[type='time']:focus,
.banner-form-grid .form-field select:focus {
  border-color: #4361ee;
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.12);
  background: #fff;
}

.banner-form-grid .form-divider {
  grid-column: 1 / -1;
  border: none;
  border-top: 1px solid #f0f0f0;
  margin: 4px 0;
}

.banner-form-grid .form-submit-wide {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.banner-form-grid .form-submit-wide button {
  width: 100%;
  height: 52px;
  background: #4361ee;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}

.banner-form-grid .form-submit-wide button:hover {
  background: #3451d1;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(67, 97, 238, 0.45);
}

.select2-container--default .select2-selection--single {
  height: 46px !important;
  border: 1.5px solid #e5e7eb !important;
  border-radius: 10px !important;
  display: flex;
  align-items: center;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 46px !important;
  padding-left: 14px !important;
  font-size: 14px;
  color: #111827;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 46px !important;
}

.select2-container--default.select2-container--focus
  .select2-selection--single {
  border-color: #4361ee !important;
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.12) !important;
  background: #fff !important;
}

.select2-container {
  width: 100% !important;
}

@media (max-width: 768px) {
  .banner-form-grid {
    grid-template-columns: 1fr;
  }

  .banner-form-grid .form-divider {
    display: none;
  }
}

.select2-container {
  width: 100% !important;
  font-family: 'DM Sans', sans-serif;
}

.select2-container--default .select2-selection--single {
  height: 50px !important;
  border: 1.5px solid #e2e5ed !important;
  border-radius: 12px !important;
  background: #f8f9fc !important;
  display: flex !important;
  align-items: center !important;
  transition: all 0.22s ease !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 50px !important;
  padding-left: 16px !important;
  padding-right: 40px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #1e2235 !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  color: #9ca3b0 !important;
  font-weight: 400 !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 50px !important;
  width: 40px !important;
  right: 4px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  display: none !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow::after {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234361ee' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.22s ease;
}

.select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow::after {
  transform: rotate(180deg);
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
  border-color: #4361ee !important;
  box-shadow: 0 0 0 3.5px rgba(67, 97, 238, 0.12) !important;
  background: #fff !important;
}

.select2-container--default .select2-dropdown {
  border: 1.5px solid #e2e5ed !important;
  border-radius: 14px !important;
  box-shadow: 0 12px 40px rgba(30, 34, 53, 0.13) !important;
  overflow: hidden;
  margin-top: 6px !important;
  background: #fff;
  animation: s2FadeIn 0.18s ease;
}

@keyframes s2FadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.select2-container--default .select2-search--dropdown {
  padding: 10px 12px 6px !important;
  background: #fff;
  border-bottom: 1px solid #f0f2f7;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1.5px solid #e2e5ed !important;
  border-radius: 8px !important;
  padding: 8px 14px !important;
  font-size: 13px !important;
  font-family: 'DM Sans', sans-serif !important;
  color: #1e2235 !important;
  background: #f8f9fc !important;
  outline: none !important;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100% !important;
  box-sizing: border-box;
}

.select2-container--default
  .select2-search--dropdown
  .select2-search__field:focus {
  border-color: #4361ee !important;
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1) !important;
  background: #fff !important;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 220px !important;
  overflow-y: auto !important;
  padding: 6px !important;
  scrollbar-width: thin;
  scrollbar-color: #d1d5e0 transparent;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar {
  width: 5px;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-thumb {
  background: #d1d5e0;
  border-radius: 10px;
}

.select2-container--default .select2-results__option {
  padding: 10px 14px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #374151 !important;
  border-radius: 8px !important;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background: #eef1fd !important;
  color: #4361ee !important;
}

.select2-container--default .select2-results__option[aria-selected='true'] {
  background: #4361ee !important;
  color: #fff !important;
  font-weight: 600 !important;
}

.select2-container--default
  .select2-results__option[aria-selected='true']::before {
  content: '✓';
  font-size: 12px;
  opacity: 0.9;
  margin-right: 2px;
}

.select2-container--default .select2-results__option--disabled,
.select2-results__message {
  color: #9ca3af !important;
  font-size: 13px !important;
  font-style: italic;
  padding: 10px 14px !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__clear {
  color: #9ca3af;
  font-size: 16px;
  font-weight: 400;
  margin-right: 8px;
  transition: color 0.15s;
  line-height: 1;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__clear:hover {
  color: #ef4444;
}
/**/
/* ── MASAÜSTÜ ── */
.service-block-thirteen {
  margin-bottom: 30px;
}

.service-block-thirteen .inner-box {
  display: flex;
}

.service-block-thirteen .inner-box .image-box {
  flex: 0 0 40%;
  max-width: 40%;
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  border-left: 1px solid #e1e1e1;
  border-radius: 15px 0 0 15px;
}

.service-block-thirteen .inner-box .image-box .image {
  border-radius: 16px 0 0 16px;
  overflow: hidden;
}

.service-block-thirteen .inner-box .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-block-thirteen .inner-box .right-box {
  display: flex;
  justify-content: space-between;
  border: 1px solid #e1e1e1;
  border-left: 0;
  border-radius: 0 16px 16px 0;
  padding: 42px 30px 10px;
  flex: 0 0 60%;
  max-width: 60%;
}

.service-block-thirteen .inner-box .right-box .content-box .title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 0;
}

.service-block-thirteen .inner-box .right-box .content-box .text {
  margin-bottom: 34px;
  font-size: 15px;
}

.service-block-thirteen .inner-box .right-box .content-box .inspection-sec {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 47px;
  gap: 30px;
}

.service-block-thirteen
  .inner-box
  .right-box
  .content-box
  .inspection-sec
  .inspection-box {
  position: relative;
  display: flex;
  gap: 12px;
}

.service-block-thirteen
  .inner-box
  .right-box
  .content-box
  .inspection-sec
  .inspection-box:last-child {
  margin-right: 0;
}

.service-block-thirteen
  .inner-box
  .right-box
  .content-box
  .inspection-sec
  .inspection-box
  span {
  display: block;
  color: #818181;
  font-size: 15px;
  margin-bottom: -4px;
}

.service-block-thirteen
  .inner-box
  .right-box
  .content-box
  .inspection-sec
  .inspection-box
  small {
  color: var(--theme-color-dark);
  font-size: 15px;
  font-weight: 500;
}

.service-block-thirteen .inner-box .right-box .content-box-two {
  position: relative;
  text-align: right;
  margin-top: 15px;
}

.service-block-thirteen .inner-box .right-box .content-box-two::before {
  content: '';
  position: absolute;
  top: -55px;
  left: -31px;
  width: 1px;
  height: 220px;
  background-color: #e1e1e1;
}

.service-block-thirteen .inner-box .right-box .content-box-two .title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 2px;
}

.service-block-thirteen .inner-box .right-box .content-box-two span {
  font-size: 15px;
  display: inline-block;
}

.service-block-thirteen .inner-box .right-box .content-box-two .button {
  display: block;
  color: var(--theme-color1);
  font-weight: 500;
  border-radius: 12px;
  border: 1px solid var(--theme-color1);
  padding: 13px 11px;
  background-color: #ffffff;
}

.service-block-thirteen .inner-box .right-box .content-box-two .button:hover {
  background-color: var(--theme-color1);
  color: var(--theme-color-light);
}

@media (max-width: 991px) {
  .service-block-thirteen .inner-box .right-box .content-box .inspection-sec {
    margin-bottom: 30px;
    gap: 20px;
  }

  .service-block-thirteen .inner-box .right-box .content-box-two .icon-box {
    margin-bottom: 30px;
  }
}

/* ── MOBİL ── */
@media (max-width: 575px) {
  .service-block-thirteen .inner-box {
    display: flex;
    flex-direction: column;
    border: 1px solid #e1e1e1;
    border-radius: 15px;
    overflow: hidden;
  }

  .service-block-thirteen .inner-box .image-box {
    flex: none;
    width: 100% !important;
    max-width: 100% !important;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #e1e1e1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
  }

  .service-block-thirteen .inner-box .image-box .image {
    border-radius: 0;
    height: auto;
  }

  .service-block-thirteen .inner-box .image-box img {
    width: 350px;
    height: auto;
    object-fit: contain;
  }

  .service-block-thirteen .inner-box .right-box {
    flex: none;
    width: 100% !important;
    max-width: 100% !important;
    border: none;
    border-radius: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
  }

  .service-block-thirteen .inner-box .right-box .content-box .text {
    margin-bottom: 12px;
  }

  .service-block-thirteen .inner-box .right-box .content-box .inspection-sec {
    margin-bottom: 12px;
    gap: 16px;
  }

  .service-block-thirteen .inner-box .right-box .content-box-two::before {
    display: none;
  }

  .service-block-thirteen .inner-box .right-box .content-box-two {
    text-align: left;
    margin-top: 0;
    border-top: 1px solid #e1e1e1;
    padding-top: 14px;
  }

  .service-block-thirteen .inner-box .right-box .content-box-two .button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px;
    border-radius: 10px;
    margin-top: 4px;
    background-color: #ffffff;
  }
}
.button-2 {
  display: block;
  font-weight: 500;
  border-radius: 12px;
  border: 1px solid var(--theme-color1);
  padding: 9px 22px;
  color: #ffffff;
  background-color: #0d6efd;
}
.button-2:hover {
  background-color: #ffffff;
  color: var(--theme-color1);
}

/* ── Quantity wrap ── */
.cheak-box-qty-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cheak-box-qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
  touch-action: manipulation; /* mobil dokunma gecikmesi engelle */
}

.cheak-box-qty-btn:hover {
  background: #f0f0f0;
  border-color: #bbb;
}

.cheak-box-qty-val {
  min-width: 28px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.cheak-box-remove {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid #ffd0d0;
  background: #fff5f5;
  color: #e53935;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  touch-action: manipulation;
}

.cheak-box-remove:hover {
  background: #ffe0e0;
}

/* Adet 0 ise quantity wrap gizle */
.cheak-box-qty-wrap.hidden {
  display: none;
}

/* ── Satır düzeni ── */
.cheak-box-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* ── +/- kontroller ── */
.cheak-box-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.cheak-box-qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1.5px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
  touch-action: manipulation;
}

.cheak-box-qty-btn:hover {
  background: #f0f0f0;
  border-color: #bbb;
}

.cheak-box-qty-val {
  min-width: 26px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}

/* ── Fiyatlar ── */
.cheak-box-prices {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  flex: 1;
}

.cheak-box-unit-price {
  font-size: 12px;
  color: #888;
}

.cheak-box-subtotal {
  font-size: 15px;
  font-weight: 700;
  color: #222;
}

/* ── Sil butonu ── */
.cheak-box-remove {
  margin-left: auto;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1.5px solid #ffd0d0;
  background: #fff5f5;
  color: #e53935;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  touch-action: manipulation;
  flex-shrink: 0;
}

.cheak-box-remove:hover {
  background: #ffe0e0;
}

/* ── Gizle ── */
.cheak-box-qty-wrap.hidden {
  display: none;
}

/* ── Weiter butonu ── */
.weiter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.weiter-total {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

/* Mobil */
@media (max-width: 480px) {
  .cheak-box-price-row {
    gap: 8px;
  }
  .weiter-total {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}
.extra-option-border {
  border-radius: 16px;
  border: 1px solid var(--Border, #e1e1e1);
}
.mbl-5{
  margin-bottom: -10px !important;
}
.mtl-5{
  margin-top: -10px !important;
}

/* ── Extra ürün buton disabled durumu ── */
.cheak-box-qty-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Checkout özet listesi ── */
#order-summary-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .4rem 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: .88rem;
  gap: 8px;
}
#order-summary-list li span {
  white-space: nowrap;
  font-weight: 600;
}
#order-summary-list li:first-child {
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  color: #888;
  border-bottom: 2px solid #eee;
  padding-bottom: .5rem;
}
#order-summary-list li:last-child {
  border-bottom: none;
  font-size: 1rem;
  padding-top: .5rem;
}

/* ── Checkout buton yüklenme ── */
#place-order-btn .fa-spin {
  animation: fa-spin .7s linear infinite;
}

/* ── Responsive: yan sidebar mobilde alt alta ── */
@media (max-width: 991px) {
  .checkout-section .side-bar {
    margin-top: 2rem;
  }
}

/* ══════════════════════════════════════════════
   Transfer Tab Navigation (Zum / Vom Flughafen)
   ══════════════════════════════════════════════ */
.transfer-tab-nav {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto 0;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-bottom: none;
}

.transfer-tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border: none;
  background: transparent;
  color: #131010c9;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.3px;
  font-family: 'DM Sans', sans-serif;
}

.transfer-tab-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.transfer-tab-btn:hover {
  color: #0015f9;
  background: rgba(255, 255, 255, 0.08);
}

.transfer-tab-btn.active {
  color: #150075;
  background: rgba(255, 255, 255, 0.18);
}

.transfer-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: #4361ee;
  border-radius: 3px 3px 0 0;
}

.transfer-tab-btn.active i {
  transform: scale(1.15);
}

/* Tab content visibility */
.form-tab-pane {
  display: none;
}

.form-tab-pane.current {
  display: block;
  animation: tabFadeIn 0.35s ease;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form grid top border radius adjustment when tabs present */
.transfer-tab-nav + .form-tab-pane.current .banner-form-grid,
.form-tabs .form-tab-pane.current .banner-form-grid {
  border-radius: 0 0 16px 16px;
}

/* ── Mobile Tab Styles ── */
@media (max-width: 768px) {
  .transfer-tab-nav {
    border-radius: 12px 12px 0 0;
    max-width: 100%;
  }

  .transfer-tab-btn {
    padding: 14px 12px;
    font-size: 13px;
    gap: 6px;
  }

  .transfer-tab-btn i {
    font-size: 16px;
  }

  .transfer-tab-btn span {
    white-space: nowrap;
  }

  /* Mobile form enhancements */
  .form-tabs .banner-form-grid {
    padding: 16px;
    gap: 10px;
  }

  .form-tabs .banner-form-grid .form-field label {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .form-tabs .banner-form-grid .form-field select,
  .form-tabs .banner-form-grid .form-field input {
    height: 50px;
    font-size: 15px;
    border-radius: 12px;
  }

  .form-tabs .banner-form-grid .form-submit-wide button {
    height: 54px;
    font-size: 15px;
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  .transfer-tab-btn {
    padding: 12px 8px;
    font-size: 12px;
    flex-direction: column;
    gap: 4px;
  }

  .transfer-tab-btn i {
    font-size: 20px;
  }
}

/* ── Sipariş Özeti Sayfası Stilleri ─────────────────────── */
.alert-success-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border: 1px solid #a5d6a7;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}

.alert-success-box .alert-icon {
  font-size: 2rem;
  color: #2e7d32;
  flex-shrink: 0;
  margin-top: 2px;
}

.alert-success-box h5 {
  margin-bottom: .25rem;
  color: #1b5e20;
  font-weight: 700;
}

.alert-success-box p {
  margin: 0;
  color: #388e3c;
}

.order-summary-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 1.5rem;
}

.summary-section-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #222;
}

.summary-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.summary-table th {
  padding: .6rem .75rem;
  font-weight: 600;
  color: #555;
  border-bottom: 1px solid #eee;
}

.summary-table td {
  padding: .6rem .75rem;
  border-bottom: 1px solid #f5f5f5;
  color: #333;
  vertical-align: middle;
}

.summary-table tfoot td {
  border-top: 2px solid #eee;
  padding-top: .75rem;
  font-size: 1rem;
}

.badge-type {
  display: inline-block;
  font-size: .7rem;
  padding: .2rem .5rem;
  border-radius: 20px;
  margin-right: .4rem;
  font-weight: 600;
}

.badge-cart {
  background: #e3f2fd;
  color: #1565c0;
}

.badge-extra {
  background: #fce4ec;
  color: #c62828;
}

.info-label {
  font-size: .78rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .15rem;
}

.info-value {
  font-size: .95rem;
  color: #222;
  font-weight: 500;
}

.summary-payment-box {
  position: sticky;
  top: 80px;
}

.payment-summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.payment-summary-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .55rem 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: .9rem;
}

.payment-summary-list li span {
  color: #666;
}

.payment-summary-list li.total-line {
  border-top: 2px solid #eee;
  border-bottom: none;
  margin-top: .5rem;
  padding-top: .75rem;
  font-size: 1.05rem;
}

.status-pending {
  color: #e65100;
}

.status-paid {
  color: #2e7d32;
}

.status-failed {
  color: #c62828;
}

.status-new {
  color: #1565c0;
}

.status-confirmed {
  color: #2e7d32;
}

.status-completed {
  color: #2e7d32;
}

.status-cancelled {
  color: #c62828;
}