/** Shopify CDN: Minification failed

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

**/
/* Newsletter popup fix (desktop) */
@media (min-width: 990px) {
  div[data-modal-label="Welcome to VENIA"] .grid.lg\:grid-cols-12 {
    grid-template-columns: 1fr !important;
  }

  div[data-modal-label="Welcome to VENIA"] .wrapper {
    display: flex !important;
    justify-content: center !important;
    padding-top:0px;
  }

  div[data-modal-label="Welcome to VENIA"] .grid {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}



/* Newsletter popup — form row layout */
@media (min-width: 750px) {
  /* Target only this modal */
  div[data-modal-label="Welcome to VENIA"] form {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    flex-wrap: nowrap;
  }

  /* Email field takes remaining space */
  div[data-modal-label="Welcome to VENIA"] form input[type="email"],
  div[data-modal-label="Welcome to VENIA"] form input[type="text"] {
    flex: 1 1 auto;
    min-width: 280px;
    max-width: 520px;
    margin: 0;
  }

  /* Button stays to the right, auto width */
  div[data-modal-label="Welcome to VENIA"] form button,
  div[data-modal-label="Welcome to VENIA"] form input[type="submit"] {
    flex: 0 0 auto;
    width: auto;
    margin: 0;
    padding-left: 18px;
    padding-right: 18px;
    white-space: nowrap;
  }
}

/* Mobile: keep stacked, cleaner spacing */
@media (max-width: 749px) {
  div[data-modal-label="Welcome to VENIA"] form {
    display: grid;
    gap: 10px;
    justify-items: center;
  }

  div[data-modal-label="Welcome to VENIA"] form input[type="email"],
  div[data-modal-label="Welcome to VENIA"] form input[type="text"],
  div[data-modal-label="Welcome to VENIA"] form button,
  div[data-modal-label="Welcome to VENIA"] form input[type="submit"] {
    width: 100%;
    max-width: 420px;
  }
}


/* Make input + button same height in the newsletter popup */
div[data-modal-label="Welcome to VENIA"] form {
  display: flex;
  align-items: stretch; /* key: makes children equal height */
  gap: 12px;
  justify-content: center;
}

/* Input field */
div[data-modal-label="Welcome to VENIA"] form input[type="email"],
div[data-modal-label="Welcome to VENIA"] form input[type="text"] {
  height: 30px !important;
  line-height: 44px !important;
  padding: 0 12px !important;
  margin: 0 !important;
  box-sizing: border-box;
}

/* Subscribe button */
div[data-modal-label="Welcome to VENIA"] form button,
div[data-modal-label="Welcome to VENIA"] form input[type="submit"] {
  height: 30px !important;
  line-height: 44px !important;
  padding: 0 18px !important; /* no vertical padding */
  margin: 0 !important;
  box-sizing: border-box;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border: 1px black solid;  
}

/* Keep sizing nice on mobile */
@media (max-width: 749px) {
  div[data-modal-label="Welcome to VENIA"] form {
    flex-direction: column;
    align-items: center;
  }

  div[data-modal-label="Welcome to VENIA"] form input[type="email"],
  div[data-modal-label="Welcome to VENIA"] form input[type="text"],
  div[data-modal-label="Welcome to VENIA"] form button,
  div[data-modal-label="Welcome to VENIA"] form input[type="submit"] {
    width: 100%;
    max-width: 420px;
  }
}


.mt-2{
    margin:0px;
}


@media (max-width: 749px) {
.mt-2{
    width: -webkit-fill-available;
}
