/** Shopify CDN: Minification failed

Line 311:0 Expected "}" to go with "{"

**/
/* === BOTTOM BAR CONTAINER === */
.outer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
  padding: 54px 16px;
  border-top: 1px solid #ccc;
  display: none;
  justify-content: center;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(20px);
}

.outer.visible {
  display: flex;
  animation: fadeSlideIn 0.5s ease-out forwards;
  border: 1px solid #000;
  box-sizing: border-box;
}

.outer.closing {
  animation: fadeSlideOut 0.4s ease-in forwards;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(20px);
  }
}



/* === CONTENT AREA === */
.container {
  width: 100%;
  max-width: 800px;
}

.inner {
  text-align: center;
  position: relative;
  transform: translateY(-42px); /* ⬅️ move content upward */
}

/* === TITLE AND CLOSE === */
.title {
  margin-bottom: 0px;
  position: relative;
   top: -10px; /* ⬅️ this moves it upward */
}

.title .text {
  display: block;
  margin-top: 0 !important;
  margin-bottom: 12px;
  padding: 0 !important;
  line-height: 1.3;
  font-size: 14px !important;       /* ⬅️ Increase size + force it */
  transform: translateY(-12px);     /* Optional: keep if you still want to raise it */
  text-align: center;
}



.title .close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 20px;
  font-weight: 300;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
}


/* === FORM LAYOUT === */
.signupForm .underlinedInput {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4); /* 40% opacity */
  margin: 0 auto 12px auto;
  max-width: 400px;
  width: 100%;
  padding-bottom: 4px;
}

.signupForm input[type="email"] {
  width: 100%;
  border: none;
  outline: none;
  font-size: 12px;
  background: transparent;
  padding: 0;
  margin: 0;
  line-height: 1;
  color: #000;
}

.signupForm .submit-arrow {
  background: none;
  border: none;
  padding: 0;
  margin-left: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === SUCCESS & PRIVACY TEXT === */
.signupForm .successMsg {
  font-size: 14px;
  color: #000;
  margin-bottom: 16px;
  display: none;
}

.manual-privacy-text {
  font-size: 12px;
  color: #111;
  line-height: 1.2;
  text-align: center;
  max-width: 380px;      /* ⬅️ this controls where it wraps */
  margin: 16px auto 0 auto;
  word-break: break-word; /* ensures long words don’t overflow */
}


.manual-privacy-text a {
  text-decoration: underline;
  color: inherit;
}


.close {
  position: absolute;
  top: 16px;
  right: 21px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10000; /* makes sure it's clickable on top */
}

.close img {
  width: 8px;   /* adjust as needed */
  height: 8px;
  display: block;
  opacity: 0.4;              /* base opacity */
}

.close img:hover {
  opacity: 0.8;                /* full opacity on hover */
}


.submit-arrow {
  background: none;
  border: none;
  padding: 0;
  margin-left: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.submit-arrow img {
  height: 9px;       /* Fixed height */
  width: 15px;        /* Wider than original */
  object-fit: contain;
  display: block;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}


.submit-arrow img:hover {
  opacity: 0.8;
}

/* Success message */
.successMsg {
  display: none;
  opacity: 0;
  text-align: center;
  transition: opacity 0.3s ease;
}

.successMsg.fade-in {
  opacity: 1;
}





/* === MOBILE OPTIMIZATION === */
@media screen and (max-width: 749px) {
  .outer {
    padding: 36px 12px; /* reduce top/bottom padding */
  }

  .container {
    max-width: 100%;
    padding: 0 16px;
  }

  .inner {
    transform: translateY(-24px); /* move slightly up */
  }

  .title .text {
    font-size: 12px !important; /* smaller font for mobile */
    line-height: 1.2;
    transform: none; /* reset transform */
    text-align: center;
  }
  @media screen and (max-width: 749px) {
  .manual-privacy-text,
  .manual-privacy-text a {
    font-size: 7px !important;
    line-height: 1.5;
  }


  .signupForm .underlinedInput {
    max-width: 73%;
    padding-bottom: 5px;
  }

  .signupForm input[type="email"] {
    font-size: 12px;
  }

  .manual-privacy-text {
    font-size: 8px;
    max-width: 100%;
    padding: 0 8px;
    margin-top: 8px;
  }

  .submit-arrow img {
    width: 14px;
    height: 8px;
  }

  .close {
    top: 12px;
    right: 16px;
  }

  .close img {
    width: 11px;
    height: 11px;
  }
}

  @media screen and (max-width: 749px) {
  .outer {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .inner {
    transform: translateY(-50px); /* Optional: adjust upward shift */
  }
}
  @media screen and (max-width: 749px) {
  .manual-privacy-text {
    padding: 0 50px;
  }
}
  @media screen and (max-width: 749px) {
  .outer.visible {
    border: 0.5px solid #000 !important;
  }
}





