/* Reduce H3 size in that view: */
.view-id-rv_hookup_site_rental .item-list h3 {
  font-size: 18px;
}

.view-id-cabin_rental .item-list h3 {
  font-size: 18px;
}

/* Container card */
#block-my-claro-useraccountmenu {
  max-width: 360px;
  margin: 1.5rem auto;
  padding: 1rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Hide the “User account menu” heading entirely */
#block-my-claro-useraccountmenu > h2 {
  display: none;
}

/* Layout the UL as a flex‐container, center its items */
#block-my-claro-useraccountmenu .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

/* Remove bullet spacing on LIs */
#block-my-claro-useraccountmenu .menu-item {
  margin: 0 0.5rem;
}

/* Style the link as your “Register NOW!” button */
#block-my-claro-useraccountmenu .menu-item a {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: rgb(193, 194, 199); 
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

/* Hover state */
#block-my-claro-useraccountmenu .menu-item a:hover {
  background-color: #e0e0e0;
}


/* 1) Target the exact nav block */
nav#block-my-claro-useraccountmenu {
  padding: 1rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  max-width: 360px;
  margin: 1.5rem auto;
}

/* 2) Hide the <h2> title entirely */
nav#block-my-claro-useraccountmenu > h2 {
  display: none;
}

/* 3) Remove all bullets/markers and left‐indent on the UL */
nav#block-my-claro-useraccountmenu ul.menu {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

/* 4) Also suppress any ::marker in newer browsers */
nav#block-my-claro-useraccountmenu ul.menu li.menu-item::marker {
  content: none !important;
}

/* 5) Style your <li> spacing and reset padding */
nav#block-my-claro-useraccountmenu ul.menu li.menu-item {
  margin: 0;   /* or margin: 0 0.5rem; if you want side spacing */
  padding: 0;
  list-style: none !important;
}

/* 6) Finally, turn the <a> into your pill‐style button */
nav#block-my-claro-useraccountmenu ul.menu li.menu-item a,
nav#block-my-claro-useraccountmenu ul.menu li.menu-item input {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: rgb(193, 194, 199); 
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

/* 7) Hover state */
nav#block-my-claro-useraccountmenu ul.menu li.menu-item a:hover,
nav#block-my-claro-useraccountmenu ul.menu li.menu-item input:hover {
  background-color: #e0e0e0;
}

nav#block-my-claro-useraccountmenu ul.menu li.menu-item + li.menu-item {
  margin-left: 0.5rem; /* space to the left of every button except the first */
}

/* Make the menu a flex container and set a gap between buttons */
nav#block-my-claro-useraccountmenu ul.menu {
  display: flex;
  justify-content: flex-start; /* buttons align to the left */
  gap: 0.75rem;                /* 0.75rem of space between each button */
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Move your account menu block flush to the left */
nav#block-my-claro-useraccountmenu {
  max-width: 360px;
  /* top=1.5rem, right=auto, bottom=1.5rem, left=0 */
  margin: 1.5rem auto 1.5rem 0;
  padding: 1rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}


/* Turn that full-width Bootstrap link into a card-style button */
a.az-button-content.btn.btn-lg.btn-primary.btn-block {
  display: inline-block !important;        /* don’t force 100% width */
  width: auto !important;                  /* let it size to its content */
  max-width: 360px;                        /* optional cap if you like */
  margin: 80px auto !important;            /* keep your top/bottom spacing, center it */
  padding: 0.75rem 1.5rem !important;       /* comfortable tappable area */
  background-color: #2962ff !important;    /* your primary blue */
  color: #fff !important;                  /* white text */
  text-align: center !important;
  text-decoration: none !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  border-radius: 6px !important;           /* pill-shape corners */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1) !important; /* subtle lift */
  transition: background-color 0.2s ease !important;
}

/* Hover state */
a.az-button-content.btn.btn-lg.btn-primary.btn-block:hover {
  background-color: #0039cb !important;
}

/* Target your specific “Register NOW!” link */
a.az-button-content.btn.btn-lg.btn-primary.btn-block {
  /* Shrink-wrap to the text width */
  display: table !important;
  /* Keep your vertical spacing, auto center horizontally */
  margin: 80px auto !important;
  /* Remove the 100% width */
  width: auto !important;
}




/* Style the “Add to cart” button */
input.button--add-to-cart.button.button--primary.js-form-submit.form-submit {
  /* remove default styling */
  background-color: #2962ff;    /* your primary blue */
  color: #fff;                  /* white text */
  border: none;                 /* no border */
  border-radius: 6px;           /* rounded corners */
  padding: 0.6rem 1.2rem;       /* comfortable click/tap area */
  font-size: 0.95rem;           /* match your other buttons */
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  /* inline-block so it doesn’t stretch full-width */
  display: inline-block;
  width: auto;
}

/* Hover state */
input.button--add-to-cart.button.button--primary.js-form-submit.form-submit:hover {
  background-color: #0039cb;    /* darker blue on hover */
}

/* 1) Make the nav a flex container, center items vertically */
#block-my-claro-useraccountmenu ul.menu {
  display: flex;
  align-items: center;          /* vertical centering of all buttons */
  justify-content: flex-start;  /* or space-between if you want ends */
  gap: 0.75rem;                  /* equal horizontal spacing */
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 2) Reset <li> so all buttons are treated the same */
#block-my-claro-useraccountmenu ul.menu li.menu-item {
  margin: 0;
  padding: 0;
}

/* 3) Apply identical styling to <a> and <input> buttons */
#block-my-claro-useraccountmenu ul.menu li.menu-item a,
#block-my-claro-useraccountmenu ul.menu li.menu-item input {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #2962ff;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  line-height: 1;              /* ensure vertical centering */
}
#block-my-claro-useraccountmenu ul.menu li.menu-item a:hover,
#block-my-claro-useraccountmenu ul.menu li.menu-item input:hover {
  background-color: #0039cb;
}

/* 1. Make the menu a flex container and left-align everything */
nav#block-my-claro-useraccountmenu ul.menu {
  display: flex;
  justify-content: flex-start;  /* was center */
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* 2. Optional: if “Cart” is coming first and you want “Log in” on the far left, swap them */
nav#block-my-claro-useraccountmenu ul.menu li.menu-item:nth-child(1) {
  order: 2;
}
nav#block-my-claro-useraccountmenu ul.menu li.menu-item:nth-child(2) {
  order: 1;
}

/* 1) Prevent button text from wrapping */
nav#block-my-claro-useraccountmenu ul.menu li.menu-item a {
  white-space: nowrap;
}

/* 2) Center items vertically in the flex row */
nav#block-my-claro-useraccountmenu ul.menu {
  display: flex;
  align-items: center;
  /* you already have gap, justify-content, etc. */
}

/* 1) Prevent any button label from wrapping onto two lines */
nav#block-my-claro-useraccountmenu ul.menu li.menu-item a {
  white-space: nowrap;
}

/* 2) Allow the menu block to expand a bit so the buttons don’t squeeze */
nav#block-my-claro-useraccountmenu {
  max-width: none;    /* remove the hard 360px cap */
  width: auto;        /* grow to fit the inner flex items */
  margin: 1.5rem 0;   /* top/bottom spacing, no horizontal centering */
}

/* Optional: if you want the buttons left-aligned instead of centered: */
nav#block-my-claro-useraccountmenu ul.menu {
  justify-content: flex-start;  /* line them up at the left edge */
}

.star-party-menu {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  /* so that the container expands around its floated child */
  overflow: auto;
  position: relative;
  padding-top: 1rem; /* ensure some breathing room for the float */
}
/* Float the logo top‑right */
.vendor-logo {
  float: right;
  margin: 1rem 1rem 1rem 1rem;
  max-width: 300px;    /* adjust as needed */
  height: auto;
}
.star-party-menu h2 {
  margin-top: 0;
  font-size: 1.5rem;
}
.star-party-menu h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}
.star-party-menu h4 {
  margin: 1rem 0 0.25rem;
  font-size: 1rem;
}
.star-party-menu p {
  margin: 0 0 1rem;
}

/* Hide the “Exclude from DXPR builder editing” checkbox completely */
#edit-login-register-dxpr-user-is-disavowed-wrapper {
  display: none !important;
}

/* — or, if you prefer targeting by field class — */
.field--name-dxpr-user-is-disavowed {
  display: none !important;
}


/* Logo floats to the left of the user menu */
.account-menu-logo-wrapper {
  margin-right: 1rem;
  float: left;
}

.account-menu-logo-wrapper img.account-menu-logo {
  max-height: 40px;  /* adjust to your needs */
  width: auto;
}

/* Ensure the flex layout doesn’t break */
#block-my-claro-useraccountmenu .menu {
  overflow: hidden;
  align-items: center;
}


/**
 * Custom checkout button color
 */

/* Only on the cart page—you may remove the body prefix if you want global */
#edit-checkout,
#edit-actions-checkout {
  background-color: #28a745;   /* a vibrant green */
  border-color:     #28a745;
  color:            #ffffff;
}
#edit-checkout:hover,
#edit-checkout:focus,
#edit-actions-checkout:hover,
#edit-actions-checkout:focus {
  background-color: #218838;   /* slightly darker on hover */
  border-color:     #1e7e34;
}

div.star-party-menu {
  margin-top: 1rem;
}

#edit-login-returning-customer-forgot-password {
  margin-left: 1rem;
}

/* Hide Drupal's default message type headings on public site. */
.messages__title,
.messages__header,
.messages h2,
.messages h3 {
  display: none !important;
}

/* ESSP 2026: cart is controlled by the registration builder form. */
body.path-essp-registration form.commerce-order-item-add-to-cart-form,
body.path-essp-registration .commerce-variation-cart-form,
body.path-essp-registration .button--add-to-cart {
  display: none !important;
}

.essp-builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.essp-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  background: #fff;
}

.essp-card-highlight {
  border-left: 6px solid #39b37f;
}

.essp-summary-card {
  position: sticky;
  top: 1rem;
}

@media (max-width: 900px) {
  .essp-builder-layout {
    grid-template-columns: 1fr;
  }

  .essp-summary-card {
    position: static;
  }
}

.essp-summary-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.essp-summary-table td {
  padding: 0.4rem 0;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

.essp-summary-table td:last-child {
  text-align: right;
  white-space: nowrap;
}

.essp-summary-grand-total td {
  border-bottom: none;
  padding-top: 0.8rem;
  font-size: 1.1rem;
}

/* Checkout cleanup: order summary should not show add-to-cart controls. */
.path-checkout .commerce-order-item-add-to-cart-form,
.path-checkout .commerce-variation-cart-form,
.path-checkout input.button--add-to-cart,
.path-checkout .button--add-to-cart,
.path-checkout .form-item-quantity,
.path-checkout .field--name-quantity {
  display: none !important;
}

.path-checkout .form-item-copy-to-address-book,
.path-checkout .address-book-profile {
    display: none !important;
}

/* Hide Commerce address book checkbox during checkout. */
.path-checkout .form-item-payment-information-billing-information-copy-fields-enable,
.path-checkout .form-item-payment-information-billing-information-copy-to-address-book,
.path-checkout [name*="copy_to_address_book"],
.path-checkout [name*="copy_fields"],
.path-checkout label[for*="copy"] {
  display: none !important;
}

.path-checkout a[href*="/order_information"] {
  display: none;
}

/* ESSP checkout: fix billing heading spacing/appearance. */
.path-checkout .checkout-pane-payment-information,
.path-checkout [id*="payment-information"] {
  padding: 2rem !important;
}

.path-checkout .checkout-pane-payment-information > h3,
.path-checkout [id*="payment-information"] > h3 {
  margin: 0 0 1.5rem 0 !important;
  padding: 0 !important;
  font-size: 1.15rem !important;
  line-height: 1.3 !important;
  color: #4a4f5a !important;
}

/* ESSP checkout completion page */
.path-checkout .essp-completion-box {
  max-width: 980px;
  margin: 0 auto 4rem auto;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
}

.path-checkout .essp-completion-box h1 {
  margin: 0 0 0.75rem 0;
  font-size: 2.6rem;
  line-height: 1.1;
}

.path-checkout .essp-completion-lead {
  font-size: 1.25rem;
  margin-bottom: 1.75rem;
}

.path-checkout .essp-completion-banner {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  margin: 2rem auto;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.path-checkout .essp-completion-box h2 {
  margin-top: 2rem;
}

.path-checkout .essp-completion-next {
  margin-left: 1.25rem;
  line-height: 1.7;
}

.path-checkout .essp-completion-actions {
  margin: 2rem 0;
}

.path-checkout .essp-account-button,
.path-checkout .essp-home-button {
  display: inline-block;
  margin: 0.5rem 0.75rem 0.5rem 0;
  padding: 0.9rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none !important;
}

.path-checkout .essp-account-button {
  background: #1f4fd8;
  color: #ffffff !important;
}

.path-checkout .essp-account-button:hover {
  background: #163aa3;
}

.path-checkout .essp-home-button {
  border: 2px solid #1f4fd8;
  color: #1f4fd8 !important;
  background: #ffffff;
}

.path-checkout .essp-home-button:hover {
  background: #eef3ff;
}

.path-checkout .essp-completion-contact {
  margin-top: 1.5rem;
}

.path-checkout .essp-under-stars {
  margin-top: 2rem;
}

.essp-completion-actions {
    margin-top: 2.5rem;
}

/* ESSP account dashboard */
.essp-dashboard {
  max-width: 1100px;
  margin: 0 0 4rem 2rem;
}

.essp-dashboard-card {
  margin: 1.5rem 0;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,.10);
}

.essp-dashboard-success {
  border-left: 6px solid #56b37f;
}

.essp-dashboard-warning {
  border-left: 6px solid #f0b429;
}

.essp-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.essp-dashboard-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.essp-dashboard-actions {
  margin-top: 2rem;
}

@media (max-width: 800px) {
  .essp-dashboard-grid,
  .essp-dashboard-summary {
    grid-template-columns: 1fr;
  }
}

/* ESSP dashboard action buttons */
.essp-dashboard .essp-account-button,
.essp-dashboard .essp-home-button {
  display: inline-block;
  margin: 0.5rem 0.75rem 0.5rem 0;
  padding: 0.9rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none !important;
}

.essp-dashboard .essp-account-button {
  background: #1f4fd8;
  color: #fff !important;
}

.essp-dashboard .essp-account-button:hover {
  background: #163aa3;
}

.essp-dashboard .essp-home-button {
  border: 2px solid #1f4fd8;
  color: #1f4fd8 !important;
  background: #fff;
}

.essp-dashboard .essp-home-button:hover {
  background: #eef3ff;
}

.essp-profile-help {
  background: #f8fbff;
  border-left: 4px solid #1f6feb;
  padding: 1rem 1.25rem;
  margin: 0 0 2rem 0;
  border-radius: 8px;
}

.essp-profile-help h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.essp-profile-help p:last-child {
  margin-bottom: 0;
}

/* ESSP account menu polish */
.region-secondary-menu,
.region-primary-menu {
  max-width: 1100px;
  margin: 0 auto;
}

.menu--account ul.menu {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1rem 0;
  margin: 0;
}

.menu--account .menu-item {
  list-style: none;
}

.menu--account .menu-item a {
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none !important;
}

.menu--account .menu-item a[href="/essp-account"] {
  border: 2px solid #1f4fd8;
  color: #1f4fd8 !important;
  background: #fff;
}

.menu--account .menu-item a[href="/essp-account"]:hover {
  background: #eef3ff;
}

.menu--account .menu-item a[href="/user/logout"] {
  color: #555 !important;
  background: transparent;
  border: 0;
}

.menu--account .menu-item a[href="/user/logout"]:hover {
  color: #111 !important;
  text-decoration: underline !important;
}

.essp-status-paid {
  display: inline-block;
  background: #dff5e5;
  color: #1e7a39;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-weight: 700;
}

.essp-dashboard-countdown {
  margin: 0 0 1.5rem 0;
  padding: 1rem 1.25rem;
  background: #f8fbff;
  border-left: 4px solid #1f4fd8;
  border-radius: 8px;
  font-weight: 700;
}

.essp-dashboard-countdown span {
  font-weight: 400;
}

.path-essp-account .breadcrumb,
.path-user .breadcrumb {
  display: none;
}

.essp-profile-help a {
  overflow-wrap: normal;
  word-break: keep-all;
  white-space: nowrap;
}

/* Align ESSP user edit/profile pages with dashboard */
.path-user form.user-form {
  max-width: 720px;
  margin-left: 2rem;
  margin-right: 2rem;
}

/* ESSP profile help box inside the form */
.path-user form.user-form .essp-profile-help {
  width: 100%;
  box-sizing: border-box;
  margin: 2rem 0 2rem 0;
  padding: 2rem;
  background: #eef3fb;
  border-left: 4px solid #2563eb;
  border-radius: 12px;
}

.path-user form.user-form .essp-profile-help h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.path-user form.user-form .essp-profile-help p:last-child {
  margin-bottom: 0;
}

.path-user form.user-form .essp-profile-help a {
  overflow-wrap: normal;
  word-break: keep-all;
  white-space: nowrap;
}

.path-user form.user-form input[type="text"],
.path-user form.user-form input[type="email"],
.path-user form.user-form input[type="tel"],
.path-user form.user-form select {
  max-width: 700px;
}

nav#block-my-claro-useraccountmenu a[href*="/user/login"],
nav#block-my-claro-useraccountmenu a[href="/essp-account"] {
  background: #ffffff;
  border: 2px solid #1f4fd8;
  color: #1f4fd8 !important;
}

nav#block-my-claro-useraccountmenu a[href*="/user/login"]:hover,
nav#block-my-claro-useraccountmenu a[href="/essp-account"]:hover {
  background: #eef3ff;
}

.path-checkout .essp-completion-banner {
  height: 320px;
}

a.essp-forgot-password-button {
  margin-left: 1rem !important;
  background: #ffffff !important;
  color: #1f4fd8 !important;
  border: 2px solid #1f4fd8 !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

a.essp-forgot-password-button:hover {
  background: #eef3ff !important;
  color: #1f4fd8 !important;
}

/* ESSP top account/header branding */
nav#block-my-claro-useraccountmenu,
#block-my-claro-useraccountmenu {
  max-width: none;
  width: auto;
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

#block-my-claro-useraccountmenu > h2 {
  display: none;
}

#block-my-claro-useraccountmenu .essp-header-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-right: auto;
}

#block-my-claro-useraccountmenu .essp-header-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
}

#block-my-claro-useraccountmenu .essp-header-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #20242c;
  line-height: 1.1;
}

#block-my-claro-useraccountmenu .essp-header-tagline {
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.2;
}

#block-my-claro-useraccountmenu ul.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

#block-my-claro-useraccountmenu ul.menu li.menu-item {
  margin: 0;
  padding: 0;
  list-style: none !important;
}

#block-my-claro-useraccountmenu ul.menu li.menu-item a {
  display: inline-block;
  white-space: nowrap;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none !important;
}

#block-my-claro-useraccountmenu a[href*="/user/login"],
#block-my-claro-useraccountmenu a[href="/essp-account"] {
  background: #ffffff;
  border: 2px solid #1f4fd8;
  color: #1f4fd8 !important;
}

#block-my-claro-useraccountmenu a[href*="/user/login"]:hover,
#block-my-claro-useraccountmenu a[href="/essp-account"]:hover {
  background: #eef3ff;
}

#block-my-claro-useraccountmenu a[href="/user/logout"] {
  background: rgb(193, 194, 199);
  color: #ffffff !important;
  border: 2px solid rgb(193, 194, 199);
}

#block-my-claro-useraccountmenu a[href="/user/logout"]:hover {
  background: #aeb0b8;
  border-color: #aeb0b8;
}

@media (max-width: 700px) {
  #block-my-claro-useraccountmenu {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  #block-my-claro-useraccountmenu .essp-header-brand img {
    width: 40px;
    height: 40px;
  }

  #block-my-claro-useraccountmenu .essp-header-title {
    font-size: 1rem;
  }

  #block-my-claro-useraccountmenu .essp-header-tagline {
    font-size: 0.75rem;
  }

  #block-my-claro-useraccountmenu ul.menu {
    width: 100%;
    justify-content: flex-start;
    margin-top: 0.75rem !important;
  }
}

.essp-header-home-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none !important;
  color: inherit;
}

.essp-header-home-link:hover {
  text-decoration: none !important;
}

.essp-header-home-link:hover .essp-header-title {
  color: #1f4fd8;
}

.essp-header-home-link img {
  transition: transform 0.15s ease;
}

.essp-header-home-link:hover img {
  transform: scale(1.05);
}

/* Homepage large MAS logo balance — exclude header logo */
.path-frontpage .az-element img[src*="mas-logo-essp"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5.5rem;
  max-width: 180px;
  height: auto;
}

/* Header MAS logo should stay small */
#block-my-claro-useraccountmenu img[src*="mas-logo-essp"] {
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  margin: 0 !important;
}

.path-frontpage img[src*="astronomical-league"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 160px;
}

.path-frontpage img[src*="astronomical-league"] {
  transform: translateY(1.5rem);
}

/* Homepage max width consistency */
.path-frontpage .az-section,
.path-frontpage .az-element {
  box-sizing: border-box;
}

.path-frontpage .az-section > .az-ctnr.container,
.path-frontpage .az-section > .az-ctnr.container-fluid {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

.path-frontpage .az-section:first-of-type,
.path-frontpage .az-section:first-of-type .az-ctnr {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}


.path-frontpage .az-section:nth-of-type(2) {
  margin-top: -1rem;
}

/* Homepage lodging/options band refinement */
.path-frontpage #gbsswizpkm {
  max-width: 1476px !important;
  margin: 3rem auto 3rem auto !important;
  padding: 0 !important;
  background: transparent !important;
}

.path-frontpage #gbsswizpkm > .az-ctnr,
.path-frontpage #gbsswizpkm .container {
  max-width: 1476px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 2rem 1.5rem !important;
  background: #f3f4f6;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.path-frontpage #gbsswizpkm i,
.path-frontpage #gbsswizpkm svg {
  opacity: 0.85;
}

.path-frontpage #gbsswizpkm .az-column,
.path-frontpage #gbsswizpkm .az-element {
  text-align: center;
}

.path-frontpage #gbsswizpkm .az-column {
    transition: all 0.2s ease;
    border-radius: 10px;
    padding: 1rem;
}

.path-frontpage #gbsswizpkm .az-column:hover {
    transform: none;
    background: transparent;
    cursor: default;
}

/* Homepage center carousel: prevent layout jump between slides */
.path-frontpage .az-carousel,
.path-frontpage .carousel,
.path-frontpage .carousel-inner,
.path-frontpage .carousel-item {
  min-height: 560px;
}

.path-frontpage .az-carousel img,
.path-frontpage .carousel img {
  height: 560px !important;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

/* Homepage intro sentence under hero — airy neutral */
.path-frontpage .essp-home-intro {
  max-width: 900px;
  margin: 1.5rem auto 2.75rem auto;
  padding: 0 2rem;
  text-align: center;
  font-size: 1.18rem;
  line-height: 1.65;
  font-weight: 600;
  color: #4b5563;
  background: transparent;
  border: 0;
}

/* Homepage testimonials — airy neutral */
.path-frontpage blockquote {
  background: transparent;
  border-left: 2px solid #d1d5db;
  border-radius: 0;
  padding: 0.9rem 0 0.9rem 1.25rem;
  margin: 0 0 1.6rem 0;
  box-shadow: none;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #20242c;
}

.path-frontpage blockquote p {
  margin-bottom: 1.25rem;
}

.path-frontpage blockquote footer,
.path-frontpage blockquote cite {
  color: #6b7280;
  font-size: 0.95rem;
}

.path-frontpage blockquote::before {
  color: #c4c7cc !important;
  opacity: 0.9;
}

.path-frontpage .essp-home-intro + .az-element,
.path-frontpage .essp-home-intro + .az-section {
  margin-top: 0.5rem;
}

/* ESSP Homepage – Right Column (MAS + CTA) */

.path-frontpage #gba4dhzyzr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* MAS logo */
.path-frontpage #btauov img {
  width: 190px !important;
  max-width: 190px !important;
  height: auto !important;
  display: block;
  margin: 0 auto !important;
}

/* CTA wrapper */
.path-frontpage #gbywi0n4ww {
  text-align: center;
}

/* CTA button */
.path-frontpage #gbywi0n4ww a.az-button-content.btn.btn-lg.btn-primary.btn-block {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;

  margin-top: 85px !important;
  margin-bottom: 80px !important;

  min-width: 250px;
  padding: 1.15rem 2rem !important;

  border-radius: 12px !important;
  background: #3562f4 !important;
  color: #ffffff !important;

  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-transform: uppercase;

  box-shadow: 0 8px 22px rgba(47,93,245,.25);
  transition: all 0.2s ease;
}

.path-frontpage #gbywi0n4ww a.az-button-content.btn.btn-lg.btn-primary.btn-block:hover {
  background: #2d55da !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(47,93,245,.35);
}

.path-frontpage #gbywi0n4ww a.az-button-content p {
  margin: 0;
  font: inherit;
}

/* Nudge MAS + CTA column slightly left */
.path-frontpage #gba4dhzyzr {
  transform: translateX(-1rem);
}

/* Header branding typography */
#block-my-claro-useraccountmenu .essp-header-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #20242c;
}

#block-my-claro-useraccountmenu .essp-header-tagline {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #6b7280;
}

/* Mobile homepage/header refinement */
@media (max-width: 700px) {
  #block-my-claro-useraccountmenu {
    margin: 1rem;
    padding: 1rem;
    gap: 0.75rem;
  }

  #block-my-claro-useraccountmenu .essp-header-brand {
    align-items: flex-start;
  }

  #block-my-claro-useraccountmenu .essp-header-title {
    font-size: 1.05rem;
    line-height: 1.15;
  }

  #block-my-claro-useraccountmenu .essp-header-tagline {
    font-size: 0.72rem;
    line-height: 1.2;
  }

  #block-my-claro-useraccountmenu .essp-header-brand img {
    width: 42px !important;
    height: 42px !important;
  }

  #block-my-claro-useraccountmenu ul.menu {
    width: auto;
    margin-top: 0.75rem !important;
  }
}

/* Hero intro typography */
.path-frontpage .essp-home-intro {
  max-width: 860px;
  font-size: 1.15rem;
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: #4b5563;
}

/* Mobile hero text */
@media (max-width: 700px) {
  .path-frontpage .az-section:first-of-type h1,
  .path-frontpage .az-section:first-of-type h2 {
    font-size: 3rem !important;
    line-height: 1.08 !important;
  }

  .path-frontpage .az-section:first-of-type {
    margin-top: 1rem;
  }
}

/* Homepage FAQ/About section refinement */
.path-frontpage #gbw54z0fcc {
  max-width: 1476px !important;
  margin: 3rem auto 4rem auto !important;
  padding: 2.5rem !important;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.06);
}

/* FAQ heading */
.path-frontpage #gbw54z0fcc h3,
.path-frontpage #gbw54z0fcc h2 {
  color: #20242c;
  letter-spacing: -0.015em;
}

/* Accordion polish */
.path-frontpage #gbw54z0fcc .panel,
.path-frontpage #gbw54z0fcc .accordion-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.65rem;
  box-shadow: none;
}

.path-frontpage #gbw54z0fcc .panel-heading,
.path-frontpage #gbw54z0fcc .accordion-header {
  background: #f9fafb;
}

.path-frontpage #gbw54z0fcc .panel-title,
.path-frontpage #gbw54z0fcc .accordion-button {
  font-weight: 600;
  color: #20242c;
}

/* Right column readability */
.path-frontpage #gbw54z0fcc p,
.path-frontpage #gbw54z0fcc li {
  font-size: 1rem;
  line-height: 1.65;
  color: #374151;
}

.path-frontpage #gbw54z0fcc ul {
  padding-left: 1.25rem;
}

.path-frontpage #gbw54z0fcc li {
  margin-bottom: 1rem;
}

/* Tabs refinement */
.path-frontpage #gbw54z0fcc .nav-tabs {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
}

.path-frontpage #gbw54z0fcc .nav-tabs .nav-link {
  font-weight: 600;
  color: #4b5563;
}

.path-frontpage #gbw54z0fcc .nav-tabs .nav-link.active {
  color: #1f4fd8;
  border-color: #e5e7eb #e5e7eb #ffffff;
}

/* ==========================
   ESSP mobile homepage polish
   ========================== */
@media (max-width: 700px) {

  /* Header card */
  #block-my-claro-useraccountmenu {
    margin: 1rem !important;
    padding: 0.9rem !important;
  }

  #block-my-claro-useraccountmenu .essp-header-brand img {
    width: 42px !important;
    height: 42px !important;
  }

  #block-my-claro-useraccountmenu .essp-header-title {
    font-size: 1.05rem !important;
    line-height: 1.15 !important;
  }

  #block-my-claro-useraccountmenu .essp-header-tagline {
    font-size: 0.72rem !important;
    line-height: 1.2 !important;
  }

  /* Hero */
  .path-frontpage #gb21bi8syo {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .path-frontpage #gb21bi8syo h1 {
    line-height: 1.05 !important;
    margin: 0 !important;
  }

  .path-frontpage #gb21bi8syo h1 span {
    font-size: 2.6rem !important;
    line-height: 1.05 !important;
  }

  .path-frontpage #gb21bi8syo h2,
  .path-frontpage #gb21bi8syo h2 span {
    font-size: 1.35rem !important;
    line-height: 1.25 !important;
  }

  .path-frontpage #gb21bi8syo p,
  .path-frontpage #gb21bi8syo p span {
    font-size: 1rem !important;
    line-height: 1.35 !important;
  }

  /* Intro sentence */
  .path-frontpage .essp-home-intro {
    font-size: 1.05rem !important;
    line-height: 1.5 !important;
    padding: 0 1.25rem !important;
    margin: 1.75rem auto 3rem auto !important;
  }

  /* Hide desktop decorative logos on mobile */
  .path-frontpage #gb6tc8husa,
  .path-frontpage #btauov {
    display: none !important;
  }

  /* Testimonials */
  .path-frontpage blockquote {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.75rem !important;
  }

  .path-frontpage blockquote:last-of-type {
    margin-bottom: 2rem !important;
  }

  /* CTA wrapper */
  .path-frontpage #gbywi0n4ww {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
  }

  /* CTA button */
  .path-frontpage #gbywi0n4ww a.az-button-content.btn.btn-lg.btn-primary.btn-block {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;

    width: 78% !important;
    max-width: 320px !important;
    min-width: 0 !important;

    margin-top: 2.75rem !important;
    margin-bottom: 4rem !important;

    padding: 1rem 1.25rem !important;
    font-size: 0.9rem !important;

    transform: none !important;
    left: auto !important;
    right: auto !important;
  }

  .path-frontpage #gbywi0n4ww a.az-button-content p {
    margin: 0 !important;
    font: inherit !important;
  }

  /* Lodging/options card */
  .path-frontpage #gbswizpkm {
    margin-top: 1.5rem !important;
  }

  .path-frontpage #gbswizpkm > .az-ctnr,
  .path-frontpage #gbswizpkm .container {
    padding: 1.5rem 1rem !important;
  }
}

  .essp-year-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.essp-year-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #1f3a8a;
  font-weight: 700;
  line-height: 1;
}

.essp-year-badge.essp-year-current {
  background: #dcfce7;
  color: #166534;
}

.essp-dashboard .essp-year-badges {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.essp-dashboard .essp-year-badge {
  display: inline-flex !important;
  align-items: center;
  width: auto !important;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #1f3a8a;
  font-weight: 700;
  line-height: 1;
}

.essp-dashboard .essp-year-badge.essp-year-current {
  background: #dcfce7;
  color: #166534;
}

.path-frontpage #gbsswizpkm .az-icon {
  margin-bottom: 15px;
}

.path-frontpage #gbsswizpkm .p1 {
  font-size: 0.95rem;
  color: #666;
}
