/* Full Width Wrapper */
.plants-wrapper {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* Section */
.zone-section {
  margin-bottom: 50px;
}

/* Category Title */
.zone-title {
  font-size: 26px;
  margin: 20px;
}

/* Grid Layout */
.plant-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 0 20px;
}

/* Card */
.plant-card {
  text-decoration: none;
  display: block;
}

/* Image */
.plant-image {
  position: relative;
  overflow: hidden;
}

.plant-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Overlay Name */
.plant-name {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 6px;
  font-size: 14px;
  text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
  .plant-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .plant-grid {
    grid-template-columns: 1fr;
  }
}


/* single page */

/* Layout */
.plant-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
}

.plant-left {
  width: 55%;
}

.plant-right {
  width: 45%;
}

/* Responsive */
@media (max-width: 768px) {
  .plant-container {
    flex-direction: column;
  }
  .plant-left,
  .plant-right {
    width: 100%;
  }
}

/* Typography */
.plant-left h1 {
  font-size: 32px;
}

.pronunciation {
  font-style: italic;
  color: #777;
}

.plant-meta p {
  margin: 5px 0;
}

.plant-desc {
  margin: 20px 0;
}

/* Accordion */
.acc-item {
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
}

.acc-item h3 {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.acc-content {
  display: none;
  padding-top: 10px;
}

.acc-item.active .acc-content {
  display: block;
}

/* Swiper */
.plantSwiper {
  width: 100%;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: rgba(0,0,0,0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

/* Pagination */
.swiper-pagination-bullet {
  background: #aaa;
}

.swiper-pagination-bullet-active {
  background: #000;
}
.slide-image-wrapper {
  position: relative;
}

.slide-image-wrapper img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

/* Caption Blur Effect */
.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  padding: 10px;
  font-size: 14px;
  color: #fff;

  /* Blur background */
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.4);

  border-radius: 0 0 6px 6px;
}