body {
  margin: 20px;
  font-family: 'Noto Sans', sans-serif;
  background: #f8f9fb;
  color: #131311;
  line-height: 1.7;
}

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

.blog-header {
  text-align: center;
  padding: 40px 20px 20px;
  border-bottom: 1px solid #e0e0e0;
}

.blog-header h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #131311;
}

.blog-header p {
  color: #555;
}

.blog-list {
  max-width: 750px;
  margin: 40px auto;
  padding: 0 20px;
}

.blog-post {
  margin-bottom: 40px;
}

.blog-post h2 {
  margin: 0 0 5px;
  font-size: 1.5rem;
}

.blog-post h2 a {
  text-decoration: none;
  color: #b686f6;
}

.blog-post h2 a:hover {
  text-decoration: underline;
}

.blog-post .date {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
}

.blog-post .excerpt {
  font-size: 1rem;
  color: #333;
}

.blog-content {
  max-width: 750px;
  margin: 40px auto;
  padding: 0 20px;
}

.blog-content h2 {
  font-size: 1.4rem;
  margin-top: 30px;
  color: #b686f6;
}

.blog-content p {
  margin: 15px 0;
}

.blog-content a {
  color: #b686f6;
  text-decoration: none;
}

.blog-content a:hover {
  text-decoration: underline;
}

.blog-footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #e0e0e0;
  margin-top: 50px;
}

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); }
}

/* 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;
}