/* ============================================================
   SOLUTIONS CENTER 2026 — LIGHT THEME REDESIGN
   Overrides custom.css — load this file after custom.css
   ============================================================ */

/* === DESIGN TOKENS === */
:root {
  --sc-bg:             #ffffff;
  --sc-bg-subtle:      #f5f5f5;
  --sc-bg-input:       #efefef;
  --sc-text:           #080D06;
  --sc-text-secondary: #555555;
  --sc-text-muted:     #888888;
  --sc-accent-lime:    #D4FF00;
  --sc-accent-yellow:  #FFF85C;
  --sc-link:           #1a5fb4;
  --sc-border:         #e5e5e5;
  --sc-btn-primary-bg: #080D06;
  --sc-btn-primary-fg: #ffffff;
  --sc-btn-login-bg:   #e8e8e8;
  --sc-btn-login-fg:   #080D06;
  --sc-hero-bg:        #080D06;
  --sc-radius-pill:    100px;
  --sc-radius-card:    12px;
  --sc-radius-input:   50px;
}


/* ============================================================
   1. GLOBAL
   ============================================================ */

body {
  background: var(--sc-bg) !important;
  color: var(--sc-text) !important;
}

h1, .h1, h2, .h2, h3, .h3,
h4, .h4, h5, .h5, h6, .h6 {
  color: var(--sc-text) !important;
}

p {
  color: var(--sc-text) !important;
}

a {
  color: inherit;
}

a:hover, a:focus {
  color: inherit;
}

ol li {
  color: var(--sc-text) !important;
}

ol li::before {
  background: var(--sc-text) !important;
  color: var(--sc-bg) !important;
}

ul li {
  color: var(--sc-text) !important;
}

/* Remove decorative dark gradient shapes globally */
.shape-cirlce,
.basic-shape,
.shapes-wrapper .shape {
  display: none !important;
}

/* Hide old dark banner */
.home-page-banner {
  display: none !important;
}


/* ============================================================
   2. HEADER
   ============================================================ */

header {
  background: var(--sc-bg) !important;
  color: var(--sc-text) !important;
  position: relative !important;
  padding: 18px 0 !important;
  border-bottom: 1px solid var(--sc-border) !important;
  z-index: 100 !important;
}

/* Keep header visible (not absolute-positioned over hero on home page) */
.home-page header {
  position: relative !important;
}

header .logo a,
header .logo span,
header .logo {
  color: var(--sc-text) !important;
}

header .logo span {
  border-left-color: var(--sc-border) !important;
}

/* Hamburger icon (mobile) */
header .hamburger span,
header .hamburger::before,
header .hamburger::after {
  background: var(--sc-text) !important;
}

/* Mobile search icon */
header .search-button svg path,
header .search-button svg rect {
  stroke: var(--sc-text) !important;
  fill: var(--sc-text) !important;
}

/* Mobile close-search X icon */
header .close-search svg path {
  stroke: var(--sc-text) !important;
}

/* Mobile menu overlay */
header .menu-wrapper {
  background: var(--sc-bg) !important;
}

/* Nav links in mobile menu */
.header-menu li a,
.header-menu li span {
  color: var(--sc-text) !important;
}

/* ---- New Ticket button: black pill ---- */
.ticket-btn a.btn-3d,
.ticket-btn .btn-3d {
  background: var(--sc-btn-primary-bg) !important;
  color: var(--sc-btn-primary-fg) !important;
  border-radius: var(--sc-radius-pill) !important;
  padding: 10px 22px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border: none !important;
  letter-spacing: -0.2px !important;
  transition: opacity 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
}

.ticket-btn a.btn-3d:hover,
.ticket-btn .btn-3d:hover {
  opacity: 0.85 !important;
}

/* Hide the old image-based button backgrounds */
.ticket-btn .button-bg,
.ticket-btn .button-bg-wrapper,
.ticket-btn .button-bg-left,
.ticket-btn .button-bg-right,
.ticket-btn .button-bg-center {
  display: none !important;
}

/* Remove the ::after pseudo-element shift trick */
.ticket-btn .btn-3d::after,
.ticket-btn .btn-3d::before {
  display: none !important;
}

/* ---- Login button: gray pill ---- */
.user-menu .btn-parrent a,
.user-menu a.login {
  background: var(--sc-btn-login-bg) !important;
  color: var(--sc-btn-login-fg) !important;
  border-radius: var(--sc-radius-pill) !important;
  padding: 10px 22px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border: none !important;
  transition: background 0.2s ease !important;
}

.user-menu .btn-parrent a:hover,
.user-menu a.login:hover {
  background: #d8d8d8 !important;
}

/* ---- Logged-in user avatar: lime yellow circle ---- */
#user,
.user-menu #user {
  background: var(--sc-accent-lime) !important;
  color: var(--sc-text) !important;
  border-radius: 50% !important;
  width: 36px !important;
  height: 36px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 700 !important;
  font-size: 13px !important;
}

#user #user-name,
.user-menu #user #user-name {
  color: var(--sc-text) !important;
}

/* ---- Sub-header row (breadcrumbs + search, inner pages) ---- */
.article-heading,
.page-heading-bar {
  background: var(--sc-bg) !important;
  border-bottom: 1px solid var(--sc-border) !important;
  padding: 12px 0 !important;
}

.article-heading .section-container,
.article-heading .page-heading {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
}

/* ---- Search bar in header (inner pages) ---- */
.header-search form.search input[type="search"],
.article-heading form.search input[type="search"],
.page-heading form.search input[type="search"],
.search-box form.search input[type="search"] {
  background: var(--sc-bg) !important;
  border: 1px solid var(--sc-border) !important;
  color: var(--sc-text) !important;
  border-radius: var(--sc-radius-pill) !important;
  max-width: 380px !important;
}

.header-search form.search input[type="search"]::placeholder,
.article-heading form.search input[type="search"]::placeholder,
.search-box form.search input[type="search"]::placeholder {
  color: var(--sc-text-muted) !important;
}

/* Search icon in header search (override dark bg icon) */
.header-search form.search::before,
.article-heading form.search::before,
.search-box form.search::before {
  filter: none !important;
  opacity: 0.5 !important;
}


/* ============================================================
   3. BREADCRUMBS
   ============================================================ */

.breadcrumbs,
.new-breadcrumbs {
  display: flex !important;
  flex-wrap: wrap !important;
}

.breadcrumbs li,
.new-breadcrumbs li {
  color: var(--sc-text-secondary) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
}

.breadcrumbs li a,
.new-breadcrumbs li a {
  color: var(--sc-text-secondary) !important;
}

.breadcrumbs li::before,
.new-breadcrumbs li::before {
  color: var(--sc-text-secondary) !important;
  background: transparent !important;
}

.breadcrumbs li:last-child,
.new-breadcrumbs li:last-child {
  color: var(--sc-text) !important;
  font-weight: 500 !important;
}


/* ============================================================
   4. HERO / SEARCH SECTION
   ============================================================ */

.search-section {
  background: var(--sc-hero-bg) url("{{asset 'hero-background.jpg'}}") center / cover no-repeat !important;
  position: relative !important;
  padding: 0 !important;
}

/* Dark overlay so text is legible over the photo */
.search-section::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.55) !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

.search-section .section-container {
  position: relative !important;
  z-index: 1 !important;
  padding-top: 120px !important;
  padding-bottom: 80px !important;
}

.search-section .info {
  z-index: 2 !important;
}

.search-section .info h2,
.search-section .info h4 {
  color: #ffffff !important;
  font-size: 56px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 3px !important;
  margin-bottom: 32px !important;
}

@media (max-width: 768px) {
  .search-section .info h2 {
    font-size: 36px !important;
    letter-spacing: 2px !important;
  }
}

/* Search bar inside hero */
.search-section form.search input[type="search"] {
  background: rgba(255, 255, 255, 0.92) !important;
  color: var(--sc-text) !important;
  border: none !important;
  border-radius: var(--sc-radius-pill) !important;
}

.search-section form.search input[type="search"]::placeholder {
  color: rgba(8, 13, 6, 0.5) !important;
}

/* Product dropdown in search */
.search-section select#category,
.search-section .category-select select {
  background: rgba(255, 255, 255, 0.92) !important;
  color: var(--sc-text) !important;
  border: none !important;
  border-radius: var(--sc-radius-pill) !important;
}


/* ============================================================
   5. PRODUCTS / CATEGORIES SECTION
   ============================================================ */

.section-categories {
  background: var(--sc-bg) !important;
  padding: 72px 0 40px !important;
}

.section-categories h2,
.section-categories .h3 {
  color: var(--sc-text) !important;
  font-size: 28px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.3px !important;
  margin-bottom: 32px !important;
}

.section-categories .section-container {
  gap: 24px !important;
}

/* Product image cards */
.section-categories .section-container .category-item,
.category-item {
  background-color: var(--sc-bg-subtle) !important;
  background-size: cover !important;
  background-position: center !important;
  border-radius: var(--sc-radius-card) !important;
  height: 240px !important;
  width: calc((100% / 4) - 18px) !important;
  padding: 0 !important;
  display: block !important;
  overflow: hidden !important;
  position: relative !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.section-categories .section-container .category-item:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

/* Category name — pinned to bottom of the card */
.section-categories .section-container .category-item span,
.category-item span {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  display: block !important;
  width: 100% !important;
  padding: 12px 16px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: var(--sc-text) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  -webkit-text-fill-color: var(--sc-text) !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  box-sizing: border-box !important;
}

/* Remove old shape gradients */
.section-categories .shape {
  display: none !important;
}

@media (max-width: 1024px) {
  .section-categories .section-container .category-item,
  .category-item {
    width: calc(50% - 12px) !important;
  }
}

@media (max-width: 576px) {
  .section-categories .section-container .category-item,
  .category-item {
    width: 100% !important;
  }
}


/* ============================================================
   6. RECENT ACTIVITY
   ============================================================ */

.recent-activity {
  background: var(--sc-bg) !important;
  padding: 72px 0 !important;
  border-top: 1px solid var(--sc-border) !important;
}

.recent-activity .section-container {
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 60px !important;
  flex-wrap: wrap !important;
}

.recent-activity .section-container h2 {
  color: var(--sc-text) !important;
  font-size: 32px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  line-height: 1.1 !important;
  min-width: 180px !important;
  flex: 0 0 180px !important;
  margin-bottom: 0 !important;
}

.recent-activity .section-container .list-wrapper {
  flex: 1 !important;
  min-width: 0 !important;
}

.recent-activity .section-container .list-wrapper .item {
  border-bottom-color: var(--sc-border) !important;
  padding-bottom: 20px !important;
}

.recent-activity .section-container .list-wrapper .item a {
  color: var(--sc-link) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

.recent-activity .section-container .list-wrapper .item a:hover {
  text-decoration: underline !important;
}

.recent-activity .section-container .list-wrapper .item p {
  color: var(--sc-text-secondary) !important;
  font-size: 15px !important;
}

@media (max-width: 768px) {
  .recent-activity .section-container {
    flex-direction: column !important;
  }

  .recent-activity .section-container h2 {
    flex: 0 0 auto !important;
    min-width: auto !important;
    margin-bottom: 24px !important;
  }
}


/* ============================================================
   7. FOOTER
   ============================================================ */

footer {
  background: var(--sc-bg) !important;
  color: var(--sc-text) !important;
  border-top: 1px solid var(--sc-border) !important;
  padding: 32px 0 !important;
}

footer .section-container {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

footer .links {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

footer .links a,
footer .links span {
  color: var(--sc-text) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

footer .links img.logo {
  max-height: 40px !important;
}

footer .shape {
  position: absolute !important;
  right: 60px !important;
  bottom: 0 !important;
  pointer-events: none !important;
}

footer .shape img {
  max-height: 80px !important;
  opacity: 0.9 !important;
}


/* ============================================================
   8. INNER PAGES — SHARED STRUCTURE
   ============================================================ */

/* White background for all inner page content areas */
.page-content,
.article-page,
.section-page,
.category-page,
.new-request-page,
.requests-page,
.request-page,
.search-results-page,
.user-profile-page,
.page-404,
.contributions-page,
.subscriptions-page {
  background: var(--sc-bg) !important;
  color: var(--sc-text) !important;
}

/* Divider line below header sub-row on inner pages */
.article-heading,
.page-heading-bar {
  border-bottom: 1px solid var(--sc-border) !important;
}


/* ============================================================
   9. ARTICLE PAGE
   ============================================================ */

.section-article {
  background: var(--sc-bg) !important;
}

.section-article .article h1,
.section-article .article h2,
.section-article .article h3,
.section-article .article h4 {
  color: var(--sc-text) !important;
}

.section-article .article p,
.section-article .article li {
  color: var(--sc-text) !important;
}

.section-article .article .article-body a,
.section-article .article p a {
  color: var(--sc-link) !important;
}

.section-article .article .article-body ol li::before {
  background: var(--sc-text) !important;
  color: var(--sc-bg) !important;
}

/* Sidebar — articles in this section */
.article-nav-wrap,
.article-nav {
  background: var(--sc-bg) !important;
}

.article-nav .title {
  color: var(--sc-text) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
}

.article-list > ul li a {
  color: var(--sc-link) !important;
}

.article-list > ul li::marker {
  color: var(--sc-link) !important;
}

/* Article vote / helpful section */
.article-votes,
.article-vote {
  background: transparent !important;
  border: 1px solid var(--sc-border) !important;
  border-radius: 12px !important;
}

.article-votes .article-votes-question,
.article-votes .article-votes-count,
.article-vote .article-vote-question,
.article-votes .article-votes-count span,
.article-vote-count {
  color: var(--sc-text) !important;
}

.article-vote-controls .vote-up,
.article-vote-controls .vote-down {
  color: var(--sc-text) !important;
  border-color: var(--sc-border) !important;
}

/* Follow button */
.subscribe-item a,
.subscribe-item button {
  background: var(--sc-btn-primary-bg) !important;
  color: var(--sc-btn-primary-fg) !important;
  border-radius: var(--sc-radius-pill) !important;
  border: none !important;
  padding: 8px 20px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

/* Share icons */
.post-share a {
  color: var(--sc-text) !important;
}

/* Comments */
.comments {
  background: var(--sc-bg) !important;
}

.comments h3,
.comments .comment-count {
  color: var(--sc-text) !important;
}

.comment .author,
.comment .meta {
  color: var(--sc-text-secondary) !important;
}

.comment .comment__body,
.comment .comment__body p,
.comment .comment__body li {
  color: var(--sc-text) !important;
}

.comment--official {
  border-color: var(--sc-border) !important;
}

/* Comment form */
.comment-form__body .fr-box,
.comment-form__body [contenteditable] {
  background: var(--sc-bg-input) !important;
  color: var(--sc-text) !important;
  border-radius: 8px !important;
  border: none !important;
}

/* Article "more questions" button */
.article-more-questions a,
.article-more-questions button {
  background: var(--sc-btn-primary-bg) !important;
  color: var(--sc-btn-primary-fg) !important;
  border-radius: var(--sc-radius-pill) !important;
  border: none !important;
}

.article-more-questions .button-bg,
.article-more-questions .button-bg-wrapper {
  display: none !important;
}


/* ============================================================
   10. CATEGORY & SECTION PAGES
   ============================================================ */

.category-page,
.section-page {
  background: var(--sc-bg) !important;
}

.category-page .page-header-inner h1,
.category-page .page-header-inner h2,
.section-page h1,
.section-page h2 {
  color: var(--sc-text) !important;
}

.introduction p,
.introduction h2 {
  color: var(--sc-text) !important;
}

.article-list > ul li a {
  color: var(--sc-link) !important;
}

.article-list {
  border-bottom-color: var(--sc-border) !important;
}

.article-list h4,
.article-list h5 {
  color: var(--sc-text) !important;
}

/* Section page article items */
.section-page .article-list > ul li {
  border-bottom-color: var(--sc-border) !important;
}


/* ============================================================
   11. REQUEST / FORM PAGE
   ============================================================ */

.new-request-page {
  background: var(--sc-bg) !important;
  padding-top: 60px !important;
}

/* Large bold left heading */
.new-request-page h1,
.new-request-page .request-header h1 {
  color: var(--sc-text) !important;
  font-size: 44px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  line-height: 1.05 !important;
  letter-spacing: -0.5px !important;
}

/* Supporting text */
.new-request-page .request-header p,
.new-request-page .request-description {
  color: var(--sc-text-secondary) !important;
  font-size: 15px !important;
}

/* Remove dark gradient shapes */
.new-request-page .shapes .shape {
  display: none !important;
}

/* Form labels */
.new-request-page .form-field label,
.new-form-fields .form-field label,
#hc-wysiwyg [role=form] label {
  color: var(--sc-text) !important;
  font-weight: 600 !important;
  font-size: 16px !important;
}

.new-request-page .form-field p {
  color: var(--sc-text-secondary) !important;
}

/* Required asterisk */
.new-request-page .form-field.required > label::after,
.new-form-fields .form-field.required > label::after {
  color: #d93025 !important;
}

/* ---- Input fields: pill-shaped, light gray bg ---- */
.new-request-page .form-field input[type="text"],
.new-request-page .form-field input[type="email"],
.new-request-page .form-field input[type="number"],
.new-form-fields .form-field input[type="text"],
.new-form-fields .form-field input[type="email"],
.new-form-fields input[type="text"],
.new-form-fields input[type="email"],
input[type="text"],
input[type="email"],
input[type="search"] {
  background: var(--sc-bg-input) !important;
  border: none !important;
  border-radius: var(--sc-radius-input) !important;
  color: var(--sc-text) !important;
  padding: 14px 20px !important;
  font-size: 15px !important;
  transition: box-shadow 0.15s ease !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus {
  box-shadow: 0 0 0 3px rgba(8, 13, 6, 0.12) !important;
  outline: none !important;
}

/* Multi-line textarea: softer radius */
.new-request-page .form-field textarea,
.new-form-fields .form-field textarea,
textarea {
  background: var(--sc-bg-input) !important;
  border: none !important;
  border-radius: 16px !important;
  color: var(--sc-text) !important;
  padding: 14px 20px !important;
  font-size: 15px !important;
  resize: vertical !important;
}

textarea:focus {
  box-shadow: 0 0 0 3px rgba(8, 13, 6, 0.12) !important;
  outline: none !important;
}

/* Select / dropdown */
.new-request-page .form-field select,
.new-form-fields .form-field select,
select {
  background: var(--sc-bg-input) !important;
  border: none !important;
  border-radius: var(--sc-radius-input) !important;
  color: var(--sc-text) !important;
  padding: 14px 40px 14px 20px !important;
  font-size: 15px !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

/* Custom dropdown component */
.custom-dropdown .dropdown-toggle,
.custom-dropdown-wrapper .dropdown .dropdown-toggle {
  background: var(--sc-bg-input) !important;
  border: none !important;
  border-radius: var(--sc-radius-input) !important;
  color: var(--sc-text) !important;
  padding: 14px 20px !important;
}

.custom-dropdown .dropdown-menu,
.custom-dropdown-wrapper .dropdown-menu {
  background: var(--sc-bg) !important;
  border: 1px solid var(--sc-border) !important;
  border-radius: 12px !important;
  color: var(--sc-text) !important;
}

.custom-dropdown .dropdown-menu a,
.custom-dropdown-wrapper .dropdown-menu a {
  color: var(--sc-text) !important;
}

.custom-dropdown .dropdown-menu a:hover,
.custom-dropdown-wrapper .dropdown-menu a:hover {
  background: var(--sc-bg-subtle) !important;
}

/* Nesty (multi-select) input */
.nesty-input {
  background: var(--sc-bg-input) !important;
  border: none !important;
  border-radius: var(--sc-radius-input) !important;
  color: var(--sc-text) !important;
}

/* Attachment drop zone */
.form-field .dz-zone,
.form-field [data-dz-zone] {
  background: var(--sc-bg-subtle) !important;
  border: 2px dashed var(--sc-border) !important;
  border-radius: 12px !important;
  color: var(--sc-text-secondary) !important;
}

/* Checkboxes */
.form-field input[type="checkbox"] + label,
.new-form-fields input[type="checkbox"] + label {
  color: var(--sc-text) !important;
}

/* Wysiwyg editor */
.fr-box .fr-wrapper {
  background: var(--sc-bg-input) !important;
  border: none !important;
  border-radius: 12px !important;
  color: var(--sc-text) !important;
}

.fr-toolbar {
  background: var(--sc-bg-subtle) !important;
  border: none !important;
  border-radius: 8px 8px 0 0 !important;
  color: var(--sc-text) !important;
}

/* Submit button */
.new-request-page input[type="submit"],
.new-request-page button[type="submit"] {
  background: var(--sc-btn-primary-bg) !important;
  color: var(--sc-btn-primary-fg) !important;
  border: none !important;
  border-radius: var(--sc-radius-pill) !important;
  padding: 14px 32px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: opacity 0.2s ease !important;
}

.new-request-page input[type="submit"]:hover {
  opacity: 0.85 !important;
}

/* Request confirmation/detail pages */
.request-page,
.requests-page {
  background: var(--sc-bg) !important;
  color: var(--sc-text) !important;
}

.request-page h1,
.requests-page h1,
.request-page .status,
.requests-page .status {
  color: var(--sc-text) !important;
}

.request-page table th,
.requests-page table th,
.request-page table td,
.requests-page table td {
  color: var(--sc-text) !important;
  border-color: var(--sc-border) !important;
}


/* ============================================================
   12. ERROR 404 PAGE
   ============================================================ */

.page-404 {
  background: var(--sc-bg) !important;
  color: var(--sc-text) !important;
}

.section-404 {
  background: var(--sc-bg) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 80px 0 !important;
  text-align: center !important;
}

.section-404 .section-container {
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.section-404 h2 {
  color: var(--sc-text) !important;
  font-size: 40px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  margin-bottom: 12px !important;
}

.section-404 p {
  color: var(--sc-text-secondary) !important;
  font-size: 16px !important;
}

.section-404 a {
  color: var(--sc-link) !important;
  text-decoration: underline !important;
}

.section-404 .image {
  margin-bottom: 32px !important;
  position: relative !important;
}

.section-404 .image img.main-img {
  max-height: 220px !important;
  filter: none !important;
}

/* Hide old gradient blobs on 404 */
.section-404 .shape-cirlce,
.page-404 .shape-cirlce {
  display: none !important;
}

/* Star decorative shapes — keep but reduce */
.section-404 .image .shape {
  display: block !important;
  max-width: 24px !important;
}


/* ============================================================
   13. USER PROFILE PAGE
   ============================================================ */

.user-profile-page section,
.profile-header {
  background: var(--sc-bg) !important;
  color: var(--sc-text) !important;
}

/* Large avatar circle: lime yellow */
.profile-avatar {
  background: var(--sc-accent-lime) !important;
  border-radius: 50% !important;
  width: 180px !important;
  height: 180px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  margin-bottom: 24px !important;
}

.profile-avatar .avatar,
.profile-avatar img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  /* If no avatar image, the lime bg shows with initials */
}

.name, .profile-header .name {
  color: var(--sc-text) !important;
  font-size: 32px !important;
  font-weight: 700 !important;
}

.stat-label {
  color: var(--sc-text-secondary) !important;
  font-size: 13px !important;
}

.stat-value {
  color: var(--sc-text) !important;
  font-weight: 600 !important;
}

.profile-info {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.profile-stats {
  display: flex !important;
  gap: 32px !important;
  flex-wrap: wrap !important;
}

.profile-nav .collapsible-nav-list li a {
  color: var(--sc-link) !important;
}

.profile-contribution-title a {
  color: var(--sc-link) !important;
}

.profile-contribution-body {
  color: var(--sc-text) !important;
}

.contribution-status {
  border-color: var(--sc-border) !important;
}


/* ============================================================
   14. SEARCH RESULTS PAGE
   ============================================================ */

.search-results-page {
  background: var(--sc-bg) !important;
}

.search-results-page h1,
.search-results-page h2,
.search-results-page h3 {
  color: var(--sc-text) !important;
}

.search-results-list .result a {
  color: var(--sc-link) !important;
}

.search-results-list .result p {
  color: var(--sc-text-secondary) !important;
}

.search-results-list .result {
  border-bottom-color: var(--sc-border) !important;
}


/* ============================================================
   15. PAGINATION
   ============================================================ */

.pagination ul li a {
  color: var(--sc-text) !important;
  opacity: 0.7 !important;
}

.pagination ul li a:hover {
  color: var(--sc-text) !important;
  opacity: 1 !important;
}

.pagination ul li span {
  color: var(--sc-text) !important;
  text-decoration: underline !important;
}


/* ============================================================
   16. GENERAL BUTTON OVERRIDES
   ============================================================ */

/* Any .btn-3d or .btn-parrent outside ticket/login area */
.btn-parrent .btn-3d,
main .btn-3d {
  background: var(--sc-btn-primary-bg) !important;
  color: var(--sc-btn-primary-fg) !important;
  border-radius: var(--sc-radius-pill) !important;
  border: none !important;
  padding: 12px 28px !important;
}

.btn-parrent .button-bg,
.btn-parrent .button-bg-wrapper,
main .button-bg,
main .button-bg-wrapper {
  display: none !important;
}

.btn-parrent .btn-3d::after,
.btn-parrent .btn-3d::before,
main .btn-3d::after,
main .btn-3d::before {
  display: none !important;
}

/* Generic submit / action buttons */
input[type="submit"],
button[type="submit"],
a.button {
  background: var(--sc-btn-primary-bg) !important;
  color: var(--sc-btn-primary-fg) !important;
  border-radius: var(--sc-radius-pill) !important;
  border: none !important;
}


/* ============================================================
   17. WYSIWYG / RICH TEXT IN ARTICLES
   ============================================================ */

.article-body table {
  border-collapse: collapse !important;
}

.article-body table th,
.article-body table td {
  border: 1px solid var(--sc-border) !important;
  color: var(--sc-text) !important;
  padding: 10px 14px !important;
}

.article-body table th {
  background: var(--sc-bg-subtle) !important;
  font-weight: 600 !important;
}

.article-body blockquote {
  border-left: 3px solid var(--sc-border) !important;
  color: var(--sc-text-secondary) !important;
  background: var(--sc-bg-subtle) !important;
  border-radius: 0 8px 8px 0 !important;
  padding: 12px 20px !important;
  margin: 16px 0 !important;
}

.article-body code,
.article-body pre {
  background: var(--sc-bg-subtle) !important;
  color: var(--sc-text) !important;
  border-radius: 4px !important;
  border: 1px solid var(--sc-border) !important;
}


/* ============================================================
   18. MISC / CLEANUP
   ============================================================ */

/* Hide "Powered by Zendesk" */
.powered-by-zendesk {
  display: none !important;
}


/* ============================================================
   ISSUE FIXES — v2
   ============================================================ */

/* --- FIX 1: Category / section page — remove gradient background --- */
/* The introduction section has large top padding that exposes gradient blobs */
.category-page,
.section-page,
.category-page section,
.section-page section,
.category-page .introduction,
.section-page .introduction,
.category-page .page-header,
.section-page .page-header,
.category-page .article-heading,
.section-page .article-heading {
  background: var(--sc-bg) !important;
  background-image: none !important;
  background-color: var(--sc-bg) !important;
}

/* Reduce the massive top padding that was needed for overlay header */
.category-page .introduction,
.section-page .introduction {
  padding-top: 40px !important;
}

/* Hide any remaining decorative blob shapes on these pages */
.introduction .basic-shape,
.category-page .basic-shape,
.section-page .basic-shape,
.category-page .shape,
.section-page .shape,
.article-page .shapes-wrapper {
  display: none !important;
}

/* --- FIX 2: Category / section page heading — strip gradient text --- */
.category-page .introduction h1,
.category-page .introduction h2,
.category-page .page-header-inner h1,
.category-page .page-header-inner h2,
.section-page .introduction h1,
.section-page .introduction h2,
.section-page h1,
.section-page h2,
.category-page h1,
.category-page h2 {
  background: none !important;
  background-image: none !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: var(--sc-text) !important;
  color: var(--sc-text) !important;
  font-size: 40px !important;
  font-weight: 900 !important;
}

/* --- FIX 3: "See all X articles" link — replace neon green --- */
.see-all-articles,
a.see-all-articles,
.article-list .see-all-articles {
  color: var(--sc-link) !important;
  font-weight: 600 !important;
}

/* --- FIX 4: Follow / Subscribe button — dark pill, white text --- */
.subscribe-item a,
.subscribe-item button,
.article-page .follo-wrapper .subscribe-item a {
  background: var(--sc-btn-primary-bg) !important;
  color: var(--sc-btn-primary-fg) !important;
  border: 1px solid var(--sc-btn-primary-bg) !important;
  border-radius: var(--sc-radius-pill) !important;
}

.subscribe-item a:hover,
.article-page .follo-wrapper .subscribe-item a:hover {
  background: #333333 !important;
  color: var(--sc-btn-primary-fg) !important;
  border-color: #333333 !important;
}

/* --- FIX 5: Footer — force full-width white layout --- */
footer {
  width: 100% !important;
  display: block !important;
  background: var(--sc-bg) !important;
  border-top: 1px solid var(--sc-border) !important;
  padding: 28px 0 !important;
  margin: 0 !important;
  position: relative !important;
}

footer .section-container {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  max-width: 1344px !important;
  margin: 0 auto !important;
  padding: 0 60px !important;
  width: 100% !important;
}

footer .links {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: var(--sc-text) !important;
}

footer .links a,
footer .links span {
  color: var(--sc-text) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

footer .links img.logo {
  max-height: 36px !important;
  width: auto !important;
}

footer .shape {
  position: absolute !important;
  right: 40px !important;
  bottom: 0 !important;
  pointer-events: none !important;
  line-height: 0 !important;
}

footer .shape img {
  max-height: 80px !important;
  width: auto !important;
  display: block !important;
}

/* --- FIX 6: Form pages — strip any gradient from headings, fix layout --- */
/* The new-request-page h1 might still have gradient text from old theme */
.new-request-page h1,
.new-request-page h2,
.new-request-page .new-request-page__title {
  background: none !important;
  background-image: none !important;
  -webkit-text-fill-color: var(--sc-text) !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  color: var(--sc-text) !important;
  font-size: 40px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  line-height: 1.05 !important;
}

/* Fix the new-request-page top padding (was 180px for dark overlay header) */
.new-request-page {
  padding-top: 48px !important;
}

/* Also fix any other inner-page sections that still have big dark-theme top padding */
.article-page .article-heading {
  padding-top: 0 !important;
}

.requests-page,
.request-page,
.contributions-page,
.subscriptions-page,
.my-activities-page {
  padding-top: 32px !important;
}

/* Fix my-activities gradient shapes */
.my-activities-page .section-container .shape {
  display: none !important;
}


/* ============================================================
   ISSUE FIXES — v4
   ============================================================ */

/* --- FIX: Footer logo — yellow background box to match Figma --- */
footer .footer-logo-link,
footer .links a:first-child {
  display: inline-flex !important;
  align-items: center !important;
  background-color: #D4FF00 !important;
  padding: 6px 10px !important;
  border-radius: 3px !important;
  line-height: 0 !important;
}

footer .links img.logo {
  max-height: 32px !important;
  width: auto !important;
  display: block !important;
  /* Remove multiply blend — footer logo needs its original colours */
  mix-blend-mode: normal !important;
}

/* Also remove multiply from FOOTER logo only (keep it for header) */
footer .logo img {
  mix-blend-mode: normal !important;
}

/* --- FIX: Footer Telly SVG (black vector — render correctly) --- */
footer .shape img {
  max-height: 90px !important;
  width: auto !important;
  display: block !important;
  filter: none !important;
}

/* --- FIX: Category page two-column article grid --- */
/* Restore the 50% width per section that the old theme had */
.category-page .article-list,
.category-page .section.article-list {
  width: calc(50% - 28px) !important;
  flex-shrink: 0 !important;
}

/* Ensure the section-container is still a flex row so columns work */
.category-page .section-container {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 36px 56px !important;
  align-items: flex-start !important;
}

/* Full-width items that should span both columns */
.category-page .section-container .page-heading,
.category-page .section-container .page-title {
  width: 100% !important;
  flex: 0 0 100% !important;
}

/* On mobile, go single column */
@media (max-width: 768px) {
  .category-page .article-list,
  .category-page .section.article-list {
    width: 100% !important;
  }
}


/* ============================================================
   ISSUE FIXES — v5
   ============================================================ */

/* --- FIX: Header & footer logo — use asset directly, no mix-blend-mode --- */
header .logo img,
header .menu-wrapper .logo img,
footer .logo img {
  mix-blend-mode: normal !important;
  max-height: 40px !important;
  width: auto !important;
}

/* Remove the CSS yellow background — bl.svg already has it built in */
footer .footer-logo-link,
footer .links a:first-child {
  background-color: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* --- FIX: Article sidebar — "Articles in this section" links were mint green --- */
.article-nav-wrap .article-nav-item,
.article-nav-wrap .article-nav-item a,
.section-article .article-nav-wrap .article-nav-item {
  color: var(--sc-link) !important;
}

.article-nav-wrap p.title,
.section-article .article-nav-wrap p.title {
  color: var(--sc-text) !important;
}

/* --- FIX: Request form — two-column layout (title left, fields right) --- */
.new-request-page .form-content {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 60px !important;
  flex-wrap: nowrap !important;
}

/* Left column: big bold heading */
.new-request-page .form-content > h1,
.new-request-page .form-content > .h2 {
  flex: 0 0 220px !important;
  max-width: 220px !important;
  font-size: 36px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  line-height: 1.05 !important;
  color: var(--sc-text) !important;
  -webkit-text-fill-color: var(--sc-text) !important;
  background: none !important;
  padding-top: 8px !important;
}

/* Right column: form */
.new-request-page .form-content > .form-wrapper {
  flex: 1 !important;
  min-width: 0 !important;
}

/* Follow-up hint (if present) goes under the heading */
.new-request-page .form-content > p {
  flex: 0 0 220px !important;
  max-width: 220px !important;
}

@media (max-width: 768px) {
  .new-request-page .form-content {
    flex-direction: column !important;
  }
  .new-request-page .form-content > h1,
  .new-request-page .form-content > .h2 {
    flex: none !important;
    max-width: 100% !important;
  }
}


/* ============================================================
   ISSUE FIXES — v3
   ============================================================ */

/* --- FIX: Remove the 4-colour horizontal bar that footer::after renders --- */
footer:has(.section-container)::after,
footer::after {
  display: none !important;
  content: none !important;
}

/* --- FIX: Footer layout to match Figma (logo left, Telly right) --- */
footer:has(.section-container) {
  background: var(--sc-bg) !important;
  padding: 24px 0 !important;
  border-top: 1px solid var(--sc-border) !important;
  overflow: visible !important;
  width: 100% !important;
  display: block !important;
}

footer:has(.section-container) .section-container {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  max-width: 1344px !important;
  margin: 0 auto !important;
  padding: 0 60px !important;
  width: 100% !important;
  position: relative !important;
}

footer:has(.section-container) .section-container .links {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

footer:has(.section-container) .section-container .links a,
footer:has(.section-container) .section-container .links span {
  color: var(--sc-text) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
}

footer:has(.section-container) .section-container .links img.logo {
  max-height: 40px !important;
  width: auto !important;
}

/* Telly character — right side */
footer:has(.section-container) .shape {
  position: absolute !important;
  right: 60px !important;
  bottom: 0 !important;
  display: block !important;
}

footer:has(.section-container) .shape img {
  max-height: 80px !important;
  width: auto !important;
  display: block !important;
}

/* --- FIX: Header logo — multiply blend removes coloured box on white bg --- */
header .logo img,
header .menu-wrapper .logo img {
  mix-blend-mode: multiply !important;
}

/* --- FIX: Category intro gradient background (pink→cyan) → white --- */
.category-page .introduction,
.section-page .introduction {
  background: var(--sc-bg) !important;
  background-image: none !important;
  background-color: var(--sc-bg) !important;
}

/* --- FIX: Per-category-section h1 gradient text — all IDs --- */
.category-page[class*="category-section-id-"] h1,
.category-page.category-section-id-30603850495259 h1,
.category-page.category-section-id-201128176 h1,
.category-page.category-section-id-30589291757083 h1,
.category-page.category-section-id-40519949402011 h1,
.category-page.category-section-id-40520000352923 h1,
.category-page.category-section-id-40519968435483 h1,
.category-page.category-section-id-201451043 h1,
.category-page.category-section-id-202033346 h1,
.category-page.category-section-id-201128206 h1 {
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: var(--sc-text) !important;
  color: var(--sc-text) !important;
}

/* --- FIX: Form page — two-column layout title + fields side by side --- */
.new-request-page .section-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 60px !important;
  flex-wrap: wrap !important;
}

/* Left column: big bold title */
.new-request-page .section-container > .request-header,
.new-request-page .section-container > h1,
.new-request-page .section-container > .new-request-page__header {
  flex: 0 0 220px !important;
  max-width: 220px !important;
}

/* Right column: form fields */
.new-request-page .section-container > .request-form,
.new-request-page .section-container > form,
.new-request-page .section-container > .new-form-fields {
  flex: 1 !important;
  min-width: 0 !important;
}

/* Also ensure form field labels are properly visible */
.new-form-fields .form-field label,
.new-form-fields .form-field .nesty-input {
  color: var(--sc-text) !important;
}

.new-form-fields .form-field p {
  color: var(--sc-text-secondary) !important;
}

/* Remove any remaining dark backgrounds on main */
main {
  background: var(--sc-bg) !important;
}

/* Select2 dropdown (overrides) */
.select2-container .select2-selection,
.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
  background: var(--sc-bg-input) !important;
  background-color: var(--sc-bg-input) !important;
  border: none !important;
  border-radius: var(--sc-radius-input) !important;
  color: var(--sc-text) !important;
  height: auto !important;
}

.select2-container .select2-selection .select2-selection__rendered,
.select2-selection--single .select2-selection__rendered {
  color: var(--sc-text) !important;
  line-height: normal !important;
  padding: 10px 36px 10px 16px !important;
}

.select2-container .select2-selection .select2-selection__arrow b,
.select2-selection--single .select2-selection__arrow b {
  border-color: var(--sc-text) transparent transparent transparent !important;
}

/* The dropdown panel that appears below the trigger */
.select2-dropdown,
.select2-dropdown.select2-dropdown--below,
.select2-dropdown.select2-dropdown--above {
  background: #ffffff !important;
  background-color: #ffffff !important;
  border: 1px solid var(--sc-border) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10) !important;
  color: var(--sc-text) !important;
  overflow: hidden !important;
}

.select2-results {
  background: #ffffff !important;
}

.select2-results__options {
  background: #ffffff !important;
  background-color: #ffffff !important;
}

.select2-results__option,
.select2-results__option--selectable {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: var(--sc-text) !important;
  padding: 10px 16px !important;
}

.select2-results__option--highlighted,
.select2-results__option--highlighted.select2-results__option--selectable {
  background: var(--sc-bg-subtle) !important;
  background-color: var(--sc-bg-subtle) !important;
  color: var(--sc-text) !important;
}

.select2-results__option[aria-selected="true"] {
  background: #f0f4ff !important;
  background-color: #f0f4ff !important;
  color: var(--sc-link) !important;
  font-weight: 600 !important;
}

/* Search box inside Select2 panel */
.select2-search--dropdown .select2-search__field {
  background: var(--sc-bg-input) !important;
  color: var(--sc-text) !important;
  border: 1px solid var(--sc-border) !important;
  border-radius: 6px !important;
}

/* Nesty (Zendesk's custom select for form category fields) */
.nesty-panel,
ul.nesty-panel {
  background: #ffffff !important;
  background-color: #ffffff !important;
  border: 1px solid var(--sc-border) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10) !important;
  color: var(--sc-text) !important;
}

.nesty-panel li,
.nesty-panel li a,
ul.nesty-panel li,
ul.nesty-panel li a {
  background: #ffffff !important;
  color: var(--sc-text) !important;
}

.nesty-panel li:hover,
.nesty-panel li a:hover,
ul.nesty-panel li:hover {
  background: var(--sc-bg-subtle) !important;
  color: var(--sc-text) !important;
}

.nesty-panel li.is-selected,
ul.nesty-panel li.is-selected {
  background: #f0f4ff !important;
  color: var(--sc-link) !important;
}

/* Native <select> fallback */
select {
  background: var(--sc-bg-input) !important;
  color: var(--sc-text) !important;
  border: none !important;
  border-radius: var(--sc-radius-input) !important;
}

/* User menu dropdown in header */
.user-menu .dropdown-menu,
header .dropdown-menu {
  background: #ffffff !important;
  border: 1px solid var(--sc-border) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10) !important;
}

.user-menu .dropdown-menu li a,
header .dropdown-menu li a {
  color: var(--sc-text) !important;
}

.user-menu .dropdown-menu li a:hover,
header .dropdown-menu li a:hover {
  background: var(--sc-bg-subtle) !important;
  color: var(--sc-text) !important;
}

/* Back to top button */
.js-back-to-top {
  background: var(--sc-btn-primary-bg) !important;
  color: var(--sc-btn-primary-fg) !important;
  border-radius: var(--sc-radius-pill) !important;
}

/* Notification banner (when re-enabled) */
.home-page-banner {
  background: var(--sc-text) !important;
  color: var(--sc-bg) !important;
}

.home-page-banner a {
  color: var(--sc-accent-lime) !important;
}


/* ============================================================
   ISSUE FIXES — v6
   ============================================================ */

/* --- FIX: Search bar — add left padding so magnifying glass doesn't overlap placeholder --- */
/* The icon sits at left: ~20px and is ~20px wide, so 56px clears it comfortably */
form.search input[type="search"],
.search-section form.search input[type="search"],
.header-search form.search input[type="search"],
.header-mob-search form.search input[type="search"] {
  padding-left: 56px !important;
}


/* ============================================================
   ISSUE FIXES — v7
   ============================================================ */

/* --- FIX: Search results — article title links are neon green, force dark --- */
/* Use high-specificity selectors to beat the original custom.css gradient/color rules */
.search-results-page a,
.search-results-page .result a,
.search-results-page .search-results-list a,
.search-results-page h2 a,
.search-results-page h3 a,
.search-results-list .result h2 a,
.search-results-list .result h3 a,
.search-results-list a[href] {
  color: var(--sc-text) !important;
  background: none !important;
  background-image: none !important;
  -webkit-text-fill-color: var(--sc-text) !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}

.search-results-page a:hover,
.search-results-list .result a:hover {
  color: var(--sc-link) !important;
  -webkit-text-fill-color: var(--sc-link) !important;
  text-decoration: underline !important;
}

/* Breadcrumb path text below title */
.search-results-list .result .meta,
.search-results-list .result .meta span,
.search-results-list .result .meta a {
  color: var(--sc-text-secondary) !important;
  -webkit-text-fill-color: var(--sc-text-secondary) !important;
}

/* --- FIX: Search highlight tags — swap pink for Brandlive lime #DFFF0D --- */
/* Zendesk wraps matched terms in <em> inside search results */
.search-results-list em,
.search-results-list .result em,
.search-results-page em,
.result-snippet em,
.result-body em,
mark {
  background: #DFFF0D !important;
  background-color: #DFFF0D !important;
  color: #080D06 !important;
  -webkit-text-fill-color: #080D06 !important;
  font-style: normal !important;
  border-radius: 3px !important;
  padding: 1px 3px !important;
}

/* Also fix the page background — slight tint showing on right edge */
.search-results-page,
.search-results-page .section-container,
.search-results .section-container {
  background: var(--sc-bg) !important;
  background-image: none !important;
  background-color: var(--sc-bg) !important;
}

/* Hide gradient blob images in the search results section */
.search-results .shape {
  display: none !important;
}

/* --- FIX: Search result snippet text — was white/invisible on white bg --- */
/* These match the exact class names in search_results.hbs */
.search-result-description,
.search-result-description * {
  color: var(--sc-text-secondary) !important;
  -webkit-text-fill-color: var(--sc-text-secondary) !important;
}

.comment-wrapper,
.comment-wrapper .comment-title,
.comment-wrapper .comment-count,
.comment-wrapper span {
  color: var(--sc-text-muted) !important;
  -webkit-text-fill-color: var(--sc-text-muted) !important;
}

/* Breadcrumbs on search results */
.search-result-breadcrumbs li a,
.search-result-breadcrumbs li {
  color: var(--sc-text-secondary) !important;
  -webkit-text-fill-color: var(--sc-text-secondary) !important;
}

/* Title link */
a.search-result-link,
.search-result a.search-result-link {
  color: var(--sc-text) !important;
  -webkit-text-fill-color: var(--sc-text) !important;
  background: none !important;
  background-image: none !important;
  font-weight: 700 !important;
}

a.search-result-link:hover {
  color: var(--sc-link) !important;
  -webkit-text-fill-color: var(--sc-link) !important;
}


/* ============================================================
   ISSUE FIXES — v18 (May 2026)
   v17 added relative-URL rules here, which 404'd because Zendesk
   serves theme assets via ULID, not filename. Those rules ALSO
   beat the inline {{asset}} rules in home_page.hbs on specificity,
   making things worse. v18: relative-URL rules REMOVED.
   The product card backgrounds now come exclusively from
   templates/home_page.hbs (inline <style> with {{asset}}).
   Only keep the longhand background fallback here so nothing
   ever resets background-image via shorthand.
   ============================================================ */

.section-categories .section-container .category-item,
.category-item {
  background-color: var(--sc-bg-subtle);
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}
