:root {
  /* color: Timberwolf */
  --main-color: #ded5cd;
  /* color: Linen */
  --secondary-color: #f3eae2;
  /* color: Dark moss-green */
  --font-color1: #41462d;
  /* color: Beige */
  --font-color2: #e9ead6;
}

/* ---------------- Shop Page Typography ---------------- */

/* Scope styles so they don’t override carousel captions */
main h2 {
  margin: 40px auto;
  width: 70%;
  font-size: 125%;
  text-align: center;
}

main p {
  font-size: 1.1rem;
  margin: 0px auto;
  text-align: center;
  line-height: 115%;
  width: 70%;
}

.note {
  font-size: 0.9rem;
  margin-top: 50px;
  font-weight: 700;
}

/* ---------------- Paypal ---------------- */
.pp-ZD9ZDFDDVSBMQ {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 50px auto;
}

form section {
  margin-top: 5px;
}

/* ---------------- Button ---------------- */
.buy-button {
  color: var(--font-color1);
  background-color: #e9e7b7;
  padding: 10px 15px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  margin-bottom: 15px;
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  text-transform: uppercase;
}

.buy-button:hover {
  transition: 0.2s ease-in;
  color: #e9e7b7;
  background-color: var(--font-color1);
  border: -1px solid var(--main-color);
}

/* ---------------- Testimonials Carousel ---------------- */

/* Ensure carousel fits screen */
.carousel-inner {
  max-width: 100%;
}

.carousel-item img {
  width: 100%;
  height: auto;
  max-height: 400px; /* smaller for mobile */
  object-fit: cover;
}

/* Caption styling */
.carousel-caption {
  bottom: 20px;
  margin-top: 30px;
  padding: 0;
  left: 10%; 
  right: 10%;
}

.carousel-caption p {
  margin: 0 auto 20px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.4;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px;
  border-radius: 10px;
}

/* Controls inside viewport */
.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev {
  left: 10%;
}
.carousel-control-next {
  right: 10%;
}

/* ---------------- Global Resets ---------------- */
ul {
  padding-left: 0;
  margin-bottom: 0;
}

h1 {
  margin-bottom: 0;
}

.testimonials {
  margin-top: 0;
  margin-bottom: 15px
}

/* ---------------- Media Queries ---------------- */

@media (max-width: 720px) {
  main {
  padding-right: 60px;
  }

  main h2 {
    font-size: 1rem;
    margin: 20px auto 10px;
    width: 95%;
  }

  .carousel-caption {
    position: static;        /* no overlay */
    padding: 12px 16px;
    transform: none;
    background: transparent;
    color: var(--font-color1);
    text-align: center;
  }
  .carousel-caption p {
    background: none;        /* no dark box */
    color: var(--font-color1);
    margin: 0 auto;
    width: 92%;
    font-size: 1rem;
    line-height: 1.45;
  }
}

