/* =====================================================================
   LEGAL PAGES + CONTACT — shared design system
   Used by: privacy-policy.php, terms-conditions.php, refund-policy.php,
            delivery-setup-policy.php, contact.php
   Prefix: "lg-"
===================================================================== */

.lg-page { background: var(--bg-color-main); }

/* ---------- Meta bar (last updated / jurisdiction) ---------- */
.lg-meta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.lg-meta-pill {
  background: #fff;
  border: 1px solid var(--ink-07);
  box-shadow: var(--sh-sm);
  border-radius: 30px;
  padding: 9px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-70);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lg-meta-pill i { color: var(--red); }
.lg-meta-pill strong { color: var(--ink); font-weight: 700; }

/* ---------- Shell: TOC sidebar + article ---------- */
.lg-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 950px) {
  .lg-shell { grid-template-columns: 1fr; padding: 40px 20px 70px; }
}

.lg-toc {
  position: sticky;
  top: 110px;
}

@media (max-width: 950px) { .lg-toc { position: static; margin-bottom: 20px; } }

.lg-toc-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-45);
  margin-bottom: 14px;
  display: block;
}

.lg-toc nav {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--ink-07);
}

.lg-toc a {
  padding: 9px 0 9px 16px;
  font-size: 0.86rem;
  color: var(--ink-45);
  text-decoration: none;
  font-weight: 600;
  border-left: 2px solid transparent;
  margin-left: -2px;
  transition: color .2s ease, border-color .2s ease;
}

.lg-toc a:hover { color: var(--ink); }

.lg-toc a.is-active {
  color: var(--red);
  border-left-color: var(--red);
}

.lg-toc-contact {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--ink-07);
}

.lg-toc-contact p {
  font-size: 0.82rem;
  color: var(--ink-45);
  margin: 0 0 10px;
}

.lg-toc-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
}

/* ---------- Article ---------- */
.lg-article {
  background: #fff;
  border: 1px solid var(--ink-07);
  border-radius: 24px;
  padding: 44px;
  box-shadow: var(--sh-sm);
}

@media (max-width: 575px) { .lg-article { padding: 28px 22px; } }

.lg-intro {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--ink-70);
  margin: 0 0 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--ink-07);
}

.lg-section { margin-bottom: 38px; scroll-margin-top: 110px; }
.lg-section:last-child { margin-bottom: 0; }

.lg-section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.lg-section-num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--warm);
  color: var(--red);
  font-weight: 800;
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lg-section h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  text-transform: none;
  margin: 0;
}

.lg-section p {
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--ink-70);
  text-transform: none;
  margin: 0 0 14px;
}

.lg-section ul,
.lg-section ol {
  margin: 0 0 14px;
  padding-left: 22px;
}

.lg-section li {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-70);
  margin-bottom: 8px;
}

.lg-section strong { color: var(--ink); }

.lg-section a { color: var(--red); font-weight: 600; text-decoration: underline; }

/* ---------- Callouts ---------- */
.lg-callout {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  margin: 18px 0;
}

.lg-callout i { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

.lg-callout p { margin: 0; font-size: 0.88rem; line-height: 1.65; }

.lg-callout.info { background: #eef6ff; }
.lg-callout.info i { color: #1682d4; }
.lg-callout.info p { color: #114b73; }

.lg-callout.warn { background: #fff6e9; }
.lg-callout.warn i { color: #b4790c; }
.lg-callout.warn p { color: #6b4a08; }

/* ---------- Refund table ---------- */
.lg-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0 20px;
  font-size: 0.88rem;
}

.lg-table th {
  text-align: left;
  background: var(--warm);
  color: var(--ink);
  font-weight: 700;
  padding: 12px 16px;
  border: 1px solid var(--ink-07);
}

.lg-table td {
  padding: 12px 16px;
  border: 1px solid var(--ink-07);
  color: var(--ink-70);
}

/* ---------- Contact block at end of every legal doc ---------- */
.lg-contact-box {
  margin-top: 10px;
  background: var(--warm);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
}

.lg-contact-box .txt p { margin: 0; color: var(--ink-70); font-size: 0.9rem; }
.lg-contact-box .txt strong { color: var(--ink); display: block; margin-bottom: 4px; font-size: 1rem; }

.lg-contact-box .actions { display: flex; gap: 10px; flex-wrap: wrap; }

.lg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
  white-space: nowrap;
}

.lg-btn.primary {
  background: var(--red-grad, linear-gradient(135deg, #ff3e6c, #ff4643));
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 62, 108, .25);
}

.lg-btn.outline {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--ink-15);
}

.lg-btn:hover { opacity: .92; color: inherit; }

/* ---------- Related policies strip ---------- */
.lg-related {
  max-width: 1180px;
  margin: 0 auto 90px;
  padding: 0 24px;
}

.lg-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 850px) { .lg-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .lg-related-grid { grid-template-columns: 1fr; } }

.lg-related-card {
  background: #fff;
  border: 1px solid var(--ink-07);
  border-radius: 16px;
  padding: 18px 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.lg-related-card:hover { transform: translateY(-3px); box-shadow: var(--sh-sm); }

.lg-related-card i:first-child {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--warm);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lg-related-card span {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
}

.lg-related-card.is-current {
  border-color: var(--red);
  background: #fff5f7;
}

/* ---------- Back to top ---------- */
.lg-back-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 40;
  text-decoration: none;
}

.lg-back-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.lg-back-top:hover { color: #fff; opacity: .85; }

/* =====================================================================
   CONTACT PAGE
===================================================================== */
.lg-contact-grid {
  max-width: 1180px;
  margin: 0px auto 0;
  padding: 0 24px 90px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 900px) { .lg-contact-grid { grid-template-columns: 1fr; margin-top: -40px; } }

.lg-info-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--sh-lg);
  padding: 32px 28px;
}

.lg-info-card h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  text-transform: none;
  margin: 0 0 22px;
}

.lg-info-row {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.lg-info-row:last-of-type { margin-bottom: 0; }

.lg-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--warm);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.lg-info-row h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: none;
  margin: 0 0 3px;
}

.lg-info-row p {
  font-size: 0.86rem;
  color: var(--ink-45);
  margin: 0;
  text-transform: none;
  line-height: 1.55;
}

.lg-info-row a { color: inherit; text-decoration: none; }

.lg-social-row {
  display: flex;
  gap: 10px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--ink-07);
}

.lg-social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--warm);
  color: var(--ink-70);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.lg-social-row a:hover { background: var(--red); color: #fff; }

.lg-form-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--sh-lg);
  padding: 36px;
}

@media (max-width: 575px) { .lg-form-card { padding: 24px 20px; } }

.lg-form-card h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  text-transform: none;
  margin: 0 0 6px;
}

.lg-form-card > p {
  font-size: 0.88rem;
  color: var(--ink-45);
  margin: 0 0 26px;
}

.lg-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 575px) { .lg-form-row { grid-template-columns: 1fr; } }

.lg-form-group { margin-bottom: 18px; }

.lg-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-45);
  font-weight: 700;
  margin-bottom: 6px;
}

.lg-input,
.lg-textarea,
.lg-select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--ink-15);
  border-radius: 12px;
  background: var(--warm);
  color: var(--ink);
  font-size: 0.92rem;
  font-family: inherit;
  transition: border-color .2s ease, background .2s ease;
}

.lg-input:focus,
.lg-textarea:focus,
.lg-select:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
}

.lg-textarea { resize: vertical; min-height: 130px; }

.lg-field-error {
  color: #d64545;
  font-size: 0.76rem;
  margin-top: 5px;
  display: block;
  min-height: 16px;
}

.lg-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  justify-content: center;
  background: var(--red-grad, linear-gradient(135deg, #ff3e6c, #ff4643));
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 14px 30px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(255, 62, 108, .28);
}

.lg-submit-btn:hover { opacity: .92; }

.lg-form-msg {
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.lg-form-msg.success { background: #e5f7ef; color: #0f5132; }
.lg-form-msg.error { background: #fdeaea; color: #8a1f1f; }
.lg-form-msg ul { margin: 0; padding-left: 18px; }

.lg-map {
  max-width: 1180px;
  margin: 0 auto 90px;
  padding: 0 24px;
}

.lg-map-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  height: 340px;
}

.lg-map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Quick self-serve links strip ---------- */
.lg-quick-wrap {
  max-width: 1180px;
  margin: -34px auto 0;
  margin-bottom: 26px;
  padding: 0 24px;
  position: relative;
  z-index: 3;
}

.lg-quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 700px) { .lg-quick-strip { grid-template-columns: 1fr; } }

.lg-quick-card {
  background: #fff;
  border: 1px solid var(--ink-07);
  box-shadow: var(--sh-sm);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.lg-quick-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }

.lg-quick-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--warm);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.lg-quick-card .txt strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.lg-quick-card .txt span {
  font-size: 0.78rem;
  color: var(--ink-45);
}

/* ---------- SLA / response-time badge ---------- */
.lg-sla-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e5f7ef;
  color: #16a37a;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 7px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}

/* =====================================================================
   SUPPORT / HELP CENTER PAGE
   Scoped with the "supp-" prefix — safe to load only on support.php
===================================================================== */

.supp-page {
  background: var(--bg-color-main);
}

/* ---------- Hero search bar (sits inside saas-hero__extra) ---------- */
.supp-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 50px;
  padding: 6px 6px 6px 22px;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--sh-lg);
}

.supp-search i {
  color: var(--ink-45);
  font-size: 0.95rem;
}

.supp-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.92rem;
  padding: 10px 0;
  color: var(--ink);
  background: transparent;
  font-family: inherit;
}

.supp-search input::placeholder { color: var(--ink-45); }

.supp-search button {
  border: none;
  background: var(--red-grad, linear-gradient(135deg, #ff3e6c, #ff4643));
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 12px 22px;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
}

.supp-search button:hover { opacity: .92; }

/* ---------- Shared section wrapper ---------- */
.supp-section {
  padding: 70px 0;
}

.supp-section + .supp-section {
  border-top: 1px solid var(--ink-07);
}

.supp-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.supp-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.supp-section-head h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 800;
  color: var(--ink);
  text-transform: none;
  margin: 0 0 10px;
}

.supp-section-head p {
  color: var(--ink-45);
  font-size: 0.95rem;
  margin: 0;
  text-transform: none;
}

/* =====================================================================
   CONTACT CHANNELS STRIP
===================================================================== */
.supp-channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 991px) { .supp-channels { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .supp-channels { grid-template-columns: 1fr; } }

.supp-channel-card {
  background: #fff;
  border: 1px solid var(--ink-07);
  border-radius: 20px;
  padding: 26px 22px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.supp-channel-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}

.supp-channel-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #fff;
}

.supp-channel-card:nth-child(1) .supp-channel-icon { background: linear-gradient(135deg, #16a37a, #1aab8a); }
.supp-channel-card:nth-child(2) .supp-channel-icon { background: linear-gradient(135deg, #ff3e6c, #ff4643); }
.supp-channel-card:nth-child(3) .supp-channel-icon { background: linear-gradient(135deg, #03a4ed, #5cc2f6); }
.supp-channel-card:nth-child(4) .supp-channel-icon { background: linear-gradient(135deg, #cfab3e, #e8c568); }

.supp-channel-card h3 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--ink);
  text-transform: none;
  margin: 0;
}

.supp-channel-card .val {
  font-size: 0.76rem;
  color: var(--ink-70);
  font-weight: 600;
  margin: 0;
  word-break: break-word;
}

.supp-channel-card .meta {
  font-size: 0.76rem;
  color: var(--ink-45);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.supp-channel-card .meta .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a37a;
  flex-shrink: 0;
}

/* =====================================================================
   BROWSE BY TOPIC
===================================================================== */
.supp-topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 850px) { .supp-topics { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .supp-topics { grid-template-columns: 1fr; } }

.supp-topic-card {
  background: #fff;
  border: 1px solid var(--ink-07);
  border-radius: 20px;
  padding: 28px 24px;
  text-decoration: none;
  display: block;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.supp-topic-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}

.supp-topic-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--red-bg, #fff0f3);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.supp-topic-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  text-transform: none;
  margin: 0 0 8px;
}

.supp-topic-card p {
  font-size: 0.86rem;
  color: var(--ink-45);
  margin: 0 0 14px;
  text-transform: none;
  line-height: 1.55;
}

.supp-topic-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.supp-topic-card:hover .supp-topic-link { gap: 10px; }
.supp-topic-link i { font-size: 0.75rem; transition: transform .2s ease; }

/* =====================================================================
   POPULAR QUESTIONS (condensed accordion)
===================================================================== */
.supp-faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.supp-faq-item {
  background: #fff;
  border: 1px solid var(--ink-07);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
}

.supp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
}

.supp-faq-q .chev {
  flex-shrink: 0;
  color: var(--ink-45);
  transition: transform .25s ease;
}

.supp-faq-item.is-open .supp-faq-q .chev { transform: rotate(180deg); color: var(--red); }

.supp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.supp-faq-item.is-open .supp-faq-a { max-height: 260px; }

.supp-faq-a-inner {
  padding: 0 22px 20px;
  font-size: 0.9rem;
  color: var(--ink-70);
  line-height: 1.65;
}

.supp-faq-more {
  text-align: center;
  margin-top: 28px;
}

.supp-faq-more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.supp-faq-more a:hover { border-color: var(--red); }

/* =====================================================================
   TICKET FORM + ASIDE
===================================================================== */
.supp-ticket-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}

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

.supp-ticket-card {
  background: #fff;
  border: 1px solid var(--ink-07);
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--sh-sm);
}

.supp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 575px) { .supp-form-row { grid-template-columns: 1fr; } }

.supp-form-group { margin-bottom: 18px; }

.supp-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-45);
  font-weight: 700;
  margin-bottom: 6px;
}

.supp-input,
.supp-select,
.supp-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--ink-15);
  border-radius: 12px;
  background: var(--warm);
  color: var(--ink);
  font-size: 0.92rem;
  font-family: inherit;
  transition: border-color .2s ease, background .2s ease;
}

.supp-input:focus,
.supp-select:focus,
.supp-textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
}

.supp-textarea { resize: vertical; min-height: 130px; }

.supp-field-error {
  color: #d64545;
  font-size: 0.76rem;
  margin-top: 5px;
  display: block;
  min-height: 16px;
}

.supp-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: var(--red-grad, linear-gradient(135deg, #ff3e6c, #ff4643));
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 14px 30px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(255, 62, 108, .28);
}

.supp-submit-btn:hover { opacity: .92; }

.supp-form-msg {
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.supp-form-msg.success { background: #e5f7ef; color: #0f5132; }
.supp-form-msg.error { background: #fdeaea; color: #8a1f1f; }
.supp-form-msg ul { margin: 0; padding-left: 18px; }

/* ---------- Aside ---------- */
.supp-aside-card {
  background: #fff;
  border: 1px solid var(--ink-07);
  border-radius: 20px;
  padding: 26px;
  margin-bottom: 20px;
}

.supp-aside-card h4 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ink);
  text-transform: none;
  margin: 0 0 14px;
}

.supp-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--ink-70);
  padding: 8px 0;
  border-bottom: 1px solid var(--ink-07);
}

.supp-hours-row:last-child { border-bottom: none; }
.supp-hours-row strong { color: var(--ink); font-weight: 700; }

.supp-sla-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e5f7ef;
  color: #16a37a;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.supp-policy-links { list-style: none; padding: 0; margin: 0; }

.supp-policy-links li { border-bottom: 1px solid var(--ink-07); }
.supp-policy-links li:last-child { border-bottom: none; }

.supp-policy-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 2px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-70);
  text-decoration: none;
}

.supp-policy-links a:hover { color: var(--red); }
.supp-policy-links a i:last-child { font-size: 0.72rem; color: var(--ink-45); }

/* ---------- Hide-on-filter helper ---------- */
.supp-hidden { display: none !important; }
