/* ===============================
   RESET + BASE
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== FORCE FONT FOR ALL AUTH PAGES ===== */
html, body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

h1, h2, h3, h4, h5, h6,
.sn-signup-card,
.sn-signup-form,
.sn-reset-card,
.sn-reset-form,
input,
button,
label {
  font-family: 'Inter', system-ui, sans-serif !important;
}


/* ===============================
   FIXED HEADER (ALL DEVICES)
================================ */

.sn-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

/* Push content below navbar */
body {
  padding-top: 72px;
}

/* ===============================
   CONTAINER
================================ */

.sn-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===============================
   LOGO
================================ */

.sn-logo {
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  color: #000;
  letter-spacing: -0.3px;
}

/* ===============================
   DESKTOP NAV (BEFORE LOGIN)
================================ */

.sn-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.sn-link {
  font-size: 14px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  position: relative;
}

.sn-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #FDF001;
  border-radius: 2px;
}

/* ===============================
   SIGN UP BUTTON (DESKTOP)
================================ */

.sn-btn {
  background: #FDF001;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
}

/* ===============================
   BURGER (MOBILE)
================================ */

.sn-burger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===============================
   MOBILE MENU (BOTTOM SHEET)
================================ */

.sn-mobile {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  padding: 28px 24px 32px;
  border-radius: 22px 22px 0 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.sn-mobile.show {
  transform: translateY(0);
}

/* ===============================
   MOBILE CLOSE BUTTON
================================ */

.sn-mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FDF001;
  color: #000;
  border: none;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}

/* ===============================
   MOBILE LINKS
================================ */

.sn-mobile a {
  display: block;
  margin-top: 22px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  color: #111;
}

/* ===============================
   MOBILE BUTTONS
================================ */

.sn-mobile-signin {
  margin-top: 28px;
  background: #eeeeee;
  padding: 14px;
  border-radius: 999px;
  text-align: center;
  font-weight: 500;
}

.sn-mobile-signup {
  background: #FDF001;
  color: #000 !important;
  border-radius: 999px;
  margin-top: 12px;
  padding: 14px 20px;

  /* IMPORTANT — keeps it centered */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
}

/* ===============================
   BACKDROP BLUR
================================ */

.sn-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 900;
}

.sn-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .sn-nav {
    display: none;
  }

  .sn-burger {
    display: block;
  }
}



/* ===============================
   SIGN IN – WRAPPER
================================ */

.sn-login-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 16px;
}

/* ===============================
   LOGIN CARD
================================ */

.sn-login-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  width: 100%;
  max-width: 900px;

  box-shadow: 0 20px 60px rgba(30, 94, 255, 0.15);

  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 16px;
  align-items: center;
}

/* ===============================
   INPUT WRAPPER
================================ */

.sn-input {
  display: flex;
  align-items: center;

  background: #f6f9ff;
  border: 1px solid #dbe6ff;
  border-radius: 14px;
  overflow: hidden;
}

/* ICON LEFT */
.sn-icon {
  width: 52px;
  height: 52px;

  background: linear-gradient(135deg, #fff529, #fdf001);

  display: flex;
  align-items: center;
  justify-content: center;
}

.sn-icon svg {
  width: 22px;
  height: 22px;
  stroke: #000000;
}

/* INPUT FIELD */
.sn-input input {
  width: 100%;
  height: 52px;

  border: none;
  outline: none;
  background: transparent;

  padding: 0 16px;

  font-size: 16px;
  font-weight: 500;
  color: #111111;
}

.sn-input input::placeholder {
  color: #6b7280;
}

/* ===============================
   ACTION ICON BUTTONS
================================ */

.sn-actions {
  display: flex;
  gap: 12px;
}

.sn-action-btn {
  width: 52px;
  height: 52px;

  border-radius: 14px;
  background: #f2f5fb;
  border: 1px solid #dbe6ff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: background 0.2s ease;
}

.sn-action-btn:hover {
  background: #e9efff;
}

.sn-action-btn svg {
  width: 20px;
  height: 20px;
  stroke: #000000;
}

/* ===============================
   LOGIN BUTTON
================================ */

.sn-login-btn {
  height: 52px;
  padding: 0 26px;

  border-radius: 16px;
  border: none;

  background: linear-gradient(135deg, #fff529, #fdf001);
  color: #000000;

  font-size: 18px;
  font-weight: 600;

  display: flex;
  align-items: center;
  gap: 10px;

  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sn-login-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(253, 240, 1, 0.4);
}

.sn-login-btn svg {
  width: 22px;
  height: 22px;
  stroke: #000000;
}

/* ===============================
   MOBILE LAYOUT
================================ */

@media (max-width: 768px) {
  .sn-login-card {
    grid-template-columns: 1fr;
  }

  .sn-actions {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 12px;
  }

  .sn-login-btn {
    justify-content: center;
    font-size: 17px;
  }
}


.sn-signup-wrapper {
  padding: 80px 20px;
}

.sn-signup-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT IMAGE */
.sn-signup-visual img {
  width: 100%;
  max-width: 420px;
}

/* CARD */
.sn-signup-card {
  background: #fff;
  padding: 40px;
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.sn-signup-card h2 {
  font-size: 32px;
  margin-bottom: 6px;
}

.sn-signup-card h2 span {
  color: #2563eb;
}

.sn-signup-card p {
  color: #6b7280;
  margin-bottom: 30px;
}

/* INPUT FIELD */
.sn-field {
  display: flex;
  align-items: center;
  background: #f5f9ff;
  border: 1px solid #dbe7ff;
  border-radius: 999px;
  margin-bottom: 16px;
  overflow: hidden;
}

.sn-field-icon {
  width: 54px;
  height: 54px;
  background: #fdf001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sn-field-icon svg {
  width: 22px;
  height: 22px;
  stroke: #000;
  fill: none;
  stroke-width: 2;
}

.sn-field input {
  border: none;
  outline: none;
  background: transparent;
  padding: 0 18px;
  height: 54px;
  width: 100%;
  font-size: 15px;
}

/* BUTTON */
.sn-signup-btn {
  width: 100%;
  margin-top: 16px;
  height: 54px;
  border-radius: 999px;
  border: none;
  background: #fdf001;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

/* FOOTER */
.sn-signup-footer {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 900px) {
  .sn-signup-grid {
    grid-template-columns: 1fr;
  }

  .sn-signup-visual {
    display: none;
  }
}

/* ===============================
   RESET PASSWORD
================================ */

.sn-reset-wrapper {
  padding: 80px 20px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.sn-reset-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT IMAGE */
.sn-reset-visual img {
  width: 100%;
  max-width: 520px;
}

/* CARD */
.sn-reset-card {
  background: #fff;
  padding: 42px;
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.sn-reset-card h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 6px;
}

.sn-reset-card h2 span {
  color: #2563eb;
}

.sn-reset-sub {
  color: #6b7280;
  font-size: 17px;
  margin-bottom: 32px;
}

/* FIELD */
.sn-field {
  display: flex;
  align-items: center;
  background: #f5f9ff;
  border: 1px solid #dbe7ff;
  border-radius: 999px;
  margin-bottom: 20px;
  overflow: hidden;
}

.sn-field-icon {
  width: 56px;
  height: 56px;
  background: #fdf001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sn-field-icon svg {
  width: 22px;
  height: 22px;
  stroke: #000;
  fill: none;
  stroke-width: 2;
}

.sn-field input {
  border: none;
  outline: none;
  background: transparent;
  padding: 0 18px;
  height: 56px;
  width: 100%;
  font-size: 16px;
}

/* CAPTCHA */
.sn-captcha {
  margin: 20px 0;
}

/* BUTTON */
.sn-reset-btn {
  width: 100%;
  height: 56px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #4aa3ff, #1e5eff);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.sn-reset-btn svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

/* FOOTER */
.sn-reset-footer {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
}

.sn-reset-footer a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

/* ALERTS */
.sn-alert {
  padding: 14px 18px;
  border-radius: 14px;
  margin-bottom: 20px;
  font-size: 14px;
}

.sn-alert-error {
  background: #fee2e2;
  color: #991b1b;
}

.sn-alert-success {
  background: #dcfce7;
  color: #166534;
}

/* MOBILE */
@media (max-width: 900px) {
  .sn-reset-grid {
    grid-template-columns: 1fr;
  }

  .sn-reset-visual {
    display: none;
  }
}

.sn-signup-card h2,
.sn-reset-card h2,
.sn-reset-form h1 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ===============================
   API PAGE – SOCIALPANEL STYLE
================================ */

.api-wrapper {
  padding: 80px 20px;
}

.api-card {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

/* HEADER */
.api-header {
  padding: 48px 40px;
  background:
    url("https://storage.perfectcdn.com/htsbui/g172m2yi75mmndfk.png"),
    linear-gradient(135deg, #fff529, #fdf001);
  background-size: cover;
  background-position: center;
  color: #000;
}

.api-header h1 {
  font-size: 42px;
  font-weight: 800;
  margin: 0;
}

.api-header p {
  margin-top: 8px;
  font-size: 18px;
  opacity: 0.85;
}

/* CONTENT */
.api-content {
  padding: 40px;
}

.api-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

.api-table th,
.api-table td {
  border: 1px solid #e5e7eb;
  padding: 14px 16px;
  text-align: left;
}

.api-table th {
  background: #f9fafb;
  font-weight: 600;
  width: 40%;
}

.api-method-title {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 16px;
}

pre.api-pre {
  background: #0f172a;
  color: #e5e7eb;
  padding: 20px;
  border-radius: 16px;
  overflow-x: auto;
  font-size: 14px;
}

.api-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #fdf001;
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .api-header h1 {
    font-size: 32px;
  }

  .api-content {
    padding: 24px;
  }
}



.service-description,
.service-description__th {
  display: none !important;
}


/* ===============================
   SERVICES PAGE (CUSTOM)
================================ */

.services-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px 100px;
}

/* HEADER */
.services-header h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
}

.services-header p {
  color: #6b7280;
  max-width: 520px;
}

.btn-primary {
  display: inline-block;
  margin-top: 22px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #fff529, #fdf001);
  color: #000;
  font-weight: 800;
  border-radius: 999px;
  text-decoration: none;
}

/* FILTER BAR */
.services-filter {
  margin-top: 50px;
  background: #fff;
  padding: 18px;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.filter-box {
  border: none;
  background: #f4f6fb;
  padding: 16px 20px;
  border-radius: 999px;
  font-size: 15px;
  outline: none;
}

/* SERVICE GROUP */
.service-group {
  margin-top: 40px;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.service-group-title {
  background: #ffd800;
  padding: 18px 24px;
  font-weight: 800;
}

/* SERVICE ROW */
.service-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 16px;
  padding: 20px 24px;
  align-items: center;
  border-top: 1px solid #f1f3f8;
}

.service-id {
  background: #0f172a;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.service-name {
  font-weight: 600;
  line-height: 1.4;
}

.service-pill {
  background: #eef1f7;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}

/* FAVORITE */
.service-favorite {
  cursor: pointer;
  font-size: 18px;
}

/* MOBILE */
@media (max-width: 900px) {
  .services-header h1 {
    font-size: 32px;
  }

  .services-filter {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-pill,
  .service-id {
    width: fit-content;
  }
}



/* AUTH WRAPPER */
.sn-auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f9ff;
  padding: 40px 20px;
}

.sn-auth-grid {
  max-width: 1100px;
  width: 100%;
  background: #fff;
  border-radius: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.08);
}

/* LEFT IMAGE */
.sn-auth-visual {
  background: #fffbe6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sn-auth-visual img {
  max-width: 80%;
}

/* CARD */
.sn-auth-card {
  padding: 60px;
}

.sn-auth-card h2 {
  font-size: 30px;
  margin-bottom: 8px;
}

.sn-auth-card p {
  color: #666;
  margin-bottom: 30px;
}

/* ===============================
   AUTH FIELD – SHARED (SIGNIN / SIGNUP / RESET)
================================ */

/* FIELD WRAPPER */
.sn-field {
  display: flex;
  align-items: center;
  background: #f4f6fb;
  border-radius: 999px;
  padding: 8px;
  margin-bottom: 18px;
  overflow: hidden; /* IMPORTANT: prevents icon bleed */
}

/* ICON CIRCLE (PERFECT CIRCLE, NO CUT) */
.sn-field-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;

  border-radius: 50%;
  background: linear-gradient(135deg, #fff529, #fdf001);

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0; /* IMPORTANT */
}

/* SVG ICON */
.sn-field-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #000;
  stroke-width: 2;
}

/* INPUT */
.sn-field input {
  flex: 1;
  height: 52px;

  border: none;
  outline: none;
  background: transparent;

  padding: 0 16px;

  font-size: 15px;
  font-weight: 500;
  color: #111;
}

.sn-field input::placeholder {
  color: #6b7280;
}

/* ===============================
   AUTH BUTTON (ALL AUTH PAGES)
================================ */

.sn-auth-btn {
  width: 100%;
  height: 54px;

  border-radius: 999px;
  border: none;

  background: linear-gradient(135deg, #fff529, #fdf001);
  color: #000;

  font-size: 16px;
  font-weight: 800;

  cursor: pointer;
  margin-top: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sn-auth-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(253, 240, 1, 0.35);
}

/* ===============================
   ALERTS (ALL AUTH PAGES)
================================ */

.sn-alert {
  padding: 14px 18px;
  border-radius: 14px;
  margin-bottom: 18px;
  font-weight: 600;
  font-size: 14px;
}

.sn-alert-error {
  background: #ffe3e3;
  color: #b00020;
}

.sn-alert-success {
  background: #e8fff0;
  color: #087f23;
}

/* ===============================
   AUTH LAYOUT – MOBILE FIX
================================ */

@media (max-width: 900px) {
  .sn-auth-grid {
    grid-template-columns: 1fr;
  }

  .sn-auth-visual {
    display: none;
  }

  .sn-auth-card {
    padding: 40px 24px;
  }
}


/* ================= LOGGED IN NAVBAR ================= */

.sn-topbar {
  height: 64px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 6px rgba(0,0,0,.08);
}

body {
  padding-top: 64px;
}

.sn-hamburger {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #fff529, #fdf001);
  font-size: 22px;
  cursor: pointer;
}

.sn-top-logo img {
  height: 32px;
}

.sn-profile img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
}

/* SIDEBAR */
.sn-sidebar {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #fff;
  padding: 20px;
  transition: left .3s ease;
  z-index: 1200;
}

.sn-sidebar.show {
  left: 0;
}

.sn-sidebar-logo img {
  height: 36px;
  margin-bottom: 30px;
}

.sn-sidebar a {
  display: block;
  padding: 12px 14px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
}

.sn-sidebar a.active {
 background: linear-gradient(135deg, #fff529, #fdf001);
  border-radius: 999px;
}

/* CLOSE */
.sn-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
      background: #FDF001;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

/* OVERLAY */
.sn-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  z-index: 1100;
}

.sn-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* PROFILE SHEET */
.sn-profile-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -100%;
  background: #fff;
  padding: 20px;
  border-radius: 22px 22px 0 0;
  transition: bottom .3s ease;
  z-index: 1300;
}

.sn-profile-sheet.show {
  bottom: 0;
}

.sn-sheet-header {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.sn-sheet-header img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.sn-balance {
  background: linear-gradient(135deg, #fff529, #fdf001);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  margin-top: 6px;
}

.sn-profile-sheet a {
  display: block;
  padding: 14px 0;
  font-weight: 600;
  border-top: 1px solid #eee;
}

.sn-profile-sheet .logout {
  color: red;
}

/* DESKTOP RULE */
@media (min-width: 769px) {
  .sn-profile-sheet {
    display: none;
  }
}



/* ================= BASE ================= */
.page {
  max-width: 900px;
  margin: auto;
  padding: 24px;
}

/* ================= HEADER ================= */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.header-left h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
}

.subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ================= BUTTONS ================= */
.ghost {
  background: #ffeb00;
  color: #000;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 500;
}

.submit {
  width: 100%;
  height: 52px;
  background: #ffeb00;
  border: none;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* ================= CARD ================= */
.card {
  background: #111;
  color: #fff;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
  margin-bottom: 20px;
}

/* ================= FIELDS ================= */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.field label {
  font-size: 13px;
  color: #bdbdbd;
}

.field input,
.field select {
  height: 46px;
  border-radius: 14px;
  border: none;
  padding: 0 14px;
  background: #1e1e1e;
  color: #fff;
}

.field input:focus,
.field select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255,235,0,.35);
}

.field.readonly input {
  background: #2a2a2a;
  color: #aaa;
}

/* ================= SEARCH ================= */
.field.search input {
  padding-left: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' stroke='%23ffeb00' fill='none' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 14px center;
  background-size: 18px;
}

/* ================= DESCRIPTION ================= */
.service-description {
  background: #1e1e1e;
  color: #e5e5e5;
  border-radius: 14px;
  padding: 14px;
  font-size: 13px;
  line-height: 1.6;
}

.service-description a {
  color: #ffeb00;
}

/* ================= ALERTS ================= */
.pp-alert {
  padding: 14px;
  border-radius: 14px;
  margin-bottom: 14px;
}

.pp-alert.error {
  background: #3b0f0f;
  color: #ffdcdc;
}

.pp-alert.success {
  background: #0f3b1c;
  color: #d8ffe6;
}

/* ================= TERMS ================= */
.field.terms label {
  font-size: 13px;
  color: #ccc;
}

/* ================= RTL ================= */
.rtl-form {
  direction: rtl;
}

.service-description:empty::before {
  content: "Select a service to view description";
  color: #9ca3af;
  font-style: italic;
}

/* ===============================
   SERVICE DESCRIPTION – FIXED
=============================== */

/* Scope ONLY to New Order */
#service_description .panel-body {
  background: #ffffff;           /* clean white */
  color: #111111;                /* readable black text */
  border-radius: 14px;           /* modern radius */
  padding: 14px;
  font-size: 13px;
  line-height: 1.6;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Headings inside description */
#service_description .panel-body h1,
#service_description .panel-body h2,
#service_description .panel-body h3,
#service_description .panel-body h4 {
  color: #000;
  margin: 0 0 8px;
  font-weight: 600;
}

/* Paragraphs */
#service_description .panel-body p {
  margin: 0 0 8px;
}

/* Lists */
#service_description .panel-body ul {
  padding-left: 18px;
  margin: 8px 0;
}

#service_description .panel-body li {
  margin-bottom: 6px;
}

/* Links */
#service_description .panel-body a {
  color: #ffb703;                /* yellow accent */
  font-weight: 500;
  text-decoration: underline;
}

/* Optional: subtle border instead of shadow */
#service_description .panel-body {
  border: 1px solid #e5e7eb;
}

#service_description .panel-body {
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* ===============================
   SELECT2 – DARK MODE (NEW ORDER)
=============================== */

/* Main selection box */
span.select2-selection.select2-selection--single.form-control {
  background-color: #262626;
  border-color: #252525;
  color: #ffffff;
  border-radius: 14px;
  height: 46px;
  display: flex;
  align-items: center;
}

/* Selected text */
.select2-selection__rendered {
  color: #ffffff !important;
  line-height: 46px;
}

/* Arrow */
.select2-selection__arrow b {
  border-color: #ffffff transparent transparent transparent;
}

/* Dropdown */
.select2-dropdown {
  background: #1e1e1e;
  border-color: #2a2a2a;
}

/* Options */
.select2-results__option {
  color: #e5e5e5;
}

/* Hover / active */
.select2-results__option--highlighted {
  background: #ffeb00;
  color: #000000;
}

/* Selected option */
.select2-results__option--selected {
  background: #2a2a2a;
}

/* Search input inside dropdown */
.select2-search__field {
  background: #262626;
  color: #ffffff;
  border-color: #2a2a2a;
}


/* ===============================
   DYNAMIC LINK INPUT (PerfectPanel)
=============================== */

input#field-orderform-fields-link {
  height: 46px;
  width: 100%;
  border-radius: 14px;
  border: none;
  padding: 0 14px;
  background: #1e1e1e;
  color: #ffffff;
  font-size: 14px;
}

/* Focus state */
input#field-orderform-fields-link:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 235, 0, 0.35);
}

/* Placeholder */
input#field-orderform-fields-link::placeholder {
  color: #9ca3af;
}
/* ===============================
   DYNAMIC QUANTITY INPUT (PerfectPanel)
=============================== */

input#field-orderform-fields-quantity {
  height: 46px;
  width: 100%;
  border-radius: 14px;
  border: none;
  padding: 0 14px;
  background: #1e1e1e;
  color: #ffffff;
  font-size: 14px;
}

/* Focus state */
input#field-orderform-fields-quantity:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 235, 0, 0.35);
}

/* Placeholder */
input#field-orderform-fields-quantity::placeholder {
  color: #9ca3af;
}

/* ===============================
   SEARCH (Select2 / PerfectPanel)
=============================== */

/* Wrapper */
.search-dropdown {
  width: 100%;
}

/* Input wrapper */
.search-dropdown .input-wrapper {
  position: relative;
  width: 100%;
}

/* Hide ugly button background */
.search-dropdown .input-wrapper__prepend {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  pointer-events: none; /* icon only */
}

/* Font Awesome search icon */
.search-dropdown .input-wrapper__prepend .fa-search {
  color: #ffeb00;
  font-size: 14px;
}

/* Actual input */
.search-dropdown input.select2-selection {
  width: 100%;
  height: 46px;
  padding-left: 42px;
  border-radius: 14px;
  background: #1e1e1e;
  border: none;
  color: #ffffff;
  font-size: 14px;
}

/* Focus state */
.search-dropdown input.select2-selection:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 235, 0, 0.35);
}

/* Placeholder */
.search-dropdown input::placeholder {
  color: #9ca3af;
}

/* Space below search input */
input.select2-selection.select2-selection--single.form-control {
  margin-bottom: 14px;
}
/* Submit button text color fix */
button.submit {
  background: #ffeb00;
  color: #000000;        /* 👈 force black text */
}
input#charge[readonly] {
  background: #2a2a2a;
  color: #ffffff;
  cursor: not-allowed;
}

/* ===============================
   MASS ORDER PAGE
=============================== */

/* Textarea */
.mass-textarea {
  width: 100%;
  min-height: 220px;
  border-radius: 14px;
  border: none;
  padding: 14px;
  background: #1e1e1e;
  color: #ffffff;
  font-size: 14px;
  resize: vertical;
}

/* Focus */
.mass-textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 235, 0, 0.35);
}

/* Placeholder */
.mass-textarea::placeholder {
  color: #9ca3af;
}

/* Details link inside alerts */
.details-link {
  display: inline-block;
  margin-top: 6px;
  color: #ffeb00;
  font-weight: 500;
  text-decoration: underline;
}

/* ======================================================
   ACCOUNT PAGE ONLY — SAFE & SCOPED
====================================================== */

.account-page {
  max-width: 1100px;
  margin: auto;
  padding: 16px;
}

/* Header */
.account-page .page-header h1 {
  color: #ffffff;
  font-size: 26px;
  font-weight: 600;
}

.account-page .page-header .subtitle {
  color: #cbd5e1;
  font-size: 14px;
}

/* Tabs */
.account-page .tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.account-page .tab {
  padding: 10px 16px;
  border-radius: 14px;
  background: #1e1e1e;
  color: #ffffff;
  text-decoration: none;
}

.account-page .tab.active {
  background: #ffeb00;
  color: #000;
}

/* Grid */
.account-page .account-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 900px) {
  .account-page .account-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.account-page .card.full {
  grid-column: 1 / -1;
}

/* Cards */
.account-page .card {
  background: #111;
  border-radius: 22px;
  padding: 18px;
}

/* Fields */
.account-page .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.account-page .field label {
  color: #e5e7eb;
  font-size: 13px;
}

.account-page .field input,
.account-page .field select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  background: #1e1e1e;
  border: none;
  color: #fff;
}

/* Buttons */
.account-page .submit {
  width: 100%;
  height: 46px;
  background: #ffeb00;
  color: #000;
  border: none;
  border-radius: 16px;
  font-weight: 600;
}

.account-page .ghost {
  background: transparent;
  color: #ffeb00;
  border: 1px solid #ffeb00;
  padding: 10px 16px;
  border-radius: 14px;
}

/* Alerts */
.account-page .pp-alert {
  padding: 14px;
  border-radius: 14px;
  margin-bottom: 14px;
}

.account-page .pp-alert.success {
  background: #0f3b1c;
  color: #d8ffe6;
}

.account-page .pp-alert.error {
  background: #3b0f0f;
  color: #ffdcdc;
}



/* ======================================================
   NOTIFICATIONS PAGE ONLY
====================================================== */

.notifications-page {
  max-width: 1100px;
  margin: auto;
  padding: 16px;
}

/* Header */
.notifications-page .page-header h1 {
  color: #ffffff;
  font-size: 26px;
  font-weight: 600;
}

.notifications-page .page-header .subtitle {
  color: #cbd5e1;
  font-size: 14px;
}

/* Cards */
.notifications-page .card {
  background: #111;
  border-radius: 22px;
  padding: 18px;
  margin-bottom: 20px;
}

/* Titles */
.notifications-page .card-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.notifications-page .helper-text {
  color: #d1d5db;
  font-size: 13px;
  margin-bottom: 14px;
}

/* Table */
.notifications-page .table-wrapper {
  overflow-x: auto;
}

.notifications-page .pp-table {
  width: 100%;
  border-collapse: collapse;
}

.notifications-page .pp-table th,
.notifications-page .pp-table td {
  padding: 10px;
  border-bottom: 1px solid #2a2a2a;
  text-align: center;
  color: #ffffff;
  font-size: 13px;
}

.notifications-page .pp-table th:first-child,
.notifications-page .pp-table td:first-child {
  text-align: left;
}

/* Buttons */
.notifications-page .submit {
  margin-top: 14px;
  width: 100%;
  height: 46px;
  border-radius: 16px;
  background: #ffeb00;
  color: #000;
  border: none;
  font-weight: 600;
}

/* Alerts */
.notifications-page .pp-alert {
  padding: 14px;
  border-radius: 14px;
  margin-bottom: 14px;
}

.notifications-page .pp-alert.success {
  background: #0f3b1c;
  color: #d8ffe6;
}

.notifications-page .pp-alert.error {
  background: #3b0f0f;
  color: #ffdcdc;
}

/* ======================================================
   ACCOUNT / NOTIFICATIONS TABS (SAFE & SHARED)
   Used on: account.twig + notifications.twig
====================================================== */

/* Tabs wrapper */
.account-page .tabs,
.notifications-page .tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* Tab button */
.account-page .tab,
.notifications-page .tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 14px;
  background: #1e1e1e;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}

/* Active tab */
.account-page .tab.active,
.notifications-page .tab.active {
  background: #ffeb00;
  color: #000000;
}

/* Hover (non-active) */
.account-page .tab:not(.active):hover,
.notifications-page .tab:not(.active):hover {
  background: #2a2a2a;
}

/* ======================================================
   ORDERS – MODERN TABLE (SCREENSHOT STYLE)
====================================================== */

.orders-page .table-cont {
  background: #111;
  border-radius: 18px;
}

/* Cells */
.orders-page .table-cont td {
  padding: 14px 16px;
  vertical-align: middle;
  color: #fff;
  font-size: 14px;
  border: none;
}

/* Rounded row edges */
.orders-page .table-cont td:first-child {
  border-radius: 18px 0 0 18px;
}
.orders-page .table-cont td:last-child {
  border-radius: 0 18px 18px 0;
}

/* ======================================================
   ID + COPY + CHECKBOX
====================================================== */

.orders-page .td-id-copy-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.orders-page .btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: #1e1e1e;
  border: none;
  border-radius: 12px;
  padding: 8px 12px;

  font-size: 13px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}

.orders-page .btn-copy svg {
  width: 12px;
  height: 14px;
  opacity: 0.85;
}

/* Custom checkbox */
.orders-page .order-checkbox {
  display: none;
}

.orders-page .custom-checkbox {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: #1e1e1e;
  display: inline-block;
  cursor: pointer;
  position: relative;
}

.orders-page .order-checkbox:checked + .custom-checkbox {
  background: #ffeb00;
}

/* ======================================================
   LINK
====================================================== */

.orders-page .btn-link {
  color: #fff;
  font-size: 13px;
  word-break: break-all;
  text-decoration: none;
}

.orders-page .btn-link:hover {
  color: #ffeb00;
  text-decoration: underline;
}

/* ======================================================
   SERVICE TEXT
====================================================== */

.orders-page .service-name p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #e5e7eb;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ======================================================
   STATUS BADGES
====================================================== */

.orders-page .status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 6px 14px;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

/* Completed */
.orders-page .badge-complete {
  background: rgba(34,197,94,.15);
  color: #22c55e;
}

/* Pending */
.orders-page .badge-pending {
  background: rgba(250,204,21,.15);
  color: #facc15;
}

/* Canceled */
.orders-page .badge-canceled {
  background: rgba(239,68,68,.15);
  color: #ef4444;
}

/* ======================================================
   ACTIONS
====================================================== */

.orders-page .orders-btn-wrapper {
  display: flex;
  gap: 8px;
}

/* ======================================================
   ORDERS PAGE – BASE
====================================================== */

.orders-page {
  max-width: 1400px;
  margin: auto;
  padding: 16px;
}

/* ======================================================
   TABLE – DESKTOP
====================================================== */

.orders-page table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.orders-page thead th {
  background: #ffeb00;
  color: #000;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  white-space: nowrap;
}

.orders-page thead th:first-child {
  border-radius: 14px 0 0 14px;
}

.orders-page thead th:last-child {
  border-radius: 0 14px 14px 0;
}

.orders-page tbody tr {
  background: #111;
  border-radius: 18px;
}

.orders-page tbody td {
  padding: 14px 16px;
  font-size: 14px;
  color: #ffffff;
  border: none;
  vertical-align: middle;
}

.orders-page tbody td:first-child {
  border-radius: 18px 0 0 18px;
}

.orders-page tbody td:last-child {
  border-radius: 0 18px 18px 0;
}

/* Links */
.orders-page td a {
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
  word-break: break-all;
}

.orders-page td a:hover {
  color: #ffeb00;
  text-decoration: underline;
}

/* Service column clamp (desktop) */
.orders-page .service-name p {
  margin: 0;
  max-width: 420px;
  font-size: 13px;
  line-height: 1.45;
  color: #e5e7eb;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Status */
.orders-page .status-badge {
  font-weight: 700;
  white-space: nowrap;
  color: #22c55e;
}

/* Buttons */
.orders-page .btn {
  border-radius: 12px;
  font-size: 12px;
  padding: 6px 12px;
  font-weight: 600;
}

.orders-page .btn-primary {
  background: #ffeb00;
  border: none;
  color: #000;
}

.orders-page .btn.disabled {
  background: #2a2a2a;
  color: #9ca3af;
  opacity: 1;
}

/* ======================================================
   NAV PILLS
====================================================== */

.orders-page .nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  align-items: center;
}

.orders-page .nav-pills > li > a {
  background: #1e1e1e;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.orders-page .nav-pills > li.active > a,
.orders-page .nav-pills > li > a:hover {
  background: #ffeb00;
  color: #000;
}

/* Search */
.orders-page .nav-pills .search {
  margin-left: auto;
}

.orders-page .nav-pills .search input {
  height: 42px;
  border-radius: 14px;
  background: #1e1e1e;
  border: none;
  color: #ffffff;
}

.orders-page .nav-pills .search .btn {
  height: 42px;
  border-radius: 14px;
  background: #ffeb00;
  border: none;
  color: #000;
}

.orders-page .nav-pills .search input:focus {
  outline: none;
  box-shadow: none;
}

/* ======================================================
   MOBILE CARD MODE (FIXED)
====================================================== */

@media (max-width: 900px) {

  /* Hide header */
  .orders-page thead {
    display: none;
  }

  /* Table → blocks */
  .orders-page table,
  .orders-page tbody,
  .orders-page .table-cont,
  .orders-page .table-cont td {
    display: block;
    width: 100%;
  }

  /* Card */
  .orders-page .table-cont {
    background: #1a1a1a;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 18px;
  }

  /* Row items */
  .orders-page .table-cont td {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #222;
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 10px;

    font-size: 13px;
    color: #ffffff;
  }

  /* Labels from data-head */
  .orders-page .table-cont td::before {
    content: attr(data-head);
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    margin-right: 12px;
    white-space: nowrap;
  }

  /* Service text – full on mobile */
  .orders-page .service-name p {
    -webkit-line-clamp: unset;
    max-width: 100%;
    text-align: right;
  }

  /* Status badge */
  .orders-page .status-badge {
    background: #111;
    padding: 6px 14px;
    border-radius: 999px;
  }

  /* Actions */
  .orders-page .orders-btn-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }

  /* Nav pills mobile */
  .orders-page .nav-pills {
    gap: 8px;
  }

  .orders-page .nav-pills .search {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }

  .orders-page .nav-pills .search .input-group {
    width: 100%;
  }
}


/* ======================================================
   REFILL PAGE – BASE
====================================================== */

.refill-page {
  max-width: 1400px;
  margin: auto;
  padding: 16px;
}


.refill-page .nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  align-items: center;
}

.refill-page .nav-pills > li > a {
  background: #1e1e1e;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  text-decoration: none;
}

.refill-page .nav-pills > li.active > a,
.refill-page .nav-pills > li > a:hover {
  background: #ffeb00;
  color: #000;
}

/* Search */
.refill-page .nav-pills .search {
  margin-left: auto;
}

.refill-page .nav-pills .search input {
  height: 42px;
  border-radius: 14px;
  background: #1e1e1e;
  border: none;
  color: #fff;
}

.refill-page .nav-pills .search .btn {
  height: 42px;
  border-radius: 14px;
  background: #ffeb00;
  border: none;
  color: #000;
}

.refill-page table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.refill-page thead th {
  background: #ffeb00;
  color: #000;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  white-space: nowrap;
}

.refill-page thead th:first-child {
  border-radius: 14px 0 0 14px;
}

.refill-page thead th:last-child {
  border-radius: 0 14px 14px 0;
}

.refill-page tbody tr {
  background: #111;
  border-radius: 18px;
}

.refill-page tbody td {
  padding: 14px 16px;
  font-size: 14px;
  color: #fff;
  border: none;
  vertical-align: middle;
}

.refill-page tbody td:first-child {
  border-radius: 18px 0 0 18px;
}

.refill-page tbody td:last-child {
  border-radius: 0 18px 18px 0;
}
.refill-page td a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  word-break: break-all;
}

.refill-page td a:hover {
  color: #ffeb00;
  text-decoration: underline;
}

.refill-page tbody td:nth-child(5) {
  max-width: 420px;
  font-size: 13px;
  line-height: 1.45;
  color: #e5e7eb;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.refill-page tbody td:nth-child(6) {
  font-weight: 600;
  white-space: nowrap;
  color: #22c55e; /* default completed */
}

@media (max-width: 900px) {

  .refill-page thead {
    display: none;
  }

  .refill-page table,
  .refill-page tbody,
  .refill-page tr,
  .refill-page td {
    display: block;
    width: 100%;
  }

  .refill-page tbody tr {
    padding: 14px;
    margin-bottom: 16px;
    border-radius: 18px;
  }

  .refill-page tbody td {
    padding: 8px 0;
    font-size: 13px;
  }

  /* Expand service text on mobile */
  .refill-page tbody td:nth-child(5) {
    -webkit-line-clamp: unset;
    max-width: 100%;
  }

  .refill-page .nav-pills .search {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}

.refill-page .pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 30px;
}

.refill-page .pagination li a {
  background: #1e1e1e;
  color: #fff;
  border-radius: 12px;
  padding: 8px 14px;
  border: none;
}

.refill-page .pagination li.active a {
  background: #ffeb00;
  color: #000;
}

/* ======================================================
   CONFIRM EMAIL PAGE (DARK, RESPONSIVE, SAFE)
====================================================== */

.confirm-email {
  background: #0f0f0f;
  border-radius: 22px;
  padding: 24px;
}

/* TITLE */
.confirm-email h3 {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
}

/* DESCRIPTION */
.confirm-email__description {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* ACTIONS */
.confirm-email__action {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.confirm-email .btn-primary {
  background: #ffeb00;
  color: #000000;
  border: none;
  padding: 12px 20px;
  border-radius: 16px;
  font-weight: 600;
}

/* LINK BUTTON */
.confirm-email .btn-link {
  color: #ffeb00;
  font-weight: 500;
  text-decoration: none;
}

/* ALERTS */
.confirm-email .alert {
  border-radius: 14px;
  font-size: 14px;
  padding: 12px 14px;
}

.confirm-email .alert-success {
  background: #0f3b1c;
  color: #d8ffe6;
}

.confirm-email .alert-danger {
  background: #3b0f0f;
  color: #ffdcdc;
}

/* ================= MODAL (CHANGE EMAIL) ================= */

#changeEmailModal .modal-content {
  background: #0f0f0f;
  border-radius: 22px;
  color: #ffffff;
  border: none;
}

#changeEmailModal .modal-header {
  border-bottom: 1px solid #222;
}

#changeEmailModal .modal-title {
  color: #ffffff;
  font-weight: 600;
}

#changeEmailModal .modal-body label {
  font-size: 13px;
  color: #cbd5e1;
}

#changeEmailModal .form-control {
  background: #1a1a1a;
  border: none;
  color: #ffffff;
  border-radius: 14px;
}

#changeEmailModal .form-control:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255,235,0,.3);
}

#changeEmailModal .modal-footer {
  border-top: 1px solid #222;
}

#changeEmailModal .btn-default {
  background: transparent;
  color: #ffffff;
  border: 1px solid #333;
  border-radius: 14px;
}

#changeEmailModal .btn-primary {
  background: #ffeb00;
  color: #000000;
  border: none;
  border-radius: 14px;
  font-weight: 600;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .confirm-email {
    padding: 18px;
  }

  .confirm-email h3 {
    font-size: 20px;
  }

  .confirm-email__action {
    flex-direction: column;
  }

  .confirm-email__action .btn {
    width: 100%;
  }
}
/* ======================================================
   ADD FUNDS PAGE – SAFE SCOPE
====================================================== */

/* Main card (form & tables) */
.container > .row > .col-md-8.col-md-offset-2 > .well {
  background: #111;
  border-radius: 22px;
  border: none;
  box-shadow: none;
}

/* ======================================================
   FORM ELEMENTS
====================================================== */

.container .form-group label {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 8px;
}

.container .form-group input.form-control,
.container .form-group select.form-control {
  background: #1e1e1e;
  border: none;
  border-radius: 16px;
  height: 48px;
  color: #ffffff;
  font-size: 14px;
}

.container .form-group input::placeholder {
  color: #9ca3af;
}

.container .form-control:focus {
  box-shadow: none;
  outline: none;
}

/* ======================================================
   PAY BUTTON
====================================================== */

.container button.btn-primary {
  width: 100%;
  height: 56px;
  background: #ffeb00;
  color: #000;
  border: none;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 700;
  margin-top: 14px;
}

.container button.btn-primary:hover {
  background: #ffe100;
}

/* ======================================================
   ALERTS
====================================================== */

.container .alert {
  border-radius: 14px;
  border: none;
}

/* ======================================================
   BONUS / INSTRUCTION CARD ({{ addfunds }})
====================================================== */

.container .well.rtl-content,
.container .well:has(> :not(form)) {
  background: #ffffff;
  color: #000;
  border-radius: 22px;
  padding: 26px;
  text-align: center;
}

.container .well:has(> :not(form)) hr {
  border-color: #e5e7eb;
}

/* ======================================================
   FUNDS HISTORY – DESKTOP TABLE
====================================================== */

.container table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.container table thead th {
  background: #ffeb00;
  color: #000;
  padding: 14px;
  font-weight: 700;
  border: none;
}

.container table thead th:first-child {
  border-radius: 14px 0 0 14px;
}

.container table thead th:last-child {
  border-radius: 0 14px 14px 0;
}

.container table tbody tr {
  background: #111;
}

.container table tbody td {
  padding: 14px;
  border: none;
  color: #ffffff;
  vertical-align: middle;
}

.container table tbody td a {
  color: #ffeb00;
  text-decoration: none;
}

/* ======================================================
   PAGINATION
====================================================== */

.container .pagination li a {
  background: #1e1e1e;
  color: #ffffff;
  border-radius: 12px;
  border: none;
}

.container .pagination li.active a {
  background: #ffeb00;
  color: #000;
}

/* ======================================================
   MOBILE – GENERAL
====================================================== */

@media (max-width: 768px) {

  .container .well {
    padding: 18px;
  }

  .container button.btn-primary {
    height: 52px;
    font-size: 16px;
  }

}

/* ======================================================
   FUNDS HISTORY – MOBILE CARD LAYOUT
   (MATCHES YOUR SCREENSHOT)
====================================================== */

@media (max-width: 768px) {

  /* Hide table header */
  .container table thead {
    display: none;
  }

  /* Table → blocks */
  .container table,
  .container table tbody,
  .container table tr,
  .container table td {
    display: block;
    width: 100%;
  }

  /* Card wrapper */
  .container table tbody tr {
    background: #1a1a1a;
    border-radius: 22px;
    padding: 14px;
    margin-bottom: 18px;
  }

  /* Each row item */
  .container table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222;
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #ffffff;
  }

  /* ID */
  .container table tbody td:nth-child(1) {
    font-size: 13px;
    color: #e5e7eb;
  }

  /* Date */
  .container table tbody td:nth-child(2) {
    font-size: 13px;
    color: #e5e7eb;
  }

  /* Method */
  .container table tbody td:nth-child(3) {
    font-weight: 600;
  }

  /* Amount */
  .container table tbody td:nth-child(4) {
    font-size: 18px;
    font-weight: 700;
    color: #ffeb00;
  }

  /* Invoice */
  .container table tbody td:last-child {
    justify-content: space-between;
  }

  .container table tbody td a {
    background: #111;
    padding: 8px 14px;
    border-radius: 12px;
    font-weight: 700;
    color: #ffeb00;
    text-decoration: none;
  }
}


/* ======================================================
   ADD FUNDS – PAYMENT ICONS
====================================================== */

.payment-icons-card {
  background: #111;
  border-radius: 22px;
  padding: 20px;
  margin-bottom: 18px;
}

.payment-icons-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* Icons row */
.payment-icons-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Icon pill */
.payment-icon {
  width: 56px;
  height: 56px;
  background: #1e1e1e;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PNG inside */
.payment-icon img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 768px) {
  .payment-icon {
    width: 52px;
    height: 52px;
  }
}

/* ===============================
   REFUNDS – ALERT
=============================== */

.col-lg-offset-2.col-lg-8 > .alert {
  border-radius: 16px;
  border: none;
  background: #1e1e1e;
  color: #e5e7eb;
}


/* ===============================
   REFUNDS – TABS + SEARCH
=============================== */

.col-lg-offset-2.col-lg-8 > .nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  align-items: center;
}

.col-lg-offset-2.col-lg-8 > .nav-pills > li > a {
  background: #1e1e1e;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 14px;
  font-weight: 500;
  text-decoration: none;
}

.col-lg-offset-2.col-lg-8 > .nav-pills > li.active > a,
.col-lg-offset-2.col-lg-8 > .nav-pills > li > a:hover {
  background: #ffeb00;
  color: #000;
}

/* Search */
.col-lg-offset-2.col-lg-8 > .nav-pills .search {
  margin-left: auto;
}

.col-lg-offset-2.col-lg-8 > .nav-pills .search input {
  height: 42px;
  border-radius: 14px;
  background: #1e1e1e;
  border: none;
  color: #fff;
}

.col-lg-offset-2.col-lg-8 > .nav-pills .search .btn {
  height: 42px;
  border-radius: 14px;
  background: #ffeb00;
  border: none;
  color: #000;
}
/* ===============================
   REFUNDS – DESKTOP TABLE
=============================== */

.col-lg-offset-2.col-lg-8 .well table {
  border-collapse: separate;
  border-spacing: 0 12px;
}

.col-lg-offset-2.col-lg-8 .well table thead th {
  background: #ffeb00;
  color: #000;
  padding: 14px;
  font-weight: 700;
  border: none;
}

.col-lg-offset-2.col-lg-8 .well table thead th:first-child {
  border-radius: 14px 0 0 14px;
}

.col-lg-offset-2.col-lg-8 .well table thead th:last-child {
  border-radius: 0 14px 14px 0;
}

.col-lg-offset-2.col-lg-8 .well table tbody tr {
  background: #111;
}

.col-lg-offset-2.col-lg-8 .well table tbody td {
  padding: 14px;
  border: none;
  color: #ffffff;
}

.col-lg-offset-2.col-lg-8 .well table tbody td a {
  color: #ffeb00;
  text-decoration: none;
}

/* ===============================
   REFUNDS – MOBILE CARD VIEW
=============================== */

@media (max-width: 768px) {

  /* Hide header */
  .col-lg-offset-2.col-lg-8 table thead {
    display: none;
  }

  /* Table → block */
  .col-lg-offset-2.col-lg-8 table,
  .col-lg-offset-2.col-lg-8 table tbody,
  .col-lg-offset-2.col-lg-8 table tr,
  .col-lg-offset-2.col-lg-8 table td {
    display: block;
    width: 100%;
  }

  /* Card */
  .refund-card {
    background: #1a1a1a;
    border-radius: 22px;
    padding: 14px;
    margin-bottom: 18px;
  }

  /* Each row */
  .refund-card td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222;
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 10px;
  }

  /* Labels */
  .refund-card .label {
    font-size: 13px;
    font-weight: 600;
    color: #9ca3af;
  }

  /* Values */
  .refund-card .value {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-align: right;
  }

  /* Amount highlight */
  .refund-card .amount {
    font-size: 16px;
    color: #ffeb00;
  }

  /* Status */
  .refund-card .status {
    font-weight: 700;
  }
}


/* ======================================================
   TICKET CHAT – PREMIUM UI
====================================================== */

.ticket-chat-page {
  padding: 30px 0;
}

/* MAIN CARD */
.ticket-chat-page .well {
  background: linear-gradient(180deg, #0b0b0b, #121212);
  border-radius: 28px;
  border: none;
  padding: 26px;
}

/* HEADER */
.ticket-chat-page .titcket-title {
  background: #ffeb00;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 999px;
  text-align: center;
  margin-bottom: 24px;
}

/* ==============================
   MESSAGE AREA
================================ */

.ticket-chat-page .ticket-message-block {
  margin-bottom: 18px;
}

/* MESSAGE BUBBLE */
.ticket-chat-page .ticket-message {
  padding: 14px 18px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 78%;
  word-wrap: break-word;
}

/* USER MESSAGE */
.ticket-chat-page .ticket-message-right .ticket-message {
  background: #1e1e1e;
  color: #ffffff;
  margin-left: auto;
  border-bottom-right-radius: 6px;
}

/* SUPPORT MESSAGE */
.ticket-chat-page .ticket-message-left .ticket-message {
  background: #ffeb00;
  color: #000;
  border-bottom-left-radius: 6px;
}

/* META INFO */
.ticket-chat-page .info {
  font-size: 12px;
  margin-top: 6px;
  color: #9ca3af;
}

.ticket-chat-page .ticket-message-right .info {
  text-align: right;
}

.ticket-chat-page .ticket-message-left .info {
  text-align: left;
}

/* FILE LINKS */
.ticket-chat-page .ticket-message a {
  font-weight: 600;
  text-decoration: underline;
  color: inherit;
}

/* ==============================
   REPLY BOX
================================ */

.ticket-chat-page .panel-border-top {
  margin-top: 26px;
}

/* TEXTAREA */
.ticket-chat-page textarea#message {
  background: #1a1a1a;
  border-radius: 18px;
  border: 1px solid #2a2a2a;
  color: #ffffff;
  padding: 16px;
  resize: none;
}

.ticket-chat-page textarea#message::placeholder {
  color: #9ca3af;
}

.ticket-chat-page textarea#message:focus {
  outline: none;
  box-shadow: none;
  border-color: #ffeb00;
}

/* ATTACH FILE */
.ticket-chat-page .tickets-uploader {
  margin-top: 10px;
  font-size: 13px;
  color: #9ca3af;
}

/* SUBMIT BUTTON */
.ticket-chat-page button.btn-primary {
  width: 100%;
  height: 54px;
  background: #ffeb00;
  color: #000;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  margin-top: 14px;
}

/* ==============================
   MOBILE FIX
================================ */

@media (max-width: 768px) {

  .ticket-chat-page .ticket-message {
    max-width: 100%;
  }

  
  .ticket-chat-page .well {
    padding: 20px;
  }

  .ticket-chat-page .titcket-title {
    font-size: 16px;
  }
}

/* ======================================================
   BLOG PAGE – CARD GRID
====================================================== */

.blog-page .container {
  max-width: 1280px;
}

/* INTRO CONTENT */
.blog-intro {
  background: #111;
  padding: 24px;
  border-radius: 22px;
  color: #fff;
  margin-bottom: 28px;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

/* CARD */
.blog-card {
  background: #0f0f0f;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #1f1f1f;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}

/* IMAGE */
.blog-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.blog-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* TITLE */
.blog-title {
  color: #ffeb00;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

/* EXCERPT */
.blog-excerpt {
  font-size: 14px;
  color: #e5e7eb;
  line-height: 1.6;
}

/* READ MORE */
.blog-read {
  margin-top: auto;
  align-self: flex-start;
  background: linear-gradient(180deg, #2a2a2a, #111);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s ease;
}

.blog-read:hover {
  background: #ffeb00;
  color: #000;
}

/* PAGINATION */
.blog-page .pagination {
  justify-content: center;
  margin-top: 36px;
}

.blog-page .pagination li a {
  background: #1e1e1e;
  color: #fff;
  border-radius: 12px;
  padding: 8px 14px;
  border: none;
}

.blog-page .pagination li.active a {
  background: #ffeb00;
  color: #000;
}

/* MOBILE */
@media (max-width: 768px) {
  .blog-image img {
    height: 160px;
  }
}


/* ======================================================
   BLOG POST PAGE (SINGLE)
====================================================== */

.blog-post-page .container {
  max-width: 1180px;
}

/* CARD */
.blog-post-card {
  background: #0f0f0f;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

/* HERO IMAGE */
.blog-post-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.blog-post-content {
  padding: 32px 36px;
  color: #e5e7eb;
  line-height: 1.8;
  font-size: 16px;
}

/* TITLE */
.blog-post-title {
  color: #ffeb00;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 22px;
}

/* BODY CONTENT */
.blog-post-body p {
  margin-bottom: 18px;
}

.blog-post-body h2,
.blog-post-body h3 {
  color: #ffffff;
  margin: 28px 0 12px;
}

.blog-post-body a {
  color: #ffeb00;
  text-decoration: underline;
}

/* BACK BUTTON */
.blog-post-back {
  margin-top: 28px;
  text-align: center;
}

.blog-post-back .btn-primary {
  background: #ffeb00;
  color: #000;
  border-radius: 999px;
  padding: 10px 26px;
  font-weight: 700;
  border: none;
}

/* MOBILE */
@media (max-width: 768px) {

  .blog-post-title {
    font-size: 26px;
  }

  .blog-post-content {
    padding: 22px;
    font-size: 15px;
  }

  .blog-post-hero img {
    max-height: 260px;
  }
}


/* =========================
   TERMS – PREMIUM STYLE
========================= */

.terms-wrap {
  padding: 40px 0 60px;
}

.terms-header h1 {
  color: #ffeb00;
  font-weight: 800;
  margin-bottom: 4px;
}

.terms-header p {
  color: #9ca3af;
  margin-bottom: 24px;
}

/* Tabs */
.terms-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.terms-tabs > li > a {
  background: #ffffff;
  color: #000;
  padding: 10px 18px;
  border-radius: 14px;
  font-weight: 600;
}

.terms-tabs > li.active > a {
  background: #111;
  color: #ffeb00;
}

/* Main Card */
.terms-card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff8e6;
  border-radius: 18px;
  padding: 26px;
}

.terms-card h3 {
  margin-top: 0;
  font-weight: 700;
  margin-bottom: 12px;
}

.terms-card p {
  line-height: 1.6;
  color: #111;
}

/* Mobile */
@media (max-width: 768px) {
  .terms-wrap {
    padding: 24px 0 40px;
  }

  .terms-card {
    padding: 18px;
  }

  .terms-header h1 {
    font-size: 26px;
  }

  .terms-tabs {
    justify-content: flex-start;
  }
}
