/* PRODUCT ROW AWARDS */

.awards-container {
  padding-top: 1.5rem;
  padding: 0 10px;
}

/* MOBILE: 2-column grid */
.secondary-awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.secondary-awards-grid > div {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secondary-awards-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.secondarybtn-wrapper {
  grid-column: 1 / -1; 
  text-align: center;
  padding: 1rem 0;
  order: -1; 
}

.secondarybtn-get-price {
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  background-color:orange;
}

.secondarybtn-get-price p {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

/* Trustpilot */
.secondary-trustpilotlogo-container {
  display: flex;
  justify-content: center;
  margin-top:2rem;
}

.secondary-trustpilotlogo-container a {
  text-decoration: none;
}

.secondary-trustpilotlogo {
  display: flex;
  flex-wrap:wrap;
  justify-content: center;
  align-items: center;
  color: #000;
  gap: 0.5em;
  padding-top: 1rem;
}

.secondary-trustpilot-5stars,
.secondary-trustpilot {
  max-width: 100px;
}

.products-content-section-container {
    max-width: 1200px;
    padding: 3rem 10px;
    margin: auto;
}

.products-content-section-title-bold {
    text-align: center;
    font-size: 1.3rem;
    color: var(--desktop-secondary-color);
}

.products-content-section-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
    line-height: 1.8rem;
    text-align: justify;
    padding-top: 1rem;
}

.products-content-section-text {
    width:100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.products-content-section-text p {
    padding-top: 1rem;
}

.products-content-section-quote {
    font-style: italic;
    font-size: 1.1rem; /* Adjusted size to keep text smaller */
    line-height: 1.8;
    max-width: 800px;
    margin: 2rem auto 1.5rem auto; /* Reduce bottom margin */
    padding: 2rem 2rem 2rem 4rem;
    color: #333;
    position: relative;
    display: block; /* Ensures the quote behaves like a block element */
}

.products-content-section-quote::before {
    content: "“";
    font-size: 80px;
    position: absolute;
    top: -15px;
    left: 20px;
    color: #7a7a7a;
    line-height: 1;
    display: block;
    font-family: Georgia, serif;
}

.products-content-section-quote::after {
    content: "”";
    font-size: 80px;
    position: absolute; /* Ensures this takes up space below the quote */
    margin-top: 1rem; /* Pushes it down below the quote */
    color: #7a7a7a;
    font-family: Georgia, serif;
    right:25px;
}

.products-image-section-container {
  max-width: 1200px;
  padding: 3rem 10px;
  margin: auto;
}

.products-image-title-bold {
  font-weight: 600;
  text-align: center;
  font-size: 1.3rem;
  color: var(--desktop-secondary-color);
}

.title-normal {
  font-weight: normal;
}

.products-image-docs {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
  line-height: 1.8rem;
  text-align: justify;
  padding-top: 1rem;
}

.products-image-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.products-image-text p {
  padding-top: 1rem;
}

.products-section-image {
  width: 100%;
  margin-top: 1.5rem;
  text-align: center;
}

.products-image-list {
  margin-top: 1rem;
  margin-bottom: 2rem;
  list-style-type: none;
  margin: auto;
}

.products-image-list li {
  text-align: justify;
}

.guarantee {
  font-weight: bold;
}

.products-navcard-container {
    width:100%;
    background-color: var(--desktop-secondary-color);
    padding:3rem 0;
}

.products-nav {
    padding: 0 10px;
    max-width:1200px;
    margin:auto;
    display:flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    gap:1rem;
    flex-wrap: wrap;
}

.products-navcard {
    display:flex;
    flex-direction:column;
    width:100%;
    height:100%;
}

.products-navcard-link {
    display:flex;
    flex-direction: column;
    width: 100%;
    height:100%;
    background-color: #fff;
    text-decoration: none;
}

.products-navcard-img img {
    height:180px;
    width:100%;
}

.products-navcard-content {
    text-align:left;
    padding:1rem;
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    gap:1rem;
    height:100px;
}

.products-navcard-content h3 {
    width:100%;
    color:#000;
}

.products-navcard-content span {
    color:#767676;
}

@media screen and (min-width:450px) {
    .products-nav {
        display:flex;
        flex-direction: row;
    }

    .products-navcard {
        width:300px;
    }
}

/* Tablet */
@media (min-width: 481px) {
  .secondary-product-banner img {
    height: 300px;
  }

  .secondary-product-banner .banner-text h1 {
    font-size: 2rem;
  }

  .secondary-product-banner .banner-text h2 {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 650px) {
  .products-image-title-bold {
    text-align: left;
    width: 80%;
    margin: auto;
  }

  .products-image-text p {
    width: 80%;
    margin: auto;
  }

  .products-image-list {
    width: 80%;
  }
}

@media screen and (min-width: 768px) {
  .products-content-section-text {
    width: 90%;
    margin: auto;
  }

  .secondary-awards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .secondary-awards-grid > div {
    flex: 1 1 220px;
    height: 250px;
    max-width: 300px;
  }

  .secondary-trustpilotlogo-container {
    margin-top: 0;
  }

  .secondarybtn-wrapper {
    order: 0;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    height: auto;
    padding: 1rem;
    background-color: transparent;
  }

  .secondarybtn-get-price {
    background-color: orange;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .secondarybtn-get-price:hover {
    background-color: #e69500;
    transform: translateY(-2px);
  }

  .secondarybtn-get-price p {
    margin: 0;
    color: #000;
    font-weight: 600;
    font-size: 1rem;
  }

  .secondary-trustpilotlogo {
    padding-top: 1rem;
  }
}

/* Desktop */
@media (min-width: 769px) {
  .secondary-product-banner img {
    height: 450px;
  }

  .secondary-product-banner .banner-text h1 {
    font-size: 2.8rem;
  }

  .secondary-product-banner .banner-text h2 {
    font-size: 1.8rem;
  }
}

@media (min-width:900px) {
    .products-nav {
        max-width:800px;
        justify-content: space-evenly;
    }

    .products-navcard {
        flex: 1 1 45%;
        max-width:45%;
    }
}

@media screen and (min-width: 981px) {
  .products-content-section-text {
    width: 80%;
    margin: auto;
  }
}

@media screen and (min-width: 1025px) {
  .products-content-section-description {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
    text-align: left;
  }

  .secondary-docs-text {
    flex: 1.6;
  }

  .secondary-docs-text-elegance {
    flex: 1;
  }

  .secondary-quote {
    flex: 1;
    text-align: right;
  }

  .products-content-section-title-bold {
    text-align: left;
  }

  .products-image-text p {
    width: 100%;
    padding-bottom: 0;
  }

  .products-image-list {
    width: 100%;
  }

  .products-image-list li {
    line-height: 1.8rem;
    font-size: 1rem;
  }

  .products-image-docs {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
    text-align: left;
  }

  .products-image-text {
    flex: 1.6;
  }

  .products-section-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
  }

  .products-image-title-bold {
    text-align: left;
    margin: 0;
  }
}

@media screen and (min-width:1200px) {
    .products-nav {
        max-width:1200px;
    }

    .products-navcard {
        display:flex;
        flex-direction:row;
        max-width:250px;
    }
}