body {
  background: linear-gradient(120deg, #fff8de 0%, #f1e9d2 60%, #ece8df 100%);
  min-height: 100vh;
  width: 100%;
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  overflow-x: hidden;
  position: relative;
}
#designer-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1; /* Behind all content */
  pointer-events: none; /* So clicks pass through */
}
.logo-con {
  width: 100%;
  text-align: center;
  position: relative;
  padding: 10px 0;
}
img {
  margin: 0;
  padding: 0;
  width: 200px;
  height: 120px;
}
.special-note {
  width: 100%;
  padding: 0 10px;
  text-align: center;
  font-size: 1.1rem;
  color: #7b715b;
  letter-spacing: 0.01em;
}
.showcase-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  height: auto;
}

.main-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 48px; /* space between */
  margin: 10px 0;
  flex-wrap: wrap;
  padding-top: 20px;
}
.main-vibe,
.short-paragraph {
  flex: 1 1;
  min-height: 320px;
  line-height: 1.5;
  padding: 28px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
  align-content: center;
  font-family: "Sylfaen", Arial, sans-serif;
}

.main-vibe {
  background: rgba(0, 0, 0, 0.7);
  color: #fffcf4;
  font-size: 2.6rem;
  font-weight: 400;
  text-align: center;
}

.short-paragraph {
  background: rgba(255, 255, 255, 0.6);
  color: #1a1a1a;
  font-weight: 400;
  font-size: 22px;
}

.btn-shop {
  position: relative; /* ← make this a positioning context */
  display: inline-block; /* so width/height are respected */
  width: 100%;
  max-width: 1000px;
  height: auto;
  padding: 16px 25px 15px 25px;
  font-size: 18px;
  text-align: center;
  text-decoration: none;

  background-color: black;
  color: white;
  border: none;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  font-family: "Roboto", Arial, sans-serif;

  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;

  opacity: 0;
  animation: fadeInUp 2s forwards;
}

.btn-shop:hover {
  background-color: rgb(50, 50, 50);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(10px);
  }
}

.product-img {
  width: 200px;
  height: auto;
  max-width: 95vw;
  background: #f1e9d2;
  display: block;
  margin: 32px auto 18px auto;
  border-radius: 20px;
  box-shadow: 0 3px 32px 0 rgba(0, 0, 0, 0.07);
  padding: 16px 10px 16px 10px;
  transition: transform 0.23s cubic-bezier(0.3, 1.6, 0.5, 1.1);
}
.product-img:hover {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 6px 64px 0 rgba(0, 0, 0, 0.14);
}
.product-caption {
  font-size: 1.1rem;
  color: #6b6552;
  text-align: center;
  font-family: "Roboto", sans-serif;
  margin-bottom: 0;
}

.modal-btn {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 10px 28px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.13);
  cursor: pointer;
  transition: 0.2s;
}

/* Stack on mobile */
@media (max-width: 900px) {
  .special-note {
    font-size: 0.9rem;
  }
  .main-row {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .main-vibe {
    width: 100%;
    font-size: 2rem;
  }
  .short-paragraph {
    width: 100%;
    font-size: 1.2rem;
  }
  .product-img {
    width: 60vw;
    border-radius: 8px;
  }
}
