/** Shopify CDN: Minification failed

Line 212:23 Unexpected "{"

**/
  /* customer.css: .customer:not(.account):not(.order) { text-align:center; padding:1.5rem; margin:0 auto } */
  .custom-login-wrapper.customer:not(.account):not(.order) {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
    margin: 0;
  }

  /* customer.css: .customer form { margin-top: 4rem } */
  .custom-login-wrapper form {
    margin-top: 0;
  }

  /* customer.css: .customer button { margin: 4rem 0 1.5rem } */
  .custom-login-wrapper button {
    margin: 0 !important;
    border: 2px solid #FFFFFF;
    padding: 17px 55px;
    text-transform: uppercase;
  }

  /* customer.css: .login a { display:block; margin:0 auto; width:fit-content } */
  .custom-login-wrapper .login a {
    display: inline-block !important;
    width: auto !important;
    margin: 0 !important;
  }

  /* customer.css: .login a[href='#recover'] { margin-left:0; margin-right:0 } */
  .custom-login-wrapper .login a[href='#recover'] {
    margin: 0 !important;
  }

  /* customer.css: .login .field + a { margin-top: 1rem } */
  .custom-login-wrapper .login .field + a {
    margin-top: 0 !important;
  }

  /* customer.css: .login p { margin: 1.5rem 0 } */
  .custom-login-wrapper .login p {
    margin: 0 !important;
  }

  /* customer.css: .customer .field { margin: 2rem 0 0 0 } */
  .custom-login-wrapper .field {
    margin: 0 !important;
  }

  /* customer.css: #recover, #recover + div { display: none }
     These IDs don't exist in our markup but neutralise anyway
     in case the theme injects them elsewhere. We use !important
     because the :target variants also use display values. */
  #recover,
  #recover + div,
  #recover:target,
  #recover:target + div,
  #recover:target ~ #login,
  #recover:target ~ #login + div {
    display: revert !important;
  }

  /* ==========================================================
     DESIGN TOKENS (scoped to wrapper)
  ========================================================== */
  .custom-login-wrapper {
    --bg-dark:      #111111;
    --bg-card:      #1a1a1a;
    --bg-input:     #1e1e1e;
    --border-color: #2e2e2e;
    --accent:       #c8922a;
    --text-primary: #f0f0f0;
    --text-muted:   #888888;
  }

  /* ==========================================================
     PAGE WRAPPER
  ========================================================== */
  .custom-login-wrapper {
    background-color: var(--bg-dark);
    /* min-height: 100vh; */
    display: flex !important;
    align-items: center;
    justify-content: center;
    /* font-family: 'Barlow', sans-serif; */
    padding: 40px 20px;
    box-sizing: border-box;
  }

  /* ==========================================================
     TWO-COLUMN GRID
  ========================================================== */
  .custom-login-container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 100px;
    max-width: 1200px;
    width: 100%;
    align-items: start;
  }
  @media screen and (max-width: 749px) {
    .custom-login-container {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }

  /* ==========================================================
     LEFT — Headings & subtext
  ========================================================== */
  .custom-login-left h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    margin: 0 0 12px 0;
    font-weight: 400;
    text-align: left;
  }

  .custom-login-left p.login-subtext {
    font-size: 18px;
    color: #FFF;
    line-height: 1.6;
    margin: 0 0 28px 0 !important;
    font-weight: 300;
    text-align: left;
  }

  /* ==========================================================
     FORM FIELDS
  ========================================================== */
  .custom-field {
    margin-bottom: 25px !important;
    position: relative;
  }

  .custom-field label {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 0;
    /* text-transform: uppercase; */
    margin-bottom: 10px;
    text-align: left;
  }

  .custom-field input[type="email"],
  .custom-field input[type="password"] {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    padding: 12px 14px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    border-radius: 0;
  }

  .custom-field input[type="email"]:focus,
  .custom-field input[type="password"]:focus {
    border-color: var(--accent);
  }

  .custom-field input::placeholder {
    color: transparent;
  }

  /* ==========================================================
     ACTIONS ROW
  ========================================================== */
  .custom-login-actions {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px;
    margin-top: 50px;
  }

  /* ==========================================================
     LINKS
  ========================================================== */
  .custom-forgot-link {
    display: inline-block !important;
    width: auto !important;
    color: #E0902E !important;
    font-size: 16px !important;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.2s;
    margin: 0 !important;
  }
  .custom-forgot-link:hover {
    opacity: 0.75;
    text-decoration: underline;
  }

  /* ==========================================================
     BUTTONS
  ========================================================== */
  .custom-btn-primary ,{
    display: inline-block;
    background: transparent;
    /* border: 1px solid var(--text-primary); */
    color: var(--text-primary);
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 12px 32px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    margin: 0 !important;
  }
  .custom-btn-primary:hover {
    background: #E0902E;
    color:#FFF;
  }
.custom-login-wrapper button:hover {

    border: 2px solid #E0902E;

  }
.customer button:hover::after {
    box-shadow: none;

}
  .custom-btn-secondary {
    display: block !important;
    text-align: center;
    background: transparent;
    border: 2px solid #FFFFFF !important;
    color: #FFFFFF !important;
    /* font-family: 'Barlow', sans-serif; */
    font-size: 14px !important;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 13px 24px;
    cursor: pointer;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s;
    box-sizing: border-box;
    width: 100%;
    margin: 0 !important;
  }
  .custom-btn-secondary:hover {
    background: #E0902E;
    color: #fff !important;
    border: 2px solid #E0902E !important;
  }

  /* ==========================================================
     ERROR / SUCCESS MESSAGES
  ========================================================== */
  .custom-login-left .form__message {
    font-size: 13px;
    color: #e05252;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-align: left;
  }
  .custom-login-left .form__message.success {
    color: #5cb85c;
  }

  /* ==========================================================
     JS TOGGLE — Recover / Login visibility
  ========================================================== */
  .custom-recover-section {
    display: none !important;
  }
  .custom-recover-section.is-active {
    display: block !important;
  }
  .custom-login-section.is-hidden {
    display: none !important;
  }

  /* ==========================================================
     RIGHT COLUMN — Member card
  ========================================================== */
  .custom-login-right {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .custom-member-card {
    background: #1B1B1B;
    /* border: 1px solid var(--border-color); */
    overflow: hidden;
    max-width: 530px;
  }

  .custom-member-card .card-image {
    width: 100%;
    /* aspect-ratio: 16 / 9; */
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(20%) contrast(1.05);
  }

  .custom-member-card .card-body {
    padding: 50px;
    text-align: left;
  }

  .custom-member-card .card-body h2 {
    /* font-family: 'Bebas Neue', sans-serif; */
    font-size: 30px;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    margin: 0 0 10px 0 !important;
    font-weight: 600;
    text-align: left;
    text-transform: capitalize;
  }

  .custom-member-card .card-body p {
    font-size: 18px;
    color: #FFF;
    line-height: 150%;
    margin: 0 0 40px 0 !important;
    font-weight: 300;
    text-align: left;
  }

  /* ==========================================================
     GUEST CHECKOUT
  ========================================================== */
  .custom-guest-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
  }

  .custom-guest-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 19px;
    color: var(--text-primary);
    margin: 0 0 12px 0 !important;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-align: left;
  }

  /* ==========================================================
     SHOP LOGIN BUTTON
  ========================================================== */
  section[name="sign-in-with-shop-provider"] {
    margin-bottom: 20px;
  }
  section[name="sign-in-with-shop-provider"] p {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin: 12px 0 !important;
  }
  .custom-login-section h1{
    font-size: 30px;
    text-transform: capitalize !important;
  }

  @media (max-width:749px) {
    .custom-login-wrapper.customer:not(.account):not(.order) {
      padding: 40px 20px;
    }
    .custom-login-actions {
      flex-direction: column-reverse !important;
    }
    .custom-login-wrapper button {
      width: 100% !important;
    }
    .custom-member-card .card-body {
      padding: 40px 30px;
    }
    .custom-member-card .card-body h2 {
      font-size: 24px;
      line-height:130%;
    }
    .custom-member-card .card-body p {
      font-size: 16px;
      margin: 0 0 30px !important;
    }
    .custom-login-left p.login-subtext {
      font-size: 16px;   
    }
  }