body {
  margin: 0;
  font-family: 'Noto Sans', sans-serif;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  background-color: rgba(244, 245, 249, 0.9);
  background-blend-mode: overlay;
  color: #131311;
  overflow-x: hidden;
}

/* Top announcement bar */
.topbar {
  background: #b686f6;
  color: #fff;
  text-align: center;
  padding: 8px 10px;
  font-size: 15px;
  font-weight: 600;
}

header {
  text-align: center;
  padding: 15px 10px 10px;
}

header img {
  width: 200px;
  margin-bottom: 15px;
}

header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

header h1 span.highlight {
  color: #b686f6;
  border: 2px solid #b686f6;
  border-radius: 6px;
  padding: 4px 12px;
  display: inline-block;
  letter-spacing: 5px;
  margin-top: 10px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 auto 20px;
  max-width: 600px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

.checklist li {
  margin: 10px 0;
}

.checklist li::before {
  content: "✔";
  color: #64d295;
  font-weight: bold;
  margin-right: 8px;
}

.arrow-down {
  display: block;
  text-align: center;
  font-size: 28px;
  margin: 0px 0;
  animation: bounce 1.5s infinite;
  color: #b686f6;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.section {
  max-width: 800px;
  margin: 25px auto;
  padding: 30px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  position: relative;
  text-align: left;
}

.section h2 {
  margin-top: 0;
  color: #131311;
  cursor: pointer;
}

.section h2 a {
  color: inherit;
  text-decoration: none;
}

.section h2 a:hover {
  color: #b686f6;
}

.section p {
  font-size: 16px;
  line-height: 1.6;
}

.section iframe {
  width: 100%;
  height: 425px;
  border: none;
  border-radius: 8px;
  margin: 20px 0;
}

.section button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: linear-gradient(90deg, #b686f6, #64d295);
  color: #fff;
  text-decoration: none;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.unlock-msg {
  margin-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #777;
}

.locked::after {
  content: "🔒";
  position: absolute;
  inset: 0;
  background: rgba(244,245,249,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: rgba(0,0,0,0.6);
  border-radius: 12px;
}

footer {
  text-align: center;
  padding: 20px;
  color: #555;
  font-size: 12px;
  line-height: 1.5;
}

/* Exit intent popup */
#exitPopup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

#exitPopup .popup-content {
  background: #fff;
  border-radius: 10px;
  max-width: 850px;
  width: 90%;
  max-height: 650px;
  height: auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  animation: fadeIn 0.3s ease;
  display: flex;
  overflow: hidden;
}

#exitPopup .popup-left {
  flex: 60%;
  text-align: left;
  padding: 30px;
  overflow-y: auto;
}

#exitPopup .popup-right {
  flex: 40%;
  display: flex;
}

#exitPopup .popup-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

#exitPopup h2 {
  color: #131311;
  margin-bottom: 20px;
}

#exitPopup ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
  margin-bottom: 20px;
}

#exitPopup ul li {
  margin: 8px 0;
  padding-left: 25px;
  position: relative;
}

#exitPopup ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #64d295;
}

#exitPopup button {
  background: linear-gradient(90deg, #b686f6, #64d295);
  border: none;
  color: #fff;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  animation: float 3s ease-in-out infinite;
}

@media (max-width: 768px) {
  #exitPopup .popup-content {
    flex-direction: column;
    max-height: 90vh;
  }
  #exitPopup .popup-right {
    flex: unset;
    width: 100%;
  }
  #exitPopup .popup-right img {
    width: 100%;
    height: auto;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.faq-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
}

.faq-section h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  text-align: center;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h3 {
  font-size: 1.2em;
  margin-bottom: 8px;
  color: #b686f6;
}

.faq-item p {
  margin: 0;
  line-height: 1.6;
}

.faq-separator {
  border: none;
  border-top: 2px solid #e0e0e0;
  margin: 40px auto;
  width: 90%;
}

/* Contact form link - subtle style */
.contact-link {
  color: inherit;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.tcw-branding {
  display: none !important;
}

/* Sticky CTA bottom-left */
#stickyStep1 {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
}

#stickyStep1 a {
  background: #95bf47; /* Shopify green */
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  font-size: 14px;
  transition: background 0.3s ease;
}

#stickyStep1 a:hover {
  background: #7aa63f; /* darker green on hover */
}

.shopify-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.badge-important {
  display: inline-block;
  margin-left: 12px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  background: #b686f6; /* red badge */
  border-radius: 12px;
  vertical-align: middle;
}

.footer-social {
  margin-top: 15px;
  text-align: center;
}

.footer-social a {
  color: #ff0000;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
  display: inline-block;
}

.footer-social a:hover {
  transform: scale(1.15);
  color: #cc0000;
}

/* Responsive video embed */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  margin: 20px 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

.shopify-icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 6px;
}

/* Language Selector - subtle, top-right corner */
.lang-selector {
  position: absolute;
  top: 3px;
  right: 15px;
  z-index: 1000;
}

.lang-selector select {
  background: rgba(255, 255, 255, 0.85);
  color: #131311;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #b686f6;
  border-radius: 6px;
  padding: 6px 28px 6px 10px;
  cursor: pointer;
  appearance: none;
  outline: none;
  transition: all 0.2s ease;
  backdrop-filter: blur(6px);
}

.lang-selector select:hover {
  background: #fff;
  box-shadow: 0 0 6px rgba(182, 134, 246, 0.3);
}

.lang-selector::after {
  content: "▼";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #b686f6;
  pointer-events: none;
}

/* 🔹 On mobile: lower it slightly for better spacing */
@media (max-width: 768px) {
  .lang-selector {
    top: 30px;
    right: 15px;
  }
}