/*==========================
  GLOBAL STYLES
===========================*/

* {
    font-family: "Montserrat", sans-serif;
    box-sizing: border-box; /* FIX: added so padding/border never blow up widths and shift layout */
}

/*==========================
  HOW WE ENGINEER CONSISTENCY
===========================*/

.consistency-section {
    width: 100%;
    background: #131313;
    padding: 90px 0;

    /* NEW: stack the 4 inner blocks as a column with real gap between them */
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.consistency-section .container {
    width: min(1180px, 90%);
    margin: auto;
}

.consistency-section h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.consistency-section .intro {
    color: #a8a8a8;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.consistency-list {
    list-style: none;
    padding: 0;
    margin: 0 0 -10px;
}

.consistency-list li {
    position: relative;
    color: #a8a8a8;
    font-size: 15px;
    line-height: 1.8;
    padding-left: 22px;
    margin-bottom: 16px;
}

.consistency-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #cf2037;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 14px;
}

.consistency-section p {
    color: #a8a8a8;
    font-size: 15px;
    line-height: 1.9;
    max-width: 1050px;
    margin-bottom: 15px;
}

/*==========================
      Large Tablet
===========================*/

@media(max-width:1200px) {

    .consistency-section {
        padding: 80px 0;
        gap: 60px;
    }

    .consistency-section h2 {
        font-size: 22px;
    }

    .consistency-section p,
    .consistency-section .intro,
    .consistency-list li {
        font-size: 15px;
    }

}

/*==========================
      Tablet
===========================*/

@media(max-width:992px) {

    .consistency-section {
        padding: 7px 0;
        gap: 50px;
    }

    .consistency-section h2 {
        font-size: 22px;
    }

    .consistency-section p,
    .consistency-section .intro,
    .consistency-list li {
        font-size: 15px;
        line-height: 1.8;
    }

    .consistency-list li::before {
        top: 14px;
    }

}

/*==========================
      Mobile
===========================*/

@media(max-width:768px) {

    .consistency-section {
        padding: 60px 0;
        gap: 40px;
    }

    .consistency-section .container {
        width: 92%;
    }

    .consistency-section h2 {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .consistency-section p,
    .consistency-section .intro {
        font-size: 15px;
        line-height: 1.8;
    }

    .consistency-list li {
        font-size: 15px;
        line-height: 1.8;
        padding-left: 20px;
        margin-bottom: 10px;
    }

    .consistency-list li::before {
        width: 6px;
        height: 6px;
        top: 11px;
    }

}

/*==========================
      Small Mobile
===========================*/

@media(max-width:480px) {

    .consistency-section {
        padding-bottom: 50px;
        gap: 32px;
    }

    .consistency-section h2 {
        font-size: 22px;
    }

    .consistency-section p,
    .consistency-section .intro,
    .consistency-list li {
        font-size: 15px;
    }

}



/*=========================
 NUTRITION SECTION
=========================*/

.nutrition-section {
    width: 100%;
    background: #181818;
    border-top: 4px solid #c91f2e;
    padding-top: 90px;
    padding-bottom: 90px;
    /* FIX: removed the duplicate "margin-bottom: 90px; margin-bottom: 35%;"
       that typo (35%) was creating huge, unpredictable spacing on different
       screen widths since % margins are relative to the parent's width. */
}

.nutrition-section .container {
    width: min(1180px, 90%);
    margin: auto;
}

.nutrition-section h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.nutrition-section p {
    color: #a9a9a9;
    font-size: 15px;
    line-height: 1.9;
    max-width: 1100px;
    margin-bottom: 15px;
}

.sub-title {
    color: #d7d7d7;
    font-weight: 500;
    margin-bottom: 10px;
}

.nutrition-list {
    list-style: none;
    padding: 0;
    margin: 0 0 -10px;
}

.nutrition-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    color: #a8a8a8;
    font-size: 15px;
}

.nutrition-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d41f3d;
    position: absolute;
    left: 0;
    top: 11px;
}

.bottom-text {
    margin-top: 5px;
}

.nutrition-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 18px 36px;
    background: #cf2037;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    transition: .3s;
    box-shadow: 0 10px 25px rgba(207, 32, 55, .35);
}

.nutrition-btn:hover {
    background: #e22545;
    transform: translateY(-3px);
}

/*=========================
 Tablet
=========================*/

@media(max-width:992px) {

    .nutrition-section {
        padding: 70px 0;
    }

    .nutrition-section h2 {
        font-size: 22px;
    }

    .nutrition-section p,
    .nutrition-list li {
        font-size: 15px;
    }

}

/*=========================
 Mobile
=========================*/

@media(max-width:768px) {

    .nutrition-section {
        padding: 60px 0;
    }

    .nutrition-section .container {
        width: 92%;
    }

    .nutrition-section h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .nutrition-section p,
    .nutrition-list li {
        font-size: 15px;
        line-height: 1.8;
    }

    .nutrition-list li {
        padding-left: 20px;
        margin-bottom: 12px;
    }

    .nutrition-list li::before {
        width: 6px;
        height: 6px;
        top: 10px;
    }

    .nutrition-btn {
        width: 100%;
        text-align: center;
        padding: 16px;
        font-size: 15px;
    }

}

/*=========================
 Small Mobile
=========================*/

@media(max-width:480px) {

    .nutrition-section h2 {
        font-size: 22px;
    }

    .nutrition-section p,
    .nutrition-list li {
        font-size: 15px;
    }

}




/*=========================
 PACKAGING & STABILITY
=========================*/

.packaging-section {
    width: 100%;
    background: #181818;
    border-top: 4px solid #c91f2e;
    padding: 90px 0;
}

.packaging-section .container {
    width: min(1180px, 90%);
    margin: auto;
}

.packaging-section h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.packaging-section p {
    color: #a8a8a8;
    font-size: 15px;
    line-height: 1.9;
    max-width: 1050px;
    margin-bottom: 25px;
}

.packaging-section .sub-heading {
    margin-top: 20px;
    margin-bottom: 22px;
}

.packaging-list {
    list-style: none;
    padding: 0;
    margin: 0 0 -15px;
}

.packaging-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 16px;
    color: #a8a8a8;
    font-size: 15px;
    line-height: 1.8;
}

.packaging-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #cf2037;
}

.bottom-text {
    margin-top: 25px;
}

/* Tablet */

@media (max-width:992px) {

    .packaging-section {
        padding: 70px 0;
    }

    .packaging-section h2 {
        font-size: 22px;
    }

    .packaging-section p,
    .packaging-list li {
        font-size: 15px;
    }

}

/* Mobile */

@media (max-width:768px) {

    .packaging-section {
        padding: 60px 0;
    }

    .packaging-section .container {
        width: 92%;
    }

    .packaging-section h2 {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .packaging-section p,
    .packaging-list li {
        font-size: 15px;
        line-height: 1.8;
    }

    .packaging-list li {
        padding-left: 20px;
        margin-bottom: 12px;
    }

    .packaging-list li::before {
        width: 6px;
        height: 6px;
        top: 11px;
    }

}

/* Small Mobile */

@media (max-width:480px) {

    .packaging-section {
        padding: 50px 0;
    }

    .packaging-section h2 {
        font-size: 22px;
    }

    .packaging-section p,
    .packaging-list li {
        font-size: 15px;
    }

}


/*=========================
 INTENDED FOR
 (This block sits directly inside .consistency-section in your HTML,
  so it's NOT wrapped by .intended-section/.intended-content's original
  centered-flex layout. Restyled here to behave like the other 3
  full-width blocks and match spacing/typography.)

  FIX: .consistency-section is display:flex; flex-direction:column;
  which makes align-items default to "stretch" on the cross axis.
  This block is a direct flex child (unlike the other 3, which are
  wrapped in .container). Adding "align-self: center" here locks it
  to the same centered box as .container, instead of relying only on
  width + margin:auto (which is what was causing it to hug the left
  on some viewports).
=========================*/

.tny-intended-content {
    width: min(1180px, 90%);
    margin: auto;
    margin-bottom: 25px;
    align-self: center; /* keeps it centered as a direct flex child of .consistency-section */
}

.tny-intended-content h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.tny-intended-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0px;
}

.tny-intended-list li {
    position: relative;
    color: #bdbdbd;
    font-size: 15px;
    line-height: 1.9;
    padding-left: 22px;
    margin-bottom: 8px;
}

.tny-intended-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #d3133a;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 12px;
}

.tny-description {
    margin-top: 0px;
    color: #9a9a9a;
    font-size: 15px;
    line-height: 1.8;
    max-width: 980px;
}

.tny-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    background: #d3133a;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 38px;
    border-radius: 10px;
    transition: .3s;
}

.tny-buy-btn:hover {
    background: #b20f30;
}

/* Tablet */
@media (max-width:992px) {

    .tny-intended-content h2 {
        font-size: 22px;
    }

    .tny-intended-list li {
        font-size: 15px;
    }

    .tny-description {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width:768px) {

    .tny-intended-content {
        width: 92%; /* matches the 92% breakpoint every other .container gets on mobile */
    }

    .tny-intended-content h2 {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .tny-intended-list li {
        font-size: 15px;
        line-height: 1.8;
        padding-left: 20px;
    }

    .tny-intended-list li::before {
        width: 6px;
        height: 6px;
        top: 11px;
    }

    .tny-description {
        font-size: 15px;
        margin-top: 5px;
    }

    .tny-buy-btn {
        width: 100%;
        font-size: 16px;
        padding: 15px;
    }
}

/* Small Mobile */
@media (max-width:480px) {

    .tny-intended-content h2 {
        font-size: 22px;
    }

    .tny-intended-list li {
        font-size: 15px;
    }

    .tny-description {
        font-size: 15px;
    }

    .tny-buy-btn {
        font-size: 15px;
        padding: 14px;
    }
}