:root {
  --theme-color: #16a34a; /* fallback if admin color not set */
}
/* -------------------------------
   GENERAL LAYOUT
--------------------------------*/
.dailypak-payment-wrap {
  font-family: "Inter", system-ui, sans-serif;
  color: #0f172a;
}

/* -------------------------------
   HEADER SECTION
--------------------------------*/
.dp-header {
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 28%);
    padding: 35px;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    border-top: 5px solid;
}
.dp-header img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 16px;
  margin-bottom: 10px;
}
.dp-header h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
  border-bottom: 4px solid;
  padding-bottom: 10px;
}
.dp-header p {
  font-size: 16px;
  color: #475569;
  max-width: 640px;
  margin: 0 auto;
}

/* -------------------------------
   PAYMENT GRID
--------------------------------*/
.dp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* -------------------------------
   CARD BASE STYLING
--------------------------------*/
.dp-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 22%);
  padding: 20px;
  text-align: center;
  transition: all 0.2s ease;
  position: relative;
}
.dp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.dp-card img {
  width: 100px;
  height: auto;
  margin-bottom: 12px;
  border-radius: 15px;
  padding: 1px;
  box-shadow: 0 0px 12px rgb(169 169 169);
}
.dp-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

/* -------------------------------
   OFFICIAL BRAND COLORS
--------------------------------*/
.dp-easypaisa {
  border-top: 5px solid #10b24d;
}
.dp-jazzcash {
  border-top: 5px solid #ff5a00;
}
.dp-bank {
  border-top: 5px solid #0b6baf;
}
.dp-paypal {
  border-top: 5px solid #003087;
}

/* -------------------------------
   CARD TEXT
--------------------------------*/
.dp-card p {
  font-size: 15px;
  margin: 5px 0;
  color: #334155;
}
.dp-card strong {
  font-weight: 600;
}

/* -------------------------------
   BUTTONS
--------------------------------*/
.dp-btn-copy,
.dp-btn-paypal {
  background: #16a34a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 8px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s ease;
  text-decoration: none;
}
.dp-btn-copy:hover,
.dp-btn-paypal:hover {
  background: #15803d;
}
.dp-btn-paypal {
  background: #003087;
}
.dp-btn-paypal:hover {
  background: #001f6b;
}

/* -------------------------------
   COPY TOAST
--------------------------------*/
.copy-toast {
  position: absolute;
  background: #16a34a;
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 99999;
}

/* -------------------------------
   RECEIPT FORM
--------------------------------*/
.dp-receipt {
  background: #fff;
  max-width: 80%;
  margin: 0 auto 40px;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 28%);
}
.dp-receipt h4 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}
#dailypak-receipt-form input,
#dailypak-receipt-form select{
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  margin-bottom: 10px;
  font-size: 15px;
}
#dailypak-receipt-form button {
  background: #16a34a;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
#dailypak-receipt-form button:hover {
  background: #15803d;
}
#dp-form-msg {
  margin-top: 8px;
  font-weight: 600;
}

/* -------------------------------
   FAQ SECTION
--------------------------------*/
.dp-faq {
  max-width: 800px;
  margin: 40px auto;
}
.dp-faq h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.faq-question {
  background: #15955ff0;
  border: none;
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.faq-question:hover {
  background: #159590f0;
}
.faq-question.open {
  background: #5a8900;
}
.faq-answer {
  display: none;
  padding: 14px 18px;
  border-top: 1px solid #e2e8f0;
  color: #334155;
  font-size: 15px;
}

/* -------------------------------
   FOOTER
--------------------------------*/
.dailypak-payment-wrap footer {
  text-align: center;
  margin-top: 30px;
  color: #64748b;
  font-size: 14px;
  background: #f8fafc;
  padding: 10px;
  border-top: 1px solid #e2e8f0;
}

/* -------------------------------
   RESPONSIVE DESIGN
--------------------------------*/
@media (max-width: 768px) {
  .dp-header h1 {
    font-size: 24px;
  }
  .dp-card img {
    width: 80px;
  }
  .dp-card h3 {
    font-size: 16px;
  }
  .dp-card {
    padding: 16px;
  }
  .dp-receipt {
    padding: 20px;
	max-width: 100%;
  }
    .separate-containers .inside-article{
        padding: 10px !important;
    }
}