/* SECTION */
.bamboo-showcase {
  position: relative;
  height: 900px;
  background: url('/assets/images/home-hero-bg2.png') center/cover no-repeat;
  overflow: hidden;
}

/* HEADER */
.bamboo-header {
  text-align: center;
  padding: 20px 10px 10px;
  color: #fff;
}

.bamboo-header h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
}

.bamboo-header p {
  font-size: 1.4rem;
  color: #d4e157;
}

/* STAGE */
.bamboo-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ITEM */
.item {
  position: absolute;
  text-align: center;
  transition: 0.3s;
}

/* FIXED HOVER (no layout break) */
.item:hover {
  transform: translate(var(--x, 0), var(--y, 0)) scale(1.04);
}

/* SHAPE BASE */
.shape {
  overflow: hidden;
  position: relative;
  box-shadow:
    0 25px 60px rgba(0,0,0,0.3),
    inset 0 0 0 3px rgba(255,255,255,0.2);
}

/* =========================
   NEW LAYOUT SHAPES
========================= */

/* LEFT & RIGHT (VERTICAL RECTANGLES) */
.bottle .shape,
.toothbrush .shape {
  width: 260px;
  height: 520px;
  border-radius: 30px;
}

/* CENTER (STACKED SQUARES) */
.board .shape,
.glasses .shape {
  width: 260px;
  height: 260px;
  border-radius: 20px;
}

/* IMAGE */
.shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fff;
  padding: 10px;
}

/* PRODUCT INFO */
.product-info {
  margin-top: 16px;
}

.product-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

/* BUTTON */
.product-btn {
  display: inline-block;
  background: linear-gradient(145deg, #8b5a2b, #5c3a1e);
  color: #fff;
  padding: 10px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transition: 0.3s;
}

.product-btn:hover {
  transform: scale(1.08);
}

/* =========================
   NEW POSITIONS
========================= */

/* LEFT VERTICAL */
.bottle {
  top: 50%;
  left: 18%;
  --y: -50%;
  transform: translateY(-50%);
}

/* RIGHT VERTICAL */
.toothbrush {
  top: 50%;
  right: 18%;
  --y: -50%;
  transform: translateY(-50%);
}

/* CENTER TOP */
.board {
  top: 18%;
  left: 50%;
  --x: -50%;
  transform: translateX(-50%);
}

/* CENTER BOTTOM */
.glasses {
  bottom: 18%;
  left: 50%;
  --x: -50%;
  transform: translateX(-50%);
}

/* CTA */
.explore {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}

.explore a {
  background: linear-gradient(145deg, #8b5a2b, #5c3a1e);
  color: #fff;
  padding: 16px 48px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* FLOATING LEAVES */
.leaf {
  position: absolute;
  width: 60px;
  height: 60px;
  background: url('/assets/images/leaf.png') no-repeat center/contain;
  opacity: .45;
  animation: floatLeaf 7s ease-in-out infinite;
  z-index: 1;
}

.service-leaf-left-1 {
  top: 30%;
  left: 50%;
  animation-delay: 0s;
}

.service-leaf-left-2 {
  top: 90%;
  left: 65%;
  animation-delay: 2s;
}

@keyframes floatLeaf {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(12deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .bottle .shape,
  .toothbrush .shape {
    width: 200px;
    height: 400px;
  }

  .board .shape,
  .glasses .shape {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .bamboo-showcase {
    height: auto;
    padding-bottom: 80px;
  }

  .item {
    position: static;
    margin: 40px auto;
    transform: none !important;
  }

  .explore {
    position: static;
    margin: 40px auto;
    text-align: center;
  }
}