:root {
    --primary-color: #0a5a9e;
    --primary-dark: #1a4d7a;
    --accent: #e6143a;
    --text: #2d2d2d;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
}
body {
    font-family: "Poppins", sans-serif;
}
a {
    text-decoration: none;
}
img {
    cursor: pointer;
}
ul {
    list-style: none;
}
p {
    margin-bottom: 1.4rem;
    font-size: 1.6rem;
    line-height: 1.75em;
    color: var(--text);
}
h3 {
    font-size: 2.6rem;
    padding-top: 1rem;
    margin-bottom: 10px;
    color: #1B4730;
}
#gluco-extend_topreadbar{
    background-color: #1B4730 ;
    height: 8px;
    width: 0%;
    position: fixed;
    top: 0;
    left: 0;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}
.gif-buy-btn {
    text-align: center;
    margin: 15px 0;
}
.gif-buy-btn img {
    width: 100%;
    max-width: 430px;
    cursor: pointer;
    margin-top: -2.8em;
}
.section {
    padding: 2.5rem 0;
}
.btn {
    border: 0;
    background: none;
    cursor: pointer;
}
.subtitle {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.pages-title {
    margin-top: 10px;
    font-size: 2rem;
    font-weight: 300;
}
.gluco-extend_navbar {
    background-color: var(--primary-color);
    padding: 20px 0;
    position: relative;
}
.gluco-extend_nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.gluco-extend_logo {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 600;
}
.nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.gluco-extend_navbar.nav-open .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.gluco-extend_navbar.nav-open .nav-hamburger span:nth-child(2) {
    opacity: 0;
}
.gluco-extend_navbar.nav-open .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.gluco-extend_nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    padding: 1rem 1.5rem;
    margin: 0;
    list-style: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 100;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.25s ease, visibility 0.25s ease;
}
.gluco-extend_navbar.nav-open .gluco-extend_nav-menu {
    max-height: 80vh;
    opacity: 1;
    visibility: visible;
}
.gluco-extend_nav-item {
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.gluco-extend_nav-item:last-child {
    border-bottom: 0;
}
.gluco-extend_nav-menu .gluco-extend_nav-item a {
    display: block;
    padding: 14px 0;
    color: #fff;
    font-size: 1.5rem;
    text-transform: uppercase;
}
.gluco-extend_nav-menu .nav-order-btn {
    margin-top: 8px;
    text-align: center;
    background-color: #ffc107;
    color: #000;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 6px;
}
.gluco-extend_nav-menu .nav-order-btn:hover {
    background-color: #e6ac00;
    color: #000;
}
.gluco-extend_top-item {
    padding: 40px 0;
}
.hero-image-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero-image-wrap .img-caption {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}
.hero-text-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.gluco-extend_title {
    color: rgb(0, 0, 0);
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.gluco-extend_subtitle {
    color: var(--primary-color);
    font-size: 2.2rem;
}
.gluco-extend_list {
    margin: 30px 0;
}
.gluco-extend_list-item {
    font-weight: 600;
    font-size: 2rem;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.gluco-extend_list-item::before {
    content: "⭐";
    font-size: 22px;
    margin-right: 10px;
    margin-top: -5px;
}
.gluco-extend_buy-btn {
    text-transform: uppercase;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    background-color: var(--accent);
    border-radius: 8px;
    padding: 20px 28px;
    transition: opacity 0.2s ease;
}
.gluco-extend_buy-btn:hover {
    opacity: 0.92;
}
.gluco-extend_buy__btn {
    text-transform: uppercase;
    color: #fff;
    font-size: 1.9rem;
    font-weight: 600;
    background-color: var(--accent);
    border-radius: 8px;
    padding: 20px 28px;
    margin-bottom: 1.5em;
    margin-top: 1em;
    transition: opacity 0.2s ease;
}
.gluco-extend_buy__btn:hover {
    opacity: 0.92;
}
.gluco-extend_img {
    width: 100%;
    max-width: 490px;
    cursor: pointer;
}
.gluco-extend-a {
    color: #2f2f2f;
    cursor: pointer;
}
.gluco-extend_benefits__list {
    margin: 30px 0;
}
.gluco-extend__benefits_list-item {
    font-weight: 400;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.gluco-extend__benefits_list-item::before {
    content: "\2714";
    font-weight: 800;
    color: #10c000;
    font-size: 25px;
    margin-right: 10px;
    margin-top: 1px;
}
.guarantee {
    background-color: var(--primary-color);
    color: #fff;
    padding: 30px 0;
    margin: 40px 0;
}
.gluco-extend-moneyback-text {
    color: rgb(245, 245, 245);
    font-size: 2em;
}
.guarantee img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 40px;
}
.try_gluco-extend {
    font-size: 2.8rem;
    color: var(--accent);
    padding-bottom: 0.5em;
}
.guarantee h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}
.img-caption {
    font-size: 1.4rem;
    color: #555;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.site-footer {
    background-color: #2c2c2c;
    padding: 2rem 0;
    color: #fff;
    text-align: center;
    font-family: "Poppins", sans-serif;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-links {
    margin-bottom: 1rem;
}
.footer-links a {
    color: #b0b0b0;
    text-decoration: underline;
    margin: 0 8px;
}
.footer-links a:hover {
    color: #fff;
}
.footer-social {
    margin: 1rem 0;
}
.footer-social a {
    display: inline-block;
    margin: 0 10px;
    color: #b0b0b0;
}
.footer-social a:hover {
    color: #fff;
}
.social-icon {
    font-size: 1.6rem;
    font-weight: 600;
}
.social-icon-svg {
    width: 26px;
    height: 26px;
    vertical-align: middle;
    color: #b0b0b0;
    transition: color 0.2s ease;
}
.footer-social a:hover .social-icon-svg {
    color: #fff;
}
.footer-disclaimer {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #ddd;
    max-width: 900px;
    margin: 1rem auto;
    padding: 0 10px;
}
.footer-copyright {
    font-size: 1.4rem;
    margin-top: 1rem;
    color: #ddd;
}
.page-content {
    padding: 2rem 0 4rem;
}
.page-content h1 {
    font-size: 2.6rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}
.page-content h2 {
    font-size: 2rem;
    color: #1B4730;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.page-content p {
    margin-bottom: 1.2rem;
}
.mbr-section-title.align-center {
    text-align: center;
}
.mb-4 {
    margin-bottom: 1.5rem;
}
.gluco-extend_ingredients img {
    width: 100%;
    max-width: 1000px;
    cursor: pointer;
}
.gluco-extend_ingredients {
    text-align: center;
}
.gluco-extend-whatis-gluco-extend-btn {
    text-align: center;
    margin-top: -2em;
    margin-bottom: 1.5em;
}
.gluco-extend-buy-img img {
    width: 100%;
    max-width: 900px;
}
.gluco-extend-buy-img {
    text-align: center;
    cursor: pointer;
}
.gluco-extend-results {
    font-weight: 600;
}
.padding-top1 {
    padding-top: 22px;
}
.padding-down1 {
    padding-top: 55px;
}
.order {
    text-align: center;
}
.order__bottles {
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
}
.order__bottles img {
    width: 100%;
    max-width: 350px;
    transition: ease 0.3s all;
}
.order__bottles img:hover {
    transform: scale(1.1);
}
.order__title {
    font-size: 3rem;
    margin-bottom: 20px;
}
.order__title,
.order__subtitle {
    color: var(--primary-color);
}
.checkout__title {
    color: #fff;
    background-color: var(--primary-color);
    font-size: 2rem;
    text-align: center;
    padding: 20px 30px;
    margin-bottom: 20px;
}
.checkout__text {
    text-align: center;
}
.checkout__text {
    text-align: center;
}
.gluco-extend_buy-img {
    text-align: center;
    margin: 20px 0;
}
.gluco-extend_buy-img img {
    width: 100%;
    max-width: 900px;
    cursor: pointer;
}
.links {
    background-color: var(--primary-color);
    padding: 20px 0;
}
.links a {
    color: #fff;
    font-weight: 600;
}
.footer {
    margin-top: 40px;
    color: #1B4730;
}
.footer p {
    font-size: 1.4rem;
}
.footer__copyright {
    color: var(--text);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 30px;
}
.links__list {
    padding-top: 20px;    
}
.margin-top-very-small {
  margin-top: 10px;
}
.margin-top-small {
  margin-top: 20px;
}
.margin-top-medium {
  margin-top: 40px;
}
.margin-top-big {
  margin-top: 80px;
}
.margin-top-super-big {
  margin-top: 160px;
}
.center-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px; /* optional */
}
.center-text {
  text-align: center;
  margin-top: 20px;
}
.gluco-extend-center-image-fit {
  text-align: center;
  overflow: hidden;
}
.gluco-extend-center-image-fit img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: inline-block;
}

.gluco-extend-customer-name {
  font-weight: bold;
}
.gluco-extend-customer {
  margin-top: -15px;
}
.gluco-extend-bonus-price {
  font-weight: bold;
  color: black;
}

.gluco-extend-bonus-price-cut {
  position: relative;
}

.gluco-extend-bonus-price-cut::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background-color: red;
  transform: rotate(-2deg);
}
.gluco-extend-gif-buy-btn-top {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gluco-extend-gif-buy-btn-top img {
  max-width: 100%;
  height: auto;
}
.gluco-extend-bonus-free {
  color: green;
}



@media screen and (max-width: 481px) {
    p {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 2.8rem;
    }
    .gluco-extend_title {
        font-size: 4rem;
        margin-top: 20px;
    }
    .gluco-extend_subtitle {
        font-size: 2.2rem;
    }
}
@media screen and (min-width: 769px) {
    p {
        font-size: 2.2rem;
    }
    .subtitle {
        font-size: 3rem;
    }
    .gluco-extend_navbar {
        padding: 20px 0;
    }
    .gluco-extend_nav-container {
        justify-content: space-between;
        gap: 2rem;
    }
    .nav-hamburger {
        display: none;
    }
    .gluco-extend_logo {
        font-size: 3.4rem;
    }
    .gluco-extend_nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        background: transparent;
        padding: 0;
        margin: 0;
        box-shadow: none;
        max-height: none;
        overflow: visible;
        opacity: 1;
        visibility: visible;
    }
    .gluco-extend_nav-item {
        margin-right: 20px;
        margin-bottom: 0;
        border-bottom: none;
    }
    .gluco-extend_nav-item:last-child {
        margin-right: 0;
    }
    .gluco-extend_nav-menu .gluco-extend_nav-item a {
        padding: 0;
        font-size: 1.4rem;
    }
    .gluco-extend_nav-item a {
        color: #fff;
        font-size: 1.4rem;
        text-transform: uppercase;
    }
    .gluco-extend_nav-item a.nav-order-btn {
        display: inline-block;
        background-color: #ffc107;
        color: #000;
        font-weight: 700;
        padding: 10px 20px;
        border-radius: 6px;
        text-decoration: none;
    }
    .gluco-extend_nav-item a.nav-order-btn:hover {
        background-color: #e6ac00;
        color: #000;
    }
    .gluco-extend_nav-menu .nav-order-btn {
        margin-top: 0;
    }
    .gluco-extend_title {
        font-size: 3.6rem;
    }
    .gluco-extend_list {
        margin-left: 20px;
    }
    .gluco-extend_top-container {
        display: grid;
        align-items: center;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .hero-image-wrap {
        order: 1;
    }
    .hero-text-wrap {
        order: 2;
    }
    .gluco-extend_benefits__list {
        margin-left: 40px;
    }
    .guarantee {
        text-align: center;
    }
    .guarantee h2 {
        font-size: 3rem;
    }
    .order__bottles {
        flex-direction: row;
    }
    .order__text {
        width: 100%;
        max-width: 900px;
        margin: auto;
    }
    .checkout__title {
        font-size: 2.6rem;
    }
    .links__list {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
    .footer__copyright {
        text-align: center;
    }
}
@media screen and (min-width: 1025px) {
    .subtitle {
        font-size: 4rem;
    }
    .gluco-extend_logo {
        font-size: 4rem;
    }
    .gluco-extend_title {
        font-size: 4.2rem;
    }
}
