/** Shopify CDN: Minification failed

Line 756:1 Expected "}" to go with "{"

**/
.cabana-step {
  display: none;
  text-align: center;
  max-width: 495px;
  margin: auto;
}

.cabana-step input::placeholder {
  color: var(--Neutral-30, #B2B2B2);
}

/* 1. Fix the container width for Desktop */
.cabana-step.step-2-wide {
  max-width: 100%; /* Allow it to use the wrapper's 795px */
  padding: 0 10px;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px !important;
}

/* 2. Responsive Grid Logic */
.cabana-signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columns */
  gap: 12px 20px;
  text-align: left;
}

/* On Mobile: Make specific items take the full width (span 2) */
@media (max-width: 767px) {
  .grid-full-mobile {
    grid-column: span 2;
  }
  /* First and Last Name stay 1fr (half width) because they don't have this class */
  
  .cabana-step.step-2-wide {
    max-width: 495px; /* Back to original on mobile */
    margin: auto;
  }
}

/* 3. Fix Phone Input Alignment (The "weird placement") */
.phone-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #E6E6E6;
  border-radius: 8px;
  padding-left: 12px;
  background: #fff;
  height: 52px; /* Fixed height to match other inputs */
  margin-top: 8px;
}

/* REVERT BUTTON TO ORIGINAL PILL SHAPE */
.cabana-step button:not(.toggle-password):not(.hide-toggle), 
.signup-submit-btn {
  padding: 12px;
  width: 100%;
  border: none;
  cursor: pointer;
  border-radius: 32px !important; /* Reverting to Pill shape */
  background: #E1251C;
  max-width: 347px !important; /* Reverting to fixed max-width */
  margin: 21px auto 0 !important;
  color: #FFF;
  display: block;
  font-size: 16px;
  font-weight: 700;
}

/* PASSWORD STEP (STEP 4/5) IMPROVEMENTS */
.password-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.password-label-row label {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.hide-toggle {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #B2B2B2;
  font-size: 12px;
  cursor: pointer;
}

.password-instruction {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: #2D2E34;
  margin: 8px 0 15px;
  text-align: left;
}

/* TERMS CHECKBOX */
.cabana-terms-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  margin-top: 15px;
}

.cabana-terms-row input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  accent-color: #E1251C; /* Makes checkbox red */
  cursor: pointer;
}

.cabana-terms-row label {
  font-size: 13px;
  line-height: 1.4;
  color: #2D2E34;
}

.cabana-terms-row a {
  font-weight: 700;
  text-decoration: underline;
  color: #000;
}

/* Password visibility toggle – eye icon + \"Hide\" text to the right of label */
.cabana-step .hide-toggle {
  background: none !important;
  border: none !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #B2B2B2;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
}

.cabana-step .hide-toggle svg {
  width: 18px;
  height: 18px;
}

/* Slash through eye icon when active (password visible) */
.cabana-step .hide-toggle.hide-toggle--active {
  position: relative;
}

.cabana-step .hide-toggle.hide-toggle--active::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: translateY(-50%) rotate(45deg);
}

.phone-input-wrapper input {
  border: none !important;
  margin: 0 !important;
  padding: 0 8px !important;
  height: 100% !important;
  font-size: 14px !important;
}

.country-code {
  font-size: 16px !important;
  color: #191919;
  border-right: 1px solid #eee;
  padding: 0 12px 0 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

/* 4. Match Figma input styles */
.cabana-signup-grid input:not([type="checkbox"]) {
  background: #fff;
  border: 1px solid #E6E6E6;
  height: 52px;
  margin-top: 8px;
  margin-bottom: 0;
  box-sizing: border-box;
}

/* Highlight missing fields on profile step */
.cabana-signup-grid input.cabana-field-error {
  border: 2px solid #F26857;
  box-shadow: 0 0 0 1px #F26857;
}

.bg-grey {
  background-color: #F5F5F5 !important; /* Matches Figma's Email field style */
}

/* 5. Date of Birth Calendar Icon styling */
.date-wrapper input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(0.5); /* Makes the icon look like the Figma one */
}

/* Ensure DOB input never overflows (iOS Safari can give it a large intrinsic width) */
.cabana-signup-grid .date-wrapper input[type="date"] {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* 6. Submit Button Style */
.signup-submit-btn {
  max-width: 100% !important; /* Full width as per Figma */
  height: 52px;
  border-radius: 8px !important; /* Figma uses less rounding for the inner button usually */
  margin-top: 30px !important;
  font-size: 18px;
}

.error-msg {
  color: red;
  font-size: 14px;
  margin-top: 10px;
  text-align: left;
}

.resend-link a {
  font-weight: 700;
}

/* Keep verification labels on one line with value */
.cabana-radio-option label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.cabana-step input:not([type="radio"]) {
  width: 100%;
  padding: 16px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid var(--Neutral-10, #E6E6E6);
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.cabana-step button:not(.toggle-password):not(.hide-toggle) {
  padding: 12px;
  width: 100%;
  border: none;
  cursor: pointer;
  border-radius: var(--corner-radius-extra-large, 32px);
  background: var(--Color-Canna-Cabana-Red-500, #E1251C);
  box-shadow: 0px 1px 2px 0px rgba(13, 13, 18, 0.06);
  max-width: 347px;
  margin: auto;
  color: var(--Color-Neutral-Neutral-0, #FFF);
  text-align: center;
  font-size: var(--Type-text-base, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-top: 21px;
}

/* Generic loading state for buttons */
.cabana-btn.btn-loading,
.button.btn-loading {
  position: relative;
  color: transparent !important;
  opacity: 0.7;
  pointer-events: none;
}

.cabana-btn.btn-loading::after,
.button.btn-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: #ffffff;
  animation: cabana-spin 0.7s linear infinite;
}

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

.cabana-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cabana-popup-wrapper {
  background: #fff;
  border-radius: 10px;
  padding: 35px;
  width: 90%;
  max-width: 795px;
  position: relative;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.cabana-popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.popup-icon {
  width: 40px;
  margin-bottom: 10px;
}

.cabana-popup-content h2 {
  margin: 10px 0;
}

.cabana-popup-content input {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.cabana-btn {
  background: #e01e1e;
  color: white;
  padding: 12px;
  margin-top: 15px;
  width: 100%;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.cabana-links {
  margin-top: 21px;
}

.cabana-links a {
  color: var(--Neutral-90, #191919);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
}

#step-1 {
  flex-direction: column;
}

.cabana-step label span {
  color: var(--Neutral-90, #191919);
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: left;
  display: block;
}

.cabana-step>svg {
  margin: auto auto 16px;
}

.cabana-step>h2 {
  margin: auto auto 16px;
  color: var(--color-neutral-500, #2D2E34);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

.cabana-step>p {
  color: var(--color-neutral-500, #2D2E34);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin: auto auto 16px;
}

.cabana-radio-option {
  text-align: left;
  margin: 12px auto;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.cabana-radio-option input[type="radio"] {
  margin-right: 8px;
  transform: scale(1.2);
}

.cabana-radio-option label {
  font-size: 15px;
  color: #2D2E34;
}

.code-input-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 347px;
  margin: auto auto 16px;
}

/* OTP inputs: center content in all flows (normal + elite) */
.code-input-group input {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 24px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

#step-3 .resend-link a,
#step-3 .change-channel a {
  color: var(--color-neutral-500, #2D2E34);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  /* 22.4px */
  text-decoration-line: underline;
}

#step-3 .resend-link {
  margin: 0;
}

#step-3 .change-channel {
  margin-top: 20px;
  font-size: 14px;
}

.cabana-btn.disabled {
  background: #ccc;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.6;
}

/* OTP resend success message styling (normal + elite) */
.otp-success-message {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  color: #3EAE72;
  padding-bottom: 22px;
}


.password-field label {
  display: block;
  margin-bottom: 5px;
  text-align: left;
  color: var(--Neutral-90, #191919);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

#signupBtn:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

#step-4 {
  max-width: 100%;
}

#step-4>h2 {
  margin-bottom: 20px;
}

#step-4>p {
  margin: 0;
  justify-content: flex-start;
  color: var(--color-neutral-500, #2D2E34);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%;
}


.password-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.password-field {
  flex: 1;
  min-width: 250px;
}

.password-wrapper {
  position: relative;
}

.password-wrapper input {
  width: 100%;
  padding-right: 70px;
}

.toggle-password {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  color: #6B6B6B;
  font-size: 14px;
  font-weight: 500;
  top: -24px;
}

.toggle-password img {
  width: 18px;
  height: 18px;
  opacity: 0.4;
}

.toggle-password span {
  color: var(--Neutral-30, #B2B2B2);
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.password-note {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #444;
  justify-content: flex-start;
  gap: 6px;
  margin: 10px 0 20px;
}

@media (max-width: 480px) {
  .password-note {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #2D2E34;
  }

@media (max-width: 480px) {
  /* Ensure DOB fields fit on small screens in normal + elite flows */
  #reg-dob,
  #elite-reg-dob {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Step 1 email/phone input typography on mobile (normal + elite flows) */
  #userInput,
  #elite-userInput {
    font-family: Montserrat, sans-serif;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 100% !important;
    letter-spacing: 0 !important;
  }
}


#step-5 p {
  margin: 0 auto 8px;
  font-size: 16px;
  font-weight: 500;
  color: #2D2E34;
}

#step-5 strong {
  font-weight: 700;
}

/* Fullscreen overlay */
.cabana-loader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Spinner animation */
.cabana-loader-spinner {
  width: 40px;
  height: 40px;
  border: 5px solid #E1251C;
  border-top: 5px solid transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Keyframe */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media(max-width:480px) {
  .cabana-popup-wrapper {
    height: 100vh;
    width: 100%;
    padding: 40px 14px;
  }
}

/* Elite: Forgot your password link - white, bold */
#elite-popup .forgot-password-link--elite {
  color: #fff !important;
  font-weight: 700;
  text-decoration: underline;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 0.75rem;
}
#elite-popup .forgot-password-link--elite:hover {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Safety: in case global anchor styles override */
#elite-popup a.forgot-password-link--elite {
  color: #fff !important;
}

/* Elite: Recover step text - center aligned below title */
#elite-popup .elite-recover-text {
  margin-bottom: 1rem;
  font-size: 14px;
  color: inherit;
  text-align: center;
}
#elite-popup #elite-step-recover .section-heading__bar,
#elite-popup #elite-step-recover h2 {
  text-align: center;
}

/* Elite: Recover success message - green with check icon */
#elite-popup .elite-recover-success {
  margin-bottom: 1rem;
  padding: 0.75rem 0;
  text-align: left;
}
#elite-popup .elite-recover-success__inner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #3EAE72;
  font-size: 14px;
  line-height: 1.4;
}
#elite-popup .elite-recover-success__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #3EAE72;
  display: flex;
  align-items: center;
  justify-content: center;
}
#elite-popup .elite-recover-success__icon svg {
  width: 14px;
  height: 14px;
}