/* ------------------------------
   GLOBAL
------------------------------ */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ebf0ee;
  color: #333;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
}

/* ------------------------------
   TOP FLOWER / PETALS BANNER
------------------------------ */
.top-banner {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(to bottom right, #ffd9e6, #ffeef5);
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,150,170,0.25) 0%, transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(255,180,200,0.25) 0%, transparent 55%),
    radial-gradient(circle at 50% 80%, rgba(255,200,220,0.35) 0%, transparent 65%);
}

.banner-title {
  font-size: 42px;
  font-weight: bold;
  color: #b76e79;
  text-shadow: 0 2px 4px rgba(0,0,0,0.12);
}

/* ------------------------------
   HERO SECTION
------------------------------ */
.hero {
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  color: #c1d1cb;
}

.hero p {
  max-width: 700px;
  margin: 20px auto;
  font-size: 18px;
  line-height: 1.5;
}

.hero-btn {
  display: inline-block;
  background: #a1bdb4;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* ------------------------------
   TIKTOK SECTION – MOBILE FIX
------------------------------ */
.tiktok-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

/* Force TikTok embeds to behave */
.tiktok-row blockquote,
.tiktok-row iframe {
  margin: 0 auto !important;
  display: block !important;
}
/* Center TikTok section heading */
.tiktok-section h2 {
  text-align: center;
  margin-bottom: 32px;
}

/* Mobile spacing tweak */
@media (max-width: 768px) {
  .tiktok-section h2 {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }
}

/* ------------------------------
   MOBILE OVERRIDES
------------------------------ */
@media (max-width: 768px) {

  .tiktok-row {
    flex-direction: column;
    align-items: center;
  }

  .tiktok-row blockquote {
    width: 100% !important;
    max-width: 360px !important;
    min-width: unset !important;
  }

  /* TikTok iframe itself */
  .tiktok-row iframe {
    width: 100% !important;
    max-width: 360px !important;
  }

  .tiktok-placeholder {
    width: 100%;
    max-width: 360px;
    height: 520px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .tiktok-row blockquote,
  .tiktok-row iframe {
    max-width: 320px !important;
  }

  .tiktok-placeholder {
    height: 480px;
  }
}


/* ------------------------------
   PRODUCTS SECTION
------------------------------ */
.products-section {
  text-align: center;
  padding: 60px 20px;
}

.products-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #b6b19e;
}

/* FORCE PRODUCTS TO ALIGN IN A CLEAN ROW */
.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 20px;
}

/* PRODUCT CARD */
.product-card {
  background: white;
  padding: 20px;
  width: 260px;             /* FIXED WIDTH FOR PERFECT ROWS */
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

/* IMAGE BOX (E-COMMERCE STYLE) */
.product-image-box {
  width: 200px;
  height: 300px;
  margin: 0 auto 15px auto;

  overflow: hidden;
  position: relative;

  border-radius: 8px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

/* ALL SLIDER IMAGES */
.product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 0.8s ease;
}

.product-image.active {
  opacity: 1;
}

/* TEXT */
.product-card h3 {
  margin: 10px 0;
  font-size: 20px;
  font-weight: bold;
}

.product-card .desc {
  font-size: 15px;
  margin: 10px 0;
  color: #555;
}

.product-card .price {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}

/* BUTTON */
.product-card .add-to-cart {
  background: #a1bdb4;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.product-card .add-to-cart:hover {
  background: #8caea4;
}

/* ------------------------------
   FOOTER
------------------------------ */
.footer {
  background: #f4f1ec;
  padding: 20px 0;
  margin-top: 60px;
  text-align: center;
  border-top: 2px solid #ddd5ca;
}

.footer-tulips {
  font-size: 18px;
  color: #b6a28b;
}
/* ------------------------------
    BUILD BUTTON
------------------------------ */
.build-btn-wrapper {
  text-align: center;
  width: 100%;
  margin-top: 40px;
}

.build-btn {
  display: inline-block;
  background: #a1bdb4;
  color: white;
  padding: 14px 32px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.build-btn:hover {
  background: #8caea4;
  transform: translateY(-3px);
}
