/* ============================================================
   1. GLOBAL VARIABLES
============================================================ */

:root {

    --webroot-green: #78d21f;
    --webroot-green-dark: #2f7f3d;
    --webroot-green-light: #eaf7df;

    --dark: #07130d;
    --dark-2: #0c2117;
    --dark-3: #153a27;

    --text: #17221c;
    --text-light: #5f6d65;
    --text-muted: #7b8781;

    --white: #ffffff;
    --off-white: #f8faf8;
    --light-bg: #f2f7f3;

    --border: #dfe7e2;

    --amazon-orange: #ff9900;
    --amazon-orange-dark: #e68900;

    --shadow-small:
        0 5px 20px rgba(10, 35, 20, 0.08);

    --shadow:
        0 15px 45px rgba(10, 35, 20, 0.10);

    --shadow-large:
        0 25px 70px rgba(10, 35, 20, 0.15);

    --radius: 14px;
    --radius-large: 20px;

}


/* ============================================================
   2. RESET / BASIC STYLES
============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.6;

}


img {

    max-width: 100%;

    display: block;

}


a {

    text-decoration: none;

    color: inherit;

}


button,
a {

    -webkit-tap-highlight-color: transparent;

}


.container {

    width: min(1180px, 92%);

    margin: 0 auto;

}


/* ============================================================
   3. TYPOGRAPHY
============================================================ */

h1,
h2,
h3,
h4 {

    color: var(--text);

    line-height: 1.2;

}


h1 {

    font-size: clamp(42px, 5vw, 68px);

    font-weight: 800;

}


h2 {

    font-size: 38px;

    font-weight: 800;

}


h3 {

    font-size: 21px;

    font-weight: 750;

}


p {

    color: var(--text-light);

}


.eyebrow {

    display: inline-block;

    color: var(--webroot-green-dark);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.centered {

    text-align: center;

}


/* ============================================================
   4. BUTTONS
============================================================ */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 46px;

    padding: 12px 21px;

    border-radius: 9px;

    border: none;

    font-size: 14px;

    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;

}


.btn:hover {

    transform: translateY(-2px);

}


.btn-primary {

    background: var(--webroot-green);

    color: #102015;

    box-shadow:
        0 7px 20px rgba(120, 210, 31, 0.20);

}


.btn-primary:hover {

    background: #8de135;

}


.btn-light {

    background: var(--white);

    color: var(--dark);

}


.btn-light:hover {

    box-shadow: var(--shadow-small);

}


.btn-amazon {

    background: var(--amazon-orange);

    color: #111;

    width: 100%;

    box-shadow:
        0 6px 18px rgba(255, 153, 0, 0.18);

}


.btn-amazon:hover {

    background: var(--amazon-orange-dark);

}


/* ============================================================
   5. HEADER / NAVIGATION
============================================================ */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(15px);

    border-bottom:
        1px solid var(--border);

}


.nav {

    min-height: 76px;

    display: flex;

    align-items: center;

    gap: 30px;

}


.brand {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-right: auto;

    font-size: 18px;

    font-weight: 800;

}


.brand em {

    display: block;

    margin-top: 1px;

    font-size: 9px;

    font-style: normal;

    letter-spacing: 1.7px;

    text-transform: uppercase;

    color: var(--text-muted);

}


.brand-mark {

    width: 39px;

    height: 39px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    background: var(--webroot-green);

    color: #102016;

    font-size: 21px;

    font-weight: 900;

}


.nav nav {

    display: flex;

    align-items: center;

    gap: 26px;

}


.nav nav a {

    font-size: 13px;

    font-weight: 700;

    color: #425047;

    transition: color 0.2s ease;

}


.nav nav a:hover {

    color: var(--webroot-green-dark);

}


.nav-cta {

    padding: 11px 18px;

    border-radius: 8px;

    background: var(--dark);

    color: var(--white);

    font-size: 13px;

    font-weight: 800;

}


.nav-cta:hover {

    background: var(--dark-3);

}


/* ============================================================
   6. HERO SECTION
============================================================ */
.hero-banner {
    width: 100%;
    overflow: hidden;
    background: #07130d;
}

.hero-banner img {
    display: block;
    width: 100%;
    height: auto;
}


/* ============================================================
   7. TRUST STRIP
============================================================ */

.trust-strip {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    background: var(--white);

    border-bottom:
        1px solid var(--border);

}


.trust-strip > div {

    padding: 23px 28px;

    border-right:
        1px solid var(--border);

}


.trust-strip > div:last-child {

    border-right: none;

}


.trust-strip strong {

    display: block;

    margin-bottom: 3px;

    font-size: 14px;

}


.trust-strip span {

    color: var(--text-muted);

    font-size: 12px;

}


/* ============================================================
   8. GENERAL SECTION
============================================================ */

.section {

    padding: 90px 0;

}


.section.muted {

    background: var(--light-bg);

}


.section-heading {

    margin-bottom: 40px;

}


.section-heading h2 {

    margin-top: 9px;

}


.section-heading p {

    max-width: 650px;

    margin:
        12px auto 0;

    font-size: 15px;

}


/* ============================================================
   9. FEATURED PRODUCTS SECTION
============================================================ */

.featured-product-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;

}


/* ============================================================
   10. FEATURED PRODUCT CARD
============================================================ */

.featured-product-card {

    display: flex;

    flex-direction: column;

    overflow: hidden;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.featured-product-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow);

}


/* ============================================================
   11. PRODUCT IMAGE AREA
============================================================ */

.featured-product-image {

    height: 245px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #08150f,
            #193d29
        );

}


.featured-product-image:after {

    content: "";

    position: absolute;

    width: 190px;

    height: 190px;

    border-radius: 50%;

    background:
        rgba(120, 210, 31, 0.10);

    filter: blur(5px);

}


.featured-product-image img {

    position: relative;

    z-index: 2;

    width: auto;

    max-width: 190px;

    max-height: 195px;

    object-fit: contain;

    transition: transform 0.25s ease;

}


.featured-product-card:hover
.featured-product-image img {

    transform: scale(1.04);

}


/* ============================================================
   12. PRODUCT PLACEHOLDER
============================================================ */

.product-placeholder {

    position: relative;

    z-index: 2;

    width: 145px;

    height: 175px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 20px;

    border:
        1px solid var(--webroot-green);

    border-radius: 9px;

    background:
        linear-gradient(
            145deg,
            #09140e,
            #254b33
        );

    color: var(--white);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.35);

}


.product-placeholder span {

    color: var(--webroot-green);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.5px;

}


.product-placeholder strong {

    color: var(--white);

    font-size: 18px;

    line-height: 1.1;

}


/* ============================================================
   13. PRODUCT TAG
============================================================ */

.product-tag {

    position: absolute;

    top: 15px;

    left: 15px;

    z-index: 5;

    padding: 6px 11px;

    border-radius: 50px;

    background: var(--webroot-green);

    color: #102016;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 0.3px;

}


/* ============================================================
   14. PRODUCT CARD CONTENT
============================================================ */

.featured-product-content {

    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 25px;

}


.product-category {

    display: inline-block;

    margin-bottom: 6px;

    color: var(--webroot-green-dark);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.4px;

    text-transform: uppercase;

}


.featured-product-content h3 {

    margin-bottom: 9px;

    font-size: 20px;

    line-height: 1.25;

}


.product-description {

    min-height: 65px;

    margin-bottom: 15px;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.55;

}


/* ============================================================
   15. PRODUCT PRICE / DEVICE INFORMATION
============================================================ */

.product-info {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 13px 0;

    border-top:
        1px solid #edf1ee;

    border-bottom:
        1px solid #edf1ee;

}


.product-info span {

    color: var(--text-muted);

    font-size: 12px;

    font-weight: 600;

}


.product-info strong {

    color: var(--text);

    font-size: 16px;

}


/* ============================================================
   16. PRODUCT FEATURES
============================================================ */

.product-features {

    list-style: none;

    margin: 12px 0;

    padding: 0;

}


.product-features li {

    position: relative;

    padding:
        5px 0 5px 20px;

    color: #49574f;

    font-size: 12px;

    line-height: 1.45;

}


.product-features li:before {

    content: "✓";

    position: absolute;

    left: 0;

    color: var(--webroot-green-dark);

    font-weight: 900;

}


/* ============================================================
   17. PRODUCT CARD BUTTONS
============================================================ */

.product-card-actions {

    margin-top: auto;

    padding-top: 10px;

}


.product-details-link {

    display: block;

    margin-top: 12px;

    text-align: center;

    color: var(--webroot-green-dark);

    font-size: 12px;

    font-weight: 800;

}


.product-details-link:hover {

    text-decoration: underline;

}


/* ============================================================
   18. VIEW ALL PRODUCTS BUTTON
============================================================ */

.center-button {

    margin-top: 42px;

    text-align: center;

}


/* ============================================================
   19. COMPARISON SECTION
============================================================ */

.comparison-wrap {

    width: 100%;

    overflow-x: auto;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    background: var(--white);

    box-shadow: var(--shadow-small);

}


.comparison {

    width: 100%;

    min-width: 900px;

    border-collapse: collapse;

}


.comparison th {

    padding: 17px 20px;

    background:
        #eaf4eb;

    color: #46554d;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1px;

    text-align: left;

    text-transform: uppercase;

}


.comparison td {

    padding: 18px 20px;

    border-top:
        1px solid var(--border);

    color: var(--text-light);

    font-size: 13px;

    vertical-align: middle;

}


.comparison td strong {

    display: block;

    color: var(--text);

    font-size: 13px;

}


.comparison tr:hover td {

    background: #fbfdfb;

}


.table-link {

    color: var(--webroot-green-dark);

    font-weight: 800;

    white-space: nowrap;

}


.table-link:hover {

    text-decoration: underline;

}


/* ============================================================
   20. SHOP BY NEED
============================================================ */

.need-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


.need-card {

    position: relative;

    padding: 28px;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    background: var(--white);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.need-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow);

}


.need-card > span {

    color: var(--webroot-green-dark);

    font-size: 11px;

    font-weight: 900;

}


.need-card h3 {

    margin:
        13px 0 8px;

}


.need-card p {

    min-height: 85px;

    margin-bottom: 18px;

    font-size: 13px;

}


.need-card strong {

    color: var(--webroot-green-dark);

    font-size: 12px;

}


/* ============================================================
   21. DARK "WHY COMPARE" SECTION
============================================================ */

.dark-section {

    background:
        linear-gradient(
            135deg,
            #07130d,
            #123521
        );

}


.two-col {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;

}


.two-col h2 {

    margin-top: 12px;

    color: var(--white);

    font-size: 43px;

}


.two-col .eyebrow {

    color: var(--webroot-green);

}


.two-col p {

    margin-bottom: 25px;

    color: #bdcbc3;

    font-size: 16px;

}


/* ============================================================
   22. FAQ SECTION
============================================================ */

.faq-section {

    background: var(--white);

}


.faq-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;

}


.faq-grid details {

    padding: 20px 22px;

    border:
        1px solid var(--border);

    border-radius: 11px;

    background: var(--white);

    transition:
        box-shadow 0.2s ease,
        border-color 0.2s ease;

}


.faq-grid details:hover {

    border-color:
        #c8d9cd;

    box-shadow:
        var(--shadow-small);

}


.faq-grid summary {

    position: relative;

    padding-right: 25px;

    color: var(--text);

    font-size: 14px;

    font-weight: 800;

    cursor: pointer;

    list-style: none;

}


.faq-grid summary::-webkit-details-marker {

    display: none;

}


.faq-grid summary:after {

    content: "+";

    position: absolute;

    right: 0;

    top: -2px;

    color: var(--webroot-green-dark);

    font-size: 20px;

    font-weight: 400;

}


.faq-grid details[open]
summary:after {

    content: "−";

}


.faq-grid details p {

    margin-top: 15px;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.7;

}


/* ============================================================
   23. AFFILIATE DISCLOSURE
============================================================ */

.affiliate-disclosure {

    padding: 30px 0;

    background:
        #eef6ee;

    border-top:
        1px solid #dce8de;

    border-bottom:
        1px solid #dce8de;

}


.affiliate-disclosure strong {

    display: block;

    margin-bottom: 5px;

    color: var(--text);

    font-size: 13px;

}


.affiliate-disclosure p {

    max-width: 850px;

    color: var(--text-muted);

    font-size: 11px;

}


/* ============================================================
   24. FOOTER
============================================================ */

.site-footer {

    padding:
        65px 0 20px;

    background: #06100b;

    color: #c4d0c9;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 60px;

}


.footer-brand {

    color: var(--white);

}


.site-footer p {

    max-width: 430px;

    margin-top: 18px;

    color: #82928a;

    font-size: 13px;

}


.site-footer h4 {

    margin-bottom: 15px;

    color: var(--white);

    font-size: 13px;

}


.site-footer .footer-grid
a:not(.brand) {

    display: block;

    margin: 8px 0;

    color: #91a099;

    font-size: 12px;

}


.site-footer .footer-grid
a:not(.brand):hover {

    color: var(--webroot-green);

}


.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 50px;

    padding-top: 18px;

    border-top:
        1px solid #1a2b21;

    color: #718079;

    font-size: 10px;

}


/* ============================================================
   25. PRODUCT LIST PAGE
============================================================ */

.page-hero {

    padding: 80px 0;

    background:
        linear-gradient(
            135deg,
            #07130d,
            #173c28
        );

    color: var(--white);

}


.page-hero h1 {

    margin-top: 12px;

    color: var(--white);

    font-size: 48px;

}


.page-hero p {

    max-width: 700px;

    margin-top: 12px;

    color: #c5d2ca;

}


.filter-bar {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 30px;

}


.filter-bar a {

    padding: 8px 15px;

    border:
        1px solid var(--border);

    border-radius: 50px;

    color: var(--text-light);

    font-size: 12px;

    font-weight: 800;

}


.filter-bar a:hover,
.filter-bar a.active {

    border-color:
        var(--webroot-green);

    background:
        var(--webroot-green);

    color: #102015;

}


/* ============================================================
   26. PRODUCT CATALOG CARDS
============================================================ */

.product-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}


.product-card {

    display: flex;

    flex-direction: column;

    padding: 24px;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    background: var(--white);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;

}


.product-card:hover {

    transform: translateY(-4px);

    box-shadow: var(--shadow);

}


.card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

}


.mini-logo {

    color: var(--webroot-green-dark);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.5px;

}


.product-card h2 {

    margin:
        18px 0 8px;

    font-size: 20px;

}


.product-card > p {

    min-height: 68px;

    font-size: 13px;

}


.card-meta {

    display: flex;

    justify-content: space-between;

    padding: 13px 0;

    margin-top: 12px;

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);

}


.card-meta span {

    color: var(--text-muted);

    font-size: 12px;

}


.card-meta strong {

    font-size: 15px;

}


.compact-list {

    list-style: none;

    margin: 10px 0;

    padding: 0;

}


.compact-list li {

    padding:
        5px 0 5px 20px;

    position: relative;

    color: var(--text-light);

    font-size: 12px;

}


.compact-list li:before {

    content: "✓";

    position: absolute;

    left: 0;

    color: var(--webroot-green-dark);

    font-weight: 900;

}


.card-actions {

    margin-top: auto;

    padding-top: 10px;

}


.card-actions .btn {

    width: 100%;

}


/* ============================================================
   27. PRODUCT DETAIL PAGE
============================================================ */

.detail-layout {

    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 70px;

    align-items: center;

}


.detail-visual {

    min-height: 500px;

    display: grid;

    place-items: center;

    border-radius: var(--radius-large);

    background:
        linear-gradient(
            145deg,
            #08150f,
            #193f2a
        );

}


.detail-copy h2 {

    margin:
        15px 0;

    font-size: 36px;

}


.detail-copy .lead {

    font-size: 17px;

}


.price-box {

    margin:
        25px 0;

    padding: 20px;

    border-radius: 12px;

    background:
        var(--light-bg);

}


.price-box strong {

    display: block;

    font-size: 28px;

}


.price-box span {

    color: var(--text-muted);

    font-size: 12px;

    text-decoration: line-through;

}


.small-note {

    margin-top: 13px;

    color: var(--text-muted);

    font-size: 11px;

}


/* ============================================================
   28. PRODUCT BENEFITS
============================================================ */

.benefit-section {

    margin-top: 90px;

}


.benefit-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

    margin-top: 25px;

}


.benefit-card {

    padding: 22px;

    border:
        1px solid var(--border);

    border-radius: 12px;

}


.benefit-card span {

    color: var(--webroot-green-dark);

    font-size: 11px;

    font-weight: 900;

}


.benefit-card p {

    margin-top: 10px;

    color: var(--text-light);

    font-size: 13px;

}


/* ============================================================
   29. MOBILE NAVIGATION
============================================================ */

@media (max-width: 900px) {

    .nav {

        min-height: 68px;

    }


    .nav nav {

        display: none;

    }


    .hero {

        grid-template-columns: 1fr;

    }


    .hero-content {

        padding:
            75px 6% 50px;

    }


    .hero-art {

        min-height: 360px;

    }


    .hero-card {

        right: 6%;

        bottom: 8%;

    }


    .featured-product-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }


    .need-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .two-col {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .faq-grid {

        grid-template-columns: 1fr;

    }


    .product-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .detail-layout {

        grid-template-columns: 1fr;

    }


    .footer-grid {

        grid-template-columns:
            1fr 1fr;

    }

}


/* ============================================================
   30. TABLET
============================================================ */

@media (max-width: 700px) {

    h2 {

        font-size: 32px;

    }


    .trust-strip {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .trust-strip > div {

        border-bottom:
            1px solid var(--border);

    }


    .product-grid {

        grid-template-columns: 1fr;

    }


    .benefit-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* ============================================================
   31. MOBILE
============================================================ */

@media (max-width: 600px) {

    .container {

        width: 90%;

    }


    .brand {

        font-size: 15px;

    }


    .brand-mark {

        width: 35px;

        height: 35px;

        font-size: 18px;

    }


    .nav-cta {

        display: none;

    }


    .hero {

        min-height: auto;

    }


    .hero-content {

        padding:
            65px 5% 45px;

    }


    .hero h1 {

        font-size: 42px;

    }


    .hero-content > p {

        font-size: 16px;

    }


    .hero-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .hero-actions .btn {

        width: 100%;

    }


    .hero-art {

        min-height: 300px;

    }


    .hero-card {

        right: 5%;

        bottom: 7%;

        width: 220px;

    }


    .trust-strip {

        grid-template-columns: 1fr;

    }


    .trust-strip > div {

        border-right: none;

        border-bottom:
            1px solid var(--border);

    }


    .section {

        padding: 65px 0;

    }


    .section-heading {

        margin-bottom: 30px;

    }


    .section-heading h2 {

        font-size: 31px;

    }


    .featured-product-grid {

        grid-template-columns: 1fr;

    }


    .featured-product-image {

        height: 230px;

    }


    .need-grid {

        grid-template-columns: 1fr;

    }


    .need-card p {

        min-height: auto;

    }


    .two-col h2 {

        font-size: 35px;

    }


    .benefit-grid {

        grid-template-columns: 1fr;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

    }


    .page-hero {

        padding: 60px 0;

    }


    .page-hero h1 {

        font-size: 38px;

    }


    .detail-visual {

        min-height: 380px;

    }

}

/* ============================================================
   FOOTER
============================================================ */

.site-footer {
    background: #06100b;
    color: #c7d2cc;
}


/* ============================================================
   FOOTER MAIN
============================================================ */

.footer-main {
    padding: 70px 0 60px;
}

.footer-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.footer-main .footer-container {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 55px;
}


/* ============================================================
   COMPANY / LOGO
============================================================ */

.footer-company {
    max-width: 370px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
}

.footer-logo img {
    display: block;
    width: auto;
    max-width: 190px;
    max-height: 65px;
    object-fit: contain;
}


.footer-about {
    margin: 22px 0 12px;
    color: #9aa9a1;
    font-size: 13px;
    line-height: 1.75;
}


.footer-independent {
    color: #687a70;
    font-size: 11px;
    line-height: 1.6;
}


/* ============================================================
   SOCIAL ICONS
============================================================ */

.footer-social {
    display: flex;
    gap: 9px;
    margin-top: 24px;
}

.footer-social a {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #26382d;
    border-radius: 50%;

    color: #9aa9a1;

    font-size: 13px;
    font-weight: 700;

    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: #78d21f;
    border-color: #78d21f;
    color: #0b180f;
}


/* ============================================================
   FOOTER COLUMNS
============================================================ */

.footer-column h3 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;
}


.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


.footer-column li {
    margin-bottom: 11px;
}


.footer-column a {
    color: #899a91;

    font-size: 12px;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}


.footer-column a:hover {
    color: #78d21f;
    padding-left: 3px;
}


/* ============================================================
   AMAZON AFFILIATE DISCLOSURE
============================================================ */

.footer-disclosure {
    padding: 25px 0;

    background: #0b1a12;

    border-top: 1px solid #1b3023;
    border-bottom: 1px solid #1b3023;
}


.footer-disclosure .footer-container {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}


.disclosure-icon {
    flex: 0 0 28px;

    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #557260;
    border-radius: 50%;

    color: #78d21f;

    font-size: 13px;
    font-weight: 800;
}


.footer-disclosure strong {
    display: block;

    margin-bottom: 4px;

    color: #ffffff;

    font-size: 12px;
}


.footer-disclosure p {
    max-width: 900px;

    margin: 0;

    color: #819289;

    font-size: 11px;
    line-height: 1.65;
}


/* ============================================================
   FOOTER BOTTOM
============================================================ */

.footer-bottom {
    background: #040b07;
}


.footer-bottom-inner {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.footer-bottom p {
    margin: 0;

    color: #66766d;

    font-size: 10px;
    line-height: 1.6;
}


.footer-bottom p:last-child {
    max-width: 560px;
    text-align: right;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 900px) {

    .footer-main .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 35px;
    }

    .footer-company {
        grid-column: 1 / -1;
        max-width: 600px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 600px) {

    .footer-main {
        padding: 50px 0 40px;
    }


    .footer-main .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
    }


    .footer-company {
        grid-column: 1 / -1;
    }


    .footer-logo img {
        max-width: 170px;
    }


    .footer-disclosure .footer-container {
        gap: 10px;
    }


    .footer-bottom-inner {
        min-height: auto;

        flex-direction: column;

        align-items: flex-start;

        padding: 20px 0;
    }


    .footer-bottom p:last-child {
        text-align: left;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 420px) {

    .footer-main .footer-container {
        grid-template-columns: 1fr;
    }

}

/* ============================================================
   CONTACT PAGE
============================================================ */


/* ============================================================
   CONTACT HERO
============================================================ */

.contact-hero {
    padding: 75px 0;

    background:
        linear-gradient(
            135deg,
            #07130d,
            #173c28
        );

    color: #ffffff;
}


.contact-hero .eyebrow {
    color: #78d21f;
}


.contact-hero h1 {
    margin-top: 12px;

    color: #ffffff;

    font-size: clamp(40px, 5vw, 58px);
}


.contact-hero p {
    max-width: 650px;

    margin-top: 15px;

    color: #c5d2ca;

    font-size: 16px;
}


/* ============================================================
   CONTACT SECTION
============================================================ */

.contact-section {
    padding: 90px 0;

    background: #ffffff;
}


.contact-grid {
    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap: 80px;

    align-items: start;
}


/* ============================================================
   CONTACT INFORMATION
============================================================ */

.contact-information {
    padding-top: 10px;
}


.contact-information h2 {
    margin-top: 12px;

    font-size: 38px;
}


.contact-intro {
    max-width: 500px;

    margin-top: 15px;

    color: #66736c;

    font-size: 14px;

    line-height: 1.75;
}


/* ============================================================
   CONTACT INFO ITEMS
============================================================ */

.contact-info-item {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-top: 30px;
}


.contact-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #eaf7df;

    color: #2f7f3d;

    font-size: 14px;

    font-weight: 900;
}


.contact-info-item h3 {
    margin-bottom: 4px;

    font-size: 14px;
}


.contact-info-item p {
    color: #68766f;

    font-size: 13px;

    line-height: 1.6;
}


.contact-info-item a {
    color: #2f7f3d;

    font-size: 13px;

    font-weight: 700;
}


.contact-info-item a:hover {
    text-decoration: underline;
}


/* ============================================================
   CONTACT NOTE
============================================================ */

.contact-note {
    max-width: 500px;

    margin-top: 35px;

    padding: 20px;

    border-left:
        3px solid #78d21f;

    background: #f2f7f3;
}


.contact-note strong {
    display: block;

    margin-bottom: 6px;

    color: #17221c;

    font-size: 13px;
}


.contact-note p {
    color: #68766f;

    font-size: 11px;

    line-height: 1.65;
}


/* ============================================================
   CONTACT FORM WRAPPER
============================================================ */

.contact-form-wrapper {
    padding: 35px;

    border:
        1px solid #dfe7e2;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 18px 50px
        rgba(10, 35, 20, 0.08);
}


.contact-form-header {
    margin-bottom: 25px;
}


.contact-form-header h2 {
    margin-top: 9px;

    font-size: 30px;
}


.contact-form-header p {
    margin-top: 7px;

    color: #718078;

    font-size: 13px;
}


/* ============================================================
   FORM ROW
============================================================ */

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 17px;
}


/* ============================================================
   FORM GROUP
============================================================ */

.form-group {
    margin-bottom: 18px;
}


.form-group label {
    display: block;

    margin-bottom: 7px;

    color: #26342c;

    font-size: 12px;

    font-weight: 800;
}


.form-group input,
.form-group textarea {
    width: 100%;

    padding: 13px 14px;

    border:
        1px solid #d8e2dc;

    border-radius: 8px;

    outline: none;

    background: #fbfcfb;

    color: #17221c;

    font-family: inherit;

    font-size: 13px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.form-group input {
    height: 47px;
}


.form-group textarea {
    min-height: 150px;

    resize: vertical;

    line-height: 1.6;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa69f;
}


.form-group input:focus,
.form-group textarea:focus {
    border-color: #78d21f;

    background: #ffffff;

    box-shadow:
        0 0 0 3px
        rgba(120, 210, 31, 0.10);
}


/* ============================================================
   SUBMIT BUTTON
============================================================ */

.contact-submit {
    width: 100%;

    min-height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border: none;

    border-radius: 8px;

    background: #78d21f;

    color: #102015;

    font-family: inherit;

    font-size: 14px;

    font-weight: 900;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.contact-submit span {
    font-size: 18px;
}


.contact-submit:hover {
    background: #8cde39;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(120, 210, 31, 0.20);
}


/* ============================================================
   SUCCESS MESSAGE
============================================================ */

.form-success {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 22px;

    padding: 16px;

    border:
        1px solid #b9dfc0;

    border-radius: 9px;

    background: #eef9ef;
}


.success-icon {
    flex: 0 0 28px;

    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #2f8a48;

    color: #ffffff;

    font-size: 13px;

    font-weight: 900;
}


.form-success strong {
    display: block;

    color: #236538;

    font-size: 13px;
}


.form-success p {
    margin-top: 3px;

    color: #587061;

    font-size: 11px;

    line-height: 1.5;
}


/* ============================================================
   INLINE THANK YOU MESSAGE
============================================================ */

.thank-you-inline {
    display: flex;

    flex-direction: column;

    align-items: center;

    margin-top: 18px;

    padding: 18px;

    border:
        1px solid #b9dfc0;

    border-radius: 10px;

    background: #f1faf2;

    text-align: center;
}


.thank-you-inline > span {
    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 8px;

    border-radius: 50%;

    background: #2f8a48;

    color: #ffffff;

    font-size: 14px;

    font-weight: 900;
}


.thank-you-inline strong {
    color: #236538;

    font-size: 13px;
}


.thank-you-inline p {
    margin-top: 4px;

    color: #63766a;

    font-size: 11px;
}


/* ============================================================
   ERROR MESSAGE
============================================================ */

.form-error {
    margin-bottom: 20px;

    padding: 13px 15px;

    border:
        1px solid #efc4c4;

    border-radius: 8px;

    background: #fff3f3;

    color: #a23535;

    font-size: 12px;

    line-height: 1.5;
}


/* ============================================================
   REQUIRED NOTE
============================================================ */

.form-required-note {
    margin-top: 12px;

    color: #8a9690;

    font-size: 10px;

    text-align: center;
}


/* ============================================================
   HONEYPOT
============================================================ */

.botcheck {
    position: absolute !important;

    left: -9999px !important;

    width: 1px !important;

    height: 1px !important;

    opacity: 0 !important;
}


/* ============================================================
   CONTACT MOBILE
============================================================ */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

}


@media (max-width: 600px) {

    .contact-section {
        padding: 60px 0;
    }


    .contact-hero {
        padding: 60px 0;
    }


    .contact-hero h1 {
        font-size: 40px;
    }


    .contact-grid {
        gap: 35px;
    }


    .contact-information h2 {
        font-size: 32px;
    }


    .contact-form-wrapper {
        padding: 24px 18px;

        border-radius: 14px;
    }


    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

}

/* ============================================================
   LEGAL / POLICY PAGES
============================================================ */

.legal-section {
    padding: 75px 0 100px;
    background: #ffffff;
}

.legal-container {
    max-width: 900px;
}

.last-updated {
    margin-bottom: 45px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e1e8e3;
    color: #718078;
    font-size: 12px;
}

.legal-block {
    margin-bottom: 42px;
}

.legal-block h2 {
    margin-bottom: 15px;
    color: #17221c;
    font-size: 25px;
}

.legal-block h3 {
    margin: 25px 0 10px;
    color: #26342c;
    font-size: 16px;
}

.legal-block p {
    margin-bottom: 14px;
    color: #5f6d65;
    font-size: 14px;
    line-height: 1.8;
}

.legal-block ul {
    margin: 10px 0 15px;
    padding-left: 22px;
}

.legal-block li {
    margin-bottom: 8px;
    color: #5f6d65;
    font-size: 14px;
    line-height: 1.7;
}

.legal-contact {
    padding: 20px;
    border-left: 3px solid #78d21f;
    background: #f2f7f3;
}

.legal-contact a {
    color: #2f7f3d;
    font-weight: 700;
}

.legal-contact a:hover {
    text-decoration: underline;
}


/* ============================================================
   LEGAL MOBILE
============================================================ */

@media (max-width: 600px) {

    .legal-section {
        padding: 55px 0 70px;
    }

    .legal-block {
        margin-bottom: 35px;
    }

    .legal-block h2 {
        font-size: 22px;
    }

    .legal-block p,
    .legal-block li {
        font-size: 13px;
    }

}

/* ============================================================
   PRODUCTS LIST PAGE
============================================================ */

.products-list-section {
    padding: 70px 0 90px;
    background: #f7faf8;
}


/* ============================================================
   TOP BAR
============================================================ */

.products-list-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 35px;
}

.products-list-top h2 {
    margin: 0;
    color: #17221c;
    font-size: 28px;
}

.product-count {
    padding: 8px 14px;
    border: 1px solid #dce6df;
    border-radius: 30px;
    background: #ffffff;
    color: #5f6d65;
    font-size: 12px;
    font-weight: 700;
}


/* ============================================================
   PRODUCT GRID
============================================================ */

.products-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* ============================================================
   PRODUCT CARD
============================================================ */

.product-list-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e0e8e3;
    border-radius: 14px;
    background: #ffffff;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.product-list-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 15px 35px rgba(10, 35, 20, 0.09);
}


/* ============================================================
   PRODUCT IMAGE
============================================================ */

.product-list-image {
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: #f4f8f5;
}

.product-list-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-no-image {
    color: #78d21f;
    font-size: 22px;
    font-weight: 900;
}


/* ============================================================
   PRODUCT CONTENT
============================================================ */

.product-list-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 25px;
}

.product-category {
    display: inline-block;
    margin-bottom: 10px;
    color: #3d9147;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.product-list-content h2 {
    margin: 0 0 12px;
    color: #17221c;
    font-size: 20px;
    line-height: 1.3;
}

.product-description {
    margin: 0 0 15px;
    color: #66736c;
    font-size: 13px;
    line-height: 1.7;
}


/* ============================================================
   FEATURES
============================================================ */

.product-features {
    margin: 5px 0 18px;
    padding: 0;
    list-style: none;
}

.product-features li {
    display: flex;
    gap: 8px;
    margin-bottom: 7px;
    color: #5f6d65;
    font-size: 12px;
    line-height: 1.5;
}

.product-features li span {
    color: #4d9f46;
    font-weight: 900;
}


/* ============================================================
   PRICE
============================================================ */

.product-price {
    margin-top: auto;
    margin-bottom: 18px;
    color: #17221c;
    font-size: 19px;
    font-weight: 900;
}


/* ============================================================
   ACTION
============================================================ */

.product-list-actions {
    margin-top: auto;
}

.product-list-actions .btn {
    width: 100%;
    text-align: center;
}


/* ============================================================
   AMAZON BUTTON
============================================================ */

.btn-amazon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 18px;
    border-radius: 7px;
    background: #ff9900;
    color: #111111;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.btn-amazon:hover {
    background: #ffad33;
    color: #111111;
    transform: translateY(-2px);
}


/* ============================================================
   NO PRODUCTS
============================================================ */

.no-products {
    max-width: 600px;
    margin: 40px auto;
    padding: 60px 30px;
    border: 1px solid #e0e8e3;
    border-radius: 15px;
    background: #ffffff;
    text-align: center;
}

.no-products-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #eaf7df;
    color: #4d9f46;
    font-weight: 900;
}

.no-products h2 {
    margin-bottom: 8px;
    color: #17221c;
    font-size: 24px;
}

.no-products p {
    margin-bottom: 25px;
    color: #6b7971;
    font-size: 13px;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 900px) {

    .products-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 600px) {

    .products-list-section {
        padding: 50px 0 70px;
    }

    .products-list-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .products-list-top h2 {
        font-size: 24px;
    }

    .products-list-grid {
        grid-template-columns: 1fr;
    }

    .product-list-image {
        height: 220px;
    }

}

/* ============================================================
   ABOUT PAGE
============================================================ */


/* ============================================================
   ABOUT INTRO
============================================================ */

.about-section {
    padding: 85px 0;
    background: #ffffff;
}

.about-container {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 70px;
    align-items: center;
}

.about-content h2 {
    margin-top: 12px;
    color: #17221c;
    font-size: 38px;
    line-height: 1.2;
}

.about-content p {
    max-width: 700px;
    margin-top: 17px;
    color: #637169;
    font-size: 14px;
    line-height: 1.8;
}


/* ============================================================
   ABOUT HIGHLIGHT
============================================================ */

.about-highlight {
    padding: 35px;
    border: 1px solid #dfe8e2;
    border-radius: 16px;
    background: #f3f8f4;
}

.about-highlight-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 10px;

    background: #78d21f;
    color: #102015;

    font-size: 18px;
    font-weight: 900;
}

.about-highlight h3 {
    margin-bottom: 10px;
    color: #17221c;
    font-size: 21px;
}

.about-highlight p {
    margin: 0;
    color: #637169;
    font-size: 13px;
    line-height: 1.7;
}


/* ============================================================
   WHAT WE DO
============================================================ */

.about-services {
    padding: 85px 0;
    background: #f6f9f7;
}

.about-heading {
    max-width: 700px;
    margin-bottom: 45px;
}

.about-heading h2 {
    margin-top: 10px;
    color: #17221c;
    font-size: 36px;
}

.about-heading p {
    margin-top: 12px;
    color: #68766f;
    font-size: 14px;
    line-height: 1.7;
}


/* ============================================================
   ABOUT CARDS
============================================================ */

.about-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-card {
    padding: 28px;
    border: 1px solid #dfe7e2;
    border-radius: 13px;
    background: #ffffff;
}

.about-card-number {
    margin-bottom: 25px;
    color: #78d21f;
    font-size: 12px;
    font-weight: 900;
}

.about-card h3 {
    margin-bottom: 10px;
    color: #17221c;
    font-size: 17px;
}

.about-card p {
    margin: 0;
    color: #68766f;
    font-size: 12px;
    line-height: 1.7;
}


/* ============================================================
   AFFILIATE SECTION
============================================================ */

.affiliate-about {
    padding: 85px 0;
    background: #ffffff;
}

.affiliate-box {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr;
    gap: 40px;

    padding: 45px;

    border-radius: 18px;

    background: #07130d;
    color: #ffffff;
}

.affiliate-box-content h2 {
    margin-top: 10px;
    color: #ffffff;
    font-size: 32px;
}

.affiliate-box-content p {
    max-width: 750px;
    margin-top: 15px;
    color: #b9c8bf;
    font-size: 13px;
    line-height: 1.8;
}

.affiliate-box-side {
    padding: 25px;

    border: 1px solid #294233;
    border-radius: 12px;

    background: #0c1d13;
}

.affiliate-box-side strong {
    display: block;
    margin-bottom: 12px;
    color: #78d21f;
    font-size: 14px;
}

.affiliate-box-side p {
    margin-bottom: 12px;
    color: #9babA2;
    font-size: 12px;
    line-height: 1.7;
}


/* ============================================================
   WHAT WE DON'T DO
============================================================ */

.about-not {
    padding: 85px 0;
    background: #f6f9f7;
}

.not-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.not-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    padding: 25px;

    border: 1px solid #dfe7e2;
    border-radius: 12px;

    background: #ffffff;
}

.not-item > span {
    flex: 0 0 32px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f1eeee;
    color: #a24b4b;

    font-weight: 900;
}

.not-item h3 {
    margin-bottom: 6px;
    color: #17221c;
    font-size: 15px;
}

.not-item p {
    margin: 0;
    color: #68766f;
    font-size: 12px;
    line-height: 1.65;
}


/* ============================================================
   INDEPENDENT WEBSITE
============================================================ */

.about-independent {
    padding: 90px 0;
    background: #ffffff;
    text-align: center;
}

.independent-content {
    max-width: 750px;
    margin: 0 auto;
}

.independent-content h2 {
    margin-top: 10px;
    color: #17221c;
    font-size: 36px;
}

.independent-content p {
    margin-top: 14px;
    color: #68766f;
    font-size: 14px;
    line-height: 1.8;
}

.independent-content .btn {
    display: inline-flex;
    margin-top: 25px;
}


/* ============================================================
   CONTACT CTA
============================================================ */

.about-contact {
    padding: 70px 0;
    background: #f6f9f7;
}

.about-contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 40px;

    border-radius: 16px;

    background: #eaf7df;
}

.about-contact-box h2 {
    margin-top: 8px;
    color: #17221c;
    font-size: 28px;
}

.about-contact-box p {
    max-width: 650px;
    margin-top: 8px;
    color: #637169;
    font-size: 13px;
    line-height: 1.7;
}

.about-contact-box .btn {
    flex-shrink: 0;
}


/* ============================================================
   ABOUT TABLET
============================================================ */

@media (max-width: 1000px) {

    .about-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .affiliate-box {
        grid-template-columns: 1fr;
    }

}


/* ============================================================
   ABOUT MOBILE
============================================================ */

@media (max-width: 600px) {

    .about-section,
    .about-services,
    .affiliate-about,
    .about-not {
        padding: 60px 0;
    }

    .about-content h2,
    .about-heading h2,
    .independent-content h2 {
        font-size: 29px;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .not-grid {
        grid-template-columns: 1fr;
    }

    .affiliate-box {
        padding: 28px 20px;
    }

    .affiliate-box-content h2 {
        font-size: 27px;
    }

    .about-contact {
        padding: 50px 0;
    }

    .about-contact-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 22px;
    }

}