/* ==========================================================================
   1. Product Layout Container & Left Sidebar (Slideshow)
   ========================================================================== */
.product-1-container {
  display: grid;
  place-self: center;
  gap: 4rem;
  padding-bottom: 2rem;
  margin: 0 10rem;
}

.product-1-container .left {
  display: grid;
  color: #8f8f8f;
}

.product-1-container .img-container {
  width: 100%;
  place-self: center;
}

.product-1-container .img-container img {
  width: 100%;
  height: 100%;
}

.product-1-container .left p {
  font-family: var(--secondary-font);
  line-height: 2rem;
}

.product-1-container .left p span {
  font-weight: bolder;
}

#slideshow-container {
  overflow: hidden;
}

.slideProduct {
  display: none;
}

.slideProduct img {
  width: 100%;
}

.slideProduct.active {
  display: block;
}

/* ==========================================================================
   2. Right Sidebar (Product Menu List)
   ========================================================================== */
.product-1-list {
  background-color: #f0f0f0;
}

.product-1-list ul {
  display: grid;
  background-color: #f0f0f0;
  padding: 3rem;
  margin: 0;
  list-style: none; /* Removes the bullet points */
}

.product-1-list h1 {
  color: #222222;
  font-family: var(--main-font);
  text-align: center;         /* Centers the text horizontally */
  font-size: 1.8rem;          /* Scales the size to look balanced */
  letter-spacing: 0.5px;      /* Gives it a slightly cleaner, modern look */
  padding-top: 2rem;
}

.product-1-list a {
  text-decoration: none;
  color: #8f8f8f;
  font-weight: bold;
  font-family: var(--secondary-font);
}

.product-1-list a:hover {
  color: #1d1d1d;
  cursor: pointer;
}

/* ==========================================================================
   3. Plant Catalogue Download Section
   ========================================================================== */
.product-catalogue {
  display: block;
  clear: both;
  position: relative;
  visibility: visible;
  background-color: #f0f0f0;
  padding: 2rem 3rem;
  margin-top: 2rem;
  text-align: left;
}

.product-catalogue h2 {
  color: #222222;
  font-family: var(--main-font);
  margin: 0 0 1rem 0;
}

.product-catalogue p {
  color: #8f8f8f;
  font-family: var(--secondary-font);
  margin: 0 0 1.5rem 0;
}

.product-catalogue .catalogue-button {
  display: inline-block;
  background-color: #71a600;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-family: var(--secondary-font);
  padding: 0.8rem 2rem;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.product-catalogue .catalogue-button:hover {
  background-color: #5c8700;
  cursor: pointer;
}

/* ==========================================================================
   4. Responsive Media Queries
   ========================================================================== */

/* Desktop / Large Screens */
@media (min-width: 1200px) {
  .product-1-container {
    grid-template-columns: 2fr 1fr;
  }

  .product-1-container .left {
    display: grid;
    font-family: sans-serif;
    color: #8f8f8f;
    padding: 0 4rem 2rem 4rem;
  }

  .product-1-list {
    position: sticky;
    top: 5rem;
  }

  .product-1-list ul {
    row-gap: 2rem;
  }
}

/* Tablets / Mobile Screens */
@media (max-width: 1200px) {
  .product-1-container {
    margin: 0 2rem;
  }

  .product-1-container .right {
    grid-row: 1;
  }

  .product-1-list a {
    line-height: 2rem;
  }
}
