@font-face {
    font-family: "Horizon";
    src: url("assets/typography/Horizon.otf");
}

@font-face {
    font-family: "OPSR";
    src: url("assets/typography/OpenSauceTwo-Regular.ttf");
}

@font-face {
    font-family: "OPSSB";
    src: url("assets/typography/OpenSauceTwo-SemiBold.ttf");
}

@font-face {
    font-family: "OPSB";
    src: url("assets/typography/OpenSauceTwo-Bold.ttf");
}

/* ── CSS Variables ── */
:root {
    --white-const:  #ffffff;
    --green-dark:   #1a4a1a;
    --green-header: rgba(14, 57, 39, 0.7);
    --green-mid:    #508842;
    --green-ultra:  #22c55e;
    --green-bright: #3a8a3a;
    --green-accent: #4CAF50;
    --green-light:  #e8f5e9;
    --green-alt:    #264918;
    --green-alt2:   #108e45;
    --green-alt3:   #69dc9a;
    --green-alt4:   #1a6d4b;
    --green-alt5:   #4fb152;
    --green-sd:     #438660;
    --green-f:      #438660;
    --gold:         #ffde21;
    --gold-light:   #f0d98a;
    --text-dark:    #262626;
    --text-mid:     #3a4a3a;
    --text-midc:    #b8d4b8;
    --text-muted:   #6b7c6b;
    --white:        #ffffff;
    --white-op:     rgba(177, 224, 197, 0.2);
    --off-white:    #f9fdf9;
    --border:       #d4e8d4;
    --shadow:       0 4px 24px rgba(26,74,26,.10);
    --radius:       14px;
    --font-display: 'Horizon';
    --font-body:    'OPSR';
    --font-sbold:   'OPSSB';
    --font-bold:    'OPSB';
    --bg-hero-btn:  rgba(255, 255, 255, 0.65);
}

/* dark-mode overrides (set by switch-themes.js) */
[data-theme="dark"] {
    --gold:         #ffd700;
    --green-alt5:   #5ed362;
    --green-alt4:   #0e3927;
    --green-alt2:   #3fb671;
    --green-sd:     #69dc9a;
    --green-f:      #438660;
    --green-light:  #0e2a0e;
    --off-white:    #111d11;
    --text-dark:    #e8f5e8;
    --text-mid:     #b8d4b8;
    --text-midc:    #b8d4b8;
    --text-muted:   #7a9a7a;
    --border:       #2a4a2a;
    --white:        #162016;
    --white-op:     rgba(7, 18, 12, 0.2);
    --bg-hero-btn:  rgba(20, 20, 20, 0.65);
    
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: white;
  transition: background-color 9999s ease-in-out 0s;
  box-shadow: 0 0 0px 1000px transparent inset;
}

html, body {
    width: 100%;
    max-width: 100%;
}

body {
    overscroll-behavior: none;
    overflow-x: hidden;
    font-family: var(--font-body);
    background: var(--off-white);
    line-height: 1.6;
}
img {display: block;}
a  { color: inherit; text-decoration: none; }


/* ── Header (matches your existing header style) ── */
header {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    z-index: 100;
    max-width: 100%;
    padding: 10px 25px;
    margin: 15px 10px;
    border-radius: 50px;
}

header a{ height: 100%; width: auto; }

header a img{
    height: 100%;
    object-fit: contain;
}

.access {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: var(--white-const);
}

#lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--white-const);
}

.theme-toggler{
    height: 30px;
}

#theme-toggle{
    background: none;
    border: none;
    cursor: pointer;
    height: 100%;
}

#theme-toggle img{ height: 100%;}

#lang-btn{
    height: 25px;
}

#lang-btn img{
    height: 100%;
}

#lang-menu {
    display: none;
    position: absolute;
    right: 24px;
    top: 60px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 0;
    list-style: none;
    box-shadow: var(--shadow);
    z-index: 200;
}
#lang-menu li {
    color: var(--text-dark);
    padding: 8px 20px;
    cursor: pointer;
    font-size: .9rem;
}
#lang-menu li:hover { background: var(--green-light); }

/* ── Hero Section ── */
.hero {
    position: relative;
    z-index: 0;
    margin-top: -110px;
    text-align: center;
    background: var(--white);
    height: calc(100vh + 10px);
    height: calc(100dvh + 10px);
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    max-width: 100%;
    background-image: url(assets/images/hero-img-light.webp);
    background-size: cover;
    background-position: center;
}

.content-hero{
    width: 100%;
    height: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.hero-texts{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
    gap: 10px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--green-alt3);
    text-shadow: 0 0 6px var(--green-sd);
    line-height: 1.2;
    width: 100%;
    max-width: 900px;
    z-index: 10;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
    animation: glow 4s ease-in infinite;
}

@keyframes glow {
    0%, 100%{
        color: var(--green-alt3);
    }
    50%{
        color: #92f4bd;
    }
}

.hero p.sub {
    margin-top: 10px;
    font-size: clamp(.60rem, 2vw, .95rem);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    z-index: 10;
    width: 100%;
    max-width: 90%;
    box-sizing: border-box;
    animation: glowsub 4s ease-in infinite;
}

@keyframes glowsub {
    0%, 100%{
        text-shadow: 0 0 3px var(--off-white);
    }
    50%{
        text-shadow: 0 0 6px var(--off-white);
    }
}

/*         Buttons Hero          */


.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-choice-btn {
    font-weight: 700;
    text-decoration: none;
    color: white;
    padding: 0.7em 1em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
    font-size: clamp(0.9rem, 1vw, 1rem);
    backdrop-filter: blur(5px);
    background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 100%
    );
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
}

.hero-choice-btn p{
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
}

.hero-choice-btn span{
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
}

.hero-choice-btn:hover{
    transform: translateY(5px) scale(1.1);
}

.hero-choice-btn:hover span{
    animation: fly-1 0.6s ease-in-out infinite alternate;
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}

@keyframes cravings {
    0%, 100%{
    }
    50%{
        background: brown;
    }
}

.cravings-btn:hover{
    background: brown;
}

@keyframes energy {
    0%, 100%{
    }
    50%{
        background: #f6a623;
    }
}

.energy-btn:hover {
  background: #f6a623;
}

/*     ---------------      */


.hero-img-wrap {
    height: auto;
    width: 100%;
    max-width: 450px;
    max-height: 50%;
    z-index: 10;
}

.hero-img-wrap img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}

/* ── Product Card ── */
.product-apresentation {
    position: relative;
    border-radius: var(--radius);
    background: var(--white);
    height: 100vh;
    width: 100%;
}

.a1{
    margin-top: -10px;
}

/* ── Floating leaves decoration ── */

.ldesktop{
    display: none;
}

.lmobile{
    display: block;
}

.lmobile, .ldesktop{
    position: absolute;
    inset: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    margin: 0 auto;
    overflow: hidden;
    z-index: 2;
}


.product-wrapper {
    position: relative;
    z-index: 5;
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 10px;
    padding: 28px 32px;
    flex-wrap: wrap;
    height: 100%;
}

.product-info { 
    text-align: center;
    max-width: 350px;
}

.badge {
    display: inline-block;
    color: var(--green-accent);
    font-size: clamp(.8rem, 3vw, 1.2rem);
    font-family: var(--font-bold);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.product-info h2 {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.product-info .desc {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text-dark);
    margin-bottom: 30px;
    max-width: 350px;
}
.btn-outline {
    display: inline-block;
    padding: 9px 22px;
    border: 2px solid var(--green-accent);
    border-radius: 8px;
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 600;
    color: var(--green-accent);
    transition: all .3s ease-in-out;
}
.btn-outline:hover {
    background-color: var(--green-ultra);
    color: var(--white-const);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%{
        box-shadow: 0 0 0 0 var(--green-ultra), inset 0 0 10px var(--green-ultra);
    }
    100%{
        box-shadow: 0 0 0 10px rgba(143, 24, 255, 0.0), inset 0 0 10px rgba(143, 24, 255, 0.0);
    }
}

.prod-img{
    width: max(250px, 60%);
}

.prod-img img{
    width: 100%;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 10px;
    padding: 8px;
}

.order-sl, .order-es{
    order: 1;
}

/* ── Why it Stands Out ── */
.about-prod{
    background: var(--white);
    overflow: hidden;
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template: 1fr 1fr auto / 1fr;
    grid-column-gap: 1px;
    grid-row-gap: 0px;
    padding: 0 40px;
}

.about-texts{
    align-self: center;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.about-texts h2 {
    font-family: var(--font-display);
    font-size: clamp(1rem, 5vw, 1.8rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 20px;
    width: 100%;
}

.about-desc {
    text-align: center;
    font-size: clamp(1rem, 3vw, 1.4rem);
    color: var(--text-dark);
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}
.about-desc strong { color: var(--green-alt2); }

/* ── Icons Row ── */

.icons-row {
    display: flex;
    justify-content: center;
    column-gap: 50px;
    row-gap: 35px;
    flex-wrap: wrap;
    align-self: center;
    min-height: 140px;
}

.icon-item {
    width: min(30%, 120px);
    opacity: 0;
    transform: scale(.5);
    transition: filter .3s ease;
}

.icon-item img {
    width: 100%;
    display: block;
}

/* ── User Report ── */

.user-report {
    margin: 20px 0 50px 0;
    align-self: flex-start;
    text-align: center;
}

.text-typing {
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-style: italic;
    color: var(--text-muted);
    min-height: 30px;
}

.text-typing::after{
    content: "|";
    animation: blink 1s infinite;
}

@keyframes blink{
    50%{
        opacity: 0;
    }
}

.user-report ul {
    list-style: none;
    margin-top: 10px;
    position: relative;
    height: 40px;
}

.user-phrase {
    position: absolute;
    width: 100%;
    left: 0;

    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-family: var(--font-sbold);
    color: var(--green-bright);
    font-style: normal;
    font-weight: 500;

    opacity: 0;
    transform: translateY(10px);
}

.user-phrase::before {
    content: "✓ ";
    color: var(--green-accent);
}

.user-report ul .user-phrase {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: var(--green-bright); 
    font-style: normal; 
    font-weight: 500;
    opacity: 0;
}

.user-report ul .user-phrase.active{
    opacity: 1;
}

/* ── Pros / Cons ── */
.pros-cons {
    padding: 28px;
    position: relative;
    width: 100%;
    max-width: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pros-cons-wrapper{
    display: grid;
    grid-template: 1fr 1fr / 1fr;
    gap: 0;
    width: 100%;
}

.cons-col {
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-dark);
    order: 1;
}
.pros-col {
    position: relative;
    padding-top: 0;
    text-align: center;
    color: #ffffff;
    transition: all 1s ease-in-out;
}

.pros-col:hover{
    transform: scale(1.03);
}

.pros-video{
    border-radius: var(--radius);
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pros-content{
    padding: 28px;
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cons-col h4, .pros-col h4 {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
    margin: 12px 0;
}

.pros-col h4 { 
    color: var(--white-const); 
}

.pros-cons ul { list-style: none; }

.pros-cons ul li {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
}
.cons-col ul li::before {
    content: "✖";
    flex-shrink: 0;
    margin-right: 5px;
}
.pros-col ul li::before {
    content: "✓";
    flex-shrink: 0;
    margin-right: 5px;
}

.cta-wrap {
    padding: 30px 0 20px 0;
    text-align: center;
}
.btn-cta {
    border: 2px solid #8affb5;
    display: inline-block;
    background: transparent;
    color: #8affb5;
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 700;
    padding: 13px 34px;
    border-radius: 8px;
    letter-spacing: .04em;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.btn-cta:hover {
    border: 2px solid var(--green-ultra);
    background-color: var(--green-ultra);
    color: var(--white-const);
    animation: pulse 1s infinite;
}

/* ── Choose Section ── */
.choose-section {
    position: relative;
    z-index: 5;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    max-width: 100%;
    padding: 200px 8%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.choose-bg{
    position: absolute;
    inset: 0;
    z-index: 6;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.choose-section h2 {
    position: relative;
    z-index: 7;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 5vw, 1.8rem);
    letter-spacing: .1rem;
    font-weight: 700;
    color: var(--white-const);
    margin-bottom: 50px;
    text-transform: uppercase;
    animation: glow2 4s ease-in infinite;
}

@keyframes glow2 {
    0%, 100%{
        text-shadow: 0 0 5px var(--white-const);
    }
    50%{
        text-shadow: 0 0 10px var(--white-const);
    }
}

.choose-grid {
    position: relative;
    z-index: 7;
    width: 100%;
    display: grid;
    grid-template: auto auto / 1fr;
    justify-items: center;
    row-gap: 50px;
}
.choose-card {
    position: relative;
    z-index: 8;
    padding: 40px;
    border-radius: var(--radius);
    background-color: var(--white-op);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    transition: all 0.5s ease-in-out;
    width: 100%;
}

.choose-card:hover{
    transform: scale(1.03);
}

.choose-card img {
    position: relative;
    z-index: 9;
    width: 100%;
    object-fit: contain;
}
.choose-card p {
    position: relative;
    z-index: 9;
    width: 80%;
    font-family: var(--font-sbold);
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 500;
    color: var(--white-const);
    margin-bottom: 15px;
}

.btn-choose {
    width: 100%;
    position: relative;
    z-index: 9;
    display: inline-block;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 8px;
    transition: all .3s ease-in-out;
}

.ch-lb strong{
    color: #8affb5;
}

.ch-es strong{
    color: #d3f068;
}

.ch-lb .btn-choose{
    color: #8affb5;
    border: 2px solid #8affb5;

}

.ch-lb .btn-choose:hover{
    color: var(--white-const);
    border: 2px solid var(--green-ultra);
    background-color: var(--green-ultra);
    animation: pulse2 0.8s infinite;
}

.ch-es .btn-choose{
    color: #d3f068;
    border: 2px solid #d3f068;
}

.ch-es .btn-choose:hover{
    border: 2px solid #7ebc3f;
    color: var(--white-const);
    background-color: #7ebc3f;
    animation: pulse3 0.8s infinite;
}

@keyframes pulse2 {
    0%{
        box-shadow: 0 0 0 0 var(--green-ultra), inset 0 0 10px var(--green-ultra);
    }
    100%{
        box-shadow: 0 0 0 10px rgba(143, 24, 255, 0.0), inset 0 0 10px rgba(143, 24, 255, 0.0);
    }
}

@keyframes pulse3 {
    0%{
        box-shadow: 0 0 0 0 #7ebc3f, inset 0 0 10px #7ebc3f;
    }
    100%{
        box-shadow: 0 0 0 10px rgba(143, 24, 255, 0.0), inset 0 0 10px rgba(143, 24, 255, 0.0);
    }
}

/* ── Disclaimer ── */
.disclaimer {
    background: var(--white);
    position: relative;
    z-index: 6;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    padding: 16px 40px;
    border-top: 1px solid var(--border);
}

.disclaimer p{
    margin: 0 auto;
    text-align: center;
    font-size: clamp(1rem, 3vw, 1.8rem);
    color: var(--text-dark);
}

/*       About Bio Burn       */

.about-bioburn{
    width: 100%;
    max-width: 100%;
    height: 100vh;
    /*background-color: #0e3927;*/
    background: linear-gradient(135deg, #0e3927, #1a4a1a, #508842);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    padding: 0 28px;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.bioburn-wrapper{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bioburn-wrapper img{
    width: 100%;
    max-width: 800px;
}

.bioburn-wrapper h3{
    text-transform: uppercase;
    color: var(--white-const);
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    width: 100%;
    max-width: 800px;
    text-align: center;
    margin-bottom: 25px;
}

.bioburn-wrapper p{
    color: var(--white-const);
    font-size: clamp(1rem, 3vw, 1.4rem);
    width: 100%;
    max-width: 800px;
    text-align: center;
}

/*       Contact       */

.contact{
    position: relative;
    width: 100%;
    max-width: 100%;
    background-color: var(--white);
    display: grid;
    grid-template: 20% 1fr 1fr/ 1fr;
    grid-template-areas: 
    'header'
    'form'
    'image';
    justify-content: center;
    align-items: center;
    color: var(--text-dark);
    text-align: center;
    padding: 100px 28px 100px 28px;
}

.contact .contact-texts{
    grid-area: header;
}

.contact .contact-texts h3{
    
    font-size: clamp(1.2rem, 6vw, 3rem);
    font-family: var(--font-display);
    color: var(--green-ultra);
    margin-bottom: 10px;

}

.contact .contact-texts p{
    font-size: clamp(1rem, 3vw, 1.4rem);
    margin-bottom: 30px;
}

.clear{
    display: none;
    grid-area: clear;
}

.contact form{
    grid-area: form;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;

}

.contact form input{
    padding: 35px 30px 35px 30px;
    width: 100%;
    border-radius: var(--radius);
    height: 30px;
    border: none;
    background: var(--green-alt4);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: white;
}

.contact form input:focus{
    outline: none;
}

.contact form input:-webkit-autofill {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    box-shadow: 0 0 0 1000px #508842 inset;
    -webkit-text-fill-color: white;
}

.contact form input::placeholder{
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-midc);
}

.contact form textarea{
    max-height: 200px;
    width: 100%;
    padding: 20px 20px 20px 25px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #1a4a1a, #508842);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    border: none;
    height: 400px;
    width: 100%;
    resize: none;
    color: white;
}

.contact form textarea::placeholder{
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-midc);
}

.contact button{
    width: 100%;
    margin-top: 10px;
    border: 2px solid var(--green-alt5);
    display: inline-block;
    background: transparent;
    color: var(--green-alt5);
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 700;
    padding: 13px 34px;
    border-radius: 8px;
    letter-spacing: .04em;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.contact button:hover{
    border: 2px solid #4fb152;
    background-color: #4fb152;
    color: var(--white-const);
    animation: pulse 1.8s infinite;
}

.contact img{
    grid-area: image;
    width: 50%;
    max-width: 300px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: 30px;
}



/*       ── Footer ──         */
footer {
    width: 100%;
    max-width: 100%;
    padding: 40px 0;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    background: var(--green-f);
    color: var(--white-const);
    text-align: center;
}

.links-footer{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--white-const);
}

.links-footer a{
    text-decoration: none;
    width: 100%;
}

.links-footer a:hover{
    color: var(--text-midc);
}

footer p{
    font-size: clamp(0.9rem, 1.2vw, 1.2rem);
    width: 100%;
}



/*               ──   Responsive  ──                     */
@media (min-width: 768px) { 
    .hero p.sub{
        max-width: 70%;
    }

    .hero-choice-btn span{
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }

    .lmobile{
        display: none;
    }

    .ldesktop{
        display: block;
    }

    .product-wrapper{
        gap: 70px;
        align-items: center;
    }

    .product-info{
        text-align: left;
        flex: none;
    }

    .order-sl{
        order: 0;
    }

    .prod-img{
        margin-top: 40px;
        width: min(30%, 300px);
    }

    .icon-item{
       width: min(30%, 180px);
    }

    .pros-cons-wrapper{
        grid-template: 1fr / 1fr 1fr;
    }

    .pros-col{
        text-align: left;
    }

    .pros-content{
        align-items: flex-start;
        justify-content: flex-start;
    }

    .cons-col{
        order: 0;
        text-align: right;
        align-items: flex-end;
        justify-content: flex-start;
    }

    .cons-col ul li::before {
        content: none;
        flex-shrink: 0;
        margin-right: 0;
    }

    .cons-col ul li::after {
        content: "✖";
        flex-shrink: 0;
        margin-left: 5px;
    }

    .pros-col ul li::before {
        content: "✓";
        flex-shrink: 0;
        margin-right: 5px;
    }

    .choose-grid{
        grid-template: 1fr / 1fr 1fr;
        justify-content: space-around;
        padding: 0 30px;
        column-gap: 20px;
    }

    .choose-card{
        width: auto;
        max-width: 400px;
    }

    .ch-es img{
       margin-top: auto;
    }

    .choose-card p{
        margin-bottom: 0;
        width: auto;
        height: 100px;
        font-size: clamp(1rem, 2vw, 1.3rem);
    }

    .btn-choose{
        max-height: 60px;
        font-size: clamp(1rem, 2vw, 1.3rem);
    }

    .contact{
        padding: 200px 28px 200px 28px;
        grid-template: 40% 1fr / 1fr min(450px, 60%) 1fr;
        grid-template-areas: 
        'header header header'
        'clear form image';
    }

    .links-footer{
        flex-wrap: nowrap;
        justify-content: center;
    }

    .links-footer a{
        width: auto;
    }

    /*.links-footer a:nth-of-type(1)::after{
        content: "|";
        margin-left: 10px;
    }*/

}