/* ==============================================================
   Unlock banner + age-verification modal
   The Shopify original used inline styles; extracted to classes.
   ============================================================== */

/* ---------- Part A: "Unlock the full collection" banner ---------- */
.ww-unlock-banner-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px 10px;
}

.ww-unlock-banner {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.ww-unlock-banner__inner {
  max-width: 700px;
  margin: 0 auto;
}

.ww-unlock-banner__title {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ww-unlock-banner__text {
  font-size: 18px;
  color: #444;
  margin-bottom: 35px;
  line-height: 1.6;
}

.ww-unlock-banner__actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.ww-unlock-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid #000;
  transition: opacity 0.15s ease;
}

.ww-unlock-banner__btn--primary {
  background: #000;
  color: #fff;
}

.ww-unlock-banner__btn--secondary {
  background: transparent;
  color: #000;
}

.ww-unlock-banner__btn:hover { opacity: 0.85; }

@media screen and (max-width: 749px) {
  .ww-unlock-banner { padding: 40px 16px; }
  .ww-unlock-banner__title { font-size: 24px; }
  .ww-unlock-banner__text { font-size: 16px; }
  .ww-unlock-banner__btn { width: 100%; }
}

/* ---------- Part B: age verification modal ---------- */
.ww-age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  /* display toggled between none/flex by the inline script */
}

.ww-age-gate-modal {
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.ww-age-gate-modal__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.ww-age-gate-modal__text {
  font-size: 15px;
  color: #444;
  margin-bottom: 24px;
  line-height: 1.5;
}

.ww-age-gate-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ww-age-gate-btn {
  padding: 13px 20px;
  border-radius: 6px;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-size: 15px;
}

.ww-age-gate-btn--secondary {
  background: transparent;
  color: #000;
}

.ww-gate-login-notice {
  margin: 0 0 20px;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
  font-size: 15px;
  line-height: 1.5;
}

.ww-gate-age-consent label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: auto;
}

.ww-gate-age-consent input {
  margin-top: 3px;
}
