/*
 * Markething Herba - global theme overrides.
 *
 * Site-wide adjustments to the active theme and the Elementor global kit that
 * must revert cleanly when the plugin is disabled. Loaded on every front-end
 * page.
 */

/*
 * Page background. Elementor's global kit paints the body via .elementor-kit-44
 * (which out-specifies Blocksy's body rule), so we match that class plus the
 * body element to win the cascade without !important.
 */
body.elementor-kit-44 {
  background-color: #f9f9f9;
}

/*
 * Payment methods (Blocksy .ct-payment-methods) - lay the icons out in a row and
 * drop the fieldset border.
 */
.ct-payment-methods {
  display: flex;
  align-items: center;
  justify-content: normal;
  flex-wrap: wrap;
  gap: 1em;
  padding: 0;
}
fieldset.ct-payment-methods {
  border: 0px dashed var(--theme-border-color) !important;
}
