/* ==========================================================================
   Product Category AJAX Filters — Arcade Snacks
   ========================================================================== */

/* WooCommerce icon font (eye icon for Quick View button) */
@font-face {
  font-family: 'WooCommerce';
  src: url('/wp-content/plugins/woocommerce/assets/fonts/WooCommerce.woff2') format('woff2'),
       url('/wp-content/plugins/woocommerce/assets/fonts/WooCommerce.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   Fix: Divi logo shift on scroll — JS miscalculates translateX in fixed header
   -------------------------------------------------------------------------- */

/* Fix Divi logo shift on category pages.
   Divi's JS miscalculates translateX on these pages. Override with
   relative + text-align centering. Use transform: scale() for the
   smooth zoom-out effect instead of width transitions (scale doesn't
   affect layout box, so centering stays perfect). */
/* Both normal and scrolled states: keep #nav-logo full column width */
.tax-product_cat .et-l--header #nav-logo,
.tax-product_cat.onscroll-styles .et-l--header #nav-logo {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  width: 100% !important;
  max-width: 100% !important;
  text-align: center !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transition: none !important;
}

.tax-product_cat .et-l--header #nav-logo .et_pb_image_wrap,
.tax-product_cat.onscroll-styles .et-l--header .et_pb_column #nav-logo .et_pb_image_wrap {
  display: inline-block !important;
  position: relative !important;
  left: auto !important;
  width: 170px !important;
  transition: transform 0.3s ease !important;
  transform-origin: center center !important;
  transform: none !important;
}

.tax-product_cat .et-l--header #nav-logo img,
.tax-product_cat.onscroll-styles .et-l--header .et_pb_column #nav-logo img {
  position: relative !important;
  left: auto !important;
  transform: none !important;
  width: 170px !important;
  height: auto !important;
  transition: none !important;
}

/* Scrolled state: scale down for smooth zoom-out effect */
.tax-product_cat.onscroll-styles .et-l--header #nav-logo .et_pb_image_wrap {
  transform: scale(0.676) !important; /* 115/170 = 0.676 */
}

/* Mobile: undo all desktop logo overrides so Divi's native mobile
   header layout takes over (matches product pages, homepage, etc.) */
@media (max-width: 980px) {
  .tax-product_cat .et-l--header #nav-logo,
  .tax-product_cat.onscroll-styles .et-l--header #nav-logo {
    position: revert !important;
    left: revert !important;
    top: revert !important;
    transform: revert !important;
    width: revert !important;
    max-width: revert !important;
    text-align: revert !important;
    margin-left: revert !important;
    margin-right: revert !important;
    transition: revert !important;
  }

  .tax-product_cat .et-l--header #nav-logo .et_pb_image_wrap,
  .tax-product_cat.onscroll-styles .et-l--header .et_pb_column #nav-logo .et_pb_image_wrap {
    display: revert !important;
    position: revert !important;
    left: revert !important;
    width: revert !important;
    transition: revert !important;
    transform-origin: revert !important;
    transform: revert !important;
  }

  .tax-product_cat .et-l--header #nav-logo img,
  .tax-product_cat.onscroll-styles .et-l--header .et_pb_column #nav-logo img {
    position: revert !important;
    left: revert !important;
    transform: revert !important;
    width: revert !important;
    height: revert !important;
    transition: revert !important;
  }

  .tax-product_cat.onscroll-styles .et-l--header #nav-logo .et_pb_image_wrap {
    transform: revert !important;
  }
}

/* --------------------------------------------------------------------------
   1. Layout
   -------------------------------------------------------------------------- */

/* Override Divi's overflow:hidden on #et-main-area so sticky sidebar works */
#et-main-area:has(.asf-sidebar) {
  overflow: visible !important;
}

.asf-wrapper {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: 90%;
  max-width: 1600px;
  margin: 8rem auto 2rem;
}

.asf-sidebar-wrap {
  width: 220px;
  flex-shrink: 0;
}

.asf-sidebar {
  position: sticky;
  top: 120px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  padding-right: 12px;
}

/* Adjust sticky position when site notice bar is visible */
.asn-bar-visible .asf-sidebar {
  top: calc(120px + var(--asn-bar-height, 46px));
  max-height: calc(100vh - 140px - var(--asn-bar-height, 46px));
}

.asf-products-wrap {
  flex: 1;
  min-width: 0;
  position: relative;
}

/* --------------------------------------------------------------------------
   2. Filter Sections
   -------------------------------------------------------------------------- */

.asf-filter-section,
.asf-filter-group {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
  margin: 0;
}

.asf-filter-section:last-child,
.asf-filter-group:last-child {
  border-bottom: none;
}

.asf-filter-title,
.asf-filter-group > legend {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #333;
  padding: 0;
  margin-bottom: 0.75rem;
}

.asf-filter-list,
.asf-checkbox-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.asf-filter-list label,
.asf-checkbox-list label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0;
  cursor: pointer;
  font-size: 1rem;
}

.asf-filter-list input[type="checkbox"],
.asf-checkbox-list input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #1a3c6e;
}

.asf-count {
  color: #888;
  font-size: 0.875rem;
  margin-left: auto;
}

.asf-clear-all {
  color: #c00;
  text-decoration: underline;
  font-size: 0.875rem;
  cursor: pointer;
  background: none;
  border: none;
}

.asf-toggle-label,
.asf-filter-group > label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   3. Price Slider
   -------------------------------------------------------------------------- */

.asf-price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 700;
}

.asf-range-wrap,
.asf-range-inputs {
  position: relative;
  height: 30px;
}

/* Both range inputs overlay each other in the same space */
.asf-range-min,
.asf-range-max {
  position: absolute;
  width: 100%;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  top: 0;
  left: 0;
  height: 30px;
  margin: 0;
}

/* Track — min slider shows the coloured active range */
.asf-range-min::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(
    to right,
    #ddd var(--asf-min-pct, 0%),
    #1a3c6e var(--asf-min-pct, 0%),
    #1a3c6e var(--asf-max-pct, 100%),
    #ddd var(--asf-max-pct, 100%)
  );
}

.asf-range-min::-moz-range-track {
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(
    to right,
    #ddd var(--asf-min-pct, 0%),
    #1a3c6e var(--asf-min-pct, 0%),
    #1a3c6e var(--asf-max-pct, 100%),
    #ddd var(--asf-max-pct, 100%)
  );
}

/* Max slider track is fully transparent (min slider paints it) */
.asf-range-max::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
}

.asf-range-max::-moz-range-track {
  height: 4px;
  background: transparent;
}

/* Thumbs */
.asf-range-min::-webkit-slider-thumb,
.asf-range-max::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1a3c6e;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
  cursor: pointer;
  margin-top: -7px;
}

.asf-range-min::-moz-range-thumb,
.asf-range-max::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1a3c6e;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
  cursor: pointer;
}

.asf-price-apply {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  background: #1a3c6e;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
}

.asf-price-apply:hover {
  background: #142e54;
}

/* --------------------------------------------------------------------------
   4. Accordion
   -------------------------------------------------------------------------- */

.asf-accordion-toggle {
  display: flex;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.3rem 0;
}

.asf-accordion-toggle::before {
  content: "+";
  margin-right: 0.5rem;
  font-weight: 700;
}

.asf-accordion-toggle[aria-expanded="true"]::before {
  content: "\2212";
}

.asf-accordion-panel,
.asf-accordion .asf-checkbox-list {
  padding-left: 0;
}

/* --------------------------------------------------------------------------
   5. Loading & Error States
   -------------------------------------------------------------------------- */

/* Respect the HTML hidden attribute on elements with explicit display values */
.asf-loading-overlay[hidden],
.asf-error-banner[hidden],
.asf-mobile-backdrop[hidden] {
  display: none !important;
}

.asf-loading-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 10;
}

.asf-loading-overlay .asf-spinner {
  position: sticky;
  top: calc(50vh - 60px);
  margin: 0 auto;
}

.asf-product-grid.asf-loading {
  opacity: 0.4;
  transition: opacity 0.2s;
}

.asf-spinner {
  width: 120px;
  height: 120px;
  background: url('/wp-content/uploads/Arcade-Snacks-Logo-1.svg') no-repeat center;
  background-size: contain;
  animation: asf-spin 1.2s linear infinite;
}

@keyframes asf-spin {
  to {
    transform: rotate(360deg);
  }
}

.asf-error-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  padding: 0.75rem 1rem;
  border-radius: 4px;
}

.asf-no-results {
  text-align: center;
  padding: 3rem;
  color: #888;
}

.asf-clear-all-btn {
  background: #1a3c6e;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   6. Toolbar, Sort & Results
   -------------------------------------------------------------------------- */

.asf-products-header .asf-page-title {
  font-family: Sen, sans-serif;
  text-align: center;
}

.asf-products-header .term-description {
  font-size: 25.5px;
  line-height: 1.22;
  color: rgb(55, 59, 64);
  font-family: Sen, sans-serif;
  text-align: center;
  text-wrap: balance;
  margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   Product Card — circular image, dotted border, hover effects
   Scoped to #asf-wrapper (replaces .et_pb_module selectors from style.css)
   -------------------------------------------------------------------------- */

#asf-wrapper ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

#asf-wrapper ul.products::before,
#asf-wrapper ul.products::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 1024px) {
  #asf-wrapper ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  #asf-wrapper ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}

#asf-wrapper ul.products li.product {
  display: block !important;
  text-align: center;
  position: relative;
  width: auto !important;
  float: none !important;
  margin: 0 !important;
}

#asf-wrapper .woo-img-wrap {
  display: block;
  position: relative;
  padding: 6%;
}

#asf-wrapper .woocommerce-loop-product__link span.et_shop_image {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 100%;
  border-radius: 1000px;
  display: block;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

/* Product image (srcset <img>) fills the circular container */
#asf-wrapper .woocommerce-loop-product__link span.et_shop_image img.asf-product-img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Dotted SVG border overlay */
#asf-wrapper .woo-img-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/wp-content/uploads/Circle_Border.svg') no-repeat;
  background-size: contain;
  transform-origin: 50% 50%;
  transition: transform 0.3s ease;
  pointer-events: none;
}

/* Hover: rotate border, zoom image */
#asf-wrapper .woo-img-wrap:hover::after {
  transform: rotateZ(20deg);
}

#asf-wrapper .woo-img-wrap:hover img.asf-product-img {
  transform: scale(1.1);
}

/* Product title */
#asf-wrapper .asf-product-grid h2.woocommerce-loop-product__title {
  font-size: 25.5px;
  font-weight: 700;
  font-family: Sen, sans-serif;
  line-height: 1.1;
  color: rgb(0, 35, 130);
  margin-bottom: 1em;
  padding-bottom: 7px;
}

/* Add to cart / Select options — circular icon button, top-right of image */
#asf-wrapper .add_to_cart_button,
#asf-wrapper .button.product_type_variable {
  position: absolute;
  font-size: 0 !important;
  top: 5%;
  right: 7%;
  left: unset;
  bottom: unset;
  display: inline-block;
  max-width: 45px;
  width: 45px;
  height: 45px;
  min-width: 0;
  border-radius: 200px;
  padding: 0;
  border: none;
  background-color: #002382;
  background-image: url(/wp-content/uploads/add_to_cart_icon.svg);
  background-size: contain;
  box-shadow: 0 0 0 7px rgba(0, 57, 191, 0.2);
  transition: all 0.2s ease;
  transform: none;
  z-index: 5;
}

#asf-wrapper .button.product_type_variable {
  background-image: url('/wp-content/uploads/Choices-Icon.svg');
}

#asf-wrapper .add_to_cart_button:hover,
#asf-wrapper .button.product_type_variable:hover {
  box-shadow: 0 0 0 10px rgba(0, 57, 191, 0.2);
}

#asf-wrapper .add_to_cart_button:active,
#asf-wrapper .button.product_type_variable:active {
  transform: scale(0.85);
}

#asf-wrapper .add_to_cart_button::after {
  display: none;
}

/* Quick View button (eye icon via WooCommerce font) */
#asf-wrapper .quick-view-button {
  margin: 0.5em 0;
}

#asf-wrapper .quick-view-button a.wc-quick-view-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px;
  width: 150px;
  padding: 10px 20px;
  background: rgb(0, 35, 130);
  color: #fff;
  border-radius: 8px;
  font-size: 15.4px;
  font-weight: 700;
  font-family: Sen, sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
  box-sizing: border-box;
  text-indent: 0;
  overflow: visible;
}

#asf-wrapper .quick-view-button a.wc-quick-view-button:hover {
  background: #001a5e;
}

/* Eye icon via WooCommerce icon font */
#asf-wrapper .quick-view-button a.wc-quick-view-button::before {
  font-family: 'WooCommerce' !important;
  content: "\e010" !important;
  display: inline !important;
  position: static !important;
  opacity: 1 !important;
  speak: none;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  font-size: 1em;
  margin-left: 3px;
}

/* Price */
#asf-wrapper .p-size {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25em;
}

/* Weight */
#asf-wrapper .shop-weight {
  font-size: 0.7em;
  font-style: italic;
}

/* Out of stock */
#asf-wrapper .out-of-stock {
  color: #c00;
  font-weight: 700;
}

/* Sale badge */
#asf-wrapper .onsale {
  background: #c00;
  color: #fff;
  padding: 0.2em 0.6em;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Hide the cart form wrapper (button is positioned absolutely) */
#asf-wrapper li.product form.cart {
  position: static;
}

.asf-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.asf-result-summary {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

.asf-sort-select {
  padding: 0.4rem 2rem 0.4rem 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  color: #333;
  cursor: pointer;
  appearance: auto;
}

.asf-sort-select:focus {
  outline: 2px solid #1a3c6e;
  outline-offset: 1px;
}

.asf-load-more-sentinel {
  display: flex;
  justify-content: center;
  padding: 3rem 0 1rem;
}

.asf-load-more-sentinel .asf-spinner {
  width: 8px;
  height: 8px;
  background: none;
  border-radius: 50%;
  box-shadow:
    -16px 0 0 #ccc,
    0 0 0 #aaa,
    16px 0 0 #ccc;
  animation: asf-dots 0.8s ease-in-out infinite;
}

@keyframes asf-dots {
  0%, 100% { box-shadow: -16px 0 0 #ccc, 0 0 0 #aaa, 16px 0 0 #ccc; }
  33% { box-shadow: -16px 0 0 #999, 0 0 0 #ccc, 16px 0 0 #ccc; }
  66% { box-shadow: -16px 0 0 #ccc, 0 0 0 #999, 16px 0 0 #ccc; }
}

.asf-load-more-sentinel[hidden] {
  display: none;
}

/* --------------------------------------------------------------------------
   7. Screen Reader Only
   -------------------------------------------------------------------------- */

.asf-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   8. Mobile (max-width: 767px)
   -------------------------------------------------------------------------- */

/* Elements hidden on desktop, shown on mobile */
.asf-mobile-trigger,
.asf-mobile-header,
.asf-mobile-footer,
.asf-mobile-backdrop {
  display: none;
}

@media (max-width: 767px) {
  /* Wrapper stacks vertically */
  .asf-wrapper {
    flex-direction: column;
  }

  /* Reduce top spacing to get products in view faster */
  .asf-products-header .asf-page-title {
    font-size: 28px !important;
    margin: 8px 0 !important;
  }

  /* Collapse long category descriptions — show 3 lines max */
  .asf-products-header .term-description {
    font-size: 15px !important;
    line-height: 1.5 !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
  }

  .asf-products-header .term-description.asf-desc-expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
  }

  .asf-desc-toggle {
    display: inline-block;
    background: none;
    border: none;
    color: #1a3c6e;
    font-weight: 700;
    font-size: 14px !important;
    padding: 4px 0;
    cursor: pointer;
    text-decoration: underline;
  }

  /* Tighten toolbar spacing */
  .asf-toolbar {
    margin-bottom: 16px !important;
  }

  .asf-result-summary {
    font-size: 14px !important;
  }

  .asf-sort-select {
    font-size: 14px !important;
  }

  .asf-clear-all {
    font-size: 16px !important;
  }

  /* Hide Quick View on mobile — tap card to go to product page */
  #asf-wrapper .quick-view-button {
    display: none !important;
  }

  /* Clean 2-column grid with consistent gap */
  #asf-wrapper ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  /* Product title size on mobile */
  #asf-wrapper .asf-product-grid h2.woocommerce-loop-product__title {
    font-size: 15px !important;
  }

  /* Filter button — full-width sticky bar at bottom */
  .asf-mobile-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #1a3c6e;
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 14px 20px;
    font-size: 18px !important;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
  }

  .asf-mobile-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #fff;
    color: #1a3c6e;
    border-radius: 50%;
    font-size: 14px !important;
    font-weight: 700;
  }

  /* Sidebar as full-screen drawer — slides up from bottom, clears header */
  .asf-sidebar-wrap {
    position: fixed;
    left: 0;
    right: 0;
    top: 116px;
    bottom: 0;
    width: 100%;
    max-width: none;
    min-width: 0;
    background: #fff;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .asf-sidebar-wrap[aria-modal="true"] {
    transform: translateY(0);
  }

  /* Sidebar resets for mobile */
  .asf-sidebar {
    position: static;
    max-height: none;
    flex: 1;
    overflow-y: auto;
    padding: 0 24px !important;
    font-size: 18px !important;
  }

  /* More spacing between filter sections on mobile */
  .asf-sidebar .asf-filter-section,
  .asf-sidebar .asf-filter-group {
    padding: 20px 0 !important;
  }

  /* Larger font sizes for mobile filter panel (px to avoid Divi rem issues) */
  .asf-sidebar .asf-filter-group > legend,
  .asf-sidebar .asf-filter-title {
    font-size: 20px !important;
    padding-top: 8px !important;
    margin-bottom: 12px !important;
  }

  .asf-sidebar .asf-checkbox-list label,
  .asf-sidebar .asf-filter-list label,
  .asf-sidebar .asf-filter-group label {
    font-size: 18px !important;
    padding: 10px 0 !important;
  }

  .asf-sidebar .asf-accordion-toggle {
    font-size: 18px !important;
    padding: 10px 0 !important;
  }

  .asf-sidebar .asf-price-labels,
  .asf-sidebar .asf-price-label-min,
  .asf-sidebar .asf-price-label-max,
  .asf-sidebar .asf-count {
    font-size: 17px !important;
  }

  .asf-sidebar .asf-price-apply,
  .asf-mobile-view-btn {
    font-size: 17px !important;
  }

  /* Mobile header */
  .asf-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px !important;
    border-bottom: 1px solid #e0e0e0;
  }

  button.asf-mobile-close {
    background: none;
    border: none;
    font-size: 32px !important;
    line-height: 1 !important;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  /* Mobile footer */
  .asf-mobile-footer {
    display: block;
    padding: 16px 24px !important;
    border-top: 1px solid #e0e0e0;
  }

  .asf-mobile-view-btn {
    display: block;
    width: 100%;
    background: #1a3c6e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    padding: 12px;
    cursor: pointer;
    text-align: center;
    font-size: 17px !important;
  }

  /* Backdrop */
  .asf-mobile-backdrop[aria-hidden="false"] {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
  }

}
