
#blessai-footer-preview {
  border: 1px solid #ddd;
  padding: 15px;
  margin-top: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 400px;
}

#blessai-logo-preview {
  width: 80px;
  height: 80px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.blessai-text-preview {
  flex-grow: 1;
}

#blessai-domain-preview {
  font-weight: bold;
  margin-bottom: 5px;
}

#blessai-slogan-preview {
  font-size: 0.9em;
  color: #666;
}

.shop-info-section {
  display: none;
}






.blessai-intro-container {
  display: flex;
  justify-content: space-between;
  max-width: 820px;
  margin: 20px 0;
  padding: 10px 20px;
  background: #fff;
  border-left: 4px solid #2271b1;
}

.blessai-intro-text {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.blessai-paragraph {
  flex: 1;
  min-width: 250px; /* Minimum width before wrapping */
  max-width: 340px;
  text-align: justify;
}

.blessai-paragraph:last-child {
  flex: 0 0 auto; /* Don't grow or shrink, stay at content size */
  min-width: 98px; /* Width of the sample card */
}

.blessai-logo {
  margin-right: 15px;
  width: 32px;
  height: 32px;
}

.blessai-sample-card {
  width: 98px;
  height: 140px;
  display: block; /* Remove any unwanted margins */
}

/* Responsive styling */
@media (max-width: 850px) {
  .blessai-paragraph {
    flex: 1 1 calc(50% - 20px); /* Two columns at medium size */
  }

  .blessai-paragraph:last-child {
    flex: 1 1 auto;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .blessai-paragraph {
    flex: 1 1 100%; /* Single column at small size */
  }
}
