:root {
  --rm-cart-ink: #241f1b;
  --rm-cart-muted: #746d66;
  --rm-cart-line: #ddd5cc;
  --rm-cart-paper: #f7f4ef;
  --rm-cart-accent: #821724;
  --rm-cart-accent-hover: #65111b;
}

/* Mini cart: deliberately global because the drawer is available site-wide. */
.jas-mini-cart {
  color: var(--rm-cart-ink);
}

.jas-mini-cart .widget_shopping_cart_content,
.jas-mini-cart .mini_cart_item,
.jas-mini-cart .woocommerce-mini-cart__total {
  border-color: var(--rm-cart-line) !important;
}

.jas-mini-cart .woocommerce-mini-cart__buttons {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  margin: 18px 0 0 !important;
}

.jas-mini-cart .woocommerce-mini-cart__buttons::before,
.jas-mini-cart .woocommerce-mini-cart__buttons::after {
  display: none !important;
}

.jas-mini-cart .woocommerce-mini-cart__buttons .button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  min-height: 48px;
  margin: 0 !important;
  padding: 13px 18px !important;
  color: var(--rm-cart-ink) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .08em;
  line-height: 1.2 !important;
  text-transform: uppercase;
  background: #fff !important;
  border: 1px solid var(--rm-cart-ink) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: color .22s ease, background-color .22s ease, border-color .22s ease !important;
}

.jas-mini-cart .woocommerce-mini-cart__buttons .button:hover,
.jas-mini-cart .woocommerce-mini-cart__buttons .button:focus-visible {
  color: #fff !important;
  background: var(--rm-cart-ink) !important;
  border-color: var(--rm-cart-ink) !important;
}

.jas-mini-cart .woocommerce-mini-cart__buttons .checkout {
  color: #fff !important;
  background: var(--rm-cart-accent) !important;
  border-color: var(--rm-cart-accent) !important;
}

.jas-mini-cart .woocommerce-mini-cart__buttons .checkout:hover,
.jas-mini-cart .woocommerce-mini-cart__buttons .checkout:focus-visible {
  background: var(--rm-cart-accent-hover) !important;
  border-color: var(--rm-cart-accent-hover) !important;
}

/* Main cart page. */
.woocommerce-cart .woocommerce {
  color: var(--rm-cart-ink);
}

.woocommerce-cart .woocommerce-cart-form,
.woocommerce-cart .cart_totals,
.woocommerce-cart .wc-empty-cart-message,
.woocommerce-cart .cart-empty {
  border-radius: 0 !important;
  box-shadow: none !important;
}

.woocommerce-cart table.shop_table,
.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td {
  border-color: var(--rm-cart-line) !important;
}

.woocommerce-cart table.shop_table {
  border-radius: 0 !important;
}

.woocommerce-cart table.shop_table th {
  color: var(--rm-cart-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--rm-cart-paper);
}

.woocommerce-cart table.shop_table thead th {
  text-align: center !important;
  vertical-align: middle !important;
}

.woocommerce-cart table.shop_table thead th.product-name {
  text-align: left !important;
}

.woocommerce-cart table.shop_table thead th.product-subtotal {
  text-align: right !important;
}

.woocommerce-cart input[type="text"],
.woocommerce-cart input[type="number"],
.woocommerce-cart .quantity,
.woocommerce-cart .coupon {
  border-radius: 0 !important;
}

.woocommerce-cart input[type="text"],
.woocommerce-cart input[type="number"] {
  border-color: var(--rm-cart-line) !important;
}

.woocommerce-cart .coupon input.input-text {
  height: 48px !important;
  min-height: 48px !important;
  padding: 0 16px !important;
  line-height: 46px !important;
}

.woocommerce-cart .button,
.woocommerce-cart a.button,
.woocommerce-cart button.button,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px !important;
  color: var(--rm-cart-ink) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .07em;
  line-height: 1.2 !important;
  text-transform: uppercase;
  background: #fff !important;
  border: 1px solid var(--rm-cart-ink) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: color .22s ease, background-color .22s ease, border-color .22s ease !important;
}

.woocommerce-cart .button:hover,
.woocommerce-cart a.button:hover,
.woocommerce-cart button.button:hover,
.woocommerce-cart .button:focus-visible {
  color: #fff !important;
  background: var(--rm-cart-ink) !important;
  border-color: var(--rm-cart-ink) !important;
}

.woocommerce-cart .wc-proceed-to-checkout {
  display: grid;
  gap: 14px;
  padding: 20px 0 0 !important;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  width: 100% !important;
  min-height: 54px;
  margin: 0 !important;
  color: #fff !important;
  background: var(--rm-cart-accent) !important;
  border-color: var(--rm-cart-accent) !important;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:focus-visible {
  color: #fff !important;
  background: var(--rm-cart-accent-hover) !important;
  border-color: var(--rm-cart-accent-hover) !important;
}

/* PayPal renders its branded control in an iframe; these rules shape and space its host. */
.woocommerce-cart .ppc-button-wrapper,
.woocommerce-cart #ppc-button-ppcp-gateway,
.woocommerce-cart .paypal-buttons,
.woocommerce-cart [id*="paypal-button-container"],
.woocommerce-cart [class*="paypal-button-container"] {
  width: 100% !important;
  margin-top: 14px !important;
  border-radius: 0 !important;
  overflow: hidden;
}

.woocommerce-cart .wc-proceed-to-checkout > .ppc-button-wrapper {
  display: flex !important;
  height: 54px !important;
  min-height: 54px !important;
  margin-top: 0 !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffc439 !important;
  overflow: hidden !important;
}

.woocommerce-cart .wc-proceed-to-checkout > .ppc-button-wrapper > #ppc-button-ppcp-gateway {
  display: flex !important;
  width: 100% !important;
  height: 54px !important;
  min-height: 54px !important;
  margin: 0 !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffc439 !important;
}

.woocommerce-cart .wc-proceed-to-checkout > .ppc-button-wrapper iframe {
  display: block !important;
  height: 54px !important;
  min-height: 54px !important;
  margin: 0 !important;
}

.woocommerce-cart .wc-proceed-to-checkout > .ppc-button-wrapper .paypal-buttons {
  height: 54px !important;
  min-height: 54px !important;
  margin: 0 !important;
}

/* Keep every PayPal host rectangular across product, cart and checkout pages. */
.ppc-button-wrapper,
#ppc-button-ppcp-gateway,
[id*="paypal-button-container"],
[class*="paypal-button-container"] {
  background: #ffc439 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
}

.ppc-button-wrapper iframe,
#ppc-button-ppcp-gateway iframe,
[id*="paypal-button-container"] iframe,
[class*="paypal-button-container"] iframe {
  border-radius: 0 !important;
}

.woocommerce-cart .ppc-button-wrapper iframe,
.woocommerce-cart #ppc-button-ppcp-gateway iframe,
.woocommerce-cart [id*="paypal-button-container"] iframe {
  display: block;
  width: 100% !important;
  border-radius: 0 !important;
}

.woocommerce-cart .cart_totals h2 {
  margin-bottom: 20px;
  color: var(--rm-cart-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.025em;
}

.woocommerce-cart .cart-empty.woocommerce-info {
  padding: 24px !important;
  color: var(--rm-cart-ink);
  background: var(--rm-cart-paper);
  border: 0 !important;
  border-left: 3px solid var(--rm-cart-accent) !important;
}

.woocommerce-cart .return-to-shop .button {
  min-width: 210px;
  color: #fff !important;
  background: var(--rm-cart-accent) !important;
  border-color: var(--rm-cart-accent) !important;
}

.woocommerce-cart .return-to-shop .button:hover,
.woocommerce-cart .return-to-shop .button:focus-visible {
  background: var(--rm-cart-accent-hover) !important;
  border-color: var(--rm-cart-accent-hover) !important;
}

/* Korean checkout: match the cart's full-width rectangular primary action. */
.redmeteor-ko-store.woocommerce-checkout #place_order {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 54px !important;
  margin: 18px 0 0 !important;
  padding: 14px 24px !important;
  float: none !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .07em !important;
  line-height: 1.2 !important;
  text-transform: uppercase;
  background: var(--rm-cart-accent) !important;
  border: 1px solid var(--rm-cart-accent) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: color .22s ease, background-color .22s ease, border-color .22s ease !important;
}

.redmeteor-ko-store.woocommerce-checkout #place_order:hover,
.redmeteor-ko-store.woocommerce-checkout #place_order:focus-visible {
  color: #fff !important;
  background: var(--rm-cart-accent-hover) !important;
  border-color: var(--rm-cart-accent-hover) !important;
}

/* Keep the checkout terms checkbox aligned with its copy on both storefronts. */
body.woocommerce-checkout
  .woocommerce-terms-and-conditions-wrapper
  .woocommerce-form__label-for-checkbox.checkbox {
  display: block !important;
  position: relative;
  min-height: 22px;
  margin: 0 0 5px !important;
  padding: 0 0 0 26px !important;
  line-height: 1.65 !important;
}

body.woocommerce-checkout
  .woocommerce-terms-and-conditions-wrapper
  .woocommerce-form__label-for-checkbox.checkbox
  input[type="checkbox"] {
  position: absolute !important;
  top: .3em;
  left: 0;
  width: 16px !important;
  height: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
  vertical-align: top !important;
  box-sizing: border-box;
}

body.woocommerce-checkout
  .woocommerce-terms-and-conditions-checkbox-text,
body.woocommerce-checkout
  .woocommerce-form__label-for-checkbox.checkbox .required {
  line-height: inherit !important;
}

/* Compact legal headings for the standalone page and checkout disclosure box. */
.redmeteor-terms h2 {
  margin: 24px 0 10px !important;
  font-size: 22px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
}

.woocommerce-checkout .woocommerce-terms-and-conditions .redmeteor-terms h2 {
  margin: 16px 0 7px !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
}

@media (max-width: 767px) {
  .woocommerce-cart .actions .button,
  .woocommerce-cart .coupon,
  .woocommerce-cart .coupon .button,
  .woocommerce-cart .coupon input {
    width: 100% !important;
  }

  .woocommerce-cart .coupon {
    display: grid;
    gap: 8px;
  }
}

/* International My Account — square, editorial and consistent with checkout. */
.woocommerce-account .woocommerce {
  --rm-account-line: #ded8d0;
  --rm-account-paper: #f7f4ef;
  --rm-account-ink: #171717;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 25% !important;
  border-top: 1px solid var(--rm-account-line);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
  position: relative;
  margin: 0 !important;
  border-bottom: 1px solid var(--rm-account-line);
}

body:not(.redmeteor-ko-store).woocommerce-account
  .woocommerce-MyAccount-navigation
  li::before {
  top: 50% !important;
  margin: 0 !important;
  line-height: 14px !important;
  transform: translateY(-50%) !important;
}

body:not(.redmeteor-ko-store).woocommerce-account
  .woocommerce-MyAccount-navigation
  li
  a > i {
  position: absolute !important;
  top: 50% !important;
  right: 14px !important;
  margin: 0 !important;
  line-height: 1 !important;
  transform: translateY(-50%) !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
  position: relative;
  display: block;
  padding: 15px 14px !important;
  color: var(--rm-account-ink) !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .045em;
  text-transform: uppercase;
  background: transparent !important;
  border-radius: 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation li a:focus-visible {
  color: #fff !important;
  background: var(--rm-cart-accent) !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
  width: 70% !important;
  color: var(--rm-account-ink);
  line-height: 1.75;
}

.woocommerce-account .woocommerce-MyAccount-content > p:first-child {
  margin-top: 0;
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-form-login h2 {
  margin: 0 0 22px !important;
  font-size: clamp(24px, 3vw, 36px) !important;
  line-height: 1.15 !important;
}

.woocommerce-account table.shop_table {
  border: 1px solid var(--rm-account-line) !important;
  border-radius: 0 !important;
  border-collapse: collapse !important;
}

.woocommerce-account table.shop_table th {
  background: var(--rm-account-paper) !important;
  color: var(--rm-account-ink) !important;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.woocommerce-account table.shop_table th,
.woocommerce-account table.shop_table td {
  padding: 14px 16px !important;
  border-bottom: 1px solid var(--rm-account-line) !important;
}

.woocommerce-account .woocommerce-button,
.woocommerce-account button.button,
.woocommerce-account .woocommerce-form-login__submit,
.woocommerce-account .woocommerce-MyAccount-content a.button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px !important;
  color: #fff !important;
  background: var(--rm-cart-accent) !important;
  border: 1px solid var(--rm-cart-accent) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.woocommerce-account .woocommerce-button:hover,
.woocommerce-account button.button:hover,
.woocommerce-account .woocommerce-form-login__submit:hover,
.woocommerce-account .woocommerce-MyAccount-content a.button:hover,
.woocommerce-account .woocommerce-MyAccount-content a.button:focus-visible {
  color: #fff !important;
  background: var(--rm-cart-accent-hover) !important;
  border-color: var(--rm-cart-accent-hover) !important;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  margin: 0 !important;
  padding: 14px 16px 14px 22px !important;
  color: var(--rm-account-ink);
  background: var(--rm-account-paper) !important;
  border: 1px solid var(--rm-account-line) !important;
  border-top: 3px solid var(--rm-cart-accent) !important;
  border-radius: 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message::before,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info::before {
  display: none !important;
}

/* Password reveal controls: compact square control inside each input. */
.woocommerce-account form.edit-account .password-input {
  position: relative !important;
  display: block !important;
}

.woocommerce-account form.edit-account .password-input input {
  padding-right: 54px !important;
}

.woocommerce-account form.edit-account .show-password-input {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  left: auto !important;
  width: 48px !important;
  min-width: 48px !important;
  height: 48px !important;
  min-height: 48px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #fff !important;
  background: var(--rm-cart-accent) !important;
  border: 1px solid var(--rm-cart-accent) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

.woocommerce-account form.edit-account .show-password-input:hover,
.woocommerce-account form.edit-account .show-password-input:focus-visible {
  color: #fff !important;
  background: var(--rm-cart-accent-hover) !important;
  border-color: var(--rm-cart-accent-hover) !important;
}

.woocommerce-account form.edit-account .show-password-input::before {
  content: "" !important;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 17px;
  margin: -9px 0 0 -9px;
  border: 2px solid currentColor;
  border-radius: 70% 15%;
  box-sizing: border-box;
  transform: rotate(45deg);
}

.woocommerce-account form.edit-account .show-password-input::after {
  content: "" !important;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background: currentColor;
  border: 0 !important;
  border-radius: 50%;
  box-shadow: none !important;
  transform: none !important;
}

/* WooCommerce login/register password reveal controls.
   Keep the control inside the field and draw the icon without theme icon fonts. */
.woocommerce-account form.login .password-input,
.woocommerce-account form.register .password-input,
.woocommerce-account form.edit-account .password-input {
  position: relative !important;
  display: block !important;
}

.woocommerce-account form.login .password-input input,
.woocommerce-account form.register .password-input input,
.woocommerce-account form.edit-account .password-input input {
  padding-right: 54px !important;
}

.woocommerce-account form.login .show-password-input,
.woocommerce-account form.register .show-password-input,
.woocommerce-account form.edit-account .show-password-input {
  position: absolute !important;
  top: 50% !important;
  right: 1px !important;
  bottom: auto !important;
  left: auto !important;
  display: block !important;
  width: 48px !important;
  min-width: 48px !important;
  height: calc(100% - 2px) !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0 !important;
  line-height: 1 !important;
  color: #222 !important;
  background-color: #fff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23222222' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-6 10-6 10 6 10 6-3.5 6-10 6S2 12 2 12Z'/%3E%3Ccircle cx='12' cy='12' r='2.5'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 20px 20px !important;
  border: 0 !important;
  border-left: 1px solid var(--rm-account-line, #d8d1ca) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  transform: translateY(-50%) !important;
}

.woocommerce-account form.login .show-password-input:hover,
.woocommerce-account form.login .show-password-input:focus-visible,
.woocommerce-account form.register .show-password-input:hover,
.woocommerce-account form.register .show-password-input:focus-visible,
.woocommerce-account form.edit-account .show-password-input:hover,
.woocommerce-account form.edit-account .show-password-input:focus-visible {
  color: #222 !important;
  background-color: #f7f4f1 !important;
  border-left-color: var(--rm-cart-accent, #931727) !important;
  outline: none !important;
}

.woocommerce-account form.login .show-password-input::before,
.woocommerce-account form.login .show-password-input::after,
.woocommerce-account form.register .show-password-input::before,
.woocommerce-account form.register .show-password-input::after,
.woocommerce-account form.edit-account .show-password-input::before,
.woocommerce-account form.edit-account .show-password-input::after {
  content: none !important;
  display: none !important;
}

/* Login links: visible to guests, hidden once WordPress adds body.logged-in. */
body.logged-in #menu-item-71219,
body.logged-in #menu-item-71215,
body.logged-in #jas-mobile-menu li:has(> a[href="https://www.redmeteor.co/my-account/"]) {
  display: none !important;
}

.woocommerce-account form.edit-account > p:last-of-type {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px !important;
  margin-bottom: 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message--info {
  align-items: flex-end;
  flex-direction: column;
  padding-top: 22px !important;
}

.woocommerce-account
  .woocommerce-MyAccount-content
  .woocommerce-Message--info
  a.button {
  align-self: flex-end;
  margin-top: 20px !important;
}

.woocommerce-account .woocommerce-MyAccount-content > a.button:last-child {
  float: right;
  margin-top: 26px !important;
  margin-left: auto !important;
}

.woocommerce-account .woocommerce-MyAccount-content::after {
  content: "";
  display: table;
  clear: both;
}

/* Korean account order actions — preserve membership tabs, style Woo content only. */
.redmeteor-ko-store.woocommerce-orders
  .woocommerce-orders-table__cell-order-actions {
  text-align: right !important;
  white-space: nowrap;
}

.redmeteor-ko-store.woocommerce-account
  .woocommerce-MyAccount-navigation
  li
  a::before {
  content: none !important;
  display: none !important;
}

.redmeteor-ko-store.woocommerce-account
  .woocommerce-MyAccount-navigation
  li::before {
  content: "+" !important;
  display: block !important;
  position: absolute !important;
  top: 50% !important;
  left: 0 !important;
  width: 12px;
  height: 14px;
  margin: 0 !important;
  color: currentColor;
  font-size: 13px;
  font-weight: 400;
  line-height: 14px !important;
  text-align: center;
  transform: translateY(-50%) !important;
}

.redmeteor-ko-store.woocommerce-account
  .woocommerce-MyAccount-navigation
  li
  a > i {
  position: absolute !important;
  top: 50% !important;
  right: 14px !important;
  margin: 0 !important;
  line-height: 1 !important;
  transform: translateY(-50%) !important;
}

.redmeteor-ko-store.woocommerce-orders
  .woocommerce-MyAccount-content
  .woocommerce-info
  a.button {
  min-width: 120px;
  margin: 0 !important;
}

/* Korean Cosmosfarm profile tiles. */
.redmeteor-ko-store .cosmosfarm-members-form .members-link {
  border: 0 !important;
  background: transparent !important;
}

.redmeteor-ko-store .cosmosfarm-members-form .members-link li {
  border-color: rgba(255, 255, 255, .16) !important;
}

.redmeteor-ko-store .cosmosfarm-members-form .members-link li a {
  color: #fff !important;
  background: var(--rm-cart-accent) !important;
  border-color: rgba(255, 255, 255, .16) !important;
  transition: background-color .2s ease, color .2s ease !important;
}

.redmeteor-ko-store .cosmosfarm-members-form .members-link li a:hover,
.redmeteor-ko-store .cosmosfarm-members-form .members-link li a:focus-visible {
  color: #fff !important;
  background: var(--rm-cart-accent-hover) !important;
}

.redmeteor-ko-store .cosmosfarm-members-form button,
.redmeteor-ko-store .cosmosfarm-members-form input[type="submit"],
.redmeteor-ko-store .cosmosfarm-members-form .buttons {
  color: #fff !important;
  background: var(--rm-cart-accent) !important;
  border: 1px solid var(--rm-cart-accent) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: background-color .2s ease, border-color .2s ease !important;
}

.redmeteor-ko-store .cosmosfarm-members-form button:hover,
.redmeteor-ko-store .cosmosfarm-members-form button:focus-visible,
.redmeteor-ko-store .cosmosfarm-members-form input[type="submit"]:hover,
.redmeteor-ko-store .cosmosfarm-members-form input[type="submit"]:focus-visible,
.redmeteor-ko-store .cosmosfarm-members-form .buttons:hover,
.redmeteor-ko-store .cosmosfarm-members-form .buttons:focus-visible {
  color: #fff !important;
  background: var(--rm-cart-accent-hover) !important;
  border-color: var(--rm-cart-accent-hover) !important;
}

/* Footer newsletter — shared editorial form treatment. */
footer .mc4wp-form .signup-newsletter-form {
  display: flex !important;
  align-items: stretch;
  width: 100%;
  max-width: 380px;
  margin-bottom: 15px;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

footer .mc4wp-form .signup-newsletter-form input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  height: 46px !important;
  padding: 0 14px !important;
  color: var(--rm-cart-ink) !important;
  background: #fff !important;
  border: 1px solid var(--rm-cart-line) !important;
  border-right: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

footer .mc4wp-form .signup-newsletter-form input[type="email"]:focus {
  border-color: var(--rm-cart-accent) !important;
  outline: 1px solid var(--rm-cart-accent) !important;
  outline-offset: -1px;
}

footer .mc4wp-form .signup-newsletter-form input[type="submit"] {
  flex: 0 0 auto;
  min-width: 112px;
  height: 46px !important;
  padding: 0 18px !important;
  color: #fff !important;
  background: var(--rm-cart-accent) !important;
  border: 1px solid var(--rm-cart-accent) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .045em;
  transition: background-color .2s ease, border-color .2s ease !important;
}

footer .mc4wp-form .signup-newsletter-form input[type="submit"]:hover,
footer .mc4wp-form .signup-newsletter-form input[type="submit"]:focus-visible {
  color: #fff !important;
  background: var(--rm-cart-accent-hover) !important;
  border-color: var(--rm-cart-accent-hover) !important;
}

@media (max-width: 420px) {
  footer .mc4wp-form .signup-newsletter-form {
    flex-direction: column;
    gap: 8px;
  }

  footer .mc4wp-form .signup-newsletter-form input[type="email"],
  footer .mc4wp-form .signup-newsletter-form input[type="submit"] {
    width: 100% !important;
    border: 1px solid var(--rm-cart-line) !important;
  }

  footer .mc4wp-form .signup-newsletter-form input[type="submit"] {
    border-color: var(--rm-cart-accent) !important;
  }
}

.redmeteor-ko-store.woocommerce-orders
  .woocommerce-orders-table__cell-order-actions
  .button {
  min-width: 86px;
  margin: 3px 0 3px 7px !important;
}

.redmeteor-ko-store.woocommerce-orders
  .woocommerce-orders-table__cell-order-number
  a {
  color: var(--rm-cart-accent) !important;
  font-weight: 700;
}

.redmeteor-ko-store.woocommerce-orders
  .woocommerce-pagination {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.woocommerce-account form.login,
.woocommerce-account form.edit-account {
  padding: clamp(22px, 4vw, 40px) !important;
  border: 1px solid var(--rm-account-line) !important;
  border-radius: 0 !important;
  background: #fff;
}

.woocommerce-account input.input-text,
.woocommerce-account .select2-selection {
  min-height: 48px !important;
  border: 1px solid var(--rm-account-line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.woocommerce-account fieldset {
  margin-top: 28px;
  padding: 22px !important;
  border: 1px solid var(--rm-account-line) !important;
}

@media (max-width: 767px) {
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content {
    float: none !important;
    width: 100% !important;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    margin-bottom: 30px;
  }

  .woocommerce-account table.shop_table th,
  .woocommerce-account table.shop_table td {
    padding: 11px 12px !important;
  }

  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-message,
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-info {
    align-items: stretch;
    flex-direction: column;
  }

  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-message a.button,
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-info a.button {
    width: 100%;
  }

  .redmeteor-ko-store.woocommerce-orders
    .woocommerce-orders-table__cell-order-actions {
    white-space: normal;
  }

  .redmeteor-ko-store.woocommerce-orders
    .woocommerce-orders-table__cell-order-actions
    .button {
    width: 100%;
    margin: 7px 0 0 !important;
  }
}
/* Checkout coupon notice — shared brand treatment for both storefronts. */
body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  background: #f8ecee !important;
  border: 1px solid #e4c2c8 !important;
  color: #4c292e !important;
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info a.showcoupon {
  color: #941c2b !important;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.18s ease;
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info a.showcoupon:hover,
body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info a.showcoupon:focus-visible {
  color: #6f111d !important;
}

/* Checkout coupon and cart-notice actions. */
body.woocommerce-checkout form.checkout_coupon button.button,
body.woocommerce-checkout .woocommerce-message a.button.wc-forward {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 48px;
  min-height: 48px;
  box-sizing: border-box;
  padding: 0 28px !important;
  border: 1px solid #941c2b !important;
  border-radius: 0 !important;
  background: #941c2b !important;
  box-shadow: none !important;
  color: #fff !important;
  font-weight: 700;
  line-height: 1 !important;
  text-decoration: none !important;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease !important;
}

body.woocommerce-checkout form.checkout_coupon input.input-text {
  height: 48px !important;
  min-height: 48px;
  box-sizing: border-box;
}

body.woocommerce-checkout form.checkout_coupon .form-row {
  display: flex !important;
  align-items: center !important;
  min-height: 48px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

body.woocommerce-checkout form.checkout_coupon .form-row input.input-text,
body.woocommerce-checkout form.checkout_coupon .form-row button.button {
  align-self: center !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

body.woocommerce-checkout .woocommerce-message {
  display: flex !important;
  align-items: center !important;
  border: 1px solid #ded2c7 !important;
  background: #f3efe9 !important;
  color: #4b4038 !important;
}

body.woocommerce-checkout .woocommerce-message a.button.wc-forward {
  flex: 0 0 auto;
  align-self: center;
  float: none !important;
  margin-left: auto !important;
}

body.woocommerce-checkout .woocommerce-message::before {
  color: #941c2b !important;
}

body.woocommerce-wishlist .woocommerce-message {
  display: flex !important;
  align-items: center !important;
  border: 1px solid #ded2c7 !important;
  background: #f3efe9 !important;
  color: #4b4038 !important;
}

body.woocommerce-wishlist .woocommerce-message::before {
  color: #941c2b !important;
}

body.woocommerce-wishlist .woocommerce-message a.button.wc-forward {
  display: inline-flex !important;
  flex: 0 0 auto;
  align-items: center;
  align-self: center;
  justify-content: center;
  float: none !important;
  height: 48px;
  min-height: 48px;
  margin-left: auto !important;
  padding: 0 28px !important;
  border: 1px solid #941c2b !important;
  border-radius: 0 !important;
  background: #941c2b !important;
  box-shadow: none !important;
  color: #fff !important;
  font-weight: 700;
  line-height: 1 !important;
  text-decoration: none !important;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease !important;
}

body.woocommerce-wishlist .woocommerce-message a.button.wc-forward:hover,
body.woocommerce-wishlist .woocommerce-message a.button.wc-forward:focus-visible {
  border-color: #6f111d !important;
  background: #6f111d !important;
  color: #fff !important;
}

body.woocommerce-cart .woocommerce-message {
  display: flex !important;
  align-items: center !important;
  border: 1px solid #ded2c7 !important;
  background: #f3efe9 !important;
  color: #4b4038 !important;
}

body.woocommerce-cart .woocommerce-message::before {
  color: #941c2b !important;
}

body.woocommerce-cart .woocommerce-message a.button.wc-forward {
  display: inline-flex !important;
  flex: 0 0 auto;
  align-items: center;
  align-self: center;
  justify-content: center;
  float: none !important;
  height: 48px;
  min-height: 48px;
  margin-left: auto !important;
  padding: 0 28px !important;
  border: 1px solid #941c2b !important;
  border-radius: 0 !important;
  background: #941c2b !important;
  box-shadow: none !important;
  color: #fff !important;
  line-height: 1 !important;
}

body.woocommerce-cart .woocommerce-message a.button.wc-forward:hover,
body.woocommerce-cart .woocommerce-message a.button.wc-forward:focus-visible {
  border-color: #6f111d !important;
  background: #6f111d !important;
  color: #fff !important;
}

body.woocommerce-checkout form.checkout_coupon button.button:hover,
body.woocommerce-checkout form.checkout_coupon button.button:focus-visible,
body.woocommerce-checkout .woocommerce-message a.button.wc-forward:hover,
body.woocommerce-checkout .woocommerce-message a.button.wc-forward:focus-visible {
  border-color: #6f111d !important;
  background: #6f111d !important;
  color: #fff !important;
}

/* Shared cart and wishlist icon hover colour. */
body.woocommerce-cart a.remove:hover,
body.woocommerce-cart a.remove:focus-visible,
body.woocommerce-cart .product-remove a:hover,
body.woocommerce-cart .product-remove a:focus-visible,
body.woocommerce-cart .quantity .minus:hover,
body.woocommerce-cart .quantity .minus:focus-visible,
body.woocommerce-cart .quantity .plus:hover,
body.woocommerce-cart .quantity .plus:focus-visible,
body.woocommerce-wishlist a.remove:hover,
body.woocommerce-wishlist a.remove:focus-visible,
body.woocommerce-wishlist .product-remove a:hover,
body.woocommerce-wishlist .product-remove a:focus-visible,
body.woocommerce-wishlist .quantity .minus:hover,
body.woocommerce-wishlist .quantity .minus:focus-visible,
body.woocommerce-wishlist .quantity .plus:hover,
body.woocommerce-wishlist .quantity .plus:focus-visible,
.quantity .tc a.minus:hover,
.quantity .tc a.minus:focus-visible,
.quantity .tc a.plus:hover,
.quantity .tc a.plus:focus-visible,
body.woocommerce-wishlist .wishlist_table .remove_from_wishlist:hover,
body.woocommerce-wishlist .wishlist_table .remove_from_wishlist:focus-visible,
.jas-mini-cart .mini_cart_item a.remove:hover,
.jas-mini-cart .mini_cart_item a.remove:focus-visible,
.woocommerce-mini-cart .remove_from_cart_button:hover,
.woocommerce-mini-cart .remove_from_cart_button:focus-visible {
  color: #941c2b !important;
  border-color: #941c2b !important;
}

body.woocommerce-cart a.remove:hover::before,
body.woocommerce-cart a.remove:hover::after,
body.woocommerce-wishlist a.remove:hover::before,
body.woocommerce-wishlist a.remove:hover::after,
.jas-mini-cart a.remove:hover::before,
.jas-mini-cart a.remove:hover::after {
  color: #941c2b !important;
  border-color: #941c2b !important;
  background-color: #941c2b !important;
}

body.woocommerce-wishlist .yith-wcwl-icon:hover,
body.woocommerce-wishlist a:hover .yith-wcwl-icon,
body.woocommerce-wishlist a:focus-visible .yith-wcwl-icon,
body.woocommerce-wishlist .fa-heart:hover,
body.woocommerce-wishlist a:hover .fa-heart,
body.woocommerce-wishlist a:focus-visible .fa-heart,
body.woocommerce-cart .yith-wcwl-icon:hover,
body.woocommerce-cart a:hover .yith-wcwl-icon,
body.woocommerce-cart a:focus-visible .yith-wcwl-icon,
body.woocommerce-cart .fa-heart:hover,
body.woocommerce-cart a:hover .fa-heart,
body.woocommerce-cart a:focus-visible .fa-heart {
  color: #941c2b !important;
  fill: #941c2b !important;
  stroke: #941c2b !important;
}

.cart .yith-wcwl-add-to-wishlist:hover,
.cart .yith-wcwl-add-to-wishlist:hover a,
.cart .yith-wcwl-add-to-wishlist:hover a i,
.cart .yith-wcwl-add-to-wishlist a:hover,
.cart .yith-wcwl-add-to-wishlist a:hover i,
.cart .yith-wcwl-add-to-wishlist a:focus-visible,
.cart .yith-wcwl-add-to-wishlist a:focus-visible i {
  color: #941c2b !important;
}

/* Unify every native cart, mini-cart and wishlist hover with RedMeteor red. */
body.woocommerce-cart a:not(.button):hover,
body.woocommerce-cart a:not(.button):focus-visible,
body.woocommerce-wishlist a:not(.button):hover,
body.woocommerce-wishlist a:not(.button):focus-visible,
.jas-mini-cart a:not(.button):hover,
.jas-mini-cart a:not(.button):focus-visible,
.woocommerce-mini-cart a:not(.button):hover,
.woocommerce-mini-cart a:not(.button):focus-visible {
  color: #941c2b !important;
}

body.woocommerce-cart button:hover,
body.woocommerce-cart button:focus-visible,
body.woocommerce-cart input[type="button"]:hover,
body.woocommerce-cart input[type="button"]:focus-visible,
body.woocommerce-cart input[type="submit"]:hover,
body.woocommerce-cart input[type="submit"]:focus-visible,
body.woocommerce-cart a.button:hover,
body.woocommerce-cart a.button:focus-visible,
body.woocommerce-wishlist button:hover,
body.woocommerce-wishlist button:focus-visible,
body.woocommerce-wishlist input[type="button"]:hover,
body.woocommerce-wishlist input[type="button"]:focus-visible,
body.woocommerce-wishlist input[type="submit"]:hover,
body.woocommerce-wishlist input[type="submit"]:focus-visible,
body.woocommerce-wishlist a.button:hover,
body.woocommerce-wishlist a.button:focus-visible,
.jas-mini-cart a.button:hover,
.jas-mini-cart a.button:focus-visible,
.woocommerce-mini-cart a.button:hover,
.woocommerce-mini-cart a.button:focus-visible {
  border-color: #6f111d !important;
  background-color: #6f111d !important;
  color: #fff !important;
}

body.woocommerce-cart select:hover,
body.woocommerce-cart input:hover,
body.woocommerce-wishlist select:hover,
body.woocommerce-wishlist input:hover {
  border-color: #941c2b !important;
}
