@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;500;600;700;800&display=swap");

/* ============================================================
   FieldShot — dispatch console
   Palette: slate ink, field teal, survey yellow, cool mist
   Type: Barlow Condensed (display) / Inter (body) / IBM Plex Mono (data)
   ============================================================ */

:root {
  --ink: #131c24;
  --ink-2: #33454f;
  --ink-3: #6a7c85;
  --mist: #e9eef0;
  --mist-2: #f4f7f8;
  --panel: #ffffff;
  --line: #d3dcdf;
  --line-soft: #e7ecee;
  --teal: #0e5c55;
  --teal-deep: #093c38;
  --teal-tint: #e2efed;
  --signal: #f2b705;
  --signal-tint: #fdf3d6;
  --alert: #b23a2b;
  --alert-tint: #fae9e6;
  --ok: #1f7a4d;
  --ok-tint: #e3f2ea;

  --r-sm: 4px;
  --r: 8px;
  --r-lg: 14px;
  --shadow: 0 1px 2px rgba(19, 28, 36, .06), 0 8px 24px -12px rgba(19, 28, 36, .18);
  --shadow-lg: 0 24px 60px -24px rgba(19, 28, 36, .35);

  --display: "Barlow Condensed", "Oswald", "Arial Narrow", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--body);
  background: var(--mist);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; letter-spacing: .01em; margin: 0; line-height: 1.1; }
h1 { font-size: 40px; }
h2 { font-size: 27px; }
h3 { font-size: 21px; }
h4 { font-size: 17px; }
p { margin: 0 0 12px; }
a { color: var(--teal); }

.mono { font-family: var(--mono); font-size: .86em; letter-spacing: -.01em; }
.eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-3);
}
.muted { color: var(--ink-3); }
.small { font-size: 13px; }
.tiny { font-size: 12px; }
.center { text-align: center; }
.right { text-align: right; }
.nowrap { white-space: nowrap; }
.hidden { display: none !important; }
.stack > * + * { margin-top: 12px; }
.row { display: flex; gap: 12px; align-items: center; }
.row.wrap { flex-wrap: wrap; }
.spread { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.grow { flex: 1; }

/* ---------- buttons ---------- */

.btn {
  font-family: var(--body); font-size: 14px; font-weight: 600;
  border: 1px solid var(--teal); background: var(--teal); color: #fff;
  padding: 10px 18px; border-radius: var(--r); cursor: pointer;
  transition: transform .08s ease, background .15s ease, box-shadow .15s ease;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none; line-height: 1.2;
}
.btn:hover { background: var(--teal-deep); border-color: var(--teal-deep); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.btn.ghost { background: transparent; color: var(--teal); }
.btn.ghost:hover { background: var(--teal-tint); }
.btn.quiet { background: var(--panel); color: var(--ink-2); border-color: var(--line); }
.btn.quiet:hover { background: var(--mist-2); border-color: var(--ink-3); }
.btn.danger { background: var(--alert); border-color: var(--alert); }
.btn.danger:hover { background: #94301f; border-color: #94301f; }
.btn.signal { background: var(--signal); border-color: var(--signal); color: var(--ink); }
.btn.signal:hover { background: #dda503; border-color: #dda503; }
.btn.sm { padding: 6px 12px; font-size: 13px; }
.btn.block { width: 100%; justify-content: center; }
.btn.lg { padding: 13px 26px; font-size: 15px; }

:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--signal); outline-offset: 2px;
}

/* ---------- forms ---------- */

label.field { display: block; margin-bottom: 14px; }
label.field > span {
  display: block; font-size: 12px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 5px;
}
input[type=text], input[type=email], input[type=password], input[type=tel],
input[type=number], select, textarea {
  width: 100%; font-family: var(--body); font-size: 14px; color: var(--ink);
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r);
  padding: 10px 12px; transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-tint); outline: none;
}
textarea { min-height: 82px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #9dabb2; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.grid3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 0 14px; }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 14px; }

.check { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; font-size: 14px; margin-bottom: 10px; }
.check input { margin-top: 3px; accent-color: var(--teal); width: 16px; height: 16px; }

.radio-card {
  display: flex; gap: 11px; align-items: flex-start; cursor: pointer;
  border: 1px solid var(--line); border-radius: var(--r); padding: 12px 14px; background: var(--panel);
  transition: border-color .15s ease, background .15s ease;
}
.radio-card:hover { border-color: var(--teal); }
.radio-card input { margin-top: 3px; accent-color: var(--teal); }
.radio-card.on { border-color: var(--teal); background: var(--teal-tint); }
.radio-card b { display: block; font-size: 14px; }
.radio-card small { color: var(--ink-3); }

.toggle-btn {
  border: 1px solid var(--line); background: var(--panel); border-radius: 999px;
  padding: 8px 16px; font-size: 13px; font-weight: 600; cursor: pointer; color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 8px;
}
.toggle-btn .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.toggle-btn.on { border-color: var(--teal); background: var(--teal-tint); color: var(--teal-deep); }
.toggle-btn.on .dot { background: var(--teal); }

/* ---------- surfaces ---------- */

.panel {
  background: var(--panel); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 22px;
}
.panel + .panel { margin-top: 18px; }
.panel-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.divider { height: 1px; background: var(--line-soft); margin: 18px 0; }
.dashed { border-top: 1px dashed var(--line); margin: 16px 0; }

.badge {
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 9px; border-radius: var(--r-sm); border: 1px solid var(--line);
  background: var(--mist-2); color: var(--ink-2); display: inline-block; white-space: nowrap;
}
.badge.teal { background: var(--teal-tint); border-color: #bcd9d5; color: var(--teal-deep); }
.badge.signal { background: var(--signal-tint); border-color: #ecd28a; color: #7a5c00; }
.badge.ok { background: var(--ok-tint); border-color: #b8ddc8; color: var(--ok); }
.badge.alert { background: var(--alert-tint); border-color: #ecc3bc; color: var(--alert); }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.stat {
  background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--r);
  padding: 14px 16px; border-left: 3px solid var(--teal);
}
.stat .n { font-family: var(--display); font-size: 30px; font-weight: 600; line-height: 1; }
.stat .l { font-size: 12px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .06em; margin-top: 6px; }
.stat.warn { border-left-color: var(--signal); }
.stat.alert { border-left-color: var(--alert); }

/* ---------- signature: the field ticket ---------- */

.ticket {
  display: grid; grid-template-columns: 92px 1fr; background: var(--panel);
  border: 1px solid var(--line-soft); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 14px;
}
.ticket-rail {
  background: var(--teal-deep); color: #cfe4e1; padding: 14px 10px;
  display: flex; flex-direction: column; justify-content: space-between; align-items: center;
  border-right: 2px dashed rgba(255, 255, 255, .28); text-align: center;
}
.ticket-rail .ref { font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: #fff; word-break: break-all; }
.ticket-rail .pics { font-family: var(--display); font-size: 30px; color: var(--signal); line-height: 1; margin-top: 8px; }
.ticket-rail .pics span { display: block; font-family: var(--mono); font-size: 9px; letter-spacing: .12em; color: #9dbcb7; }
.ticket-body { padding: 16px 18px; }
.ticket.pending .ticket-rail { background: #6b5400; }
.ticket.done .ticket-rail { background: #14503a; }
.ticket.alert .ticket-rail { background: #7c281b; }
.ticket-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 13px; color: var(--ink-2); margin-top: 8px; }
.ticket-meta b { font-weight: 600; color: var(--ink); }
.ticket-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }

/* ---------- tables ---------- */

table.data { width: 100%; border-collapse: collapse; font-size: 14px; }
table.data th {
  text-align: left; font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-3); font-weight: 500;
  padding: 8px 10px; border-bottom: 1px solid var(--line);
}
table.data td { padding: 11px 10px; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
table.data tr:last-child td { border-bottom: none; }
.table-wrap { overflow-x: auto; }

/* ---------- app shell ---------- */

.topbar {
  background: var(--ink); color: #fff; padding: 0 24px;
  display: flex; align-items: center; gap: 20px; height: 60px;
  position: sticky; top: 0; z-index: 40;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.brand .mark {
  width: 26px; height: 26px; border-radius: 5px; background: var(--signal);
  display: grid; place-items: center; color: var(--ink); font-family: var(--display);
  font-weight: 700; font-size: 17px;
}
.brand .name { font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: .02em; }
.brand .role {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--signal); border: 1px solid rgba(242, 183, 5, .4); padding: 2px 7px; border-radius: 3px;
}
.topbar .spacer { flex: 1; }
.topbar-user { font-size: 13px; color: #b9c6cd; display: flex; align-items: center; gap: 12px; }
.topbar-user b { color: #fff; font-weight: 600; }
.icon-btn {
  background: rgba(255, 255, 255, .08); border: none; color: #fff; width: 34px; height: 34px;
  border-radius: 8px; cursor: pointer; position: relative; font-size: 15px;
}
.icon-btn:hover { background: rgba(255, 255, 255, .18); }
.icon-btn .pip {
  position: absolute; top: 5px; right: 5px; width: 8px; height: 8px;
  border-radius: 50%; background: var(--signal);
}

.tabbar {
  background: var(--panel); border-bottom: 1px solid var(--line);
  padding: 0 24px; display: flex; gap: 4px; overflow-x: auto; position: static;
}
/* Agent/client/admin tabs scroll normally with the page; they do not overlay content. */
.tabbar { position: static; }
.tabbar button {
  background: none; border: none; border-bottom: 2px solid transparent; cursor: pointer;
  padding: 14px 14px 11px; font-size: 14px; font-weight: 600; color: var(--ink-3);
  white-space: nowrap; font-family: var(--body);
}
.tabbar button:hover { color: var(--ink); }
.tabbar button.on { color: var(--teal-deep); border-bottom-color: var(--teal); }
.tabbar button .count {
  font-family: var(--mono); font-size: 10px; background: var(--signal); color: var(--ink);
  padding: 1px 6px; border-radius: 999px; margin-left: 6px;
}

.page { max-width: 1140px; margin: 0 auto; padding: 26px 24px 80px; }
.page-head { margin-bottom: 20px; }
.page-head h2 { margin-bottom: 4px; }

/* ---------- empty / notice ---------- */

.empty {
  border: 1px dashed var(--line); border-radius: var(--r-lg); padding: 44px 24px;
  text-align: center; color: var(--ink-3); background: var(--mist-2);
}
.empty h4 { color: var(--ink-2); margin-bottom: 6px; }
.notice { border-radius: var(--r); padding: 13px 16px; font-size: 14px; border: 1px solid var(--line); background: var(--mist-2); }
.notice.info { background: var(--teal-tint); border-color: #bcd9d5; color: var(--teal-deep); }
.notice.warn { background: var(--signal-tint); border-color: #ecd28a; color: #6d5300; }
.notice.bad { background: var(--alert-tint); border-color: #ecc3bc; color: var(--alert); }
.notice.good { background: var(--ok-tint); border-color: #b8ddc8; color: var(--ok); }

/* ---------- modal ---------- */

.modal-back {
  position: fixed; inset: 0; background: rgba(19, 28, 36, .55); backdrop-filter: blur(2px);
  display: grid; place-items: center; padding: 20px; z-index: 100;
}
.modal {
  background: var(--panel); border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  width: min(720px, 100%); max-height: 88vh; overflow: auto;
}
.modal.wide { width: min(1000px, 100%); }
.modal-head { padding: 20px 24px 14px; border-bottom: 1px solid var(--line-soft); display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
.modal-body { padding: 22px 24px; }
.modal-foot { padding: 14px 24px 20px; display: flex; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }
.x-btn { background: none; border: none; font-size: 22px; line-height: 1; cursor: pointer; color: var(--ink-3); padding: 0 4px; }

/* ---------- toast ---------- */

#toasts { position: fixed; bottom: 20px; right: 20px; display: flex; flex-direction: column; gap: 8px; z-index: 200; }
.toast {
  background: var(--ink); color: #fff; padding: 12px 16px; border-radius: var(--r);
  font-size: 14px; box-shadow: var(--shadow-lg); max-width: 380px;
  border-left: 3px solid var(--signal); animation: slide .2s ease;
}
.toast.good { border-left-color: #4ade80; }
.toast.bad { border-left-color: #f87171; }
@keyframes slide { from { opacity: 0; transform: translateX(16px); } }

/* ---------- photo grids ---------- */

.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.photo-slot {
  border: 1px dashed var(--line); border-radius: var(--r); background: var(--mist-2);
  aspect-ratio: 4 / 3; display: grid; place-items: center; position: relative; overflow: hidden;
  cursor: pointer; text-align: center; padding: 10px;
}
.photo-slot:hover { border-color: var(--teal); background: var(--teal-tint); }
.photo-slot img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.photo-slot .n {
  position: absolute; top: 6px; left: 6px; background: var(--ink); color: #fff;
  font-family: var(--mono); font-size: 10px; padding: 2px 6px; border-radius: 3px; z-index: 2;
}
.photo-slot .hint { font-size: 12px; color: var(--ink-3); line-height: 1.35; }
.photo-slot.filled { border-style: solid; border-color: var(--teal); }
.shot-list { list-style: none; padding: 0; margin: 0; counter-reset: shot; }
.shot-list li {
  counter-increment: shot; font-size: 13px; color: var(--ink-2);
  padding: 6px 0 6px 30px; position: relative; border-bottom: 1px solid var(--line-soft);
}
.shot-list li:last-child { border-bottom: none; }
.shot-list li::before {
  content: counter(shot); position: absolute; left: 0; top: 6px; font-family: var(--mono);
  font-size: 11px; width: 20px; height: 20px; border-radius: 4px; background: var(--mist);
  color: var(--ink-2); display: grid; place-items: center;
}

/* ---------- product cards ---------- */

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); gap: 14px; }
.product {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 18px; background: var(--panel);
  cursor: pointer; transition: border-color .15s ease, box-shadow .15s ease, transform .1s ease;
  display: flex; flex-direction: column;
}
.product:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: var(--shadow); }
.product.on { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-tint); }
.product .price { font-family: var(--display); font-size: 32px; font-weight: 600; line-height: 1; }
.product .price small { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: .08em; }
.product .desc { font-size: 13px; color: var(--ink-2); margin: 10px 0 12px; flex: 1; }

/* ---------- steps ---------- */

.steps { display: flex; gap: 6px; margin-bottom: 22px; flex-wrap: wrap; }
.steps .s {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3); padding: 7px 12px; border-radius: 999px; background: var(--panel);
  border: 1px solid var(--line-soft);
}
.steps .s.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.steps .s.done { background: var(--teal-tint); color: var(--teal-deep); border-color: #bcd9d5; }

/* ---------- landing ---------- */

.landing-hero {
  background: var(--ink);
  color: #fff;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1140px;
  min-height: 600px;
  margin: 0 auto;
  padding: 55px 24px 65px;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: clamp(44px, 6vw, 72px);
  color: #fff;
  letter-spacing: -0.01em;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--signal);
}

.hero-copy p.lede {
  font-size: 17px;
  color: #b9c6cd;
  max-width: 46ch;
  margin: 18px 0 26px;
}

.hero-copy .eyebrow {
  color: var(--signal);
}
/* ---------- camera-focus hero visual ---------- */
.photo-focus {
  position: relative;
  width: min(100%, 500px);
  height: 430px;
  margin: 0 auto;
  align-self: center;
  isolation: isolate;
}

.photo-focus::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,183,5,.13) 0, rgba(242,183,5,.045) 38%, transparent 70%);
  pointer-events: none;
}

.photo-orbit {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.photo-orbit::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 18px rgba(242,183,5,.65);
  top: 15px;
  left: 50%;
}
.photo-orbit.orbit-two {
  width: 430px;
  height: 430px;
  border-style: dashed;
  border-color: rgba(255,255,255,.045);
  animation: focusOrbit 18s linear infinite;
}
.photo-orbit.orbit-one {
  animation: focusOrbitReverse 14s linear infinite;
}

.photo-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  background: #17212a;
  box-shadow: 0 28px 60px rgba(0,0,0,.28);
}
.photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.photo-card-back {
  width: 210px;
  height: 270px;
  top: 86px;
  opacity: .82;
  filter: saturate(.85);
}
.photo-card-back::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(10,16,21,.75) 100%);
}
.photo-card-label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
}
.card-interior {
  left: 8px;
  transform: rotate(-9deg);
  animation: floatInterior 6s ease-in-out infinite;
}
.card-backyard {
  right: 0;
  transform: rotate(8deg);
  animation: floatBackyard 6.5s ease-in-out infinite;
}

.photo-card-main {
  z-index: 4;
  width: 360px;
  height: 300px;
  left: 50%;
  top: 55px;
  transform: translateX(-50%) rotate(-1.5deg);
  border-color: rgba(242,183,5,.72);
  box-shadow: 0 30px 70px rgba(0,0,0,.38), 0 0 35px rgba(242,183,5,.08);
  animation: mainPhotoFloat 5.5s ease-in-out infinite;
}
.photo-card-main img {
  object-position: center;
  animation: photoFocus 5.5s ease-in-out infinite;
}
.photo-card-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,16,21,.04), transparent 48%, rgba(10,16,21,.8));
  pointer-events: none;
}

.focus-corner {
  position: absolute;
  z-index: 8;
  width: 34px;
  height: 34px;
  border-color: var(--signal);
  border-style: solid;
  filter: drop-shadow(0 0 7px rgba(242,183,5,.35));
  animation: cornerPulse 2.8s ease-in-out infinite;
}
.focus-tl { left: -1px; top: -1px; border-width: 3px 0 0 3px; border-radius: 12px 0 0 0; }
.focus-tr { right: -1px; top: -1px; border-width: 3px 3px 0 0; border-radius: 0 12px 0 0; }
.focus-bl { left: -1px; bottom: -1px; border-width: 0 0 3px 3px; border-radius: 0 0 0 12px; }
.focus-br { right: -1px; bottom: -1px; border-width: 0 3px 3px 0; border-radius: 0 0 12px 0; }

.focus-target {
  position: absolute;
  z-index: 7;
  width: 76px;
  height: 76px;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(242,183,5,.8);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(242,183,5,.08), 0 0 22px rgba(242,183,5,.18);
  animation: targetPulse 3.8s ease-in-out infinite;
}
.focus-target::before,
.focus-target::after {
  content: "";
  position: absolute;
  background: var(--signal);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.focus-target::before { width: 92px; height: 1px; opacity: .5; }
.focus-target::after { width: 1px; height: 92px; opacity: .5; }
.focus-target span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px rgba(242,183,5,.8);
}

.photo-card-bottom {
  position: absolute;
  z-index: 9;
  left: 18px;
  right: 18px;
  bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
}
.photo-card-bottom b {
  color: var(--signal);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
}

.capture-status {
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: #b9c6cd;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  white-space: nowrap;
}
.capture-dots { display: flex; gap: 7px; }
.capture-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #46545c;
}
.capture-dots span.active {
  background: var(--signal);
  box-shadow: 0 0 10px rgba(242,183,5,.5);
  animation: recordPulse 1.8s ease-in-out infinite;
}

@keyframes mainPhotoFloat {
  0%, 100% { transform: translateX(-50%) rotate(-1.5deg) translateY(0); }
  50% { transform: translateX(-50%) rotate(.4deg) translateY(-9px); }
}
@keyframes floatInterior {
  0%, 100% { transform: rotate(-9deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-7px); }
}
@keyframes floatBackyard {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(5deg) translateY(-8px); }
}
@keyframes photoFocus {
  0%, 30% { transform: scale(1.035); filter: blur(1.5px) saturate(.92); }
  45%, 100% { transform: scale(1); filter: blur(0) saturate(1); }
}
@keyframes targetPulse {
  0%, 100% { opacity: .6; transform: translate(-50%, -50%) scale(.9); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}
@keyframes cornerPulse {
  0%, 100% { opacity: .65; }
  50% { opacity: 1; }
}
@keyframes recordPulse {
  0%, 100% { opacity: .45; transform: scale(.9); }
  50% { opacity: 1; transform: scale(1.12); }
}
@keyframes focusOrbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes focusOrbitReverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

.strip { background: var(--teal-deep); color: #cfe4e1; }
.strip-inner {
  max-width: 1140px; margin: 0 auto; padding: 16px 24px; display: flex; gap: 30px;
  flex-wrap: wrap; font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
}
.strip-inner b { color: var(--signal); }

.section { max-width: 1140px; margin: 0 auto; padding: 60px 24px; }
.flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; }
.flow .step { border-top: 2px solid var(--ink); padding-top: 14px; }
.flow .step .k { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; color: var(--teal); }
.flow .step h4 { margin: 6px 0 6px; }
.flow .step p { font-size: 14px; color: var(--ink-2); margin: 0; }

.auth-wrap { max-width: 470px; margin: 0 auto; }
.role-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; background: var(--mist); padding: 5px; border-radius: var(--r); margin-bottom: 20px; }
.role-tabs button {
  border: none; background: none; padding: 9px 8px; border-radius: var(--r-sm); cursor: pointer;
  font-size: 13px; font-weight: 600; color: var(--ink-3); font-family: var(--body);
}
.role-tabs button.on { background: var(--panel); color: var(--ink); box-shadow: var(--shadow); }

/* Registration uses only Client + Field agent; login keeps all 3 roles. */
.role-tabs.register-mode {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

footer.site { background: var(--ink); color: #7d8f98; padding: 30px 24px; font-size: 13px; }
footer.site .inner { max-width: 1140px; margin: 0 auto; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }


.strip { background: var(--teal-deep); color: #cfe4e1; }
.strip-inner {
  max-width: 1140px; margin: 0 auto; padding: 16px 24px; display: flex; gap: 30px;
  flex-wrap: wrap; font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
}
.strip-inner b { color: var(--signal); }

.section { max-width: 1140px; margin: 0 auto; padding: 60px 24px; }
.flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; }
.flow .step { border-top: 2px solid var(--ink); padding-top: 14px; }
.flow .step .k { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; color: var(--teal); }
.flow .step h4 { margin: 6px 0 6px; }
.flow .step p { font-size: 14px; color: var(--ink-2); margin: 0; }

.auth-wrap { max-width: 470px; margin: 0 auto; }
.role-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  background: var(--mist);
  padding: 4px;
  border-radius: var(--r);
  margin-bottom: 16px;
}
.role-tabs button {
  border: none;
  background: none;
  padding: 10px 8px;
  border-radius: var(--r-sm);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  font-family: var(--body);
  text-align: center;
  white-space: nowrap;
}
.role-tabs button.on { background: var(--panel); color: var(--ink); box-shadow: var(--shadow); }

footer.site { background: var(--ink); color: #7d8f98; padding: 30px 24px; font-size: 13px; }
footer.site .inner { max-width: 1140px; margin: 0 auto; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 34px; padding: 48px 20px 56px; }
  .photo-focus { margin: 0 auto; }
  .grid2, .grid3, .grid4 { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .photo-focus { margin: 0 auto; }
}
@media (max-width: 620px) {
  .photo-focus { height: 350px; }
  .photo-card-main { width: 290px; height: 245px; top: 48px; }
  .photo-card-back { width: 165px; height: 215px; top: 68px; }
  .photo-orbit { width: 280px; height: 280px; }
  .photo-orbit.orbit-two { width: 340px; height: 340px; }
  .focus-target { width: 62px; height: 62px; }
  .focus-target::before { width: 74px; }
  .focus-target::after { height: 74px; }
  .photo-card-bottom { left: 13px; right: 13px; bottom: 12px; }
  .photo-card-bottom b { font-size: 8px; }
  .capture-status { bottom: 0; }
}

@media (max-width: 620px) {
  body { font-size: 14px; }
  .page { padding: 18px 14px 70px; }
  .panel { padding: 16px; }
  .topbar { padding: 0 14px; gap: 12px; }
  .topbar-user .who { display: none; }
  .tabbar { padding: 0 8px; }
  .ticket { grid-template-columns: 68px 1fr; }
  .ticket-body { padding: 13px; }
  h1 { font-size: 32px; }
  h2 { font-size: 23px; }
  .modal-foot { flex-direction: column-reverse; }
  .modal-foot .btn { width: 100%; justify-content: center; }
}

@media print {
  .topbar, .tabbar, .ticket-actions, .btn { display: none !important; }
}


/* FieldShot integrated photo requirements guide */
.photo-guidelines-container {
  margin: 28px 0;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}
.guidelines-kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .14em;
  font-weight: 800;
  opacity: .65;
  margin-bottom: 7px;
}
.guidelines-header h2 {
  margin: 0 0 6px;
  font-size: 24px;
}
.guidelines-header p {
  margin: 0 0 20px;
  opacity: .72;
}
.photo-guidelines-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.photo-guide-card {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(0,0,0,.14);
}
.photo-guide-number {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  min-width: 34px;
  padding: 7px 8px;
  border-radius: 999px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  background: rgba(0,0,0,.72);
  border: 1px solid rgba(255,255,255,.14);
}
.photo-guide-placeholder {
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  border: 1px dashed rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  text-align: center;
}
.photo-guide-placeholder span {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .08em;
}
.photo-guide-placeholder small {
  margin-top: 6px;
  opacity: .55;
}
.photo-guide-card h3 {
  margin: 13px 0 5px;
}
.photo-guide-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  opacity: .68;
}
@media (max-width: 900px) {
  .photo-guidelines-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .photo-guidelines-container { padding: 17px; }
  .photo-guidelines-grid { grid-template-columns: 1fr; }
}


/* Wallet withdrawal flow explanation */
.wallet-flow {
  border: 1px solid rgba(255,255,255,.10);
}
.withdraw-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.withdraw-steps > div {
  padding: 13px;
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
}
.withdraw-steps b {
  display: block;
  margin-bottom: 6px;
}
.withdraw-steps span {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  opacity: .65;
}
.wallet-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,.035);
  font-size: 12px;
  line-height: 1.5;
  opacity: .78;
}
@media (max-width: 850px) {
  .withdraw-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .withdraw-steps { grid-template-columns: 1fr; }
}
/* =========================================================
   FIELDSHOT — PREMIUM WALLET UI
   ========================================================= */

.wallet-flow {
  border: 1px solid #e4e9e9;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbfb 100%);
  box-shadow: 0 8px 30px rgba(24, 45, 49, 0.06);
  overflow: hidden;
}

.wallet-flow h4 {
  font-size: 17px;
  margin-bottom: 16px;
}

.withdraw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.withdraw-steps > div {
  position: relative;
  padding: 18px;
  min-height: 105px;
  border: 1px solid #e5ebeb;
  border-radius: 14px;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.withdraw-steps > div:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(24, 45, 49, 0.08);
}

.withdraw-steps > div::before {
  content: "";
  display: block;
  width: 28px;
  height: 4px;
  border-radius: 10px;
  background: #16a394;
  margin-bottom: 14px;
}

.withdraw-steps b {
  display: block;
  font-size: 14px;
  margin-bottom: 7px;
  color: #18282c;
}

.withdraw-steps span {
  display: block;
  font-size: 12px;
  line-height: 1.55;
  color: #748184;
}

.wallet-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #dcefed;
  background: #f1faf8;
  color: #31565a;
  font-size: 12px;
  line-height: 1.55;
}


/* =========================================================
   WALLET STAT CARDS
   ========================================================= */

.stat-grid {
  gap: 16px;
}

.stat-grid .stat {
  position: relative;
  border: 1px solid #e3e9e9;
  border-radius: 16px;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 6px 22px rgba(24, 45, 49, 0.045);
  overflow: hidden;
}

.stat-grid .stat::after {
  content: "";
  position: absolute;
  right: -22px;
  top: -22px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f0f8f7;
}

.stat-grid .stat .n {
  position: relative;
  z-index: 1;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.stat-grid .stat .l {
  position: relative;
  z-index: 1;
  margin-top: 5px;
  color: #7a878a;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
}


/* =========================================================
   WALLET PANELS
   ========================================================= */

#view .panel {
  border-radius: 16px;
  border-color: #e4e9e9;
}

#view .panel h4 {
  color: #17272b;
}


/* =========================================================
   WITHDRAWAL FORM
   ========================================================= */

#wAmount,
#wMethod,
#wDest {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #dce4e4;
  border-radius: 10px;
  background: #fbfcfc;
  transition: border-color .2s ease, box-shadow .2s ease;
}

#wAmount:focus,
#wMethod:focus,
#wDest:focus {
  outline: none;
  border-color: #16a394;
  box-shadow: 0 0 0 3px rgba(22, 163, 148, 0.10);
  background: #ffffff;
}

#wGo {
  min-height: 46px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: .1px;
  transition: transform .2s ease, box-shadow .2s ease;
}

#wGo:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(22, 163, 148, 0.18);
}

#wGo:disabled {
  opacity: .55;
  cursor: not-allowed;
}


/* =========================================================
   WITHDRAWAL HISTORY
   ========================================================= */

#view .data {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

#view .data th {
  padding: 10px 12px;
  color: #7b8789;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .7px;
  background: #f8fafa;
  border-bottom: 1px solid #e7eded;
}

#view .data td {
  padding: 13px 12px;
  border-bottom: 1px solid #edf1f1;
  vertical-align: middle;
}

#view .data tbody tr:last-child td {
  border-bottom: 0;
}

#view .data tbody tr:hover {
  background: #fafcfc;
}


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

#view .badge {
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .4px;
}


/* =========================================================
   EMPTY HISTORY
   ========================================================= */

#view .empty {
  border: 1px dashed #d8e1e1;
  border-radius: 12px;
  padding: 28px 18px;
  text-align: center;
  background: #fafcfc;
}


/* =========================================================
   WALLET MOBILE
   ========================================================= */

@media (max-width: 900px) {

  .withdraw-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 600px) {

  .withdraw-steps {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  #view .grid2 {
    grid-template-columns: 1fr;
  }

}
/* =========================================================
   FIELDSHOT WALLET — FINAL ALIGNMENT FIX
   ========================================================= */

/* Main wallet layout */

.wallet-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}

/* Request card */

.wallet-request-card {
  min-width: 0;
  padding: 22px;
}

/* History card */

.wallet-history-card {
  min-width: 0;
  padding: 22px;
}

/* Balance badge */

.wallet-balance {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  background: #eef8f6;
  border: 1px solid #d8ece9;
  color: #126f68;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

/* Form spacing */

.wallet-request-card .field {
  margin-bottom: 15px;
}

.wallet-request-card .field > span {
  display: block;
  margin-bottom: 7px;
}

/* Private payment notice */

.wallet-private-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 17px 0;
  padding: 13px 14px;
  border: 1px solid #e1e9e9;
  border-radius: 12px;
  background: #f8fafa;
}

.wallet-private-note > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 8px;
  background: #edf7f5;
  font-size: 14px;
}

.wallet-private-note b {
  display: block;
  margin: 0;
  font-size: 12px;
  color: #26383b;
}

.wallet-private-note p {
  margin: 3px 0 0;
  font-size: 11px;
  line-height: 1.45;
  color: #7b898b;
}

/* Withdrawal button */

.wallet-withdraw-btn {
  width: 100%;
  min-height: 48px;
  border-radius: 11px;
}

/* Disabled message */

.wallet-disabled-message {
  margin: 9px 0 0;
  text-align: center;
}

/* =========================================================
   HISTORY
   ========================================================= */

.wallet-history {
  display: flex;
  flex-direction: column;
}

.wallet-history-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 12px 0;
  border-bottom: 1px solid #edf1f1;
}

.wallet-history-row:last-child {
  border-bottom: 0;
}

.wallet-history-row > div:first-child {
  min-width: 0;
}

.wallet-history-row > div:first-child b {
  display: block;
  font-size: 16px;
  line-height: 1.25;
  white-space: nowrap;
}

.wallet-history-row > div:first-child span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: #7b898b;
}

.wallet-history-row .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  flex-shrink: 0;
}

.wallet-history-row .right small {
  font-size: 10px;
  color: #899496;
  white-space: nowrap;
}

/* =========================================================
   HISTORY HEADER
   ========================================================= */

.wallet-history-card .spread {
  align-items: center;
}

.wallet-history-card .spread h4 {
  margin: 0;
}

.wallet-history-card .spread p {
  margin: 4px 0 0;
}

/* =========================================================
   ZERO HISTORY
   ========================================================= */

.wallet-empty {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.wallet-empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: #eef7f5;
  color: #137f76;
  font-size: 20px;
  font-weight: 700;
}

.wallet-empty b {
  font-size: 13px;
}

.wallet-empty span {
  margin-top: 5px;
  color: #8a9698;
  font-size: 11px;
}

/* =========================================================
   TOP WALLET STATS
   ========================================================= */

.wallet-stats {
  margin-bottom: 18px;
}

.wallet-stats .stat {
  min-width: 0;
}

/* =========================================================
   BETTER DESKTOP WIDTH
   ========================================================= */

@media (min-width: 1100px) {

  .wallet-main-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  }

}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 850px) {

  .wallet-main-grid {
    grid-template-columns: 1fr;
  }

  .wallet-history-card {
    width: auto;
  }

  .withdraw-steps {
    grid-template-columns: repeat(2, 1fr);
  }

}

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

@media (max-width: 600px) {

  .wallet-flow {
    padding: 17px;
  }

  .wallet-request-card,
  .wallet-history-card {
    padding: 17px;
  }

  .withdraw-steps {
    grid-template-columns: 1fr;
  }

  .wallet-history-row {
    gap: 10px;
  }

}
/* =========================================================
   FIELDSHOT PREMIUM WALLET
   Topbar is NOT affected
   ========================================================= */

.wallet-page {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 28px 0 40px;
}

.wallet-page-head {
  margin-bottom: 18px;
}

.wallet-page-head h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.wallet-page-head p {
  margin: 7px 0 0;
  color: #718287;
  font-size: 13px;
}

/* PROCESS */

.wallet-process {
  background: #fff;
  border: 1px solid #e3ebeb;
  border-radius: 18px;
  padding: 26px 28px 18px;
  box-shadow: 0 8px 30px rgba(24, 55, 58, .05);
}

.wallet-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.wallet-step {
  display: flex;
  gap: 14px;
  min-width: 0;
}

.wallet-step-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: 1px solid #8ccbc7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #08756f;
  background: #f2fbfa;
  font-size: 18px;
  font-weight: 700;
}

.wallet-step b {
  display: block;
  color: #17252d;
  font-size: 14px;
  margin: 1px 0 7px;
}

.wallet-step span {
  display: block;
  color: #748388;
  font-size: 11px;
  line-height: 1.55;
  max-width: 190px;
}

.wallet-important {
  margin-top: 24px;
  padding: 12px 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-radius: 10px;
  background: #f2faf9;
  border: 1px solid #d8ecea;
  color: #42676a;
  font-size: 11px;
  line-height: 1.55;
}

.wallet-important b {
  color: #175b59;
}

.wallet-info-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid #15827b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #15827b;
  font-weight: 700;
}

/* STATS */

.wallet-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border: 1px solid #e3ebeb;
  border-radius: 15px;
  margin-top: 18px;
  overflow: hidden;
  box-shadow: 0 7px 24px rgba(24, 55, 58, .04);
}

.wallet-stat {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  border-right: 1px solid #e8eeee;
}

.wallet-stat:last-child {
  border-right: 0;
}

.wallet-stat-icon {
  width: 43px;
  height: 43px;
  border-radius: 12px;
  background: #eaf6f3;
  color: #08766f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.wallet-stat-icon.blue {
  background: #edf5ff;
  color: #3579bd;
}

.wallet-stat-icon.orange {
  background: #fff7e8;
  color: #dc8b16;
}

.wallet-stat span {
  display: block;
  color: #758489;
  font-size: 11px;
  margin-bottom: 3px;
}

.wallet-stat strong {
  display: block;
  color: #08756f;
  font-size: 22px;
  line-height: 1.2;
}

/* MAIN CONTENT */

.wallet-content {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: 18px;
  margin-top: 18px;
  align-items: start;
}

.wallet-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wallet-card {
  background: #fff;
  border: 1px solid #e3ebeb;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(24, 55, 58, .045);
  overflow: hidden;
}

.request-card {
  padding: 22px 24px;
}

.history-card,
.payout-card {
  padding: 20px;
}

.wallet-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wallet-card-head h3 {
  margin: 0;
  color: #086f69;
  font-size: 16px;
  font-weight: 700;
}

.available-label {
  margin-left: auto;
  color: #66777c;
  font-size: 11px;
}

.available-label b {
  color: #08756f;
}

.wallet-divider {
  height: 1px;
  border-top: 1px dashed #dbe4e4;
  margin: 14px 0 18px;
}

/* FORM */

.wallet-field {
  display: block;
  margin-bottom: 16px;
}

.wallet-field > span {
  display: block;
  color: #28383e;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 7px;
}

.wallet-field input,
.wallet-field select {
  width: 100%;
  height: 49px;
  box-sizing: border-box;
  border: 1px solid #d6e0e1;
  border-radius: 10px;
  background: #fff;
  color: #26353a;
  font-size: 13px;
  padding: 0 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.wallet-field input:focus,
.wallet-field select:focus {
  border-color: #15958d;
  box-shadow: 0 0 0 3px rgba(21,149,141,.08);
}

.amount-input {
  display: flex;
  height: 49px;
  border: 1px solid #d6e0e1;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.amount-input > span {
  width: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f8f8;
  border-right: 1px solid #e0e7e7;
  color: #617176;
  font-size: 14px;
}

.amount-input input {
  height: 100%;
  border: 0;
  border-radius: 0;
  flex: 1;
  min-width: 0;
}

.amount-input input:focus {
  box-shadow: none;
}

/* PROTECTED PAYOUT */

.wallet-protected {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  margin: 5px 0 15px;
  border: 1px solid #c8e0df;
  border-radius: 10px;
  background: #f5fbfa;
}

.protected-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #e3f3f1;
  color: #08756f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.protected-text {
  min-width: 0;
  flex: 1;
}

.protected-text b {
  display: block;
  color: #214246;
  font-size: 12px;
  margin-bottom: 4px;
}

.protected-text span {
  display: block;
  color: #738488;
  font-size: 10px;
  line-height: 1.45;
}

.wallet-manage-btn,
.wallet-update-btn,
.wallet-view-btn {
  border: 1px solid #b9d6d5;
  background: #fff;
  color: #08716b;
  border-radius: 8px;
  padding: 8px 11px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.wallet-manage-btn:hover,
.wallet-update-btn:hover,
.wallet-view-btn:hover {
  background: #f1f9f8;
}

.wallet-submit {
  width: 100%;
  height: 47px;
  border: 0;
  border-radius: 9px;
  background: #08766f;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.wallet-submit:hover {
  background: #06645e;
}

.wallet-submit:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.wallet-submit-note {
  margin-top: 10px;
  color: #75858a;
  font-size: 10px;
}

/* HISTORY */

.history-card .wallet-card-head {
  padding-bottom: 14px;
  border-bottom: 1px dashed #dbe4e4;
}

.wallet-view-btn {
  margin-left: auto;
  padding: 7px 12px;
}

.wallet-history {
  border: 1px solid #e0e8e8;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
}

.wallet-history-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 15px;
  min-height: 65px;
  padding: 10px 13px;
  border-bottom: 1px solid #e5ebeb;
}

.wallet-history-item:last-child {
  border-bottom: 0;
}

.history-left b {
  display: block;
  color: #18262c;
  font-size: 14px;
}

.history-left span {
  display: block;
  margin-top: 3px;
  color: #65767b;
  font-size: 10px;
}

.history-middle {
  display: flex;
  justify-content: center;
}

.history-status {
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .3px;
}

.history-status.pending {
  background: #fff4d9;
  color: #a66c00;
}

.history-status.paid {
  background: #e5f5eb;
  color: #28764d;
}

.history-status.rejected {
  background: #fde9e9;
  color: #bd3d3d;
}

.history-right {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7a898d;
  font-size: 10px;
  white-space: nowrap;
}

.history-right b {
  color: #65777b;
  font-size: 19px;
  font-weight: 400;
}

.wallet-empty {
  padding: 35px 10px;
  text-align: center;
  color: #89979a;
  font-size: 11px;
}

/* PAYOUT DETAILS */

.payout-card .wallet-card-head h3 {
  margin-right: 0;
}

.private-badge {
  background: #edf4f3;
  color: #46696a;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 9px;
  font-weight: 700;
}

.payout-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid #c6dfde;
  border-radius: 10px;
  background: #f5fbfa;
}

.payout-lock {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 50%;
  background: #e2f2f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #08756f;
  font-size: 22px;
}

.payout-box > div:last-child {
  min-width: 0;
}

.payout-box b {
  display: block;
  color: #1e4448;
  font-size: 11px;
}

.payout-box span {
  display: block;
  margin-top: 4px;
  color: #728488;
  font-size: 10px;
}

.wallet-update-btn {
  margin-top: 9px;
  padding: 7px 11px;
}

.payout-footer {
  margin-top: 11px;
  color: #7c898c;
  font-size: 10px;
}

/* TIP */

.wallet-tip {
  display: flex;
  align-items: center;
  min-height: 46px;
  margin-top: 18px;
  padding: 0 15px;
  border: 1px solid #dedcf5;
  border-radius: 12px;
  background: #fafaff;
  color: #65707d;
  font-size: 10px;
}

.wallet-tip > span {
  margin-right: 8px;
  color: #7d74d8;
  font-size: 17px;
}

.wallet-tip b {
  color: #39465a;
}

/* TABLET */

@media (max-width: 900px) {

  .wallet-page {
    padding: 20px 14px 30px;
  }

  .wallet-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wallet-content {
    grid-template-columns: 1fr;
  }

}

/* MOBILE */

@media (max-width: 600px) {

  .wallet-process {
    padding: 18px;
  }

  .wallet-process-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wallet-stats {
    grid-template-columns: 1fr;
  }

  .wallet-stat {
    border-right: 0;
    border-bottom: 1px solid #e8eeee;
  }

  .wallet-stat:last-child {
    border-bottom: 0;
  }

  .wallet-content {
    grid-template-columns: 1fr;
  }

  .wallet-protected {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .wallet-manage-btn {
    margin-left: 55px;
  }

  .wallet-history-item {
    grid-template-columns: 1fr auto;
  }

  .history-middle {
    grid-column: 2;
    grid-row: 1;
  }

  .history-right {
    grid-column: 1 / -1;
    justify-content: space-between;
    border-top: 1px solid #edf1f1;
    padding-top: 7px;
  }

}

/* =========================================================
   WALLET FINAL CLEAN LAYOUT
   ========================================================= */

.wallet-page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 28px 0 40px;
}

.wallet-page-head h2 {
  margin: 0;
  color: #17262b;
  font-size: 30px;
}

.wallet-page-head p {
  margin: 6px 0 20px;
  color: #748489;
  font-size: 13px;
}

/* Keep only two main cards */

.wallet-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}

/* Card */

.wallet-card {
  background: #fff;
  border: 1px solid #e1e9e9;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(20, 50, 52, .05);
}

.request-card {
  padding: 22px 24px;
}

.history-card {
  padding: 22px;
}

/* Header */

.wallet-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wallet-card-head h3 {
  margin: 0;
  color: #08756f;
  font-size: 16px;
}

.available-label {
  margin-left: auto;
  color: #748489;
  font-size: 11px;
}

.available-label b {
  color: #08756f;
}

/* Inputs */

.wallet-field {
  display: block;
  margin-bottom: 16px;
}

.wallet-field > span {
  display: block;
  margin-bottom: 7px;
  color: #26383d;
  font-size: 11px;
  font-weight: 700;
}

.wallet-field input,
.wallet-field select {
  width: 100%;
  height: 48px;
  box-sizing: border-box;
  border: 1px solid #d5e0e1;
  border-radius: 10px;
  background: #fff;
  color: #26383d;
  padding: 0 13px;
  font-size: 13px;
}

.wallet-field input:focus,
.wallet-field select:focus {
  outline: none;
  border-color: #087f78;
  box-shadow: 0 0 0 3px rgba(8,127,120,.08);
}

/* Amount */

.amount-input {
  display: flex;
  height: 48px;
  border: 1px solid #d5e0e1;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.amount-input > span {
  width: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f8f8;
  border-right: 1px solid #e1e7e7;
  color: #63757a;
}

.amount-input input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  border-radius: 0;
  padding-left: 13px;
}

.amount-input input:focus {
  box-shadow: none;
}

/* Protected payout */

.wallet-protected {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 18px 0 15px;
  padding: 14px;
  border: 1px solid #c8dfdd;
  border-radius: 10px;
  background: #f3faf9;
}

.protected-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e1f2ef;
  color: #08756f;
}

.protected-text {
  flex: 1;
  min-width: 0;
}

.protected-text b {
  display: block;
  color: #214448;
  font-size: 12px;
}

.protected-text span {
  display: block;
  margin-top: 3px;
  color: #738488;
  font-size: 10px;
}

.wallet-manage-btn {
  flex-shrink: 0;
  padding: 9px 12px;
  border: 1px solid #acd2cf;
  border-radius: 8px;
  background: #fff;
  color: #08756f;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.wallet-manage-btn:hover {
  background: #edf8f6;
}

/* Main green button */

.wallet-submit {
  width: 100%;
  height: 47px;
  border: 0;
  border-radius: 9px;
  background: #08756f;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.wallet-submit:hover {
  background: #06655f;
}

.wallet-submit:disabled {
  background: #9dbab8;
  cursor: not-allowed;
  opacity: 1;
}

.wallet-submit-note {
  margin-top: 10px;
  color: #77878b;
  font-size: 10px;
  line-height: 1.5;
}

/* History */

.history-card .wallet-card-head {
  padding-bottom: 14px;
  border-bottom: 1px dashed #dce5e5;
}

.wallet-view-btn {
  margin-left: auto;
  padding: 7px 11px;
  border: 1px solid #cbdcdc;
  border-radius: 8px;
  background: #fff;
  color: #08756f;
  font-size: 10px;
  font-weight: 700;
}

.wallet-history {
  margin-top: 12px;
  border: 1px solid #e1e8e8;
  border-radius: 10px;
  overflow: hidden;
}

.wallet-history-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  min-height: 65px;
  padding: 10px 13px;
  border-bottom: 1px solid #e7eded;
}

.wallet-history-item:last-child {
  border-bottom: 0;
}

.history-left b {
  display: block;
  color: #18272d;
  font-size: 14px;
}

.history-left span {
  display: block;
  margin-top: 3px;
  color: #738388;
  font-size: 10px;
}

.history-status {
  padding: 5px 9px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 800;
}

.history-status.pending {
  background: #fff3d7;
  color: #a36b00;
}

.history-status.paid {
  background: #e5f5eb;
  color: #28764d;
}

.history-status.rejected {
  background: #fde8e8;
  color: #bd3d3d;
}

.history-right {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7c898d;
  font-size: 10px;
  white-space: nowrap;
}

.history-right b {
  color: #607276;
  font-size: 18px;
  font-weight: 400;
}

/* Mobile */

@media (max-width: 850px) {
  .wallet-content {
    grid-template-columns: 1fr;
  }

  .wallet-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wallet-page {
    padding: 20px 14px 30px;
  }

  .wallet-process-grid {
    grid-template-columns: 1fr;
  }

  .wallet-stats {
    grid-template-columns: 1fr;
  }

  .wallet-protected {
    flex-wrap: wrap;
  }

  .wallet-manage-btn {
    margin-left: 55px;
  }

  .wallet-history-item {
    grid-template-columns: 1fr auto;
  }

  .history-middle {
    grid-column: 2;
  }

  .history-right {
    grid-column: 1 / -1;
  }
}
/* =========================================================
   PREMIUM PHOTO UPLOAD
   ========================================================= */

.upload-instructions {
  margin-bottom: 16px;
  color: #718287;
  font-size: 12px;
}

.premium-upload-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 16px;
}

.premium-photo-slot {
  display: block;
  cursor: pointer;
  min-width: 0;
}

.photo-preview {
  position: relative;
  height: 150px;
  overflow: hidden;
  border: 1px solid #dbe5e5;
  border-radius: 12px;
  background: #f4f8f8;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.premium-photo-slot:hover .photo-preview {
  border-color: #08756f;
  box-shadow: 0 5px 18px rgba(8,117,111,.12);
  transform: translateY(-1px);
}

.photo-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b999d;
  font-size: 12px;
}

.photo-number {
  position: absolute;
  top: 8px;
  left: 8px;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #16242a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.sample-badge,
.uploaded-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 5px 7px;
  border-radius: 5px;
  background: rgba(20,32,37,.9);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .4px;
}

.uploaded-badge {
  background: #08756f;
}

.photo-add-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 9px 8px;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  opacity: 0;
  transition: opacity .2s;
}

.premium-photo-slot:hover .photo-add-overlay {
  opacity: 1;
}

.photo-slot-label {
  padding: 9px 2px 2px;
  color: #26383d;
  font-size: 12px;
}

.photo-slot-label b {
  font-weight: 700;
}

.premium-photo-slot input[type="file"] {
  display: none;
}

@media (max-width: 900px) {
  .premium-upload-grid {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
  }
}

@media (max-width: 650px) {
  .premium-upload-grid {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }

  .photo-preview {
    height: 135px;
  }
}

@media (max-width: 430px) {
  .premium-upload-grid {
    grid-template-columns: 1fr;
  }

  .photo-preview {
    height: 190px;
  }
}

/* =========================================================
   FINAL WALLET UI OVERRIDE
   ========================================================= */

.wallet-content{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) minmax(420px,1fr) !important;
  gap:22px !important;
  align-items:stretch !important;
}

.request-card,
.history-card{
  min-width:0 !important;
  box-sizing:border-box !important;
}

.request-card{
  padding:22px !important;
}

.history-card{
  padding:22px !important;
  overflow:hidden !important;
}

/* Amount */
.amount-input{
  width:100% !important;
  height:52px !important;
  display:grid !important;
  grid-template-columns:46px minmax(0,1fr) 52px !important;
  align-items:center !important;
  border:1px solid #d7e2e2 !important;
  border-radius:11px !important;
  background:#fff !important;
  overflow:hidden !important;
  box-sizing:border-box !important;
}

.amount-input > span{
  height:100% !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:0 !important;
  margin:0 !important;
  background:#fafcfc !important;
  color:#718489 !important;
  font-size:13px !important;
  font-weight:700 !important;
}

.amount-input input{
  width:100% !important;
  min-width:0 !important;
  height:100% !important;
  border:0 !important;
  outline:0 !important;
  box-shadow:none !important;
  border-radius:0 !important;
  padding:0 12px !important;
  margin:0 !important;
  font-size:15px !important;
  background:#fff !important;
  box-sizing:border-box !important;
}

.amount-input input::-webkit-inner-spin-button,
.amount-input input::-webkit-outer-spin-button{
  -webkit-appearance:none !important;
  margin:0 !important;
}

.amount-input input[type=number]{
  appearance:textfield !important;
  -moz-appearance:textfield !important;
}

.amount-input > span:last-child{
  border-left:1px solid #edf1f1 !important;
  font-size:10px !important;
  letter-spacing:.5px !important;
}

/* Payment method */
.wallet-field select{
  width:100% !important;
  height:52px !important;
  border:1px solid #d7e2e2 !important;
  border-radius:11px !important;
  padding:0 13px !important;
  background:#fff !important;
  box-sizing:border-box !important;
}

/* History */
.history-card .wallet-card-head{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
}

.history-card .wallet-history{
  width:100% !important;
  margin-top:14px !important;
  overflow:hidden !important;
}

.history-card .wallet-history-item{
  width:100% !important;
  min-width:0 !important;
  display:grid !important;
  grid-template-columns:40px minmax(0,1fr) auto !important;
  gap:12px !important;
  align-items:center !important;
  padding:17px 2px !important;
  box-sizing:border-box !important;
  border-top:1px solid #e8eeee !important;
}

.history-card .history-left,
.history-card .history-middle,
.history-card .history-right{
  min-width:0 !important;
}

.history-card .history-left b{
  display:block !important;
  font-size:16px !important;
  color:#21373d !important;
  line-height:1.2 !important;
}

.history-card .history-left span{
  display:block !important;
  max-width:190px !important;
  margin-top:5px !important;
  color:#809398 !important;
  font-size:11px !important;
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
}

.history-card .history-middle{
  display:flex !important;
  justify-content:flex-start !important;
}

.history-card .history-right{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:8px !important;
  color:#819297 !important;
  font-size:10px !important;
  white-space:nowrap !important;
}

.history-card .history-right b{
  font-size:18px !important;
  color:#a1afb1 !important;
}

.history-card .history-status{
  padding:5px 9px !important;
  font-size:9px !important;
  white-space:nowrap !important;
}

/* Better empty/history card proportions */
.history-card{
  min-height:250px !important;
}

.wallet-empty{
  padding:45px 15px !important;
  text-align:center !important;
}

/* Add payment method button */
.pay-add,
.wallet-manage-btn{
  cursor:pointer !important;
  transition:all .15s ease !important;
}

.pay-add:hover,
.wallet-manage-btn:hover{
  transform:translateY(-1px) !important;
}

/* Responsive */
@media(max-width:1050px){
  .wallet-content{
    grid-template-columns:1fr !important;
  }

  .history-card{
    min-height:auto !important;
  }
}

@media(max-width:600px){
  .request-grid{
    grid-template-columns:1fr !important;
  }

  .history-card .wallet-history-item{
    grid-template-columns:34px minmax(0,1fr) !important;
  }

  .history-card .history-right{
    grid-column:2 !important;
    justify-content:flex-start !important;
  }
}


/* =========================================================
   WITHDRAWAL HISTORY - CLEAN FINAL DESIGN
   ========================================================= */

.history-card{
  height:auto !important;
  min-height:0 !important;
  align-self:start !important;
  padding:24px !important;
  overflow:hidden !important;
}

.history-card .wallet-card-head{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  padding-bottom:15px !important;
  border-bottom:1px dashed #dce7e6 !important;
}

.history-card .wallet-card-head h3{
  margin:0 !important;
  white-space:nowrap !important;
}

.history-card .wallet-view-btn{
  white-space:nowrap !important;
  font-size:12px !important;
}

/* History list */
.history-card .wallet-history{
  margin:0 !important;
  padding:0 !important;
  width:100% !important;
}

/* Individual transaction */
.history-card .wallet-history-item{
  width:100% !important;
  min-height:78px !important;
  display:grid !important;
  grid-template-columns:minmax(0,1fr) auto !important;
  grid-template-rows:auto auto !important;
  column-gap:18px !important;
  row-gap:5px !important;
  align-items:center !important;
  padding:17px 0 !important;
  margin:0 !important;
  border-top:1px solid #edf2f1 !important;
  box-sizing:border-box !important;
}

.history-card .wallet-history-item:first-child{
  border-top:0 !important;
}

/* Left side */
.history-card .history-left{
  grid-column:1 !important;
  grid-row:1 / span 2 !important;
  min-width:0 !important;
}

.history-card .history-left b{
  display:block !important;
  margin:0 !important;
  color:#20363c !important;
  font-size:17px !important;
  font-weight:800 !important;
  line-height:1.2 !important;
}

.history-card .history-left span{
  display:block !important;
  width:100% !important;
  max-width:260px !important;
  margin-top:7px !important;
  color:#84969a !important;
  font-size:12px !important;
  line-height:1.3 !important;
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
}

/* Status */
.history-card .history-middle{
  grid-column:2 !important;
  grid-row:1 !important;
  min-width:0 !important;
  display:flex !important;
  justify-content:flex-end !important;
  align-items:center !important;
}

.history-card .history-status{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-width:65px !important;
  height:29px !important;
  padding:0 10px !important;
  border-radius:999px !important;
  font-size:9px !important;
  font-weight:900 !important;
  letter-spacing:.7px !important;
  white-space:nowrap !important;
}

/* Date */
.history-card .history-right{
  grid-column:2 !important;
  grid-row:2 !important;
  min-width:0 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:0 !important;
  color:#8a999c !important;
  font-size:11px !important;
  line-height:1.2 !important;
  white-space:nowrap !important;
}

.history-card .history-right b{
  display:none !important;
}

/* Empty history */
.history-card .wallet-empty{
  padding:38px 10px !important;
  text-align:center !important;
  color:#84969a !important;
}

/* Remove timeline remnants */
.history-card .history-timeline,
.history-card .history-timeline-dot{
  display:none !important;
}

/* Prevent the card from stretching */
.wallet-content{
  align-items:start !important;
}

.request-card{
  align-self:start !important;
}

/* Desktop */
@media(min-width:1051px){
  .history-card{
    width:100% !important;
  }
}

/* Tablet / mobile */
@media(max-width:1050px){
  .history-card{
    width:100% !important;
  }

  .history-card .history-left span{
    max-width:400px !important;
  }
}

@media(max-width:520px){
  .history-card{
    padding:18px !important;
  }

  .history-card .wallet-history-item{
    column-gap:10px !important;
  }

  .history-card .history-left b{
    font-size:15px !important;
  }

  .history-card .history-left span{
    font-size:11px !important;
    max-width:170px !important;
  }

  .history-card .history-status{
    min-width:58px !important;
    height:26px !important;
    font-size:8px !important;
  }

  .history-card .history-right{
    font-size:10px !important;
  }
}



/* FIELDShot PREMIUM WITHDRAWAL HISTORY */

.history-card{
  align-self:start !important;
  height:auto !important;
  min-height:0 !important;
  padding:22px !important;
  overflow:hidden !important;
}

.history-card .wallet-card-head{
  padding-bottom:15px !important;
  border-bottom:1px dashed #dce7e6 !important;
}

.premium-history{
  width:100% !important;
  margin-top:12px !important;
  border:1px solid #e1eaea !important;
  border-radius:15px !important;
  overflow:hidden !important;
  background:#fff !important;
}

.premium-history-row{
  min-height:88px !important;
  width:100% !important;
  display:grid !important;
  grid-template-columns:40px minmax(0,1fr) auto !important;
  gap:13px !important;
  align-items:center !important;
  padding:15px 14px !important;
  border-top:1px solid #edf1f1 !important;
  box-sizing:border-box !important;
  transition:background .15s ease !important;
}

.premium-history-row:first-child{
  border-top:0 !important;
}

.premium-history-row:hover{
  background:#fbfdfd !important;
}

.premium-history-icon{
  width:36px !important;
  height:36px !important;
  border-radius:11px !important;
  display:grid !important;
  place-items:center !important;
  font-size:15px !important;
  font-weight:900 !important;
}

.premium-history-icon.paid{
  background:#e6f5ee !important;
  color:#2a8a65 !important;
  border:1px solid #bce1cf !important;
}

.premium-history-icon.pending{
  background:#fff3d8 !important;
  color:#a06d15 !important;
  border:1px solid #efd18b !important;
}

.premium-history-icon.rejected{
  background:#fde9e9 !important;
  color:#b95353 !important;
  border:1px solid #efc1c1 !important;
}

.premium-history-main{
  min-width:0 !important;
}

.premium-history-amount{
  color:#20363c !important;
  font-size:16px !important;
  font-weight:900 !important;
  line-height:1.2 !important;
}

.premium-history-method{
  margin-top:5px !important;
  color:#72878d !important;
  font-size:11.5px !important;
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
}

.premium-history-date{
  margin-top:4px !important;
  color:#9aa8ab !important;
  font-size:10.5px !important;
}

.premium-history-side{
  display:flex !important;
  align-items:center !important;
  gap:12px !important;
}

.premium-history-status{
  min-width:65px !important;
  height:27px !important;
  padding:0 9px !important;
  border-radius:999px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  box-sizing:border-box !important;
  font-size:8.5px !important;
  font-weight:900 !important;
  letter-spacing:.65px !important;
  white-space:nowrap !important;
}

.premium-history-status.pending{
  background:#fff3d8 !important;
  color:#9a6b15 !important;
  border:1px solid #efd18b !important;
}

.premium-history-status.paid{
  background:#e4f5ed !important;
  color:#27815e !important;
  border:1px solid #b9dfcd !important;
}

.premium-history-status.rejected{
  background:#fde8e8 !important;
  color:#b95353 !important;
  border:1px solid #efc1c1 !important;
}

.premium-history-arrow{
  color:#a2afb2 !important;
  font-size:21px !important;
  line-height:1 !important;
}

.premium-history-empty{
  padding:38px 18px !important;
  text-align:center !important;
}

.premium-empty-icon{
  width:40px !important;
  height:40px !important;
  margin:0 auto 9px !important;
  border-radius:50% !important;
  display:grid !important;
  place-items:center !important;
  background:#eef7f5 !important;
  color:#08766c !important;
}

.premium-history-empty b{
  display:block !important;
  color:#526a70 !important;
  font-size:12px !important;
}

.premium-history-empty span{
  display:block !important;
  margin-top:5px !important;
  color:#87979b !important;
  font-size:10.5px !important;
}

@media(max-width:600px){
  .premium-history-row{
    grid-template-columns:38px minmax(0,1fr) !important;
  }

  .premium-history-side{
    grid-column:2 !important;
    justify-content:space-between !important;
  }

  .premium-history-arrow{
    display:none !important;
  }
}


/* =========================================================
   FIELDShot PREMIUM ACCOUNT PAGE
   ========================================================= */

.premium-account-page{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:8px 0 42px;
  box-sizing:border-box;
}

.premium-account-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:24px;
}

.premium-eyebrow{
  color:#08766c;
  font-size:10px;
  font-weight:900;
  letter-spacing:1.7px;
  margin-bottom:7px;
}

.premium-account-head h2{
  margin:0;
  color:#172a30;
  font-size:30px;
  line-height:1.05;
  letter-spacing:-.7px;
}

.premium-account-head p{
  margin:8px 0 0;
  color:#7d9095;
  font-size:13px;
}

.premium-account-status{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:155px;
  padding:10px 14px;
  border:1px solid #dfe9e7;
  border-radius:13px;
  background:#fff;
  box-shadow:0 8px 25px rgba(23,42,48,.04);
}

.premium-status-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#38a87b;
  box-shadow:0 0 0 4px #e7f6ef;
}

.premium-account-status b{
  display:block;
  color:#284047;
  font-size:12px;
}

.premium-account-status span{
  display:block;
  color:#91a0a4;
  font-size:10px;
  margin-top:2px;
}

.account-status-warning .premium-status-dot{
  background:#d18a22;
  box-shadow:0 0 0 4px #fff2dc;
}

.premium-account-top-grid{
  display:grid;
  grid-template-columns:minmax(0,2fr) minmax(270px,.82fr);
  gap:20px;
  align-items:start;
}

.premium-settings-grid{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(320px,.75fr);
  gap:20px;
  align-items:start;
}

.premium-account-side{
  display:grid;
  gap:20px;
}

.premium-account-card{
  background:#fff;
  border:1px solid #e1e9e8;
  border-radius:17px;
  box-shadow:0 12px 32px rgba(30,52,57,.055);
  box-sizing:border-box;
}

.profile-card,
.payout-card,
.security-card{
  padding:22px;
}

.status-card{
  padding:20px;
}

.quick-card{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:17px;
  background:linear-gradient(135deg,#fbfffe,#f5faf9);
}

.quick-card b{
  display:block;
  color:#2b464c;
  font-size:11.5px;
}

.quick-card p{
  margin:5px 0 0;
  color:#87999d;
  font-size:10.5px;
  line-height:1.55;
}

.premium-quick-icon{
  width:32px;
  height:32px;
  flex:0 0 32px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:#e8f5f2;
  color:#08766c;
  font-size:11px;
}

.premium-card-head{
  display:flex;
  align-items:center;
  gap:12px;
}

.premium-card-head.compact{
  align-items:flex-start;
}

.premium-card-icon{
  width:39px;
  height:39px;
  flex:0 0 39px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:#edf7f5;
  color:#08766c;
  font-size:16px;
  font-weight:900;
}

.profile-icon{
  background:#eaf6f4;
}

.status-icon{
  background:#e8f5ef;
  color:#2d916b;
}

.payout-icon{
  background:#eef5fb;
  color:#4e7897;
}

.security-icon{
  background:#f3f1fb;
  color:#6d63a0;
}

.criteria-icon{
  background:#edf7f5;
}

.premium-card-head h3{
  margin:0;
  color:#21383f;
  font-size:15px;
  letter-spacing:-.1px;
}

.premium-card-head p{
  margin:4px 0 0;
  color:#899ba0;
  font-size:10.5px;
  line-height:1.4;
}

.premium-divider{
  height:1px;
  margin:18px 0;
  background:#e9eeee;
}

.premium-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.premium-full{
  grid-column:1 / -1;
}

.premium-field{
  display:block;
  min-width:0;
}

.premium-field span{
  display:block;
  margin-bottom:6px;
  color:#73878d;
  font-size:9.5px;
  font-weight:900;
  letter-spacing:.8px;
  text-transform:uppercase;
}

.premium-field input,
.premium-field select{
  width:100%;
  height:45px;
  padding:0 13px;
  border:1px solid #dce6e5;
  border-radius:10px;
  outline:none;
  background:#fbfdfd;
  color:#263c42;
  font-family:inherit;
  font-size:12px;
  box-sizing:border-box;
  transition:border-color .15s ease,box-shadow .15s ease,background .15s ease;
}

.premium-field input::placeholder{
  color:#aab8bb;
}

.premium-field input:focus,
.premium-field select:focus{
  border-color:#6bb8ae;
  background:#fff;
  box-shadow:0 0 0 3px rgba(8,118,108,.08);
}

.premium-card-actions{
  display:flex;
  justify-content:flex-end;
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid #edf1f1;
}

.premium-primary-btn,
.premium-secondary-btn{
  min-height:41px;
  padding:0 19px;
  border-radius:10px;
  border:0;
  font-family:inherit;
  font-size:11px;
  font-weight:900;
  cursor:pointer;
  transition:transform .15s ease,box-shadow .15s ease,background .15s ease;
}

.premium-primary-btn{
  background:#08766c;
  color:#fff;
  box-shadow:0 7px 18px rgba(8,118,108,.18);
}

.premium-primary-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 9px 22px rgba(8,118,108,.24);
}

.premium-secondary-btn{
  background:#f4f8f8;
  color:#496067;
  border:1px solid #dce6e5;
}

.premium-secondary-btn:hover{
  background:#edf6f4;
}

.premium-status-box{
  display:flex;
  align-items:center;
  gap:11px;
  padding:13px;
  border:1px solid #dcebe5;
  border-radius:12px;
  background:#f7fcfa;
}

.premium-big-check{
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  flex:0 0 30px;
  border-radius:9px;
  background:#e0f3ea;
  color:#2b936b;
  font-weight:900;
}

.premium-status-box b{
  display:block;
  color:#315048;
  font-size:11px;
}

.premium-status-box span{
  display:block;
  color:#8a9c9d;
  font-size:9.5px;
  margin-top:3px;
}

.premium-mini-list{
  margin-top:15px;
}

.premium-mini-list > div{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid #edf1f1;
}

.premium-mini-list > div:last-child{
  border-bottom:0;
}

.premium-mini-list span{
  color:#87999d;
  font-size:10px;
}

.premium-mini-list b{
  color:#40565c;
  font-size:10px;
  text-align:right;
  text-transform:capitalize;
}

.premium-section-label{
  margin:26px 0 10px;
  padding-left:2px;
}

.premium-section-label span{
  color:#809196;
  font-size:9px;
  font-weight:900;
  letter-spacing:1.3px;
}

.premium-title-line{
  display:flex;
  align-items:center;
  gap:8px;
}

.premium-private-badge{
  padding:4px 7px;
  border-radius:999px;
  background:#f1f6f5;
  color:#65817f;
  border:1px solid #dbe7e5;
  font-size:7.5px;
  font-weight:900;
  letter-spacing:.8px;
}

.premium-payout-preview{
  display:flex;
  align-items:center;
  gap:11px;
  padding:12px;
  margin-bottom:15px;
  border:1px dashed #cddfdd;
  border-radius:12px;
  background:#fbfefd;
}

.premium-payout-icon{
  width:34px;
  height:34px;
  flex:0 0 34px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:#edf7f5;
  color:#08766c;
  font-weight:900;
}

.premium-payout-preview b{
  display:block;
  color:#405960;
  font-size:11px;
}

.premium-payout-preview span{
  display:block;
  margin-top:3px;
  color:#899b9f;
  font-size:9.5px;
}

.premium-payout-preview.has-payout{
  border-style:solid;
  background:#f8fcfb;
}

.payout-form-grid{
  grid-template-columns:1fr 1fr;
}

.premium-security-strip{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-top:15px;
  padding:11px 12px;
  border:1px solid #e2eceb;
  border-radius:11px;
  background:#f7faf9;
}

.premium-security-strip > span{
  color:#08766c;
  font-size:14px;
}

.premium-security-strip b{
  display:block;
  color:#50666b;
  font-size:9.5px;
}

.premium-security-strip p{
  margin:3px 0 0;
  color:#8c9c9f;
  font-size:8.5px;
}

.premium-password-note{
  display:flex;
  gap:10px;
  margin-top:15px;
  padding:12px;
  border:1px solid #e5e1f0;
  border-radius:11px;
  background:#faf9fd;
}

.premium-lock{
  width:29px;
  height:29px;
  flex:0 0 29px;
  display:grid;
  place-items:center;
  border-radius:9px;
  background:#eeebf8;
  color:#7065a0;
  font-size:11px;
  font-weight:900;
}

.premium-password-note b{
  display:block;
  color:#57516f;
  font-size:9.5px;
}

.premium-password-note p{
  margin:3px 0 0;
  color:#92909f;
  font-size:8.5px;
  line-height:1.4;
}

.premium-criteria{
  margin-top:20px;
  padding:20px;
}

.premium-criteria-box{
  display:flex;
  align-items:flex-start;
  gap:11px;
  padding:15px;
  border:1px solid #e1e9e8;
  border-radius:12px;
  background:#fafcfc;
  color:#62767b;
  font-size:10.5px;
  line-height:1.65;
}

.criteria-check{
  width:27px;
  height:27px;
  flex:0 0 27px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background:#e5f4f0;
  color:#08766c;
  font-weight:900;
}

@media(max-width:950px){
  .premium-account-top-grid,
  .premium-settings-grid{
    grid-template-columns:1fr;
  }

  .premium-account-side{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:650px){
  .premium-account-page{
    padding:5px 0 30px;
  }

  .premium-account-head{
    align-items:flex-start;
    flex-direction:column;
  }

  .premium-account-status{
    width:100%;
    box-sizing:border-box;
  }

  .premium-account-side{
    grid-template-columns:1fr;
  }

  .premium-form-grid,
  .payout-form-grid{
    grid-template-columns:1fr;
  }

  .premium-full{
    grid-column:auto;
  }

  .profile-card,
  .payout-card,
  .security-card,
  .premium-criteria{
    padding:17px;
  }

  .premium-card-actions{
    justify-content:stretch;
  }

  .premium-primary-btn,
  .premium-secondary-btn{
    width:100%;
  }
}

/* =========================================================
   FIELDShot — PREMIUM ACCOUNT PAGE
   VISUAL ONLY — NO JS/API CHANGES
   ========================================================= */

.account-head{
  margin-bottom:22px !important;
}

.account-head h2{
  font-size:30px !important;
  letter-spacing:-.7px !important;
  color:#172c32 !important;
  margin:0 !important;
}

.account-head p{
  margin-top:7px !important;
  color:#819398 !important;
  font-size:12px !important;
}

/* Main layout */
.account-grid{
  display:grid !important;
  grid-template-columns:minmax(0,1.15fr) minmax(360px,.85fr) !important;
  gap:20px !important;
  align-items:start !important;
}

/* All account cards */
.account-card{
  background:#fff !important;
  border:1px solid #e2eaea !important;
  border-radius:18px !important;
  box-shadow:0 12px 32px rgba(25,48,54,.055) !important;
  overflow:hidden !important;
  transition:box-shadow .18s ease,transform .18s ease !important;
}

.account-card:hover{
  box-shadow:0 16px 38px rgba(25,48,54,.075) !important;
}

/* Card internal spacing */
.account-profile,
.account-grid > .account-card:not(.payout-card),
.payout-card,
.criteria-card{
  padding:21px !important;
}

/* Header inside cards */
.account-card-head{
  display:flex !important;
  align-items:center !important;
  gap:12px !important;
}

.account-card-head h3{
  margin:0 !important;
  color:#20383e !important;
  font-size:15px !important;
  letter-spacing:-.15px !important;
}

.account-card-head p{
  margin:4px 0 0 !important;
  color:#8a9a9e !important;
  font-size:10.5px !important;
  line-height:1.45 !important;
}

.account-icon{
  width:40px !important;
  height:40px !important;
  flex:0 0 40px !important;
  display:grid !important;
  place-items:center !important;
  border-radius:12px !important;
  background:#eaf7f4 !important;
  color:#08766c !important;
  font-size:16px !important;
  font-weight:900 !important;
}

.payout-icon{
  background:#eef5fb !important;
  color:#4b7695 !important;
}

/* Dividers */
.account-divider{
  height:1px !important;
  margin:18px 0 !important;
  background:#e9eeee !important;
}

/* Forms */
.account-form-grid{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:14px !important;
}

.account-full{
  grid-column:1 / -1 !important;
}

.field{
  display:block !important;
  min-width:0 !important;
}

.field > span{
  display:block !important;
  margin-bottom:6px !important;
  color:#71858a !important;
  font-size:9px !important;
  font-weight:900 !important;
  letter-spacing:.75px !important;
  text-transform:uppercase !important;
}

.field input,
.field select{
  width:100% !important;
  height:45px !important;
  box-sizing:border-box !important;
  border:1px solid #dce6e5 !important;
  border-radius:10px !important;
  background:#fbfdfd !important;
  color:#263c42 !important;
  padding:0 13px !important;
  outline:none !important;
  font-family:inherit !important;
  font-size:12px !important;
  transition:border-color .15s ease,box-shadow .15s ease,background .15s ease !important;
}

.field input::placeholder{
  color:#aab8bb !important;
}

.field input:focus,
.field select:focus{
  border-color:#68b4aa !important;
  background:#fff !important;
  box-shadow:0 0 0 3px rgba(8,118,108,.08) !important;
}

/* Buttons */
.account-actions{
  display:flex !important;
  justify-content:flex-end !important;
  margin-top:18px !important;
  padding-top:16px !important;
  border-top:1px solid #edf1f1 !important;
}

.account-primary{
  min-height:41px !important;
  padding:0 19px !important;
  border:0 !important;
  border-radius:10px !important;
  background:#08766c !important;
  color:#fff !important;
  font-size:11px !important;
  font-weight:900 !important;
  box-shadow:0 7px 18px rgba(8,118,108,.17) !important;
  cursor:pointer !important;
  transition:transform .15s ease,box-shadow .15s ease,background .15s ease !important;
}

.account-primary:hover{
  background:#075f58 !important;
  transform:translateY(-1px) !important;
  box-shadow:0 10px 23px rgba(8,118,108,.22) !important;
}

.account-primary:disabled{
  opacity:.55 !important;
  transform:none !important;
  cursor:not-allowed !important;
}

.account-secondary{
  min-height:40px !important;
  padding:0 17px !important;
  border:1px solid #dce6e5 !important;
  border-radius:10px !important;
  background:#f7faf9 !important;
  color:#50666c !important;
  font-size:11px !important;
  font-weight:900 !important;
  cursor:pointer !important;
}

.account-secondary:hover{
  background:#edf6f4 !important;
  color:#08766c !important;
}

/* Security */
.security-note{
  display:flex !important;
  align-items:flex-start !important;
  gap:10px !important;
  margin-top:15px !important;
  padding:12px !important;
  border:1px solid #e5e2f0 !important;
  border-radius:11px !important;
  background:#faf9fd !important;
}

.security-dot{
  width:28px !important;
  height:28px !important;
  flex:0 0 28px !important;
  display:grid !important;
  place-items:center !important;
  border-radius:9px !important;
  background:#eeebf8 !important;
}

.security-note b{
  display:block !important;
  color:#5b5572 !important;
  font-size:9.5px !important;
}

.security-note p{
  margin:3px 0 0 !important;
  color:#92909f !important;
  font-size:8.5px !important;
  line-height:1.4 !important;
}

/* Payout */
.account-title-row{
  display:flex !important;
  align-items:center !important;
  gap:8px !important;
}

.private-badge{
  padding:4px 7px !important;
  border-radius:999px !important;
  background:#f0f6f4 !important;
  border:1px solid #dce8e5 !important;
  color:#66817e !important;
  font-size:7.5px !important;
  font-weight:900 !important;
  letter-spacing:.8px !important;
}

.payout-security{
  display:flex !important;
  align-items:flex-start !important;
  gap:10px !important;
  margin-bottom:16px !important;
  padding:12px !important;
  border:1px solid #dcebe7 !important;
  border-radius:12px !important;
  background:#f7fcfa !important;
}

.payout-lock{
  width:31px !important;
  height:31px !important;
  flex:0 0 31px !important;
  display:grid !important;
  place-items:center !important;
  border-radius:9px !important;
  background:#e2f3ed !important;
  color:#08766c !important;
  font-weight:900 !important;
}

.payout-security b{
  display:block !important;
  color:#41605a !important;
  font-size:10px !important;
}

.payout-security p{
  margin:3px 0 0 !important;
  color:#879b98 !important;
  font-size:8.5px !important;
  line-height:1.45 !important;
}

.payout-fields{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:14px !important;
}

.payout-help{
  margin-top:9px !important;
  color:#92a0a3 !important;
  font-size:9px !important;
}

/* Criteria */
.criteria-card{
  grid-column:1 / -1 !important;
  margin-top:0 !important;
}

.criteria-box{
  padding:15px !important;
  border:1px solid #e1e9e8 !important;
  border-radius:12px !important;
  background:#fafcfc !important;
  color:#64777c !important;
  font-size:10.5px !important;
  line-height:1.65 !important;
  position:relative !important;
}

.criteria-box::before{
  content:'✓' !important;
  width:27px !important;
  height:27px !important;
  display:inline-grid !important;
  place-items:center !important;
  float:left !important;
  margin:0 10px 4px 0 !important;
  border-radius:8px !important;
  background:#e5f4f0 !important;
  color:#08766c !important;
  font-weight:900 !important;
}

/* Profile card gets slightly stronger visual hierarchy */
.account-profile{
  position:relative !important;
}

.account-profile::after{
  content:'' !important;
  position:absolute !important;
  top:0 !important;
  left:0 !important;
  right:0 !important;
  height:3px !important;
  background:#08766c !important;
}

/* Payout card accent */
.payout-card{
  position:relative !important;
}

.payout-card::after{
  content:'' !important;
  position:absolute !important;
  top:0 !important;
  left:0 !important;
  right:0 !important;
  height:3px !important;
  background:#5b8ca8 !important;
}

/* Better spacing for security card */
.account-grid > .account-card:nth-child(2){
  min-height:100% !important;
}

/* Mobile */
@media(max-width:950px){
  .account-grid{
    grid-template-columns:1fr !important;
  }

  .criteria-card{
    grid-column:auto !important;
  }
}

@media(max-width:650px){
  .account-head h2{
    font-size:26px !important;
  }

  .account-form-grid,
  .payout-fields{
    grid-template-columns:1fr !important;
  }

  .account-full{
    grid-column:auto !important;
  }

  .account-profile,
  .account-grid > .account-card:not(.payout-card),
  .payout-card,
  .criteria-card{
    padding:17px !important;
  }

  .account-actions{
    justify-content:stretch !important;
  }

  .account-primary,
  .account-secondary{
    width:100% !important;
  }
}


/* =====================================================
   ACCOUNT — FINAL CLEAN PAYMENT LAYOUT
   ===================================================== */

.account-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr) !important;
  grid-template-areas:
    "profile payout"
    "security payout" !important;
  gap: 20px !important;
  align-items: stretch !important;
}

.account-profile {
  grid-area: profile !important;
}

.security-card {
  grid-area: security !important;
}

.payout-card {
  grid-area: payout !important;
  display: flex !important;
  flex-direction: column !important;
  box-sizing: border-box !important;
  height: auto !important;
  min-height: 100% !important;
  overflow: hidden !important;
}

.payout-card > .account-actions {
  margin-top: auto !important;
  width: 100% !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
  padding: 20px 0 0 !important;
  display: flex !important;
  justify-content: flex-end !important;
  position: static !important;
}

.payout-card > .account-actions > #savePayout {
  position: static !important;
  display: inline-flex !important;
  margin: 0 !important;
  transform: none !important;
}

/* Payment content */
.payout-card .payout-fields {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 13px !important;
}

.payout-card .bank-fields {
  margin-top: 17px !important;
}

/* Desktop */
@media (min-width: 951px) {
  .account-profile,
  .payout-card {
    min-height: 650px !important;
  }

  .security-card {
    min-height: 220px !important;
  }
}

/* Smaller screens */
@media (max-width: 950px) {
  .account-grid {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "profile"
      "payout"
      "security" !important;
  }

  .account-profile,
  .payout-card,
  .security-card {
    grid-area: auto !important;
    min-height: 0 !important;
  }
}

@media (max-width: 650px) {
  .payout-card .payout-fields,
  .security-fields {
    grid-template-columns: 1fr !important;
  }

  .payout-card > .account-actions {
    justify-content: stretch !important;
  }

  .payout-card > .account-actions > #savePayout {
    width: 100% !important;
  }
}


/* FINAL FIX — keep payment button directly below payment fields */
.account-grid > .payout-card {
  height: auto !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}

.account-grid > .payout-card > .account-actions {
  margin-top: 18px !important;
  padding-top: 16px !important;
  padding-bottom: 0 !important;
  width: 100% !important;
  display: flex !important;
  justify-content: flex-end !important;
  position: static !important;
}

.account-grid > .payout-card > .account-actions > #savePayout {
  position: static !important;
  margin: 0 !important;
  transform: none !important;
}


/* Premium payment section headings */
.payment-section-title {
  margin: 18px 0 12px !important;
  padding: 0 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em !important;
  color: #17323a !important;
}

.payment-method-fields:first-child .payment-section-title {
  margin-top: 16px !important;
}

/* Keep labels lighter than section headings */
.payment-method-fields .field > span {
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: .08em !important;
  color: #71878d !important;
  text-transform: uppercase !important;
}

/* =========================================================
   MERGED FROM CSS #1
   Role tabs alignment helpers
   ========================================================= */
.role-tabs button {
  text-align: center;
  white-space: nowrap;
}
/* Password show / hide */
.password-wrap {
  position: relative;
  width: 100%;
}

.password-wrap input {
  width: 100%;
  box-sizing: border-box;
  padding-right: 46px;
}

.password-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);

  width: 40px;
  height: 40px;

  border: none !important;
  background: transparent !important;

  padding: 0 !important;
  margin: 0 !important;

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

  cursor: pointer;
  color: #647782 !important;

  font-size: 18px;
  line-height: 1;

  z-index: 10;
}

.password-toggle:hover {
  color: #0d665f !important;
}

.password-toggle:focus {
  outline: none !important;
  box-shadow: none !important;
}
/* ===== FIELDShot HERO DESKTOP FIX ===== */

.landing-hero {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  max-width: 1140px;
  min-height: 600px;
  margin: 0 auto;
  padding: 55px 24px 65px;

  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  grid-template-rows: 1fr !important;
  column-gap: 40px;

  align-items: center !important;
  box-sizing: border-box;
}

.hero-copy {
  grid-column: 1 !important;
  grid-row: 1 !important;
  align-self: center !important;
  position: relative;
  z-index: 5;
  display: block !important;
}

.hero-copy .eyebrow {
  display: block !important;
  color: var(--signal);
}

.hero-copy h1 {
  display: block !important;
  color: #fff !important;
  margin: 6px 0 0;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.hero-copy h1 em {
  color: var(--signal) !important;
  font-style: normal;
}

.hero-copy p.lede {
  display: block !important;
  color: #b9c6cd !important;
  font-size: 17px;
  line-height: 1.6;
  max-width: 46ch;
  margin: 18px 0 26px;
}

.hero-copy .row {
  display: flex !important;
  flex-wrap: wrap;
  gap: 12px;
}

.photo-focus {
  grid-column: 2 !important;
  grid-row: 1 !important;

  position: relative !important;
  width: 500px !important;
  max-width: 100%;
  height: 430px !important;

  margin: 0 auto !important;
  align-self: center !important;
  justify-self: center !important;

  isolation: isolate;
}


/* ===== TABLET / MOBILE ===== */

@media (max-width: 900px) {

  .hero-inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
    min-height: auto;
    gap: 25px;
    padding: 55px 24px 60px;
  }

  .hero-copy {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .photo-focus {
    grid-column: 1 !important;
    grid-row: 2 !important;
    width: min(100%, 500px) !important;
    height: 430px !important;
  }
}


/* ===== SMALL MOBILE ===== */

@media (max-width: 560px) {

  .hero-inner {
    padding: 40px 18px 50px;
  }

  .hero-copy h1 {
    font-size: 46px;
  }

  .hero-copy p.lede {
    font-size: 16px;
  }

  .photo-focus {
    height: 360px !important;
  }

  .photo-card-main {
    width: 290px;
    height: 245px;
  }

  .photo-card-back {
    width: 170px;
    height: 220px;
  }
}
/* =========================================
   AUTH ROLE SELECTOR - ICON STYLE
   ========================================= */

.role-tabs {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;

  width: 100%;
  padding: 5px;

  box-sizing: border-box;

  background: #e7ecef;
  border-radius: 10px;

  margin-bottom: 20px;
}

.role-tabs button {
  min-width: 0 !important;
  width: 100% !important;

  border: 0 !important;
  background: transparent !important;

  border-radius: 7px !important;

  padding: 14px 8px 12px !important;

  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 6px;

  color: #71838d !important;

  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;

  cursor: pointer;

  transition:
    background .18s ease,
    color .18s ease,
    box-shadow .18s ease;
}

.role-tabs button:hover {
  color: var(--ink) !important;
}

.role-tabs button.on {
  background: #fff !important;
  color: var(--ink) !important;

  box-shadow:
    0 2px 8px rgba(15, 30, 38, .08);
}

.role-icon {
  width: 22px;
  height: 22px;

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

  color: #71838d;
}

.role-tabs button.on .role-icon {
  color: #0d766c;
}

.role-icon svg {
  width: 21px;
  height: 21px;

  fill: none;
  stroke: currentColor;

  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* CREATE ACCOUNT
   Client + Field agent only
*/

.role-tabs.register-mode {
  grid-template-columns: repeat(2, 1fr) !important;
}


/* MOBILE */

@media (max-width: 480px) {

  .role-tabs button {
    padding: 12px 5px 10px !important;
    font-size: 13px;
  }

  .role-icon,
  .role-icon svg {
    width: 20px;
    height: 20px;
  }

}/* Hide Admin on Create Account */
.role-tabs.register-mode [data-role="admin"] {
  display: none !important;
}

/* Create Account = 2 equal tabs */
.role-tabs.register-mode {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

/* Sign in = 3 equal tabs */
.role-tabs:not(.register-mode) {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
/* =========================================================
   CLIENT DASHBOARD
   ========================================================= */

.dashboard-page {
  padding-bottom: 50px;
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 24px;
}

.dashboard-head h2 {
  margin: 6px 0 4px;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.dashboard-stat {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dashboard-stat .n {
  font-size: 30px;
  line-height: 1;
}

.dashboard-stat .l {
  margin-top: 8px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, .8fr);
  gap: 18px;
  align-items: start;
}

.dashboard-recent,
.dashboard-quick {
  min-width: 0;
}

.dashboard-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.dashboard-section-head h3,
.dashboard-quick h3 {
  margin: 5px 0 0;
}

.dashboard-orders {
  border-top: 1px solid var(--line-soft);
}

.dashboard-order {
  display: grid;
  grid-template-columns: 85px minmax(180px, 1fr) minmax(130px, .7fr) auto 90px auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}

.dashboard-order:last-child {
  border-bottom: 0;
}

.dashboard-order-ref {
  font-size: 12px;
}

.dashboard-order-main h4 {
  margin: 0 0 4px;
  font-size: 16px;
}

.dashboard-order-set {
  min-width: 0;
}

.dashboard-order-price {
  text-align: right;
  font-size: 14px;
}

.dashboard-action {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 0;
  margin-top: 8px;
  border: 0;
  border-top: 1px solid var(--line-soft);
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--body);
}

.dashboard-action:hover {
  color: var(--teal);
}

.dashboard-action-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--mist);
  color: var(--teal);
  font-size: 20px;
  font-weight: 600;
}

.dashboard-action span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dashboard-action b {
  font-size: 14px;
}

.dashboard-action small {
  color: var(--ink-3);
  font-size: 12px;
}

@media (max-width: 1050px) {
  .dashboard-order {
    grid-template-columns: 75px minmax(160px, 1fr) auto auto;
  }

  .dashboard-order-set {
    display: none;
  }

  .dashboard-order-price {
    text-align: left;
  }
}

@media (max-width: 800px) {
  .dashboard-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-head .btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .dashboard-order {
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
  }

  .dashboard-order-ref {
    grid-column: 1;
  }

  .dashboard-order-status {
    grid-column: 2;
    grid-row: 1;
  }

  .dashboard-order-main {
    grid-column: 1 / -1;
  }

  .dashboard-order-price {
    grid-column: 1;
  }

  .dashboard-order .btn {
    grid-column: 2;
    grid-row: 4;
  }
}/* =========================================================
   FIELDShot ADMIN — CONSISTENT DASHBOARD UI
   ========================================================= */

/* Admin page background */
body {
  background: #e8eff2;
}

/* Main admin content */
#view {
  width: 100%;
}

/* ---------------------------------------------------------
   PAGE HEAD
   --------------------------------------------------------- */

#view .page-head {
  margin-bottom: 26px;
}

#view .page-head h2 {
  margin: 0;
  font-family: var(--head);
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--ink);
}

#view .page-head p {
  margin: 7px 0 0;
  font-size: 15px;
  color: var(--ink-3);
}

/* ---------------------------------------------------------
   ALL ADMIN PANELS
   --------------------------------------------------------- */

#view .panel {
  background: #fff;
  border: 1px solid #d7e1e5;
  border-radius: 18px;
  box-shadow:
    0 2px 4px rgba(20, 35, 42, .03),
    0 12px 28px rgba(20, 35, 42, .06);
  padding: 22px;
  margin-bottom: 20px;
}

#view .panel:last-child {
  margin-bottom: 0;
}

#view .panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

#view .panel-head h3 {
  margin: 0;
  font-family: var(--head);
  font-size: 23px;
  color: var(--ink);
}

#view .panel-head .muted {
  color: var(--ink-3);
}

/* ---------------------------------------------------------
   STAT CARDS
   --------------------------------------------------------- */

#view .stat-grid {
  gap: 18px;
}

#view .stat {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d7e1e5;
  border-radius: 18px;
  padding: 24px 22px;
  min-height: 118px;
  box-shadow:
    0 2px 4px rgba(20, 35, 42, .03),
    0 10px 24px rgba(20, 35, 42, .05);
}

#view .stat::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -28px;
  top: -28px;
  border-radius: 50%;
  background: rgba(15, 128, 119, .07);
  pointer-events: none;
}

#view .stat .n {
  position: relative;
  z-index: 1;
  font-family: var(--head);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}

#view .stat .l {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  max-width: 150px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Warning cards */
#view .stat.warn {
  border-color: rgba(242,183,5,.25);
}

#view .stat.alert {
  border-color: rgba(190,70,70,.22);
}

/* ---------------------------------------------------------
   TABLE CARDS
   --------------------------------------------------------- */

#view .table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #e0e7ea;
  border-radius: 13px;
}

#view table.data {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
}

#view table.data thead th {
  background: #f4f7f8;
  color: #71838c;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 13px 14px;
  border-bottom: 1px solid #dfe7ea;
  white-space: nowrap;
}

#view table.data tbody td {
  padding: 15px 14px;
  border-bottom: 1px solid #edf1f2;
  color: var(--ink);
  vertical-align: middle;
  font-size: 13px;
}

#view table.data tbody tr:last-child td {
  border-bottom: none;
}

#view table.data tbody tr:hover {
  background: #f9fbfb;
}

/* ---------------------------------------------------------
   BADGES
   --------------------------------------------------------- */

#view .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 25px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #edf2f4;
  color: #667b85;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .04em;
  white-space: nowrap;
}

#view .badge.ok {
  background: #e5f3ef;
  color: #08675e;
}

#view .badge.teal {
  background: #e4f1f0;
  color: #075d57;
}

#view .badge.signal {
  background: #fff4cf;
  color: #8b6500;
}

#view .badge.alert {
  background: #fbe8e8;
  color: #a23838;
}

/* ---------------------------------------------------------
   FORMS
   --------------------------------------------------------- */

#view .field span {
  color: #6f838c;
}

#view input,
#view select,
#view textarea {
  border-color: #d7e2e5;
  background: #fff;
  border-radius: 11px;
}

#view input:focus,
#view select:focus,
#view textarea:focus {
  border-color: #0d8177;
  box-shadow: 0 0 0 3px rgba(13,129,119,.09);
  outline: none;
}

/* ---------------------------------------------------------
   BUTTONS
   --------------------------------------------------------- */

#view .btn {
  border-radius: 10px;
  font-weight: 600;
  transition:
    transform .15s ease,
    box-shadow .15s ease,
    background .15s ease;
}

#view .btn:hover {
  transform: translateY(-1px);
}

#view .btn.signal {
  background: var(--signal);
  color: #111820;
}

#view .btn.danger {
  background: #a83f3f;
  color: #fff;
}

/* ---------------------------------------------------------
   EMPTY STATES
   --------------------------------------------------------- */

#view .empty {
  border: 1px dashed #cbd8dc;
  border-radius: 14px;
  background: #f8fafb;
  padding: 42px 24px;
  text-align: center;
}

#view .empty h4 {
  margin: 0 0 6px;
  font-family: var(--head);
  font-size: 20px;
  color: var(--ink);
}

#view .empty p {
  margin: 0;
  color: var(--ink-3);
}

/* ---------------------------------------------------------
   PHOTO REVIEW
   --------------------------------------------------------- */

#view .photo-grid {
  gap: 12px;
}

#view .photo-slot {
  border-radius: 13px;
  border-color: #d5e0e4;
  overflow: hidden;
  background: #f4f7f8;
}

#view .photo-slot img {
  transition: transform .2s ease;
}

#view .photo-slot:hover img {
  transform: scale(1.025);
}

#view .photo-slot .n {
  border-radius: 0 0 8px 0;
}

/* ---------------------------------------------------------
   SHOT LIST
   --------------------------------------------------------- */

#view .shot-list {
  background: #f6f9fa;
  border: 1px solid #e0e7e9;
  border-radius: 12px;
  padding: 14px 18px 14px 34px;
}

#view .shot-list li {
  padding: 5px 0;
  color: #40535d;
}

/* ---------------------------------------------------------
   NOTICES
   --------------------------------------------------------- */

#view .notice {
  border-radius: 11px;
  border: 1px solid #dbe5e8;
  background: #f5f8f9;
}

#view .notice.info {
  background: #eef6f6;
  border-color: #cde3e1;
}

/* ---------------------------------------------------------
   DASHED DIVIDERS
   --------------------------------------------------------- */

#view .dashed {
  border-top: 1px dashed #d5dfe2;
  margin: 12px 0;
}

/* ---------------------------------------------------------
   PRODUCT CARDS
   --------------------------------------------------------- */

#view .panel .panel-head .right {
  min-width: 110px;
}

#view .panel .panel-head .right .mono {
  color: var(--ink);
}

/* ---------------------------------------------------------
   SETTINGS
   --------------------------------------------------------- */

#view textarea {
  min-height: 120px;
  line-height: 1.55;
  resize: vertical;
}

/* ---------------------------------------------------------
   ADMIN TABS
   --------------------------------------------------------- */

.tabbar {
  background: #fff;
  border-bottom: 1px solid #d5e0e4;
  box-shadow: 0 1px 0 rgba(20,35,42,.02);
}

.tabbar button {
  position: relative;
  background: transparent;
  border: none;
  color: #71838c;
  font-weight: 600;
  transition: color .15s ease;
}

.tabbar button:hover {
  color: var(--ink);
}

.tabbar button.on {
  color: #075e59;
}

.tabbar button.on::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: #0b776f;
  border-radius: 3px 3px 0 0;
}

/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 900px) {

  #view .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #view .grid3 {
    grid-template-columns: 1fr 1fr !important;
  }

}

@media (max-width: 640px) {

  #view .stat-grid {
    grid-template-columns: 1fr !important;
  }

  #view .grid2,
  #view .grid3 {
    grid-template-columns: 1fr !important;
  }

  #view .panel {
    padding: 16px;
    border-radius: 14px;
  }

  #view .page-head h2 {
    font-size: 28px;
  }

  #view table.data {
    min-width: 760px;
  }

}
/* Small checkbox for gate / lockbox permission */
.single-order-page input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  padding: 0 !important;
  margin: 0 !important;
  flex: 0 0 16px !important;
  appearance: auto !important;
  cursor: pointer;
}/* =========================================
   PAYPAL PAYMENT UI
   ========================================= */

.payment-section-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.payment-section-title h4 {
  margin: 0;
}

.payment-section-title p {
  margin: 5px 0 0;
}

.secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--ink-2);
  background: var(--mist);
}

/* Main PayPal card */

.paypal-payment-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  background: #fff;
}

/* Header */

.paypal-payment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.paypal-brand {
  font-family: Arial, sans-serif;
  font-size: 27px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -1px;
  color: #003087;
}

.paypal-secure {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-2);
}

.secure-check {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e8f7f2;
  color: #087f5b;
  font-size: 12px;
  font-weight: 800;
}

.paypal-divider {
  height: 1px;
  background: var(--line-soft);
  margin: 18px 0 22px;
}

.paypal-payment-card h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.2px;
}

.paypal-description {
  margin: 7px 0 20px;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.5;
  max-width: 540px;
}

/* Amount */

.paypal-amount-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--mist);
}

.paypal-amount-box span {
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.paypal-amount-box small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: var(--ink-3);
}

.paypal-amount-box strong {
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
}

/* Benefits */

.paypal-benefits {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.paypal-benefits > div {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--ink-2);
}

.paypal-benefits > div > span:first-child {
  color: #087f5b;
  font-weight: 800;
}

/* Bottom buttons */

.payment-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.payment-actions .btn {
  flex: 1;
}

.paypal-pay-button {
  font-weight: 700;
}

/* Mobile */

@media (max-width: 820px) {

  .payment-section-title {
    flex-direction: column;
  }

  .paypal-payment-card {
    padding: 18px;
  }

  .paypal-amount-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .paypal-amount-box strong {
    font-size: 26px;
  }

  .payment-actions {
    flex-direction: column;
  }

}/* ============================================================
   FieldShot premium photo upload modal
   ============================================================ */

.upload-modal-intro {
  padding: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.upload-table-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 14px 22px;
  background: #f5f8fa;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  color: #516274;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}

.upload-table-head > div:last-child {
  padding-left: 10px;
}

.upload-requirement-list {
  border: 1px solid var(--line);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}

.upload-requirement-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  min-height: 175px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.upload-requirement-row:last-child {
  border-bottom: 0;
}

.upload-requirement-info {
  display: grid;
  grid-template-columns: 48px 230px 1fr;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.upload-photo-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #d5dfe5;
  border-radius: 10px;
  background: #fff;
  color: #172332;
  font-size: 16px;
  font-weight: 700;
}

.upload-example-image {
  width: 230px;
  height: 130px;
  overflow: hidden;
  border-radius: 8px;
  background: #eef2f4;
}

.upload-example-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.upload-requirement-text {
  min-width: 0;
}

.upload-requirement-text h4 {
  margin: 0 0 8px;
  color: #111c2b;
  font-size: 19px;
  line-height: 1.2;
}

.upload-requirement-text p {
  margin: 0;
  color: #697786;
  font-size: 15px;
  line-height: 1.45;
}

.upload-user-photo {
  position: relative;
  min-height: 128px;
  border: 1px dashed #cbd5dc;
  border-radius: 10px;
  background: #fbfcfd;
  display: flex;
  align-items: center;
  padding: 16px;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
  overflow: hidden;
}

.upload-user-photo:hover {
  border-color: #179b8d;
  background: #f7fbfa;
}

.upload-user-photo.uploaded {
  gap: 16px;
  border-style: solid;
}

.upload-user-preview {
  width: 130px;
  height: 96px;
  flex: 0 0 130px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.upload-success-check {
  position: absolute;
  top: 10px;
  left: 134px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #16a878;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

.upload-success-check svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.upload-user-info {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.upload-user-info strong {
  color: #182333;
  font-size: 15px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-user-info span {
  color: #72808d;
  font-size: 14px;
}

.upload-replace-btn {
  flex: 0 0 auto;
  min-width: 108px;
  height: 46px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #d4dee4;
  border-radius: 9px;
  background: #fff;
  color: #172332;
  font-size: 14px;
  font-weight: 700;
}

.upload-replace-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.upload-empty-icon {
  width: 56px;
  height: 56px;
  margin-left: auto;
  margin-right: 14px;
  display: grid;
  place-items: center;
  border: 1px solid #d5dfe5;
  border-radius: 12px;
  background: #fff;
}

.upload-empty-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: #182333;
  stroke-width: 1.8;
}

.upload-empty-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.upload-empty-text strong {
  color: #172332;
  font-size: 16px;
  font-weight: 700;
}

.upload-empty-text span {
  color: #72808d;
  font-size: 14px;
}

.upload-progress-box {
  margin-top: 18px;
}

.upload-progress-complete,
.upload-progress-incomplete {
  min-height: 70px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 10px;
}

.upload-progress-complete {
  background: #eefaf7;
}

.upload-progress-incomplete {
  background: #f5f8fa;
}

.upload-progress-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #159d8b;
}

.upload-progress-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.upload-progress-complete strong,
.upload-progress-incomplete strong {
  display: block;
  color: #172332;
  font-size: 15px;
}

.upload-progress-complete span,
.upload-progress-incomplete span {
  display: block;
  margin-top: 3px;
  color: #71808c;
  font-size: 13px;
}

@media (max-width: 900px) {

  .upload-requirement-row {
    grid-template-columns: 1fr;
  }

  .upload-table-head {
    display: none;
  }

  .upload-requirement-info {
    grid-template-columns: 42px 170px 1fr;
  }

  .upload-example-image {
    width: 170px;
    height: 105px;
  }

}

@media (max-width: 620px) {

  .upload-requirement-info {
    grid-template-columns: 42px 1fr;
  }

  .upload-example-image {
    width: 100%;
    height: 150px;
    grid-column: 2;
  }

  .upload-requirement-text {
    grid-column: 2;
  }

  .upload-user-photo {
    min-height: 115px;
  }

  .upload-user-preview {
    width: 100px;
    height: 80px;
    flex-basis: 100px;
  }

  .upload-success-check {
    left: 104px;
  }

  .upload-replace-btn {
    min-width: 90px;
    padding: 0 10px;
  }

}
/* ============================================================
   FIELDSHOT PHOTO UPLOAD UI
   Final override
   ============================================================ */

.fs-upload-modal {
  width: 100%;
  box-sizing: border-box;
}

.fs-upload-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 28px;
  padding: 0 18px 12px;
  color: #60757c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .7px;
}

.fs-upload-list {
  border: 1px solid #e2e9e9;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.fs-photo-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 150px;
  padding: 18px;
  border-bottom: 1px solid #e7eeee;
  box-sizing: border-box;
}

.fs-photo-row:last-child {
  border-bottom: 0;
}

.fs-requirement {
  min-width: 0;
  display: grid;
  grid-template-columns: 44px 150px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.fs-photo-number {
  width: 42px;
  height: 42px;
  border: 1px solid #d7e1e1;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #243940;
  font-size: 16px;
  font-weight: 800;
  box-sizing: border-box;
}

.fs-example {
  width: 150px;
  height: 102px;
  border-radius: 9px;
  overflow: hidden;
  background: #f2f5f5;
  flex-shrink: 0;
}

.fs-example img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fs-requirement-copy {
  min-width: 0;
}

.fs-requirement-copy h4 {
  margin: 0 0 7px;
  font-size: 18px;
  line-height: 1.15;
  color: #172d34;
}

.fs-requirement-copy p {
  margin: 0;
  color: #73868b;
  font-size: 14px;
  line-height: 1.5;
}

.fs-photo-upload {
  position: relative;
  width: 100%;
  min-height: 108px;
  border: 1px dashed #c8d5d5;
  border-radius: 12px;
  background: #fcfefe;
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s ease,
              background .15s ease,
              box-shadow .15s ease;
}

.fs-photo-upload:hover {
  border-color: #18877d;
  background: #f8fcfb;
  box-shadow: 0 0 0 3px rgba(24,135,125,.06);
}

.fs-photo-empty {
  gap: 16px;
}

.fs-add-photo-icon {
  width: 54px;
  height: 54px;
  border: 1px solid #d3dede;
  border-radius: 12px;
  background: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 54px;
}

.fs-add-photo-icon svg {
  width: 25px !important;
  height: 25px !important;
  max-width: 25px !important;
  max-height: 25px !important;
  display: block;
  fill: none;
  stroke: #263d44;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fs-add-photo-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.fs-add-photo-text strong {
  color: #182e35;
  font-size: 15px;
  line-height: 1.2;
}

.fs-add-photo-text span {
  color: #819196;
  font-size: 13px;
}

.fs-photo-upload input[type="file"] {
  display: none !important;
}

.fs-photo-uploaded {
  padding: 10px;
  justify-content: flex-start;
  gap: 12px;
  border-style: solid;
  border-color: #d8e5e3;
  background: #fff;
}

.fs-photo-preview {
  width: 96px;
  height: 82px;
  border-radius: 8px;
  overflow: hidden;
  background: #eef3f3;
  flex: 0 0 96px;
}

.fs-photo-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fs-uploaded-info {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fs-uploaded-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e3f5ef;
  color: #08766c;
  display: grid;
  place-items: center;
  flex: 0 0 28px;
}

.fs-uploaded-check svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fs-uploaded-file {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fs-uploaded-file strong {
  display: block;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #263b42;
  font-size: 12px;
}

.fs-uploaded-file span {
  color: #819196;
  font-size: 11px;
}

.fs-replace-button {
  min-width: 82px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid #8bc1ba;
  border-radius: 8px;
  background: #fff;
  color: #08766c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  box-sizing: border-box;
  flex: 0 0 auto;
}

.fs-replace-button svg {
  width: 15px !important;
  height: 15px !important;
  max-width: 15px !important;
  max-height: 15px !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fs-photo-uploaded:hover .fs-replace-button {
  background: #f1faf8;
  border-color: #08766c;
}

.fs-upload-progress {
  margin-top: 14px;
}

.fs-progress-complete,
.fs-progress-incomplete {
  min-height: 54px;
  border-radius: 10px;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
}

.fs-progress-complete {
  border: 1px solid #cce9df;
  background: #f1fbf8;
}

.fs-progress-incomplete {
  border: 1px solid #e2e9e9;
  background: #fafcfc;
}

.fs-progress-check {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #dff4ec;
  color: #08766c;
  display: grid;
  place-items: center;
  flex: 0 0 30px;
}

.fs-progress-check svg {
  width: 17px !important;
  height: 17px !important;
  max-width: 17px !important;
  max-height: 17px !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fs-progress-complete strong,
.fs-progress-incomplete strong {
  display: block;
  font-size: 12px;
  color: #29454c;
}

.fs-progress-complete span,
.fs-progress-incomplete span {
  display: block;
  margin-top: 2px;
  color: #7b8e93;
  font-size: 11px;
}

@media (max-width: 900px) {

  .fs-upload-head,
  .fs-photo-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fs-upload-head {
    display: none;
  }

  .fs-photo-row {
    padding: 16px;
  }

  .fs-photo-upload {
    min-height: 100px;
  }
}

@media (max-width: 620px) {

  .fs-requirement {
    grid-template-columns: 40px 100px minmax(0, 1fr);
    gap: 10px;
  }

  .fs-photo-number {
    width: 38px;
    height: 38px;
  }

  .fs-example {
    width: 100px;
    height: 75px;
  }

  .fs-requirement-copy h4 {
    font-size: 15px;
  }

  .fs-requirement-copy p {
    font-size: 12px;
  }

  .fs-photo-uploaded {
    flex-wrap: wrap;
  }

  .fs-uploaded-info {
    min-width: 150px;
  }
}

/* Kill any old upload styles that caused the giant camera */
.upload-user-photo svg,
.upload-empty-icon svg,
.photo-add-overlay svg {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
}

.upload-user-photo,
.upload-empty-icon,
.photo-add-overlay {
  box-sizing: border-box;
}


.fs-photo-actions {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
}

.fs-view-photo,
.fs-replace-button {
  height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.fs-view-photo {
  border: 1px solid #d6e1e1;
  background: #fff;
  color: #344c53;
}

.fs-view-photo:hover {
  background: #f4f8f8;
  border-color: #9bb7b5;
}

.fs-view-photo svg {
  width: 15px !important;
  height: 15px !important;
  max-width: 15px !important;
  max-height: 15px !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fs-replace-button {
  border: 1px solid #8bc1ba;
  background: #fff;
  color: #08766c;
}

.fs-replace-button:hover {
  background: #f1faf8;
  border-color: #08766c;
}

.fs-photo-viewer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.fs-photo-viewer img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 68vh;
  object-fit: contain;
  border-radius: 12px;
  background: #f2f5f5;
}

.fs-photo-viewer-info {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e1e9e9;
  border-radius: 10px;
  background: #fafcfc;
  box-sizing: border-box;
}

.fs-photo-viewer-info strong {
  display: block;
  color: #20383f;
  font-size: 14px;
}

.fs-photo-viewer-info span {
  display: block;
  margin-top: 4px;
  color: #7c8e93;
  font-size: 12px;
}


/* =========================================================
   FIELDSHOT — UPLOADED PHOTO ACTIONS
   ========================================================= */

.fs-photo-actions {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 10px !important;
}

.fs-view-photo,
.fs-replace-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 36px !important;
  padding: 8px 14px !important;
  border-radius: 9px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
}

.fs-view-photo {
  border: 1px solid rgba(20, 35, 45, .18) !important;
  background: #fff !important;
  color: #18252d !important;
}

.fs-view-photo:hover {
  background: #f2f6f8 !important;
}

.fs-replace-button {
  border: 1px solid #18252d !important;
  background: #18252d !important;
  color: #fff !important;
}

.fs-replace-button:hover {
  opacity: .9 !important;
}


/* =========================================================
   PHOTO VIEWER
   ========================================================= */

.fs-photo-viewer {
  width: min(900px, 92vw) !important;
  max-height: 90vh !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: 0 24px 80px rgba(0,0,0,.25) !important;
}

.fs-photo-viewer-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  padding: 16px 20px !important;
  border-bottom: 1px solid rgba(20,35,45,.10) !important;
}

.fs-photo-viewer-head strong {
  display: block !important;
  font-size: 15px !important;
  color: #18252d !important;
}

.fs-photo-viewer-head span {
  display: block !important;
  margin-top: 3px !important;
  font-size: 12px !important;
  color: #71808a !important;
}

.fs-photo-viewer-close {
  width: 34px !important;
  height: 34px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #eef2f4 !important;
  color: #18252d !important;
  font-size: 23px !important;
  line-height: 34px !important;
  cursor: pointer !important;
}

.fs-photo-viewer-image {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 300px !important;
  max-height: calc(90vh - 90px) !important;
  padding: 20px !important;
  background: #f4f7f8 !important;
  overflow: auto !important;
}

.fs-photo-viewer-image img {
  display: block !important;
  width: auto !important;
  max-width: 100% !important;
  max-height: calc(90vh - 140px) !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 10px !important;
}

@media (max-width: 640px) {
  .fs-photo-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .fs-view-photo,
  .fs-replace-button {
    width: 100% !important;
  }

  .fs-photo-viewer {
    width: 96vw !important;
    border-radius: 14px !important;
  }
}


/* =========================================================
   FIELDSHOT PHOTO VIEWER - FINAL
   ========================================================= */

.fs-photo-viewer-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px !important;
  background: rgba(10, 18, 24, .72) !important;
  box-sizing: border-box !important;
}

.fs-photo-viewer {
  position: relative !important;
  width: min(900px, 94vw) !important;
  max-height: 92vh !important;
  overflow: hidden !important;
  background: #fff !important;
  border-radius: 18px !important;
  box-shadow: 0 30px 100px rgba(0,0,0,.35) !important;
}

.fs-photo-viewer-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 16px 20px !important;
  border-bottom: 1px solid rgba(20,35,45,.1) !important;
}

.fs-photo-viewer-head strong {
  display: block !important;
  font-size: 15px !important;
}

.fs-photo-viewer-head span {
  display: block !important;
  margin-top: 3px !important;
  font-size: 12px !important;
  opacity: .65 !important;
}

.fs-photo-viewer-close {
  width: 36px !important;
  height: 36px !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #eef2f4 !important;
  color: #18252d !important;
  font-size: 24px !important;
  cursor: pointer !important;
}

.fs-photo-viewer-image {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px !important;
  min-height: 300px !important;
  max-height: calc(92vh - 90px) !important;
  overflow: auto !important;
  background: #f4f7f8 !important;
}

.fs-photo-viewer-image img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: calc(92vh - 140px) !important;
  object-fit: contain !important;
  border-radius: 10px !important;
}


/* =========================================================
   FIELDSHOT DIRECT PHOTO VIEWER
   ========================================================= */

#fieldshotPhotoViewer.fs-photo-viewer-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483647 !important;

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

  width: 100vw !important;
  height: 100vh !important;

  padding: 24px !important;
  box-sizing: border-box !important;

  background: rgba(8, 15, 20, .82) !important;
}

#fieldshotPhotoViewer .fs-direct-photo-viewer {
  position: relative !important;

  width: min(1100px, 94vw) !important;
  height: min(850px, 92vh) !important;

  display: flex !important;
  flex-direction: column !important;

  overflow: hidden !important;

  background: #fff !important;

  border-radius: 18px !important;

  box-shadow:
    0 30px 100px rgba(0, 0, 0, .40) !important;
}

#fieldshotPhotoViewer .fs-direct-photo-header {
  flex: 0 0 auto !important;

  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;

  min-height: 72px !important;

  padding: 14px 20px !important;

  box-sizing: border-box !important;

  border-bottom:
    1px solid rgba(20, 35, 45, .10) !important;

  background: #fff !important;
}

#fieldshotPhotoViewer .fs-direct-photo-label {
  font-size: 10px !important;
  font-weight: 800 !important;

  letter-spacing: .18em !important;

  color: #73818a !important;
}

#fieldshotPhotoViewer .fs-direct-photo-name {
  margin-top: 3px !important;

  font-size: 15px !important;
  font-weight: 700 !important;

  color: #18252d !important;

  max-width: 75vw !important;

  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

#fieldshotPhotoViewer .fs-direct-photo-close {
  flex: 0 0 auto !important;

  width: 38px !important;
  height: 38px !important;

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

  padding: 0 !important;

  border: 0 !important;
  border-radius: 50% !important;

  background: #eef2f4 !important;

  color: #18252d !important;

  font-size: 25px !important;
  line-height: 1 !important;

  cursor: pointer !important;
}

#fieldshotPhotoViewer .fs-direct-photo-close:hover {
  background: #e1e7ea !important;
}

#fieldshotPhotoViewer .fs-direct-photo-body {
  flex: 1 1 auto !important;

  min-height: 0 !important;

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

  padding: 24px !important;

  box-sizing: border-box !important;

  overflow: auto !important;

  background: #f2f5f6 !important;
}

#fieldshotPhotoViewer .fs-direct-photo-image {
  display: block !important;

  width: auto !important;
  height: auto !important;

  max-width: 100% !important;
  max-height: 100% !important;

  object-fit: contain !important;

  border-radius: 10px !important;

  box-shadow:
    0 10px 35px rgba(0, 0, 0, .16) !important;
}

@media (max-width: 640px) {

  #fieldshotPhotoViewer.fs-photo-viewer-overlay {
    padding: 10px !important;
  }

  #fieldshotPhotoViewer .fs-direct-photo-viewer {
    width: 96vw !important;
    height: 94vh !important;
    border-radius: 14px !important;
  }

  #fieldshotPhotoViewer .fs-direct-photo-header {
    min-height: 62px !important;
    padding: 12px 14px !important;
  }

  #fieldshotPhotoViewer .fs-direct-photo-body {
    padding: 12px !important;
  }

}


/* =========================================================
   GOOGLE ADDRESS AUTOCOMPLETE
   ========================================================= */

.fieldshot-google-address {
  width: 100%;
  position: relative;
}

.fieldshot-google-address
  gmp-place-autocomplete {
  width: 100%;
  display: block;
}

.fieldshot-google-address
  gmp-place-autocomplete::part(input) {
  width: 100%;
}

/* =========================================================
   FIELDSHOT — GOOGLE ADDRESS AUTOCOMPLETE
   ========================================================= */

.fieldshot-google-address {
  width: 100%;
  position: relative;
  min-width: 0;
}

/* Google autocomplete component */
.fieldshot-google-address gmp-place-autocomplete {
  display: block;
  width: 100%;
  min-height: 54px;

  box-sizing: border-box;

  background: #ffffff;
  border: 1px solid #cfd8dc;
  border-radius: 10px;

  color: #1f2933;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;

  color-scheme: light;

  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

/* Focused Google field */
.fieldshot-google-address gmp-place-autocomplete:focus-within {
  border-color: #15966f;

  box-shadow:
    0 0 0 3px rgba(21, 150, 111, 0.10);
}

/* Hover */
.fieldshot-google-address gmp-place-autocomplete:hover {
  border-color: #aebcc3;
}

/* Google input styling */
.fieldshot-google-address
  gmp-place-autocomplete::part(input) {
  width: 100%;
  min-height: 52px;

  box-sizing: border-box;

  padding: 0 16px;

  background: transparent;
  border: 0;
  outline: 0;

  color: #1f2933;

  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
}

/* Placeholder */
.fieldshot-google-address
  gmp-place-autocomplete::part(input)::placeholder {
  color: #9aa8b0;
  opacity: 1;
}

/* Google prediction dropdown */
.fieldshot-google-address
  gmp-place-autocomplete::part(prediction-list) {
  margin-top: 8px;

  background: #ffffff;

  border: 1px solid #dce4e8;
  border-radius: 12px;

  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.12);

  overflow: hidden;
}

/* Make sure the autocomplete stays above the other fields */
.fieldshot-google-address
  gmp-place-autocomplete {
  position: relative;
  z-index: 50;
}

/* Mobile */
@media (max-width: 700px) {
  .fieldshot-google-address
    gmp-place-autocomplete {
    min-height: 50px;
  }

  .fieldshot-google-address
    gmp-place-autocomplete::part(input) {
    min-height: 48px;
    font-size: 14px;
    padding: 0 14px;
  }
}
html,body,button,input,select,textarea,h1,h2,h3,h4,h5,h6{font-family:"Roboto Condensed",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif!important;}

/* Slightly larger typography */
body {
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto Condensed", sans-serif !important;
}

.page-head h2 {
  font-size: 30px;
  font-weight: 700;
}

.page-head p {
  font-size: 16px;
}

.nav-tabs button,
.topbar,
.btn {
  font-size: 16px;
}


/* Slightly larger typography */
body{font-size:16px}.page-head h2{font-size:30px;font-weight:700}.page-head p{font-size:16px}.nav-tabs button,.topbar,.btn{font-size:16px}

.fs-create-order{margin-top:12px}

/* Client dashboard premium spacing */
.fs-client-dashboard .page-head{margin-bottom:28px}.fs-client-dashboard .page-head>div{margin-bottom:4px}.fs-client-dashboard .fs-create-order{margin-top:18px}.fs-client-dashboard .fs-stat-grid{margin-top:30px}

/* Client dashboard hero spacing */
.fs-client-hero{padding-bottom:34px}.fs-client-hero p{margin-bottom:22px}.fs-client-hero #newOrderBtn{margin-top:8px}.fs-client-hero + .stat-grid{margin-top:34px!important}
