:root {
  --theme-color: #F26522;
  --theme-color-dark: #e55a1a;
  --dark-text: #2c3e50;
  --medium-text: #555;
  --light-text: #7f8c8d;
  --border-color: #e9ecef;
  --background-light: #f8f9fa;
  --background-white: #ffffff;
  --card-shadow: 0 4px 20px rgba(0,0,0,0.05);
  --input-background: #ffffff;
  --dark-block: #222222;
  --success-color: #27ae60;
  --danger-color: #e74c3c;
  --danger-background: #fdf2f2;
}
.page-title-layout-2.page-title {padding-bottom: 0px !important;margin-bottom: 10px !important;}
#wrapper {padding-bottom: 0;}
.pay-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0px auto;
    padding: 20px;
  }

  .pay-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    padding: 32px;
  }
  .pay-card .alert {max-width:98%}

  body#module-albarakapos-payment, #module-albarakapos-payment .page-content, #module-albarakapos-payment #wrapper, #module-albarakapos-payment #header {
    background: #f8fafc !important;
  }
  #module-albarakapos-payment #header {margin:0px}
  .paymetTitle {
    font-size: 26px;
    margin-bottom: 24px;
    color: #111827;
  }

  label {
    font-size: 15px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
  }

  input, select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 15px;
    transition: border-color 0.2s;
  }

  input:focus, select:focus {
    border-color: #f97316;
    outline: none;
  }

  .pay-row {
    display: flex;
    gap: 16px;
  }

  .info-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    color: #374151;
    margin-top: 20px;
  }

  .pay-btn {
    background: #f97316;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 24px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s;
  }

  .pay-btn:hover {
    background: #ea580c;
  }

  .summary-item {
    margin-bottom: 16px;
  }

  .summary-item h4 {
    font-size: 16px;
    margin: 0 0 4px;
    color: #111827;
  }

  .summary-item p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
  }

  .summary-total {
    border-top: 1px solid #e5e7eb;
    margin-top: 16px;
    padding-top: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
  }
.payment-right-column {
  position: sticky;
  top: 40px;
}

.order-summary-card, .pay-card {
  background: var(--background-white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.summary-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-text);
}

.order-badge {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--medium-text);
}
.order-badge .badge-icon {
  color: var(--theme-color);
  font-size: 10px;
  margin-right: 6px;
}

.plan-section {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.plan-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.plan-name {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.4;
  padding-right: 15px;
}

.plan-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-text);
  white-space: nowrap;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.price-label { color: var(--medium-text); }
.price-value { font-weight: 500; color: var(--dark-text); }
.price-free { color: var(--success-color); font-weight: 600; }

.price-row.total {
  margin-top: 10px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
  font-weight: 700;
  font-size: 16px;
  color: var(--dark-text);
}

.total-section {
  margin: 20px 0;
  padding: 16px 20px;
  background: var(--dark-block);
  border-radius: 8px;
  color: white;
}

.total-amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.total-label {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}

.total-value {
  font-size: 18px;
}

.terms-section {
  margin: 20px 0;
}

.terms-text {
  font-size: 11px;
  color: var(--light-text);
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.trust-badges {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-badge .badge-icon {
  font-size: 14px;
  margin: 0;
  color: var(--light-text);
}
.badge-text {
  font-size: 11px;
  color: var(--light-text);
  font-weight: 500;
}
  @media (max-width: 800px) {
    .pay-container {
      grid-template-columns: 1fr;
	  padding: 20px 0px
    }
	.order-summary-card, .pay-card {padding: 15px}
  }
  #module-albarakapos-payment .page-title {display:none}
  .logoDiv {text-align:center; padding:20px 0;}