/* Account page (Account design)
   Loaded on the My Account page after components.css. Templates:
   woocommerce/myaccount/*.php; helpers in inc/account.php. Buttons and
   text links come from components.css; underline fields follow the
   checkout's. Signed out: sign-in card + "New to Blumen" panel, and the
   create-account view. Signed in: "Profile" overview (tiles, grouped rows)
   and the endpoint pages under a "← Profile" link.


   Hello I'm on live!
--------------------------------------------- */

.bluthe_account {
  max-width: 1200px;
  margin-inline: auto;
  padding: clamp(28px, 4vw, 56px) 0 clamp(56px, 7vw, 92px);
  font-family: var(--bl-font);
  color: var(--bl-navy);
}

/* Headings
--------------------------------------------- */
.bluthe_account__intro {
  text-align: center;
  margin-bottom: clamp(24px, 3.5vw, 44px);
}
.bluthe_account .bluthe_bag__title {
  margin: 0;
  font-family: var(--bl-font);
  font-weight: 400;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.06;
  color: var(--bl-navy);
}
.bluthe_account__lead {
  margin: 12px 0 0;
  font-size: 15px;
  font-weight: 300;
  color: var(--bl-text-soft);
}
.bluthe_account__title {
  margin: 0 0 22px;
  font-family: var(--bl-font);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
}
.bluthe_account__title--lg {
  margin-bottom: 10px;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.1;
}
.bluthe_account__heading {
  margin: 0 0 22px;
  font-family: var(--bl-font);
  font-size: clamp(23px, 2.4vw, 28px);
  font-weight: 400;
  line-height: 1.2;
}
.bluthe_account__subheading {
  display: block;
  padding: 0;
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 400;
}
.bluthe_account__eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bl-text-soft);
}
.bluthe_account__text {
  margin: 0 0 22px;
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--bl-text-soft);
  max-width: 48ch;
}
.bluthe_account__text--lead {
  max-width: 60ch;
}
.bluthe_account__note {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(22, 40, 63, 0.65);
}

/* Cards and panels
--------------------------------------------- */
.bluthe_account__card {
  border: 1px solid #E4DCD2;
  border-radius: 16px;
  padding: clamp(22px, 3vw, 36px);
  background: var(--bl-cream);
}
.bluthe_account__panel {
  background: var(--bl-panel);
  border-radius: 16px;
  padding: clamp(22px, 3vw, 36px);
}
.bluthe_account__panel--note {
  padding: 20px;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bluthe_account__panel--note .bluthe_account__text {
  margin: 0;
  font-size: 13.5px;
}
.bluthe_account__panel_foot {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid #E4DCD2;
}
.bluthe_account__benefits {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bluthe_account__benefits li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 14.5px;
  font-weight: 300;
}
.bluthe_account__benefits li::before {
  content: "—";
  font-size: 13px;
  color: var(--bl-text-faint);
}
.bluthe_account__panel .bluthe_account__benefits:last-child {
  margin-bottom: 0;
}

/* Signed-out layouts
--------------------------------------------- */
.bluthe_account__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(22px, 3.5vw, 48px);
  align-items: start;
}
.bluthe_account__grid--even {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.bluthe_account__single {
  max-width: 560px;
  margin-inline: auto;
}
.bluthe_account__view[hidden] {
  display: none;
}

/* Form fields (WooCommerce markup: p.form-row > label + input)
--------------------------------------------- */
.bluthe_account__fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 22px;
}
.bluthe_account__fields--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 22px;
}
.bluthe_account .form-row {
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bluthe_account .form-row > label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bl-text-soft);
}
.bluthe_account .form-row > label .required {
  color: var(--bl-accent);
  text-decoration: none;
}
.bluthe_account .form-row > label .optional {
  display: none;
}
.bluthe_account .woocommerce-input-wrapper,
.bluthe_account .password-input {
  display: block;
  position: relative;
}
.bluthe_account .form-row .input-text,
.bluthe_account .form-row select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(22, 40, 63, 0.3);
  border-radius: 0;
  padding: 10px 2px;
  font-family: var(--bl-font);
  font-size: 15px;
  font-weight: 300;
  color: var(--bl-navy);
  outline: none;
  box-shadow: none;
  transition: border-color 0.18s ease;
}
.bluthe_account .form-row .input-text::placeholder {
  color: rgba(22, 40, 63, 0.45);
}
.bluthe_account .form-row .input-text:focus,
.bluthe_account .form-row select:focus {
  border-bottom-color: var(--bl-navy);
}
.bluthe_account .form-row textarea.input-text {
  min-height: 84px;
  border: 1px solid rgba(22, 40, 63, 0.25);
  border-radius: 12px;
  padding: 12px 14px;
  resize: vertical;
}
.bluthe_account .form-row.woocommerce-invalid .input-text,
.bluthe_account .form-row.woocommerce-invalid select {
  border-color: #B4534B;
}
.bluthe_account .form-row.woocommerce-validated .input-text,
.bluthe_account .form-row.woocommerce-invalid .input-text {
  padding-inline-start: 12px;
}
/* Validation message under a field (account.js), replacing the browser bubble */
.bluthe_account .form-row.is-invalid .input-text,
.bluthe_account .form-row.is-invalid select {
  border-bottom-color: #B4534B;
}
.bluthe_account__field_error {
  display: block;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.5;
  color: #B4534B;
}
.bluthe_account .form-row .description {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--bl-text-soft);
  margin: 0;
}
.bluthe_account .select2-container .select2-selection--single {
  height: auto;
  border: 0;
  border-bottom: 1px solid rgba(22, 40, 63, 0.3);
  border-radius: 0;
  background: transparent;
}
.bluthe_account .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 10px 2px;
  font-size: 15px;
  font-weight: 300;
  color: var(--bl-navy);
}
.bluthe_account .select2-container .select2-selection--single .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
}
/* WooCommerce's show/hide password eye */
.bluthe_account .password-input .input-text {
  padding-inline-end: 34px;
}
.bluthe_account .show-password-input {
  position: absolute;
  inset-inline-end: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  opacity: 0.6;
}
.bluthe_account .show-password-input::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin: 3px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316283F' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'><path d='M2.5 12s3.5-6 9.5-6 9.5 6 9.5 6-3.5 6-9.5 6-9.5-6-9.5-6z'/><circle cx='12' cy='12' r='2.6'/></svg>") center / contain no-repeat;
}
.bluthe_account .show-password-input.display-password::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316283F' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'><path d='M2.5 12s3.5-6 9.5-6 9.5 6 9.5 6-3.5 6-9.5 6-9.5-6-9.5-6z'/><circle cx='12' cy='12' r='2.6'/><path d='M4 20L20 4'/></svg>");
}

/* Social sign-in buttons plugins add, moved above the fields, then "or" */
.bluthe_account__social {
  margin: 0 0 22px;
}
.bluthe_account__social > * {
  margin: 0;
}
/* WooCommerce Social Login's Google button: the plugin lays Google's own
   (invisible) sign-in button over its styled pill, but sizes it from an
   <img> its markup does not have, so Google renders a default 250x32 button
   that covers only part of the pill; clicks elsewhere on the pill do
   nothing. account.js re-renders Google's button at the pill's width; these
   rules make the pill a 40px-tall block (Google's "large" button height)
   and stretch Google's container over all of it. */
.bluthe_account__social .woo-slg-social-container,
.bluthe_account__social .woo-slg-social-wrap,
.bluthe_account__social .woo-slg-login-wrapper {
  display: block;
  width: 100%;
}
.bluthe_account__social .woo-slg-social-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  margin: 0 auto;
  padding: 0 21px;
  overflow: hidden;
}
.bluthe_account__social .woo-slg-social-btn .woo-slg-social-googleplus {
  position: absolute;
  inset: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.bluthe_account__social .woo-slg-social-btn .woo-slg-social-googleplus > div {
  position: absolute;
  inset: 0;
  left: 0;
  width: 100% !important;
  height: 100%;
  opacity: 0;
}
.bluthe_account__social .woo-slg-social-btn .woo-slg-social-googleplus > div > div {
  position: absolute;
  inset: 0;
  width: 100%;
}
.bluthe_account__social .woo-slg-social-btn .woo-slg-social-googleplus iframe {
  width: 100% !important;
}
.bluthe_account__social .woo-slg-social-btn:has(.woo-slg-social-googleplus > div:hover) {
  border-color: var(--bl-navy);
}
.bluthe_account__or {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bl-text-muted);
}
.bluthe_account__or::before,
.bluthe_account__or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--bl-line);
}
/* Captcha and WooCommerce's privacy line inside the forms */
.bluthe_account .h-captcha {
  margin: 0 0 22px;
}
.bluthe_account .woocommerce-privacy-policy-text p {
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(22, 40, 63, 0.65);
}
.bluthe_account .woocommerce-privacy-policy-text a {
  color: inherit;
  text-decoration: underline;
}

/* Checkbox rows */
.bluthe_account__check {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(22, 40, 63, 0.82);
  cursor: pointer;
}
.bluthe_account__check--top {
  align-items: flex-start;
}
.bluthe_account__check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--bl-navy);
}
.bluthe_account__check--top input[type="checkbox"] {
  margin-top: 3px;
}

/* Actions: pill button + text link */
.bluthe_account__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 0 18px;
}
.bluthe_account__actions:last-child,
.bluthe_account__form .bluthe_account__actions {
  margin-bottom: 0;
}
.bluthe_account__link {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--bl-navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(22, 40, 63, 0.3);
  padding-bottom: 3px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.bluthe_account__link:hover {
  color: var(--bl-accent);
  border-bottom-color: var(--bl-accent);
}
.bluthe_account__form {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 720px;
}
.bluthe_account__form .bluthe_account__fields {
  margin: 0;
}
.bluthe_account__section {
  margin: 0;
  padding: 26px 0 0;
  border: 0;
  border-top: 1px solid var(--bl-line);
  min-width: 0;
}
.bluthe_account__section .bluthe_account__text {
  margin-bottom: 20px;
}

/* Address form: two columns, full-width rows span both; hidden fields
   (country, postcode) take no space. */
.bluthe_account .woocommerce-address-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bluthe_account__fields--address {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}
.bluthe_account__fields--address .form-row-wide,
.bluthe_account__fields--address .address-field.form-row-wide {
  grid-column: 1 / -1;
}
.bluthe_account .form-row.bluthe-hidden-field,
.bluthe_account .form-row:has(> input[type="hidden"]:only-child),
.bluthe_account .form-row:has(> .woocommerce-input-wrapper > input[type="hidden"]:only-child) {
  display: none;
}
.bluthe_account .form-row .input-text[readonly] {
  color: var(--bl-text-soft);
  border-bottom-style: dashed;
  cursor: default;
}
.bluthe_account__area {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 14px 18px;
  background: var(--bl-panel);
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 300;
  color: var(--bl-text-soft);
}
.bluthe_account__area svg {
  flex: 0 0 auto;
  color: var(--bl-navy);
}

/* Notices inside the account page */
.bluthe_account .woocommerce-notices-wrapper:empty {
  display: none;
}
.bluthe_account--in .woocommerce-notices-wrapper,
.bluthe_account--out .woocommerce-notices-wrapper {
  margin-bottom: 20px;
}

/* Signed in: content column
--------------------------------------------- */
.bluthe_account__content {
  display: block;
}
.bluthe_account__back {
  margin-bottom: 26px;
}
.bluthe_account--endpoint .bluthe_account__content > .bluthe_account__back + .bluthe_account__heading {
  margin-top: 0;
}

/* Profile overview */
.bluthe_account__overview {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.6vw, 28px);
}
.bluthe_account__profile {
  display: flex;
  align-items: center;
  gap: 18px;
}
.bluthe_account__avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--bl-pill);
  color: var(--bl-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.bluthe_account__name {
  font-size: 26px;
  line-height: 1.2;
}
.bluthe_account__member {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bl-text-soft);
}
.bluthe_account__tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
  gap: 14px;
}
.bluthe_account__tile,
.bluthe_account__row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  color: var(--bl-navy);
  text-decoration: none;
  transition: background 0.18s ease;
}
.bluthe_account__tile {
  gap: 12px;
  border: 1px solid #E4DCD2;
  border-radius: 14px;
}
.bluthe_account__tile:hover,
.bluthe_account__row:hover {
  background: var(--bl-panel);
  color: var(--bl-navy);
}
.bluthe_account__tile svg,
.bluthe_account__row svg {
  flex: 0 0 auto;
  color: var(--bl-navy);
}
.bluthe_account__row_label {
  flex: 1;
  font-size: 16.5px;
}
.bluthe_account__row_value {
  font-size: 14px;
  font-weight: 300;
  color: rgba(22, 40, 63, 0.78);
}
.bluthe_account__chevron {
  font-size: 16px;
  color: var(--bl-text-muted);
}
html[dir="rtl"] .bluthe_account__chevron {
  transform: scaleX(-1);
}
html[dir="rtl"] .bluthe_account__arrow {
  display: inline-block;
  transform: scaleX(-1);
}
.bluthe_account__group {
  border: 1px solid #E4DCD2;
  border-radius: 14px;
  overflow: hidden;
}
.bluthe_account__group .bluthe_account__row + .bluthe_account__row {
  border-top: 1px solid var(--bl-line);
}
.bluthe_account__signout {
  align-self: center;
  margin-top: 4px;
}

/* Status / address chips */
.bluthe_account__chip {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--bl-pill);
  color: var(--bl-navy);
  white-space: nowrap;
}
.bluthe_account__chip--live {
  background: var(--bl-navy);
  color: var(--bl-cream);
}

/* Orders */
.bluthe_account__orders {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bluthe_account__order {
  background: var(--bl-panel);
  border-radius: 14px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) repeat(2, minmax(0, 1fr)) auto;
  gap: 14px 22px;
  align-items: center;
}
.bluthe_account__order_what .bluthe_account__eyebrow {
  margin-bottom: 6px;
}
.bluthe_account__order_item {
  font-size: 18px;
  line-height: 1.25;
}
.bluthe_account__order_date {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(22, 40, 63, 0.8);
}
.bluthe_account__order_total {
  font-size: 15px;
}
.bluthe_account__order_total .woocommerce-Price-amount {
  font-weight: 400;
}
.bluthe_account__order_count {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--bl-text-soft);
}
.bluthe_account__order_actions {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.bluthe_account__pagination {
  display: flex;
  gap: 20px;
  margin-top: 22px;
}

/* Addresses */
.bluthe_account__addresses {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 720px;
}
.bluthe_account__address {
  background: var(--bl-panel);
  border-radius: 14px;
  padding: 20px 22px;
}
.bluthe_account__address_head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.bluthe_account__address_label {
  font-size: 18px;
}
.bluthe_account__address_lines {
  font-style: normal;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(22, 40, 63, 0.8);
  margin: 0 0 14px;
}

/* Empty state */
.bluthe_account__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: clamp(40px, 6vw, 80px) 0;
}
.bluthe_account__empty_title {
  font-size: 21px;
}
.bluthe_account__empty_text {
  font-size: 14px;
  font-weight: 300;
  color: var(--bl-text-soft);
}
.bluthe_account__empty .bluthe_btn {
  margin-top: 8px;
}

/* My occasions (template-parts/woocommerce/account-occasions.php)
--------------------------------------------- */
.bluthe_occasions {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bluthe_occasions .bluthe_account__text--lead {
  margin: 0;
}
.bluthe_occasions__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bl-panel);
  border: 0;
  border-radius: 14px;
  padding: 18px 22px;
  font-family: var(--bl-font);
  font-size: 15.5px;
  color: var(--bl-navy);
  cursor: pointer;
  transition: background 0.18s ease;
}
.bluthe_occasions__toggle:hover {
  background: var(--bl-panel-hover);
}
.bluthe_occasions__toggle_icon {
  font-size: 20px;
  line-height: 1;
}
.bluthe_occasions__form[hidden] {
  display: none;
}
.bluthe_occasions__form .bluthe_account__fields {
  gap: 24px;
}
.bluthe_occasions__label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bl-text-soft);
}
.bluthe_occasions__kinds {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.bluthe_account .form-row input[type="date"] {
  min-height: 42px;
  -webkit-appearance: none;
  appearance: none;
}
.bluthe_account .form-row input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.55;
  cursor: pointer;
}
.bluthe_account .form-row select {
  cursor: pointer;
}

/* "Repeat yearly" row with a switch */
.bluthe_occasions__switch_row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 22px;
  background: var(--bl-panel);
  border-radius: 14px;
  cursor: pointer;
}
.bluthe_occasions__switch_text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bluthe_occasions__switch_title {
  font-size: 16px;
}
.bluthe_occasions__switch_note {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--bl-text-soft);
}
.bluthe_switch {
  position: relative;
  flex: 0 0 auto;
  display: inline-block;
}
.bluthe_switch input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.bluthe_switch__track {
  display: flex;
  align-items: center;
  width: 46px;
  height: 26px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(22, 40, 63, 0.25);
  box-shadow: 0 6px 14px rgba(22, 40, 63, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.85), inset 0 -6px 10px rgba(22, 40, 63, 0.12);
  transition: background 0.2s ease;
}
.bluthe_switch__knob {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bl-cream);
  transition: transform 0.2s ease;
}
.bluthe_switch input:checked + .bluthe_switch__track {
  background: var(--bl-navy);
}
.bluthe_switch input:checked + .bluthe_switch__track .bluthe_switch__knob {
  transform: translateX(20px);
}
html[dir="rtl"] .bluthe_switch input:checked + .bluthe_switch__track .bluthe_switch__knob {
  transform: translateX(-20px);
}
.bluthe_switch input:focus-visible + .bluthe_switch__track {
  outline: 2px solid var(--bl-navy);
  outline-offset: 2px;
}

/* Saved occasions */
.bluthe_occasions__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bluthe_occasions__item {
  background: var(--bl-panel);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.bluthe_occasions__item.is-passed .bluthe_occasions__name,
.bluthe_occasions__item.is-passed .bluthe_occasions__when time {
  color: var(--bl-text-muted);
}
.bluthe_occasions__who {
  flex: 1 1 220px;
  min-width: 0;
}
.bluthe_occasions__name {
  font-size: 18px;
  line-height: 1.25;
}
.bluthe_occasions__what {
  margin-top: 4px;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--bl-text-soft);
}
.bluthe_occasions__when {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 300;
}
.bluthe_occasions__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.bluthe_occasions__delete {
  display: inline-flex;
  margin: 0;
}
.bluthe_occasions__remove {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0 0 3px;
  min-height: 0;
  font-family: var(--bl-font);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bl-text-muted);
  border-bottom: 1px solid transparent;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.bluthe_occasions__remove:hover {
  background: transparent;
  color: #B4534B;
  border-bottom-color: #B4534B;
  transform: none;
  box-shadow: none;
}
.bluthe_occasions__empty {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  color: var(--bl-text-soft);
}

/* Plugin endpoints (wishlist) inherit the type; keep their tables inside
   the column. */
.bluthe_account__content table {
  max-width: 100%;
}

/* Phones
--------------------------------------------- */
@media (max-width: 767px) {
  .bluthe_account__grid,
  .bluthe_account__grid--even {
    grid-template-columns: 1fr;
  }
  .bluthe_account__card,
  .bluthe_account__panel {
    padding: 22px 18px;
  }
  .bluthe_account__order {
    grid-template-columns: 1fr 1fr;
  }
  .bluthe_account__order_what {
    grid-column: 1 / -1;
  }
  .bluthe_account__order_actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
  .bluthe_account__name {
    font-size: 22px;
  }
  .bluthe_account__actions .bluthe_btn {
    width: 100%;
  }
  .bluthe_account__fields--address {
    grid-template-columns: 1fr;
  }
  .bluthe_occasions__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .bluthe_occasions__who {
    flex: 0 0 auto;
    width: 100%;
  }
  .bluthe_occasions__actions {
    width: 100%;
    justify-content: space-between;
  }
}
