/** Shopify CDN: Minification failed

Line 654:1 Unexpected "{"

**/
/* Password Popup Styles - Desktop & Mobile */

.password-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.password-popup-logo-container{
  text-align: center;
}
.password-popup-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-popup-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.password-popup-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 1) 100%);
}

.password-popup-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.password-popup-background--mobile {
  display: block;
}

.password-popup-background--desktop {
  display: none;
}

@media (min-width: 768px) {
  .password-popup-background--mobile {
    display: none;
  }

  .password-popup-background--desktop {
    display: block;
  }
}

.password-popup-content,
.password-popup-faq {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.password-popup-title-password{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
@media (min-width: 768px) {
  .password-popup-title-password{
    gap: 48px;
    width: auto;
  }
  .password-popup-content,
  .password-popup-faq {
    padding: 48px 0px;
  }
}

.password-popup-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px;
  gap: 32px;
}

@media (min-width: 768px) {
  .password-popup-inner .password-popup-form-wrapper,
  .password-popup-inner .password-popup-newsletter{
    width: 500px;
  }
  .password-popup-inner {
    margin: 0px auto;
    padding: 0px;
    width: 100%;
  }
}

/* Countdown */
.password-popup-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: bold;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.countdown-item > div:first-child {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0;
  padding: 13.5px 0;
  width: 80px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.countdown-number {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
  text-align: center;
}

.countdown-label {
  font-size: 16px;
  font-weight: 390;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #fff;
  line-height: 1.5;
  font-family: var(--font-body-family);
}

.countdown-separator {
  font-size: 50px;
  font-weight: 500;
  color: #fff;
  padding: 0 4px;
  margin-top: -32px;
  display: none;
}

/* Heading */
.password-popup-heading {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  color: #fff;
  margin: 0;
  font-weight: bold;
}

@media (min-width: 768px) {
  .password-popup-heading {
    font-size: 50px;
  }
}

.password-popup-subheading {
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  margin: 0;
  font-weight: 390;
}

@media (min-width: 768px) {
  .password-popup-subheading {
    font-size: 16px;
  }
}

/* Form Sections */
.password-popup-form-wrapper,
.password-popup-newsletter {
  width: 100%;
  max-width: 500px;
}

.password-popup-form-label {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  margin: 0 0 16px 0;
  font-weight: 390;
}

@media (min-width: 768px) {
  .password-popup-form-label {
    font-size: 16px;
  }
}

/* Password Form */
.password-popup-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .password-popup-form {
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 0px;
  }
}

.password-popup-input-wrapper {
  flex: 1;
}

.password-popup-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.5;
  border: none;
  border-radius: 0;
  background: #fff;
  color: #000;
  font-weight: 300;
  transition: box-shadow 0.2s ease;
}
@media (min-width: 768px) {
  .password-popup-input {
    min-height: 49px;
  }
}

/* .password-popup-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(202, 0, 48, 0.3);
} */

.password-popup-input.error {
  animation: shake 0.5s;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.password-popup-input::placeholder {
  color: #000;
  opacity: 1;
  font-weight: 300;
}

.password-popup-error {
  font-size: 14px;
  color: #CA0030;
  margin-top: 2px;
  text-align: center;
  display: none;
  background: linear-gradient(0deg, rgba(202, 0, 48, 0.10) 0%, rgba(202, 0, 48, 0.10) 100%), #FFF;
  text-align: left;
  padding: 4px 16px;
}
form.error .password-popup-error,
div.error .password-popup-error {
  display: block;
}
.password-popup-success {
  font-size: 14px;
  color: #fff;
  margin-top: 8px;
  font-weight: 500;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  display: none;
}
form.success .password-popup-success{
  display: flex;
}
form.success .password-popup-disclaimer,
form.success .password-popup-email-input-wrapper,
form.success .password-popup-email-label{
  display: none;
}
.password-popup-success *{
  margin: 0;
  line-height: 1.5em;
}
.password-popup-success strong{
  font-size: 22px;
}
.password-popup-success p:first-child{
  font-size: 12px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .password-popup-success{
    font-size: 16px;
  }
  .password-popup-success strong{
    font-size: 32px;
  }
}
.password-popup-button {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.28;
  text-align: center;
  color: #fff;
  background: #CA0030;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  text-transform: uppercase;
  letter-spacing: 1.12px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .password-popup-button {
    padding: 16px 24px;
  }
}
.password-popup-button {
  background: #CA0030;
}

.password-popup-button:active {
  transform: translateY(1px);
}

/* Newsletter */
.password-popup-email-label {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  margin: 0 0 16px 0;
  font-weight: 390;
}

.password-popup-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.password-popup-email-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
}

.password-popup-email-input-wrapper .password-popup-input {
  padding-right: 48px;
  margin: 0;
}

.password-popup-submit-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #CA0030;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.password-popup-submit-icon:hover {
  opacity: 0.7;
}

.password-popup-submit-icon svg {
  display: block;
}

.password-popup-disclaimer {
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  margin: 0;
  font-weight: 390;
}

.password-popup-disclaimer a {
  color: #fff;
  text-decoration: underline;
}

/* Help Link */
.password-popup-help {
  text-align: center;
}

.password-popup-help-link {
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 390;
  text-decoration: underline;
  cursor: pointer;
  transition: opacity 0.2s ease;
  padding: 0;
}

.password-popup-help-link:hover {
  opacity: 0.7;
}

/* FAQ - Solid Black Background */
.password-popup-faq {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 3;
  overflow-y: auto;
}

.password-popup-faq-logo-container {
  width: 100%;
  padding: 0px 0px 40px 0px;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .password-popup-faq-logo-container {
    padding: 0px 0px 64px 0px;
  }
}

.password-popup-logo {
  width: 200px;
  height: auto;
  margin: 0 auto;
}

.password-popup-faq .password-popup-inner {
  max-width: 1100px;
  padding: 0px;
  gap: 64px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .password-popup-faq .password-popup-inner {
    padding: 0px 24px;
    gap: 40px;
  }
}

/* FAQ Header Section */
.password-popup-faq-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.password-popup-faq-heading {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  color: #fff;
  margin: 0;
}

@media (min-width: 768px) {
  .password-popup-faq-heading {
    font-size: 50px;
  }
}

/* FAQ Subheading */

.password-popup-faq-subheading {
  color: #fff;
}

.password-popup-faq-subheading a {
  color: #fff;
  transition: opacity 0.2s ease;
}

.password-popup-faq-subheading a:hover {
  opacity: 0.7;
}

/* Back Link */
.password-popup-back-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 0 4px 0;
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 390;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
@media (min-width: 768px) {
  .password-popup-back-link {
    font-size: 16px;
  }
}
.password-popup-back-link:hover {
  opacity: 0.7;
}

.password-popup-back-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* FAQ List */
.password-popup-faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.password-popup-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.password-popup-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 14px;
  font-weight: 390;
  line-height: 1.5;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1.28px;
}

@media (min-width: 768px) {
  .password-popup-faq-question {
    padding: 32px 0;
    font-size: 16px;
  }
}

.password-popup-faq-question:hover {
  opacity: 0.7;
}

.password-popup-faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.password-popup-faq-item.active .password-popup-faq-icon {
  transform: rotate(180deg);
}

.password-popup-faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-weight: 300;
}

.password-popup-faq-item.active .password-popup-faq-answer {
  max-height: 500px;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .password-popup-faq-answer {
    font-size: 16px;
  }
}
/* Accessibility */
div.error .password-popup-input,
 {
  outline: 2px solid rgba(202, 0, 48, 0.5);
}

/* Prevent body scroll when popup is open */
body.password-popup-active {
  overflow: hidden;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .countdown-item > div:first-child {
    width: 50px;
    height: 60px;
    padding: 10px 0;
  }

  .countdown-number {
    font-size: 32px;
  }

  .countdown-label {
    font-size: 12px;
  }
}
