/* =========================================================
   BEST AGRO
   MAIN STYLESHEET
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", Arial, sans-serif;
    background: #f5f5f3;
    color: #1d1f1d;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --green: #82b52a;
    --green-dark: #648f1e;
    --dark: #151715;
    --dark-2: #1d201d;

    --white: #ffffff;
    --light: #f5f5f3;

    --gray: #777;
    --border: #ddddda;

}


/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    height: 78px;
    background: var(--dark);
    color: white;
    position: relative;
    z-index: 100;
}

.header-container {
    max-width: 1500px;
    height: 100%;
    margin: 0 auto;
    padding: 0 45px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    width: 210px;
}

.logo img {
    width: 100%;
    height: auto;
}


/* NAVIGATION */

.main-nav {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav > a,
.nav-dropdown > a {
    height: 100%;
    display: flex;
    align-items: center;

    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;

    color: #d9d9d9;
    position: relative;

    transition: 0.25s;
}

.main-nav > a:hover,
.nav-dropdown > a:hover {
    color: white;
}


/* ACTIVE LINE */

.main-nav > a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 3px;

    background: var(--green);
}


/* DROPDOWN */

.nav-dropdown {
    position: relative;
    height: 100%;

    display: flex;
    align-items: center;
}

.arrow {
    font-size: 15px;
    margin-left: 5px;
    position: relative;
    top: -1px;
}


/* DROPDOWN MENU */

.dropdown-menu {

    position: absolute;

    top: 75px;
    left: -15px;

    width: 220px;

    background: #1d201d;

    border-top: 2px solid var(--green);

    padding: 12px 0;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: 0.25s;

    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {

    display: block;

    padding: 12px 20px;

    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;

    color: #ddd;

    transition: 0.2s;
}

.dropdown-menu a:hover {
    background: var(--green);
    color: white;
}


/* HEADER CONTACT */

.header-contact {

    display: flex;
    align-items: center;
    gap: 30px;

}

.phone {

    display: flex;
    align-items: center;
    gap: 9px;

    font-size: 12px;
    font-weight: 600;

    white-space: nowrap;

}

.phone-icon {
    font-size: 17px;
    color: var(--green);
}


/* HEADER BUTTON */

.header-button {

    background: var(--green);

    color: white;

    padding: 14px 24px;

    min-width: 145px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;

    transition: 0.25s;
}

.header-button:hover {
    background: #96c93b;
}


/* MOBILE MENU */

.mobile-menu-button {
    display: none;

    background: none;
    color: white;

    font-size: 28px;
}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 620px;

    position: relative;

    background-image: url("images/hero.jpg");

    background-size: cover;
    background-position: center;

    color: white;

    overflow: hidden;

}


/* DARK OVERLAY */

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10, 12, 10, 0.82) 0%,
            rgba(10, 12, 10, 0.55) 35%,
            rgba(10, 12, 10, 0.12) 70%,
            rgba(10, 12, 10, 0.15) 100%
        );

}


/* HERO CONTENT */

.hero-container {

    position: relative;
    z-index: 2;

    max-width: 1500px;

    margin: 0 auto;

    padding: 100px 45px 80px;

}

.hero-content {

    max-width: 650px;

}

.hero-eyebrow {

    color: #d6d6d6;

    font-size: 10px;

    letter-spacing: 4px;

    font-weight: 600;

    margin-bottom: 18px;

}


/* HERO TITLE */

.hero h1 {

    font-size: clamp(62px, 7vw, 105px);

    line-height: 0.9;

    font-weight: 900;

    letter-spacing: -4px;

    margin-bottom: 20px;

}

.hero h1 span {
    color: var(--green);
}


/* HERO SUBTITLE */

.hero h2 {

    font-size: clamp(26px, 3vw, 40px);

    line-height: 1.12;

    font-weight: 800;

    letter-spacing: -1px;

    margin-bottom: 22px;

}


/* HERO TEXT */

.hero p {

    color: #e3e3e3;

    font-size: 16px;

    line-height: 1.7;

    margin-bottom: 30px;

}


/* HERO BUTTONS */

.hero-buttons {

    display: flex;
    gap: 15px;

}


/* BUTTONS */

.btn {

    min-height: 52px;

    padding: 0 27px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.3px;

    transition: 0.25s;

}

.btn-primary {

    background: var(--green);

    color: white;

}

.btn-primary:hover {

    background: #94c637;

    transform: translateY(-2px);

}

.btn-outline {

    border: 1px solid rgba(255,255,255,0.7);

    color: white;

}

.btn-outline:hover {

    background: white;
    color: #111;

}


/* HERO SLIDER */

.hero-slider-controls {

    margin-top: 55px;

    display: flex;

    align-items: center;

    gap: 25px;

}

.slide-number {

    font-size: 11px;

    color: white;

}

.slider-lines {

    display: flex;

    gap: 8px;

}

.slider-lines span {

    width: 48px;

    height: 2px;

    background: rgba(255,255,255,0.35);

}

.slider-lines span.active {

    background: var(--green);

}


/* HERO TAGLINE */

.hero-tagline {

    position: absolute;

    right: 60px;
    bottom: 35px;

    z-index: 3;

    color: white;


    font-size: 24px;

    font-style: italic;

    text-align: right;

    line-height: 1.1;

    opacity: 0.8;

    font-family: "Brush Script MT",
                 "Segoe Script",
                 "Lucida Handwriting",
                 cursive;

   font-style: italic;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.section-header {

    display: flex;

    justify-content: space-between;
    align-items: center;

    margin-bottom: 28px;

}

.section-header h2 {

    font-size: 28px;

    font-weight: 800;

    letter-spacing: -0.7px;

}

.section-header h2 span {

    color: var(--green);

}

.view-all {

    color: #527c20;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    display: flex;

    gap: 8px;

    align-items: center;

}


/* =========================================================
   CATEGORIES
========================================================= */

.categories-section {

    background: #f5f5f3;

    padding: 55px 0 60px;

}

.categories-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

}


/* CATEGORY CARD */

.category-card {

    position: relative;

    height: 295px;

    overflow: hidden;

    color: white;

    background: #222;

}


/* IMAGE */

.category-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;

}

.category-card:hover img {
    transform: scale(1.06);
}


/* OVERLAY */

.category-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            180deg,
            rgba(0,0,0,0.05) 0%,
            rgba(0,0,0,0.15) 35%,
            rgba(0,0,0,0.88) 100%
        );

}


/* CATEGORY CONTENT */

.category-content {

    position: absolute;

    left: 24px;
    bottom: 25px;

    z-index: 2;

    display: flex;

    gap: 14px;

    align-items: flex-start;

}

.category-icon {

    font-size: 28px;

    line-height: 1;

}

.category-card h3 {

    font-size: 18px;

    font-weight: 800;

    margin-bottom: 9px;

}

.category-card p {

    font-size: 11px;

    color: #ddd;

    margin: 3px 0;

}


/* CATEGORY ARROW */

.category-arrow {

    position: absolute;

    right: 22px;
    bottom: 28px;

    z-index: 3;

    font-size: 25px;

    color: var(--green);

}


/* =========================================================
   FEATURED PRODUCTS
========================================================= */

.featured-products {

    background: #f5f5f3;

    padding: 0 0 70px;

}


/* SLIDER BUTTONS */

.slider-buttons {

    display: flex;
    gap: 10px;

}

.slider-buttons button {

    width: 38px;
    height: 38px;

    border-radius: 50%;

    border: 1px solid #d7d7d2;

    background: transparent;

    font-size: 18px;

    color: #555;

    transition: 0.2s;

}

.slider-buttons button:hover {

    background: var(--green);
    color: white;
    border-color: var(--green);

}


/* PRODUCTS */

.products-slider {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

}


/* PRODUCT CARD */

.product-card {

    background: white;

    border: 1px solid #e8e8e5;

    min-height: 370px;

    display: flex;

    flex-direction: column;

    transition: 0.25s;

}

.product-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 14px 35px rgba(0,0,0,0.08);

}


/* PRODUCT IMAGE */

.product-image {

    height: 215px;

    padding: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

}

.product-image img {

    width: 100%;
    height: 100%;

    object-fit: contain;

}


/* PRODUCT INFO */

.product-info {

    padding: 10px 22px 25px;

}

.product-info h3 {

    font-size: 18px;

    font-weight: 800;

    margin-bottom: 5px;

}

.product-info p {

    font-size: 12px;

    color: #777;

    margin-bottom: 22px;

}


/* PRODUCT LINK */

.product-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    border: 1px solid var(--green);

    color: #5f8920;

    padding: 10px 20px;

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    transition: 0.2s;

}

.product-link:hover {

    background: var(--green);
    color: white;

}


/* =========================================================
   ADVANTAGES
========================================================= */

.advantages {

    position: relative;

    background:

        linear-gradient(
            rgba(12, 16, 12, 0.88),
            rgba(12, 16, 12, 0.88)
        ),

        url("images/backgrounds/field.jpg");

    background-size: cover;
    background-position: center;

    color: white;

    padding: 42px 0;

}

.advantages-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

}


/* ADVANTAGE */

.advantage {

    display: flex;

    gap: 18px;

    align-items: center;

    padding: 10px 25px;

    border-right: 1px solid rgba(255,255,255,0.12);

}

.advantage:last-child {
    border-right: none;
}


/* ICON */

.advantage-icon {

    color: var(--green);

    font-size: 38px;

    min-width: 45px;

}


/* TEXT */

.advantage h3 {

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 7px;

}

.advantage p {

    font-size: 11px;

    color: #d0d0d0;

    line-height: 1.6;

}


/* =========================================================
   ELVORTI PARTNER
========================================================= */

.partner-section {

    background: white;

    padding: 40px 0;

}

.partner-content {

    display: grid;

    grid-template-columns:
        1fr
        1.3fr
        1fr
        1fr;

    align-items: center;

    text-align: center;

}

.partner-content > div {

    min-height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 10px 30px;

    border-right: 1px solid #dcdcd8;

}

.partner-content > div:last-child {
    border-right: none;
}


.partner-small {

    font-size: 11px;

    font-weight: 700;

    color: #777;

    line-height: 1.5;

}


/* ELVORTI */

.elvorti-logo {

    color: #c72d2b;

    font-size: 40px;

    font-weight: 900;

    letter-spacing: -2px;

}


/* PARTNER TEXT */

.partner-text {

    font-size: 12px;

    font-weight: 700;

    line-height: 1.6;

    color: #555;

}


/* TAGLINE */

.partner-tagline {

    color: #6d932b;

    font-size: 11px;

    font-weight: 700;

    line-height: 1.7;

}


/* =========================================================
   CONTACT CTA
========================================================= */

.contact-cta {

    position: relative;

    background-image: url("images/backgrounds/contact-field.jpg");

    background-size: cover;
    background-position: center;

    color: white;

    overflow: hidden;

}

.contact-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(17,25,16,0.93),
            rgba(25,35,20,0.72)
        );

}

.contact-cta .container {

    position: relative;

    z-index: 2;

}

.contact-content {

    min-height: 220px;

    display: grid;

    grid-template-columns: 1.2fr auto 1.4fr;

    align-items: center;

    gap: 50px;

}


/* CONTACT TITLE */

.contact-content h2 {

    font-size: 28px;

    line-height: 1.1;

    font-weight: 800;

    margin-bottom: 15px;

}

.contact-content p {

    color: #ddd;

    font-size: 13px;

    line-height: 1.7;

}


/* CONTACT DETAILS */

.contact-details {

    display: flex;

    justify-content: space-between;

    gap: 25px;

}

.contact-details a,
.contact-details span {

    font-size: 12px;

    color: white;

    line-height: 1.7;

}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-style: normal;
    font-size: 16px;
    line-height: 1.5;
}

.contact-info a,
.contact-info span {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    background: #121412;

    color: white;

    padding-top: 55px;

}

.footer-grid {

    display: grid;

    grid-template-columns:
        1.4fr
        0.8fr
        0.8fr
        1.1fr
        0.8fr;

    gap: 35px;

    padding-bottom: 45px;

}


/* FOOTER BRAND */

.footer-brand img {

    width: 220px;

    margin-bottom: 18px;

}

.footer-brand p {

    color: #aaa;

    font-size: 11px;

    line-height: 1.7;

}


/* FOOTER COLUMN */

.footer-column {

    display: flex;

    flex-direction: column;

    gap: 9px;

}

.footer-column h4 {

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 8px;

}

.footer-column a {

    color: #aaa;

    font-size: 11px;

    transition: 0.2s;

}

.footer-column a:hover {

    color: var(--green);

}


/* FOOTER CONTACT */

.footer-contact p {

    color: #aaa;

    font-size: 11px;

    line-height: 1.7;

}


/* FOOTER SLOGAN */

.footer-slogan {

    font-size: 28px;

    font-style: italic;

    font-family: "Brush Script MT",
                 "Segoe Script",
                 "Lucida Handwriting",
                 cursive;

    line-height: 1.1;

    color: #8caf2d;

    text-align: right;

    opacity: 1;

}


/* FOOTER BOTTOM */

.footer-bottom {

    border-top: 1px solid rgba(255,255,255,0.1);

    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #777;

    font-size: 10px;

}

.footer-bottom > div {

    display: flex;
    gap: 12px;

}

.footer-bottom a:hover {
    color: var(--green);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {


    .header-container {
        padding: 0 25px;
    }

    .main-nav {
        gap: 20px;
    }

    .phone {
        display: none;
    }


    /* CATEGORIES */

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* PRODUCTS */

    .products-slider {
        grid-template-columns: repeat(2, 1fr);
    }


    /* ADVANTAGES */

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantage:nth-child(2) {
        border-right: none;
    }


    /* CONTACT */

    .contact-content {

        grid-template-columns: 1fr;

        padding: 50px 0;

        gap: 30px;

    }


    /* FOOTER */

    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {


    .container {
        padding-left: 20px;
        padding-right: 20px;
    }


    /* HEADER */

    .site-header {
        height: 68px;
    }

    .header-container {
        padding: 0 20px;
    }

    .logo {
        width: 170px;
    }

    .main-nav,
    .header-contact {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }


    /* HERO */

    .hero {

        min-height: 650px;

        background-position: 65% center;

    }

    .hero-overlay {

        background:

            linear-gradient(
                90deg,
                rgba(10,12,10,0.88),
                rgba(10,12,10,0.50)
            );

    }

    .hero-container {

        padding: 90px 25px 50px;

    }

    .hero-eyebrow {

        font-size: 8px;

        letter-spacing: 2px;

    }

    .hero h1 {

        font-size: 64px;

        letter-spacing: -3px;

    }

    .hero h2 {

        font-size: 27px;

    }

    .hero p {

        font-size: 13px;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: flex-start;

    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-tagline {

        display: none;

    }


    /* SECTION HEADERS */

    .section-header {

        align-items: flex-start;

    }

    .section-header h2 {

        font-size: 23px;

    }

    .view-all {
        display: none;
    }


    /* CATEGORIES */

    .categories-section {
        padding: 45px 0;
    }

    .categories-grid {

        grid-template-columns: 1fr;

    }

    .category-card {

        height: 260px;

    }


    /* PRODUCTS */

    .featured-products {

        padding-bottom: 50px;

    }

    .products-slider {

        grid-template-columns: 1fr;

    }


    /* ADVANTAGES */

    .advantages-grid {

        grid-template-columns: 1fr;

    }

    .advantage {

        border-right: none;

        border-bottom: 1px solid rgba(255,255,255,0.1);

        padding: 20px 0;

    }

    .advantage:last-child {

        border-bottom: none;

    }


    /* PARTNER */

    .partner-content {

        grid-template-columns: 1fr;

    }

    .partner-content > div {

        border-right: none;

        border-bottom: 1px solid #e3e3e0;

    }

    .partner-content > div:last-child {

        border-bottom: none;

    }


    /* CONTACT */

    .contact-details {

        flex-direction: column;

        gap: 15px;

    }


    /* FOOTER */

    .footer-grid {

        grid-template-columns: 1fr;

    }

    .footer-slogan {

        text-align: left;

    }

    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 12px;

        padding: 20px 0;

    }

}

/* =========================================================
   PRODUCT PAGE
========================================================= */

/* Breadcrumbs */

.breadcrumbs {
    padding: 22px 0;
    background: #f6f6f3;
    font-size: 14px;
}

.breadcrumbs .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
}

.breadcrumbs strong {
    color: #222;
}


/* Product layout */

.product-page {
    padding: 15px 0 30px;
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
    gap: 50px;
    align-items: start;
}


/* Main image */

.product-main-image {
    background: #f5f5f2;
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px;
}

.product-main-image img {
    display: block;

    width: 100%;
    height: 440px;

    object-fit: contain;
}

.product-image-placeholder {
    color: #888;
}


/* Gallery thumbnails */

.product-thumbnails {
    display: flex;
    gap: 12px;

    margin-top: 10px;

    flex-wrap: wrap;
}

.product-thumbnail {
    width: 110px;
    height: 75px;

    border: 1px solid #ddd;
    background: #fff;

    padding: 4px;

    cursor: pointer;
}

.product-thumbnail.active {
    border-color: #8aa63f;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* Product info */

.product-category-label {
    color: #819b3c;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.2px;

    margin-bottom: 15px;
}

.product-info h1 {
    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.05;

    margin-bottom: 15px;
}

.product-short-description {
    font-size: 18px;

    line-height: 1.7;

    color: #555;

    margin-bottom: 35px;
}


/* Contact box */

.product-contact-box {
    background: #f3f5ec;

    border-left: 4px solid #819b3c;

    padding: 18px;

    margin-top: 20px;
}

.product-contact-box h3 {
    margin-bottom: 10px;
}

.product-contact-box p {
    color: #666;

    line-height: 1.4;

    margin-bottom: 15px;
}

.product-phone {
    display: block;

    color: #222;

    font-size: 18px;
    font-weight: 700;

    text-decoration: none;

    margin-bottom: 15px;
}


/* Content */

.product-content-container {
    max-width: 1200px;
}

.product-description-section,
.product-features-section,
.product-specs-section,
.product-documents-section {
    padding: 15px 0;
}

.product-features-section {
    background: #f6f6f3;
}

.product-description-section h2,
.product-features-section h2,
.product-specs-section h2,
.product-documents-section h2 {
    font-size: 36px;

    margin-bottom: 15px;
}

.product-description-content {
    font-size: 17px;

    line-height: 1.8;

    color: #444;
}


/* Features */

.product-features-grid {
    display: grid;

    grid-template-columns: 1fr;

    gap: 18px;
}


.product-feature {
    display: flex;

    align-items: center;

    gap: 12px;

    background: #fff;

    padding: 18px 20px;

    border: 1px solid #e2e2dd;
}

.feature-check {
    width: 26px;
    height: 26px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    background: #819b3c;

    color: #fff;

    border-radius: 50%;
}


/* Specifications */

.product-specs-table {
    border-top: 1px solid #ddd;
}

.product-spec-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    border-bottom: 1px solid #ddd;
}

.product-spec-name,
.product-spec-value {
    padding: 17px 20px;
}

.product-spec-name {
    font-weight: 600;

    background: #f6f6f3;
}

.product-spec-value {
    background: #fff;
}


/* Documents */

.product-documents-list {
    display: grid;

    gap: 12px;
}

.product-document {
    display: flex;

    align-items: center;

    gap: 18px;

    padding: 18px 20px;

    border: 1px solid #ddd;

    color: #222;

    text-decoration: none;

    transition: 0.2s;
}

.product-document:hover {
    border-color: #819b3c;
}

.document-icon {
    font-size: 11px;

    font-weight: 700;

    color: #fff;

    background: #d24b4b;

    padding: 7px 8px;
}

.document-title {
    flex: 1;

    font-weight: 600;
}

.document-arrow {
    font-size: 22px;
}


/* Bottom CTA */

.product-bottom-cta {
    background: #25351f;

    color: #fff;

    padding: 65px 0;
}

.product-bottom-cta .container {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.product-bottom-cta h2 {
    margin-bottom: 10px;
}

.product-bottom-cta p {
    margin: 0;

    color: rgba(255,255,255,0.75);
}

.product-bottom-cta-actions {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}


/* Mobile */

@media (max-width: 900px) {

    .product-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .product-main-image {
        min-height: 400px;
    }

    .product-features-grid {
        grid-template-columns: 1fr;
    }

    .product-bottom-cta .container {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 600px) {

    .product-page {
        padding: 45px 0 60px;
    }

    .product-main-image {
        min-height: 320px;

        padding: 15px;
    }

    .product-main-image img {
        height: 290px;
    }

    .product-spec-row {
        grid-template-columns: 1fr;
    }

    .product-spec-name,
    .product-spec-value {
        padding: 14px 15px;
    }

    .product-spec-name {
        border-bottom: 1px solid #e5e5e5;
    }

}/* =========================================================
   PRODUCT MAIN FEATURES
========================================================= */

.product-main-features-section {
    padding: 50px 0 70px;
}


.product-main-features-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 30px;
    color: #2d3336;
}


/* =========================================================
   FEATURES CONTAINER
========================================================= */

.product-main-features-grid {
    display: flex;
    width: 100%;

    background: #f1f2f2;
}


/* =========================================================
   FEATURE ITEM
========================================================= */

.product-main-feature {
    flex: 1 1 0;

    min-width: 0;
    min-height: 180px;

    padding: 30px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    text-align: center;

    border-right: 1px solid rgba(255, 255, 255, 0.8);
}


.product-main-feature:last-child {
    border-right: none;
}


/* =========================================================
   ICON
========================================================= */

.product-main-feature-icon {
    font-size: 32px;
    line-height: 1;

    margin-bottom: 18px;

    color: #245b8f;
}


/* =========================================================
   CONTENT
========================================================= */

.product-main-feature-content {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
}


/* =========================================================
   NAME
========================================================= */

.product-main-feature-name {
    font-size: 16px;
    font-weight: 500;

    color: #444;

    margin-bottom: 12px;

    line-height: 1.4;
}


/* =========================================================
   VALUE
========================================================= */

.product-main-feature-value {
    font-size: 16px;

    color: #666;

    line-height: 1.4;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 900px) {

    .product-main-features-grid {
        flex-wrap: wrap;
    }


    .product-main-feature {
        flex: 0 0 33.333333%;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.8);
    }


    .product-main-feature:nth-child(3n) {
        border-right: none;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 600px) {

    .product-main-feature {
        flex: 0 0 50%;

        min-height: 150px;

        padding: 25px 15px;
    }


    .product-main-feature:nth-child(3n) {
        border-right:
            1px solid rgba(255, 255, 255, 0.8);
    }


    .product-main-feature:nth-child(2n) {
        border-right: none;
    }


    .product-main-feature-icon {
        font-size: 28px;
    }


    .product-main-features-section h2 {
        font-size: 26px;
    }

}

/* =========================================================
   NAV DROPDOWN ARROW
========================================================= */

.main-nav .nav-dropdown > a {
    display: inline-flex;

    align-items: center;

    gap: 7px;
}


.main-nav .nav-dropdown .arrow {
    width: 7px;
    height: 7px;

    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;

    transform: rotate(45deg);

    margin-top: -3px;

    transition: transform 0.2s ease;
}


.main-nav .nav-dropdown:hover .arrow {
    transform: rotate(225deg);

    margin-top: 3px;
}

/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.mobile-menu-button {
    display: none;

    background: none;
    border: none;

    color: #ffffff;

    font-size: 34px;
    line-height: 1;

    cursor: pointer;

    padding: 8px;
}

/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.mobile-menu-button {
    display: none;

    background: none;
    border: none;

    color: #ffffff;

    font-size: 34px;
    line-height: 1;

    cursor: pointer;

    padding: 8px;
}


/* =========================================================
   MOBILE MENU
========================================================= */

@media (max-width: 900px) {

    /* HEADER */

    .site-header {
        position: relative;
    }


    .header-container {
        position: relative;
    }


    .mobile-menu-button {
        display: block;
    }


    .header-contact {
        display: none;
    }


    /* MAIN NAV */

    .main-nav {
        display: none !important;

        position: absolute !important;

        top: 100% !important;
        left: 0 !important;

        width: 100% !important;
        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        flex-direction: column !important;

        align-items: stretch !important;
        justify-content: flex-start !important;

        gap: 0 !important;

        background: #151918 !important;

        border-top: 1px solid rgba(255,255,255,0.08);

        z-index: 9999;
    }


    .main-nav.mobile-open {
        display: flex !important;
    }


    /* MAIN LINKS */

    .main-nav > a,
    .main-nav > .nav-dropdown {
        display: block !important;

        width: 100% !important;
        height: auto !important;

        flex: none !important;

        margin: 0 !important;
        padding: 0 !important;

        position: static !important;

        box-sizing: border-box;
    }


    .main-nav > a {
        display: block !important;

        width: 100% !important;
        height: auto !important;

        padding: 20px 35px !important;

        font-size: 14px;

        text-align: left;
    }


    /* REMOVE DESKTOP ACTIVE LINE */

    .main-nav > a.active::after {
        display: none !important;
    }


    .main-nav > a.active {
        color: #ffffff;

        border-left: 4px solid var(--green);
    }


    /* DROPDOWN */

    .nav-dropdown {
        height: auto !important;

        display: block !important;

        position: static !important;
    }


    .nav-dropdown > a {
        display: flex !important;

        width: 100% !important;
        height: auto !important;

        align-items: center !important;
        justify-content: flex-start !important;

        padding: 20px 35px !important;

        font-size: 14px;

        box-sizing: border-box;
    }


    /* ARROW */

    .main-nav .nav-dropdown .arrow {
        margin-left: 10px;

        width: 8px;
        height: 8px;

        flex-shrink: 0;

        transition: transform 0.2s ease;
    }


    .nav-dropdown.mobile-dropdown-open .arrow {
        transform: rotate(225deg);
        margin-top: 4px;
    }


    /* SUBMENU */

    .dropdown-menu {
        display: none !important;

        position: static !important;

        width: 100% !important;
        min-width: 0 !important;

        height: auto !important;

        opacity: 1 !important;
        visibility: visible !important;

        transform: none !important;

        margin: 0 !important;

        padding: 5px 0 10px !important;

        background: #1d2220 !important;

        border-top: 1px solid rgba(255,255,255,0.06);

        box-shadow: none !important;
    }


    .nav-dropdown.mobile-dropdown-open .dropdown-menu {
        display: block !important;
    }


    .dropdown-menu a {
        display: block !important;

        width: 100% !important;

        padding: 15px 35px 15px 60px !important;

        font-size: 13px;

        box-sizing: border-box;
    }


    .dropdown-menu a:hover {
        background: rgba(130,181,42,0.12);
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 768px) {

    .header-container {
        padding: 0 20px;
    }

}